Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dmaengine: dw-axi-dmac: Add Intel KeemBay DMA register fields

Add support for Intel KeemBay DMA registers. These registers are required
to run data transfer between device to memory and memory to device on Intel
KeemBay SoC.

Signed-off-by: Sia Jee Heng <jee.heng.sia@intel.com>
Tested-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Link: https://lore.kernel.org/r/20210125013255.25799-12-jee.heng.sia@intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Sia Jee Heng and committed by
Vinod Koul
8fb1dae0 0a35c9a0

+14
+14
drivers/dma/dw-axi-dmac/dw-axi-dmac.h
··· 63 63 struct device *dev; 64 64 int irq; 65 65 void __iomem *regs; 66 + void __iomem *apb_regs; 66 67 struct clk *core_clk; 67 68 struct clk *cfgr_clk; 68 69 struct dw_axi_dma *dw; ··· 170 169 #define CH_INTSIGNAL_ENA 0x090 /* R/W Chan Interrupt Signal Enable */ 171 170 #define CH_INTCLEAR 0x098 /* W Chan Interrupt Clear */ 172 171 172 + /* These Apb registers are used by Intel KeemBay SoC */ 173 + #define DMAC_APB_CFG 0x000 /* DMAC Apb Configuration Register */ 174 + #define DMAC_APB_STAT 0x004 /* DMAC Apb Status Register */ 175 + #define DMAC_APB_DEBUG_STAT_0 0x008 /* DMAC Apb Debug Status Register 0 */ 176 + #define DMAC_APB_DEBUG_STAT_1 0x00C /* DMAC Apb Debug Status Register 1 */ 177 + #define DMAC_APB_HW_HS_SEL_0 0x010 /* DMAC Apb HW HS register 0 */ 178 + #define DMAC_APB_HW_HS_SEL_1 0x014 /* DMAC Apb HW HS register 1 */ 179 + #define DMAC_APB_LPI 0x018 /* DMAC Apb Low Power Interface Reg */ 180 + #define DMAC_APB_BYTE_WR_CH_EN 0x01C /* DMAC Apb Byte Write Enable */ 181 + #define DMAC_APB_HALFWORD_WR_CH_EN 0x020 /* DMAC Halfword write enables */ 182 + 183 + #define UNUSED_CHANNEL 0x3F /* Set unused DMA channel to 0x3F */ 184 + #define MAX_BLOCK_SIZE 0x1000 /* 1024 blocks * 4 bytes data width */ 173 185 174 186 /* DMAC_CFG */ 175 187 #define DMAC_EN_POS 0