/Linux-v4.19/sound/soc/pxa/ |
D | pxa2xx-ac97.c | 75 .maxburst = 32, 82 .maxburst = 32, 89 .maxburst = 16, 96 .maxburst = 16, 103 .maxburst = 16,
|
D | pxa2xx-i2s.c | 89 .maxburst = 32, 96 .maxburst = 32,
|
/Linux-v4.19/drivers/dma/ |
D | at_hdmac_regs.h | 291 static inline void convert_burst(u32 *maxburst) in convert_burst() argument 293 if (*maxburst > 1) in convert_burst() 294 *maxburst = fls(*maxburst) - 2; in convert_burst() 296 *maxburst = 0; in convert_burst()
|
D | zx_dma.c | 467 u32 maxburst = 0; in zx_pre_config() local 484 maxburst = cfg->dst_maxburst; in zx_pre_config() 485 maxburst = maxburst < ZX_MAX_BURST_LEN ? in zx_pre_config() 486 maxburst : ZX_MAX_BURST_LEN; in zx_pre_config() 488 | ZX_SRC_BURST_LEN(maxburst - 1) in zx_pre_config() 495 maxburst = cfg->src_maxburst; in zx_pre_config() 496 maxburst = maxburst < ZX_MAX_BURST_LEN ? in zx_pre_config() 497 maxburst : ZX_MAX_BURST_LEN; in zx_pre_config() 499 | ZX_SRC_BURST_LEN(maxburst - 1) in zx_pre_config()
|
D | dma-jz4740.c | 192 static enum jz4740_dma_transfer_size jz4740_dma_maxburst(u32 maxburst) in jz4740_dma_maxburst() argument 194 if (maxburst <= 1) in jz4740_dma_maxburst() 196 else if (maxburst <= 3) in jz4740_dma_maxburst() 198 else if (maxburst <= 15) in jz4740_dma_maxburst() 200 else if (maxburst <= 31) in jz4740_dma_maxburst()
|
D | idma64.c | 398 static void convert_burst(u32 *maxburst) in convert_burst() argument 400 if (*maxburst) in convert_burst() 401 *maxburst = __fls(*maxburst); in convert_burst() 403 *maxburst = 0; in convert_burst()
|
D | sa11x0-dma.c | 674 u32 maxburst; in sa11x0_dma_device_config() local 679 maxburst = cfg->src_maxburst; in sa11x0_dma_device_config() 683 maxburst = cfg->dst_maxburst; in sa11x0_dma_device_config() 688 (maxburst != 4 && maxburst != 8)) in sa11x0_dma_device_config() 693 if (maxburst == 8) in sa11x0_dma_device_config() 697 &c->vc, &addr, width, maxburst); in sa11x0_dma_device_config()
|
D | mmp_pdma.c | 691 u32 maxburst = 0, addr = 0; in mmp_pdma_config() local 699 maxburst = cfg->src_maxburst; in mmp_pdma_config() 704 maxburst = cfg->dst_maxburst; in mmp_pdma_config() 716 if (maxburst == 8) in mmp_pdma_config() 718 else if (maxburst == 16) in mmp_pdma_config() 720 else if (maxburst == 32) in mmp_pdma_config()
|
D | k3dma.c | 645 u32 maxburst = 0, val = 0; in k3_dma_config() local 654 maxburst = cfg->src_maxburst; in k3_dma_config() 659 maxburst = cfg->dst_maxburst; in k3_dma_config() 675 if ((maxburst == 0) || (maxburst > 16)) in k3_dma_config() 678 val = maxburst - 1; in k3_dma_config()
|
/Linux-v4.19/drivers/usb/gadget/udc/ |
D | mv_u3d_core.c | 527 unsigned maxburst = 0; in mv_u3d_ep_enable() local 542 if (!_ep->maxburst) in mv_u3d_ep_enable() 543 _ep->maxburst = 1; in mv_u3d_ep_enable() 544 maxburst = _ep->maxburst; in mv_u3d_ep_enable() 549 if (maxburst > 16) { in mv_u3d_ep_enable() 553 maxburst = 1; in mv_u3d_ep_enable() 554 _ep->maxburst = maxburst; in mv_u3d_ep_enable() 557 "maxburst: %d on bulk %s\n", maxburst, ep->name); in mv_u3d_ep_enable() 561 maxburst = 1; in mv_u3d_ep_enable() 562 _ep->maxburst = maxburst; in mv_u3d_ep_enable() [all …]
|
D | trace.h | 148 __field(unsigned, maxburst) 160 __entry->maxburst = ep->maxburst; 168 __entry->max_streams, __entry->mult, __entry->maxburst,
|
/Linux-v4.19/Documentation/devicetree/bindings/crypto/ |
D | st,stm32-hash.txt | 17 - dma-maxburst: Set number of maximum dma burst supported 29 dma-maxburst = <0>;
|
/Linux-v4.19/drivers/usb/dwc3/ |
D | trace.h | 289 __field(unsigned, maxburst) 300 __entry->maxburst = dep->endpoint.maxburst; 309 __entry->maxburst, __entry->trb_enqueue,
|
/Linux-v4.19/sound/soc/fsl/ |
D | fsl_asrc_dma.c | 176 dma_params_fe->maxburst = dma_params_be->maxburst; in fsl_asrc_dma_hw_params() 229 config_be.src_maxburst = dma_params_be->maxburst; in fsl_asrc_dma_hw_params() 231 config_be.dst_maxburst = dma_params_be->maxburst; in fsl_asrc_dma_hw_params()
|
D | imx-ssi.c | 353 val = SSI_SFCSR_TFWM0(ssi->dma_params_tx.maxburst) | in imx_ssi_dai_probe() 354 SSI_SFCSR_RFWM0(ssi->dma_params_rx.maxburst); in imx_ssi_dai_probe() 570 ssi->dma_params_tx.maxburst = 6; in imx_ssi_probe() 571 ssi->dma_params_rx.maxburst = 4; in imx_ssi_probe()
|
D | imx-pcm-fiq.c | 368 params->dma_params_tx->maxburst = 4; in imx_pcm_fiq_init() 369 params->dma_params_rx->maxburst = 6; in imx_pcm_fiq_init()
|
/Linux-v4.19/sound/soc/adi/ |
D | axi-i2s.c | 218 i2s->playback_dma_data.maxburst = 1; in axi_i2s_probe() 222 i2s->capture_dma_data.maxburst = 1; in axi_i2s_probe()
|
/Linux-v4.19/drivers/spi/ |
D | spi-stm32.c | 675 u32 maxburst; in stm32_spi_dma_config() local 686 maxburst = 1; in stm32_spi_dma_config() 688 maxburst = spi->cur_fthlv; in stm32_spi_dma_config() 695 dma_conf->src_maxburst = maxburst; in stm32_spi_dma_config() 698 buswidth, maxburst); in stm32_spi_dma_config() 702 dma_conf->dst_maxburst = maxburst; in stm32_spi_dma_config() 705 buswidth, maxburst); in stm32_spi_dma_config()
|
/Linux-v4.19/sound/core/ |
D | pcm_dmaengine.c | 120 slave_config->dst_maxburst = dma_data->maxburst; in snd_dmaengine_pcm_set_config_from_dai_data() 128 slave_config->src_maxburst = dma_data->maxburst; in snd_dmaengine_pcm_set_config_from_dai_data()
|
/Linux-v4.19/include/sound/ |
D | dmaengine_pcm.h | 73 u32 maxburst; member
|
/Linux-v4.19/drivers/staging/mt7621-dma/ |
D | ralink-gdma.c | 179 static enum gdma_dma_transfer_size gdma_dma_maxburst(u32 maxburst) in gdma_dma_maxburst() argument 181 if (maxburst < 2) in gdma_dma_maxburst() 183 else if (maxburst < 4) in gdma_dma_maxburst() 185 else if (maxburst < 8) in gdma_dma_maxburst() 187 else if (maxburst < 16) in gdma_dma_maxburst()
|
/Linux-v4.19/sound/soc/tegra/ |
D | tegra20_ac97.c | 371 ac97->capture_dma_data.maxburst = 4; in tegra20_ac97_platform_probe() 375 ac97->playback_dma_data.maxburst = 4; in tegra20_ac97_platform_probe()
|
D | tegra20_i2s.c | 380 i2s->capture_dma_data.maxburst = 4; in tegra20_i2s_platform_probe() 384 i2s->playback_dma_data.maxburst = 4; in tegra20_i2s_platform_probe()
|
/Linux-v4.19/sound/soc/omap/ |
D | omap-hdmi-audio.c | 125 ad->dma_data.maxburst = 16; in hdmi_dai_hw_params() 128 ad->dma_data.maxburst = 32; in hdmi_dai_hw_params()
|
/Linux-v4.19/sound/soc/zte/ |
D | zx-i2s.c | 168 zx_i2s->dma_playback.maxburst = 16; in zx_i2s_dai_probe() 170 zx_i2s->dma_capture.maxburst = 16; in zx_i2s_dai_probe()
|