Searched refs:dw_write (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/drivers/dma/ |
D | dma_dw_common.c | 52 dw_write(dev_cfg->base, DW_CLEAR_ERR, status_err); in dw_dma_isr() 56 dw_write(dev_cfg->base, DW_CLEAR_BLOCK, status_block); in dw_dma_isr() 57 dw_write(dev_cfg->base, DW_CLEAR_TFR, status_tfr); in dw_dma_isr() 416 dw_write(dev_cfg->base, DW_MASK_BLOCK, DW_CHAN_UNMASK(channel)); in dw_dma_config() 420 dw_write(dev_cfg->base, DW_MASK_TFR, DW_CHAN_UNMASK(channel)); in dw_dma_config() 423 dw_write(dev_cfg->base, DW_MASK_ERR, DW_CHAN_UNMASK(channel)); in dw_dma_config() 428 dw_write(dev_cfg->base, DW_CLEAR_TFR, 0x1 << channel); in dw_dma_config() 429 dw_write(dev_cfg->base, DW_CLEAR_BLOCK, 0x1 << channel); in dw_dma_config() 430 dw_write(dev_cfg->base, DW_CLEAR_SRC_TRAN, 0x1 << channel); in dw_dma_config() 431 dw_write(dev_cfg->base, DW_CLEAR_DST_TRAN, 0x1 << channel); in dw_dma_config() [all …]
|
D | dma_intel_adsp_gpdma.c | 95 dw_write(dev_cfg->shim, GPDMA_CHLLPC_OFFSET(channel), in intel_adsp_gpdma_llp_config() 109 dw_write(dev_cfg->shim, GPDMA_CHLLPC_OFFSET(channel), in intel_adsp_gpdma_llp_enable() 123 dw_write(dev_cfg->shim, GPDMA_CHLLPC_OFFSET(channel), in intel_adsp_gpdma_llp_disable()
|
D | dma_dw_common.h | 261 static ALWAYS_INLINE void dw_write(uintptr_t dma_base, uint32_t reg, uint32_t value) in dw_write() function
|
/Zephyr-latest/drivers/gpio/ |
D | gpio_dw.c | 43 static inline void dw_write(uint32_t base_addr, uint32_t offset, in dw_write() function 64 static inline void dw_write(uint32_t base_addr, uint32_t offset, in dw_write() function 216 dw_write(base_addr, PORTA_EOI, BIT(pin)); in gpio_dw_pin_interrupt_configure() 327 dw_write(base_addr, data_port, pins); in gpio_dw_port_set_masked_raw() 342 dw_write(base_addr, data_port, pins); in gpio_dw_port_set_bits_raw() 358 dw_write(base_addr, data_port, pins); in gpio_dw_port_clear_bits_raw() 373 dw_write(base_addr, data_port, pins); in gpio_dw_port_toggle_bits() 396 dw_write(base_addr, PORTA_EOI, int_status); in gpio_dw_isr() 427 dw_write(base_addr, INTMASK, ~(0)); in gpio_dw_initialize() 428 dw_write(base_addr, INTEN, 0); in gpio_dw_initialize() [all …]
|