2 * DMA driver header for STMicroelectronics STi FDMA controller
4 * Copyright (C) 2014 STMicroelectronics
6 * Author: Ludovic Barre <Ludovic.barre@st.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 #ifndef __DMA_ST_FDMA_H
14 #define __DMA_ST_FDMA_H
16 #include <linux/dmaengine.h>
17 #include <linux/dmapool.h>
19 #include <linux/remoteproc/st_slim_rproc.h>
22 #define ST_FDMA_NR_DREQS 32
23 #define FW_NAME_SIZE 30
24 #define DRIVER_NAME "st-fdma"
27 * struct st_fdma_generic_node - Free running/paced generic node
29 * @length: Length in bytes of a line in a 2D mem to mem
30 * @sstride: Stride, in bytes, between source lines in a 2D data move
31 * @dstride: Stride, in bytes, between destination lines in a 2D data move
33 struct st_fdma_generic_node
{
40 * struct st_fdma_hw_node - Node structure used by fdma hw
42 * @next: Pointer to next node
43 * @control: Transfer Control Parameters
44 * @nbytes: Number of Bytes to read
45 * @saddr: Source address
46 * @daddr: Destination address
48 * @generic: generic node for free running/paced transfert type
49 * 2 others transfert type are possible, but not yet implemented
51 * The NODE structures must be aligned to a 32 byte boundary
53 struct st_fdma_hw_node
{
60 struct st_fdma_generic_node generic
;
65 * node control parameters
67 #define FDMA_NODE_CTRL_REQ_MAP_MASK GENMASK(4, 0)
68 #define FDMA_NODE_CTRL_REQ_MAP_FREE_RUN 0x0
69 #define FDMA_NODE_CTRL_REQ_MAP_DREQ(n) ((n)&FDMA_NODE_CTRL_REQ_MAP_MASK)
70 #define FDMA_NODE_CTRL_REQ_MAP_EXT FDMA_NODE_CTRL_REQ_MAP_MASK
71 #define FDMA_NODE_CTRL_SRC_MASK GENMASK(6, 5)
72 #define FDMA_NODE_CTRL_SRC_STATIC BIT(5)
73 #define FDMA_NODE_CTRL_SRC_INCR BIT(6)
74 #define FDMA_NODE_CTRL_DST_MASK GENMASK(8, 7)
75 #define FDMA_NODE_CTRL_DST_STATIC BIT(7)
76 #define FDMA_NODE_CTRL_DST_INCR BIT(8)
77 #define FDMA_NODE_CTRL_SECURE BIT(15)
78 #define FDMA_NODE_CTRL_PAUSE_EON BIT(30)
79 #define FDMA_NODE_CTRL_INT_EON BIT(31)
82 * struct st_fdma_sw_node - descriptor structure for link list
84 * @pdesc: Physical address of desc
85 * @node: link used for putting this into a channel queue
87 struct st_fdma_sw_node
{
89 struct st_fdma_hw_node
*desc
;
94 struct st_fdma_driverdata
{
100 struct virt_dma_desc vdesc
;
101 struct st_fdma_chan
*fchan
;
103 unsigned int n_nodes
;
104 struct st_fdma_sw_node node
[];
108 ST_FDMA_TYPE_FREE_RUN
,
113 struct device_node
*of_node
;
114 enum st_fdma_type type
;
116 enum dma_transfer_direction dir
;
117 int req_line
; /* request line */
118 long req_ctrl
; /* Request control */
121 struct st_fdma_chan
{
122 struct st_fdma_dev
*fdev
;
123 struct dma_pool
*node_pool
;
124 struct dma_slave_config scfg
;
125 struct st_fdma_cfg cfg
;
129 struct virt_dma_chan vchan
;
130 struct st_fdma_desc
*fdesc
;
131 enum dma_status status
;
136 const struct st_fdma_driverdata
*drvdata
;
137 struct dma_device dma_device
;
139 struct st_slim_rproc
*slim_rproc
;
143 struct st_fdma_chan
*chans
;
145 spinlock_t dreq_lock
;
146 unsigned long dreq_mask
;
149 char fw_name
[FW_NAME_SIZE
];
152 /* Peripheral Registers*/
154 #define FDMA_CMD_STA_OFST 0xFC0
155 #define FDMA_CMD_SET_OFST 0xFC4
156 #define FDMA_CMD_CLR_OFST 0xFC8
157 #define FDMA_CMD_MASK_OFST 0xFCC
158 #define FDMA_CMD_START(ch) (0x1 << (ch << 1))
159 #define FDMA_CMD_PAUSE(ch) (0x2 << (ch << 1))
160 #define FDMA_CMD_FLUSH(ch) (0x3 << (ch << 1))
162 #define FDMA_INT_STA_OFST 0xFD0
163 #define FDMA_INT_STA_CH 0x1
164 #define FDMA_INT_STA_ERR 0x2
166 #define FDMA_INT_SET_OFST 0xFD4
167 #define FDMA_INT_CLR_OFST 0xFD8
168 #define FDMA_INT_MASK_OFST 0xFDC
170 #define fdma_read(fdev, name) \
171 readl((fdev)->slim_rproc->peri + name)
173 #define fdma_write(fdev, val, name) \
174 writel((val), (fdev)->slim_rproc->peri + name)
176 /* fchan interface (dmem) */
177 #define FDMA_CH_CMD_OFST 0x200
178 #define FDMA_CH_CMD_STA_MASK GENMASK(1, 0)
179 #define FDMA_CH_CMD_STA_IDLE (0x0)
180 #define FDMA_CH_CMD_STA_START (0x1)
181 #define FDMA_CH_CMD_STA_RUNNING (0x2)
182 #define FDMA_CH_CMD_STA_PAUSED (0x3)
183 #define FDMA_CH_CMD_ERR_MASK GENMASK(4, 2)
184 #define FDMA_CH_CMD_ERR_INT (0x0 << 2)
185 #define FDMA_CH_CMD_ERR_NAND (0x1 << 2)
186 #define FDMA_CH_CMD_ERR_MCHI (0x2 << 2)
187 #define FDMA_CH_CMD_DATA_MASK GENMASK(31, 5)
188 #define fchan_read(fchan, name) \
189 readl((fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
190 + (fchan)->vchan.chan.chan_id * 0x4 \
193 #define fchan_write(fchan, val, name) \
194 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
195 + (fchan)->vchan.chan.chan_id * 0x4 \
199 #define FDMA_REQ_CTRL_OFST 0x240
200 #define dreq_write(fchan, val, name) \
201 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
202 + fchan->dreq_line * 0x04 \
205 #define FDMA_NODE_SZ 128
206 #define FDMA_PTRN_OFST 0x800
207 #define FDMA_CNTN_OFST 0x808
208 #define FDMA_SADDRN_OFST 0x80c
209 #define FDMA_DADDRN_OFST 0x810
210 #define fnode_read(fchan, name) \
211 readl((fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
212 + (fchan)->vchan.chan.chan_id * FDMA_NODE_SZ \
215 #define fnode_write(fchan, val, name) \
216 writel((val), (fchan)->fdev->slim_rproc->mem[ST_SLIM_DMEM].cpu_addr \
217 + (fchan)->vchan.chan.chan_id * FDMA_NODE_SZ \
221 * request control bits
223 #define FDMA_REQ_CTRL_NUM_OPS_MASK GENMASK(31, 24)
224 #define FDMA_REQ_CTRL_NUM_OPS(n) (FDMA_REQ_CTRL_NUM_OPS_MASK & \
226 #define FDMA_REQ_CTRL_INITIATOR_MASK BIT(22)
227 #define FDMA_REQ_CTRL_INIT0 (0x0 << 22)
228 #define FDMA_REQ_CTRL_INIT1 (0x1 << 22)
229 #define FDMA_REQ_CTRL_INC_ADDR_ON BIT(21)
230 #define FDMA_REQ_CTRL_DATA_SWAP_ON BIT(17)
231 #define FDMA_REQ_CTRL_WNR BIT(14)
232 #define FDMA_REQ_CTRL_OPCODE_MASK GENMASK(7, 4)
233 #define FDMA_REQ_CTRL_OPCODE_LD_ST1 (0x0 << 4)
234 #define FDMA_REQ_CTRL_OPCODE_LD_ST2 (0x1 << 4)
235 #define FDMA_REQ_CTRL_OPCODE_LD_ST4 (0x2 << 4)
236 #define FDMA_REQ_CTRL_OPCODE_LD_ST8 (0x3 << 4)
237 #define FDMA_REQ_CTRL_OPCODE_LD_ST16 (0x4 << 4)
238 #define FDMA_REQ_CTRL_OPCODE_LD_ST32 (0x5 << 4)
239 #define FDMA_REQ_CTRL_OPCODE_LD_ST64 (0x6 << 4)
240 #define FDMA_REQ_CTRL_HOLDOFF_MASK GENMASK(2, 0)
241 #define FDMA_REQ_CTRL_HOLDOFF(n) ((n) & FDMA_REQ_CTRL_HOLDOFF_MASK)
243 /* bits used by client to configure request control */
244 #define FDMA_REQ_CTRL_CFG_MASK (FDMA_REQ_CTRL_HOLDOFF_MASK | \
245 FDMA_REQ_CTRL_DATA_SWAP_ON | \
246 FDMA_REQ_CTRL_INC_ADDR_ON | \
247 FDMA_REQ_CTRL_INITIATOR_MASK)
249 #endif /* __DMA_ST_FDMA_H */