1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * DMA driver header for STMicroelectronics STi FDMA controller
5 * Copyright (C) 2014 STMicroelectronics
7 * Author: Ludovic Barre <Ludovic.barre@st.com>
9 #ifndef __DMA_ST_FDMA_H
10 #define __DMA_ST_FDMA_H
12 #include <linux/dmaengine.h>
13 #include <linux/dmapool.h>
15 #include <linux/remoteproc/st_slim_rproc.h>
18 #define ST_FDMA_NR_DREQS 32
19 #define FW_NAME_SIZE 30
20 #define DRIVER_NAME "st-fdma"
23 * struct st_fdma_generic_node - Free running/paced generic node
25 * @length: Length in bytes of a line in a 2D mem to mem
26 * @sstride: Stride, in bytes, between source lines in a 2D data move
27 * @dstride: Stride, in bytes, between destination lines in a 2D data move
29 struct st_fdma_generic_node {
36 * struct st_fdma_hw_node - Node structure used by fdma hw
38 * @next: Pointer to next node
39 * @control: Transfer Control Parameters
40 * @nbytes: Number of Bytes to read
41 * @saddr: Source address
42 * @daddr: Destination address
44 * @generic: generic node for free running/paced transfert type
45 * 2 others transfert type are possible, but not yet implemented
47 * The NODE structures must be aligned to a 32 byte boundary
49 struct st_fdma_hw_node {
56 struct st_fdma_generic_node generic;
61 * node control parameters
63 #define FDMA_NODE_CTRL_REQ_MAP_MASK GENMASK(4, 0)
64 #define FDMA_NODE_CTRL_REQ_MAP_FREE_RUN 0x0
65 #define FDMA_NODE_CTRL_REQ_MAP_DREQ(n) ((n)&FDMA_NODE_CTRL_REQ_MAP_MASK)
66 #define FDMA_NODE_CTRL_REQ_MAP_EXT FDMA_NODE_CTRL_REQ_MAP_MASK
67 #define FDMA_NODE_CTRL_SRC_MASK GENMASK(6, 5)
68 #define FDMA_NODE_CTRL_SRC_STATIC BIT(5)
69 #define FDMA_NODE_CTRL_SRC_INCR BIT(6)
70 #define FDMA_NODE_CTRL_DST_MASK GENMASK(8, 7)
71 #define FDMA_NODE_CTRL_DST_STATIC BIT(7)
72 #define FDMA_NODE_CTRL_DST_INCR BIT(8)
73 #define FDMA_NODE_CTRL_SECURE BIT(15)
74 #define FDMA_NODE_CTRL_PAUSE_EON BIT(30)
75 #define FDMA_NODE_CTRL_INT_EON BIT(31)
78 * struct st_fdma_sw_node - descriptor structure for link list
80 * @pdesc: Physical address of desc
81 * @node: link used for putting this into a channel queue
83 struct st_fdma_sw_node {
85 struct st_fdma_hw_node *desc;
90 struct st_fdma_driverdata {
96 struct virt_dma_desc vdesc;
97 struct st_fdma_chan *fchan;
100 struct st_fdma_sw_node node[];
104 ST_FDMA_TYPE_FREE_RUN,
109 struct device_node *of_node;
110 enum st_fdma_type type;
112 enum dma_transfer_direction dir;
113 int req_line; /* request line */
114 long req_ctrl; /* Request control */
117 struct st_fdma_chan {
118 struct st_fdma_dev *fdev;
119 struct dma_pool *node_pool;
120 struct dma_slave_config scfg;
121 struct st_fdma_cfg cfg;
125 struct virt_dma_chan vchan;
126 struct st_fdma_desc *fdesc;
127 enum dma_status status;
132 const struct st_fdma_driverdata *drvdata;
133 struct dma_device dma_device;
135 struct st_slim_rproc *slim_rproc;
139 struct st_fdma_chan *chans;
141 spinlock_t dreq_lock;
142 unsigned long dreq_mask;
145 char fw_name[FW_NAME_SIZE];
148 /* Peripheral Registers*/
150 #define FDMA_CMD_STA_OFST 0xFC0
151 #define FDMA_CMD_SET_OFST 0xFC4
152 #define FDMA_CMD_CLR_OFST 0xFC8
153 #define FDMA_CMD_MASK_OFST 0xFCC
154 #define FDMA_CMD_START(ch) (0x1 << (ch << 1))
155 #define FDMA_CMD_PAUSE(ch) (0x2 << (ch << 1))
156 #define FDMA_CMD_FLUSH(ch) (0x3 << (ch << 1))
158 #define FDMA_INT_STA_OFST 0xFD0
159 #define FDMA_INT_STA_CH 0x1
160 #define FDMA_INT_STA_ERR 0x2
162 #define FDMA_INT_SET_OFST 0xFD4
163 #define FDMA_INT_CLR_OFST 0xFD8
164 #define FDMA_INT_MASK_OFST 0xFDC
166 #define fdma_read(fdev, name) \
167 readl((fdev)->slim_rproc->peri + name)
169 #define fdma_write(fdev, val, name) \
170 writel((val), (fdev)->slim_rproc->peri + name)
172 /* fchan interface (dmem) */
173 #define FDMA_CH_CMD_OFST 0x200
174 #define FDMA_CH_CMD_STA_MASK GENMASK(1, 0)
175 #define FDMA_CH_CMD_STA_IDLE (0x0)
176 #define FDMA_CH_CMD_STA_START (0x1)
177 #define FDMA_CH_CMD_STA_RUNNING (0x2)
178 #define FDMA_CH_CMD_STA_PAUSED (0x3)
179 #define FDMA_CH_CMD_ERR_MASK GENMASK(4, 2)
180 #define FDMA_CH_CMD_ERR_INT (0x0 << 2)
181 #define FDMA_CH_CMD_ERR_NAND (0x1 << 2)
182 #define FDMA_CH_CMD_ERR_MCHI (0x2 << 2)
183 #define FDMA_CH_CMD_DATA_MASK GENMASK(31, 5)
184 #define fchan_read(fchan, name) \
185 readl((fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
186 + (fchan)->vchan.chan.chan_id * 0x4 \
189 #define fchan_write(fchan, val, name) \
190 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
191 + (fchan)->vchan.chan.chan_id * 0x4 \
195 #define FDMA_REQ_CTRL_OFST 0x240
196 #define dreq_write(fchan, val, name) \
197 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
198 + fchan->dreq_line * 0x04 \
201 #define FDMA_NODE_SZ 128
202 #define FDMA_PTRN_OFST 0x800
203 #define FDMA_CNTN_OFST 0x808
204 #define FDMA_SADDRN_OFST 0x80c
205 #define FDMA_DADDRN_OFST 0x810
206 #define fnode_read(fchan, name) \
207 readl((fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
208 + (fchan)->vchan.chan.chan_id * FDMA_NODE_SZ \
211 #define fnode_write(fchan, val, name) \
212 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
213 + (fchan)->vchan.chan.chan_id * FDMA_NODE_SZ \
217 * request control bits
219 #define FDMA_REQ_CTRL_NUM_OPS_MASK GENMASK(31, 24)
220 #define FDMA_REQ_CTRL_NUM_OPS(n) (FDMA_REQ_CTRL_NUM_OPS_MASK & \
222 #define FDMA_REQ_CTRL_INITIATOR_MASK BIT(22)
223 #define FDMA_REQ_CTRL_INIT0 (0x0 << 22)
224 #define FDMA_REQ_CTRL_INIT1 (0x1 << 22)
225 #define FDMA_REQ_CTRL_INC_ADDR_ON BIT(21)
226 #define FDMA_REQ_CTRL_DATA_SWAP_ON BIT(17)
227 #define FDMA_REQ_CTRL_WNR BIT(14)
228 #define FDMA_REQ_CTRL_OPCODE_MASK GENMASK(7, 4)
229 #define FDMA_REQ_CTRL_OPCODE_LD_ST1 (0x0 << 4)
230 #define FDMA_REQ_CTRL_OPCODE_LD_ST2 (0x1 << 4)
231 #define FDMA_REQ_CTRL_OPCODE_LD_ST4 (0x2 << 4)
232 #define FDMA_REQ_CTRL_OPCODE_LD_ST8 (0x3 << 4)
233 #define FDMA_REQ_CTRL_OPCODE_LD_ST16 (0x4 << 4)
234 #define FDMA_REQ_CTRL_OPCODE_LD_ST32 (0x5 << 4)
235 #define FDMA_REQ_CTRL_OPCODE_LD_ST64 (0x6 << 4)
236 #define FDMA_REQ_CTRL_HOLDOFF_MASK GENMASK(2, 0)
237 #define FDMA_REQ_CTRL_HOLDOFF(n) ((n) & FDMA_REQ_CTRL_HOLDOFF_MASK)
239 /* bits used by client to configure request control */
240 #define FDMA_REQ_CTRL_CFG_MASK (FDMA_REQ_CTRL_HOLDOFF_MASK | \
241 FDMA_REQ_CTRL_DATA_SWAP_ON | \
242 FDMA_REQ_CTRL_INC_ADDR_ON | \
243 FDMA_REQ_CTRL_INITIATOR_MASK)
245 #endif /* __DMA_ST_FDMA_H */