Home
last modified time | relevance | path

Searched refs:cfg_in (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/media/i2c/cx25840/
H A Dcx25840-core.c2227 #define CX25840_VCONFIG_OPTION(state, cfg_in, opt_msk) \ argument
2229 if ((cfg_in) & (opt_msk)) { \
2231 (state)->vid_config |= (cfg_in) & (opt_msk); \
2236 static void cx25840_vconfig_add(struct cx25840_state *state, u32 cfg_in) in cx25840_vconfig_add() argument
2238 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_FMT_MASK); in cx25840_vconfig_add()
2239 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_RES_MASK); in cx25840_vconfig_add()
2240 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_VBIRAW_MASK); in cx25840_vconfig_add()
2241 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_ANCDATA_MASK); in cx25840_vconfig_add()
2242 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_TASKBIT_MASK); in cx25840_vconfig_add()
2243 CX25840_VCONFIG_OPTION(state, cfg_in, CX25840_VCONFIG_ACTIVE_MASK); in cx25840_vconfig_add()
[all …]
/linux/drivers/crypto/starfive/
H A Djh7110-hash.c113 cryp->cfg_in.src_addr_width = DMA_SLAVE_BUSWIDTH_16_BYTES; in starfive_hash_dma_init()
114 cryp->cfg_in.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in starfive_hash_dma_init()
115 cryp->cfg_in.src_maxburst = cryp->dma_maxburst; in starfive_hash_dma_init()
116 cryp->cfg_in.dst_maxburst = cryp->dma_maxburst; in starfive_hash_dma_init()
117 cryp->cfg_in.dst_addr = cryp->phys_base + STARFIVE_ALG_FIFO_OFFSET; in starfive_hash_dma_init()
119 dmaengine_slave_config(cryp->tx, &cryp->cfg_in); in starfive_hash_dma_init()
H A Djh7110-aes.c416 cryp->cfg_in.direction = DMA_MEM_TO_DEV; in starfive_aes_dma_init()
417 cryp->cfg_in.src_addr_width = DMA_SLAVE_BUSWIDTH_16_BYTES; in starfive_aes_dma_init()
418 cryp->cfg_in.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in starfive_aes_dma_init()
419 cryp->cfg_in.src_maxburst = cryp->dma_maxburst; in starfive_aes_dma_init()
420 cryp->cfg_in.dst_maxburst = cryp->dma_maxburst; in starfive_aes_dma_init()
421 cryp->cfg_in.dst_addr = cryp->phys_base + STARFIVE_ALG_FIFO_OFFSET; in starfive_aes_dma_init()
423 dmaengine_slave_config(cryp->tx, &cryp->cfg_in); in starfive_aes_dma_init()
H A Djh7110-cryp.h189 struct dma_slave_config cfg_in; member