Lines Matching refs:dma_conf
97 struct dma_slave_config dma_conf; member
328 dd->dma_lch_in.dma_conf.dst_addr_width = in atmel_aes_crypt_dma()
330 dd->dma_lch_out.dma_conf.src_addr_width = in atmel_aes_crypt_dma()
333 dd->dma_lch_in.dma_conf.dst_addr_width = in atmel_aes_crypt_dma()
335 dd->dma_lch_out.dma_conf.src_addr_width = in atmel_aes_crypt_dma()
338 dd->dma_lch_in.dma_conf.dst_addr_width = in atmel_aes_crypt_dma()
340 dd->dma_lch_out.dma_conf.src_addr_width = in atmel_aes_crypt_dma()
346 dd->dma_lch_in.dma_conf.src_maxburst = 1; in atmel_aes_crypt_dma()
347 dd->dma_lch_in.dma_conf.dst_maxburst = 1; in atmel_aes_crypt_dma()
348 dd->dma_lch_out.dma_conf.src_maxburst = 1; in atmel_aes_crypt_dma()
349 dd->dma_lch_out.dma_conf.dst_maxburst = 1; in atmel_aes_crypt_dma()
351 dd->dma_lch_in.dma_conf.src_maxburst = dd->caps.max_burst_size; in atmel_aes_crypt_dma()
352 dd->dma_lch_in.dma_conf.dst_maxburst = dd->caps.max_burst_size; in atmel_aes_crypt_dma()
353 dd->dma_lch_out.dma_conf.src_maxburst = dd->caps.max_burst_size; in atmel_aes_crypt_dma()
354 dd->dma_lch_out.dma_conf.dst_maxburst = dd->caps.max_burst_size; in atmel_aes_crypt_dma()
357 dmaengine_slave_config(dd->dma_lch_in.chan, &dd->dma_lch_in.dma_conf); in atmel_aes_crypt_dma()
358 dmaengine_slave_config(dd->dma_lch_out.chan, &dd->dma_lch_out.dma_conf); in atmel_aes_crypt_dma()
781 dd->dma_lch_in.dma_conf.direction = DMA_MEM_TO_DEV; in atmel_aes_dma_init()
782 dd->dma_lch_in.dma_conf.dst_addr = dd->phys_base + in atmel_aes_dma_init()
784 dd->dma_lch_in.dma_conf.src_maxburst = dd->caps.max_burst_size; in atmel_aes_dma_init()
785 dd->dma_lch_in.dma_conf.src_addr_width = in atmel_aes_dma_init()
787 dd->dma_lch_in.dma_conf.dst_maxburst = dd->caps.max_burst_size; in atmel_aes_dma_init()
788 dd->dma_lch_in.dma_conf.dst_addr_width = in atmel_aes_dma_init()
790 dd->dma_lch_in.dma_conf.device_fc = false; in atmel_aes_dma_init()
797 dd->dma_lch_out.dma_conf.direction = DMA_DEV_TO_MEM; in atmel_aes_dma_init()
798 dd->dma_lch_out.dma_conf.src_addr = dd->phys_base + in atmel_aes_dma_init()
800 dd->dma_lch_out.dma_conf.src_maxburst = dd->caps.max_burst_size; in atmel_aes_dma_init()
801 dd->dma_lch_out.dma_conf.src_addr_width = in atmel_aes_dma_init()
803 dd->dma_lch_out.dma_conf.dst_maxburst = dd->caps.max_burst_size; in atmel_aes_dma_init()
804 dd->dma_lch_out.dma_conf.dst_addr_width = in atmel_aes_dma_init()
806 dd->dma_lch_out.dma_conf.device_fc = false; in atmel_aes_dma_init()