Home
last modified time | relevance | path

Searched refs:sconfig (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.15/drivers/dma/
Dsun4i-dma.c386 static int sanitize_config(struct dma_slave_config *sconfig, in sanitize_config() argument
391 if ((sconfig->dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) || in sanitize_config()
392 !sconfig->dst_maxburst) in sanitize_config()
395 if (sconfig->src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) in sanitize_config()
396 sconfig->src_addr_width = sconfig->dst_addr_width; in sanitize_config()
398 if (!sconfig->src_maxburst) in sanitize_config()
399 sconfig->src_maxburst = sconfig->dst_maxburst; in sanitize_config()
404 if ((sconfig->src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) || in sanitize_config()
405 !sconfig->src_maxburst) in sanitize_config()
408 if (sconfig->dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) in sanitize_config()
[all …]
Duniphier-xdmac.c91 struct dma_slave_config sconfig; member
150 buswidth = xc->sconfig.src_addr_width; in uniphier_xdmac_chan_start()
159 buswidth = xc->sconfig.dst_addr_width; in uniphier_xdmac_chan_start()
335 buswidth = xc->sconfig.src_addr_width; in uniphier_xdmac_prep_slave_sg()
336 maxburst = xc->sconfig.src_maxburst; in uniphier_xdmac_prep_slave_sg()
338 buswidth = xc->sconfig.dst_addr_width; in uniphier_xdmac_prep_slave_sg()
339 maxburst = xc->sconfig.dst_maxburst; in uniphier_xdmac_prep_slave_sg()
356 ? xc->sconfig.src_addr : sg_dma_address(sg); in uniphier_xdmac_prep_slave_sg()
358 ? xc->sconfig.dst_addr : sg_dma_address(sg); in uniphier_xdmac_prep_slave_sg()
399 memcpy(&xc->sconfig, config, sizeof(*config)); in uniphier_xdmac_slave_config()
Dat_hdmac.c1087 struct dma_slave_config *sconfig = &atchan->dma_sconfig; in atc_prep_slave_sg() local
1109 ctrla = ATC_SCSIZE(sconfig->src_maxburst) in atc_prep_slave_sg()
1110 | ATC_DCSIZE(sconfig->dst_maxburst); in atc_prep_slave_sg()
1115 reg_width = convert_buswidth(sconfig->dst_addr_width); in atc_prep_slave_sg()
1121 reg = sconfig->dst_addr; in atc_prep_slave_sg()
1155 reg_width = convert_buswidth(sconfig->src_addr_width); in atc_prep_slave_sg()
1162 reg = sconfig->src_addr; in atc_prep_slave_sg()
1249 struct dma_slave_config *sconfig = &atchan->dma_sconfig; in atc_dma_cyclic_fill_desc() local
1253 ctrla = ATC_SCSIZE(sconfig->src_maxburst) in atc_dma_cyclic_fill_desc()
1254 | ATC_DCSIZE(sconfig->dst_maxburst) in atc_dma_cyclic_fill_desc()
[all …]
Dsun6i-dma.c579 struct dma_slave_config *sconfig, in set_config() argument
587 src_addr_width = sconfig->src_addr_width; in set_config()
588 dst_addr_width = sconfig->dst_addr_width; in set_config()
589 src_maxburst = sconfig->src_maxburst; in set_config()
590 dst_maxburst = sconfig->dst_maxburst; in set_config()
689 struct dma_slave_config *sconfig = &vchan->cfg; in sun6i_dma_prep_slave_sg() local
700 ret = set_config(sdev, sconfig, dir, &lli_cfg); in sun6i_dma_prep_slave_sg()
720 v_lli->dst = sconfig->dst_addr; in sun6i_dma_prep_slave_sg()
728 &sconfig->dst_addr, &sg_dma_address(sg), in sun6i_dma_prep_slave_sg()
732 v_lli->src = sconfig->src_addr; in sun6i_dma_prep_slave_sg()
[all …]
Dowl-dma.c384 struct dma_slave_config *sconfig, in owl_dma_cfg_lli() argument
408 if (sconfig->dst_addr_width == DMA_SLAVE_BUSWIDTH_1_BYTE) in owl_dma_cfg_lli()
421 if (sconfig->src_addr_width == DMA_SLAVE_BUSWIDTH_1_BYTE) in owl_dma_cfg_lli()
923 struct dma_slave_config *sconfig = &vchan->cfg; in owl_dma_prep_slave_sg() local
955 dst = sconfig->dst_addr; in owl_dma_prep_slave_sg()
957 src = sconfig->src_addr; in owl_dma_prep_slave_sg()
961 ret = owl_dma_cfg_lli(vchan, lli, src, dst, len, dir, sconfig, in owl_dma_prep_slave_sg()
988 struct dma_slave_config *sconfig = &vchan->cfg; in owl_prep_dma_cyclic() local
1011 dst = sconfig->dst_addr; in owl_prep_dma_cyclic()
1013 src = sconfig->src_addr; in owl_prep_dma_cyclic()
[all …]
Dat_xdmac.c229 struct dma_slave_config sconfig; member
609 csize = ffs(atchan->sconfig.src_maxburst) - 1; in at_xdmac_compute_chan_conf()
615 dwidth = ffs(atchan->sconfig.src_addr_width) - 1; in at_xdmac_compute_chan_conf()
634 csize = ffs(atchan->sconfig.dst_maxburst) - 1; in at_xdmac_compute_chan_conf()
640 dwidth = ffs(atchan->sconfig.dst_addr_width) - 1; in at_xdmac_compute_chan_conf()
658 static int at_xdmac_check_slave_config(struct dma_slave_config *sconfig) in at_xdmac_check_slave_config() argument
660 if ((sconfig->src_maxburst > AT_XDMAC_MAX_CSIZE) in at_xdmac_check_slave_config()
661 || (sconfig->dst_maxburst > AT_XDMAC_MAX_CSIZE)) in at_xdmac_check_slave_config()
664 if ((sconfig->src_addr_width > AT_XDMAC_MAX_DWIDTH) in at_xdmac_check_slave_config()
665 || (sconfig->dst_addr_width > AT_XDMAC_MAX_DWIDTH)) in at_xdmac_check_slave_config()
[all …]
Dtegra210-adma.c138 struct dma_slave_config sconfig; member
212 struct dma_slave_config *sconfig) in tegra_adma_slave_config() argument
216 memcpy(&tdc->sconfig, sconfig, sizeof(*sconfig)); in tegra_adma_slave_config()
571 burst_size = tdc->sconfig.dst_maxburst; in tegra_adma_set_xfer_params()
581 burst_size = tdc->sconfig.src_maxburst; in tegra_adma_set_xfer_params()
Dtegra20-apb-dma.c336 struct dma_slave_config *sconfig) in tegra_dma_slave_config() argument
345 memcpy(&tdc->dma_sconfig, sconfig, sizeof(*sconfig)); in tegra_dma_slave_config()
347 sconfig->device_fc) { in tegra_dma_slave_config()
348 if (sconfig->slave_id > TEGRA_APBDMA_CSR_REQ_SEL_MASK) in tegra_dma_slave_config()
350 tdc->slave_id = sconfig->slave_id; in tegra_dma_slave_config()
/Linux-v5.15/sound/soc/codecs/
Dwcd938x-sdw.c111 wcd->sconfig.ch_count = 1; in wcd938x_sdw_hw_params()
120 wcd->sconfig.ch_count++; in wcd938x_sdw_hw_params()
126 wcd->sconfig.bps = 1; in wcd938x_sdw_hw_params()
127 wcd->sconfig.frame_rate = params_rate(params); in wcd938x_sdw_hw_params()
129 wcd->sconfig.direction = SDW_DATA_DIR_TX; in wcd938x_sdw_hw_params()
131 wcd->sconfig.direction = SDW_DATA_DIR_RX; in wcd938x_sdw_hw_params()
133 wcd->sconfig.type = SDW_STREAM_PCM; in wcd938x_sdw_hw_params()
135 return sdw_stream_add_slave(wcd->sdev, &wcd->sconfig, in wcd938x_sdw_hw_params()
Dwsa881x.c676 struct sdw_stream_config sconfig; member
978 return sdw_stream_add_slave(wsa881x->slave, &wsa881x->sconfig, in wsa881x_hw_params()
1111 wsa881x->sconfig.ch_count = 1; in wsa881x_probe()
1112 wsa881x->sconfig.bps = 1; in wsa881x_probe()
1113 wsa881x->sconfig.frame_rate = 48000; in wsa881x_probe()
1114 wsa881x->sconfig.direction = SDW_DATA_DIR_RX; in wsa881x_probe()
1115 wsa881x->sconfig.type = SDW_STREAM_PDM; in wsa881x_probe()
Dwcd9335.c300 struct slim_stream_config sconfig; member
1713 struct slim_stream_config *cfg = &dai_data->sconfig; in wcd9335_slim_set_hw_params()
1885 wcd->dai[dai->id].sconfig.bps = params_width(params); in wcd9335_hw_params()
1932 wcd->dai[dai->id].sconfig.bps = params_width(params); in wcd9335_hw_params()
1946 wcd->dai[dai->id].sconfig.rate = params_rate(params); in wcd9335_hw_params()
1967 cfg = &dai_data->sconfig; in wcd9335_trigger()
3031 kfree(dai->sconfig.chs); in wcd9335_codec_enable_slim()
Dwcd938x.h656 struct sdw_stream_config sconfig; member
Dwcd934x.c514 struct slim_stream_config sconfig; member
1744 struct slim_stream_config *cfg = &dai_data->sconfig; in wcd934x_slim_set_hw_params()
1837 wcd->dai[dai->id].sconfig.bps = params_width(params); in wcd934x_hw_params()
1884 wcd->dai[dai->id].sconfig.bps = params_width(params); in wcd934x_hw_params()
1898 wcd->dai[dai->id].sconfig.rate = params_rate(params); in wcd934x_hw_params()
1914 kfree(dai_data->sconfig.chs); in wcd934x_hw_free()
1934 cfg = &dai_data->sconfig; in wcd934x_trigger()
/Linux-v5.15/drivers/dma/dw/
Ddw.c69 struct dma_slave_config *sconfig = &dwc->dma_sconfig; in dw_dma_prepare_ctllo() local
70 u8 smsize = (dwc->direction == DMA_DEV_TO_MEM) ? sconfig->src_maxburst : 0; in dw_dma_prepare_ctllo()
71 u8 dmsize = (dwc->direction == DMA_MEM_TO_DEV) ? sconfig->dst_maxburst : 0; in dw_dma_prepare_ctllo()
Didma32.c204 struct dma_slave_config *sconfig = &dwc->dma_sconfig; in idma32_prepare_ctllo() local
205 u8 smsize = (dwc->direction == DMA_DEV_TO_MEM) ? sconfig->src_maxburst : 0; in idma32_prepare_ctllo()
206 u8 dmsize = (dwc->direction == DMA_MEM_TO_DEV) ? sconfig->dst_maxburst : 0; in idma32_prepare_ctllo()
Dcore.c623 struct dma_slave_config *sconfig = &dwc->dma_sconfig; in dwc_prep_slave_sg() local
648 reg_width = __ffs(sconfig->dst_addr_width); in dwc_prep_slave_sg()
649 reg = sconfig->dst_addr; in dwc_prep_slave_sg()
655 ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_M2P) : in dwc_prep_slave_sg()
698 reg_width = __ffs(sconfig->src_addr_width); in dwc_prep_slave_sg()
699 reg = sconfig->src_addr; in dwc_prep_slave_sg()
705 ctllo |= sconfig->device_fc ? DWC_CTLL_FC(DW_DMA_FC_P_P2M) : in dwc_prep_slave_sg()
786 static int dwc_config(struct dma_chan *chan, struct dma_slave_config *sconfig) in dwc_config() argument
791 memcpy(&dwc->dma_sconfig, sconfig, sizeof(*sconfig)); in dwc_config()
/Linux-v5.15/drivers/soundwire/
Dqcom.c896 struct sdw_stream_config sconfig; in qcom_swrm_stream_alloc_ports() local
939 sconfig.direction = SDW_DATA_DIR_TX; in qcom_swrm_stream_alloc_ports()
941 sconfig.direction = SDW_DATA_DIR_RX; in qcom_swrm_stream_alloc_ports()
944 sconfig.ch_count = 1; in qcom_swrm_stream_alloc_ports()
945 sconfig.frame_rate = params_rate(params); in qcom_swrm_stream_alloc_ports()
946 sconfig.type = stream->type; in qcom_swrm_stream_alloc_ports()
947 sconfig.bps = 1; in qcom_swrm_stream_alloc_ports()
948 sdw_stream_add_master(&ctrl->bus, &sconfig, pconfig, in qcom_swrm_stream_alloc_ports()
Dintel.c839 struct sdw_stream_config sconfig; in intel_hw_params() local
885 sconfig.direction = dir; in intel_hw_params()
886 sconfig.ch_count = ch; in intel_hw_params()
887 sconfig.frame_rate = params_rate(params); in intel_hw_params()
888 sconfig.type = dma->stream_type; in intel_hw_params()
891 sconfig.frame_rate *= 50; in intel_hw_params()
892 sconfig.bps = 1; in intel_hw_params()
894 sconfig.bps = snd_pcm_format_width(params_format(params)); in intel_hw_params()
907 ret = sdw_stream_add_master(&cdns->bus, &sconfig, in intel_hw_params()