blob: d80bff19d4ec5c6f8586cca8ade8f2f4adb0edcf [file] [log] [blame]
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001/*
2 * Texas Instruments CPDMA Driver
3 *
4 * Copyright (C) 2010 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15#include <linux/kernel.h>
16#include <linux/spinlock.h>
17#include <linux/device.h>
Daniel Mack76fbc242012-06-28 06:12:32 +000018#include <linux/module.h>
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040019#include <linux/slab.h>
20#include <linux/err.h>
21#include <linux/dma-mapping.h>
22#include <linux/io.h>
Sebastian Siewior817f6d12013-04-23 07:31:35 +000023#include <linux/delay.h>
Grygorii Strashko742fb202016-06-27 12:05:11 +030024#include <linux/genalloc.h>
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040025#include "davinci_cpdma.h"
26
27/* DMA Registers */
28#define CPDMA_TXIDVER 0x00
29#define CPDMA_TXCONTROL 0x04
30#define CPDMA_TXTEARDOWN 0x08
31#define CPDMA_RXIDVER 0x10
32#define CPDMA_RXCONTROL 0x14
33#define CPDMA_SOFTRESET 0x1c
34#define CPDMA_RXTEARDOWN 0x18
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +020035#define CPDMA_TX_PRI0_RATE 0x30
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040036#define CPDMA_TXINTSTATRAW 0x80
37#define CPDMA_TXINTSTATMASKED 0x84
38#define CPDMA_TXINTMASKSET 0x88
39#define CPDMA_TXINTMASKCLEAR 0x8c
40#define CPDMA_MACINVECTOR 0x90
41#define CPDMA_MACEOIVECTOR 0x94
42#define CPDMA_RXINTSTATRAW 0xa0
43#define CPDMA_RXINTSTATMASKED 0xa4
44#define CPDMA_RXINTMASKSET 0xa8
45#define CPDMA_RXINTMASKCLEAR 0xac
46#define CPDMA_DMAINTSTATRAW 0xb0
47#define CPDMA_DMAINTSTATMASKED 0xb4
48#define CPDMA_DMAINTMASKSET 0xb8
49#define CPDMA_DMAINTMASKCLEAR 0xbc
50#define CPDMA_DMAINT_HOSTERR BIT(1)
51
52/* the following exist only if has_ext_regs is set */
53#define CPDMA_DMACONTROL 0x20
54#define CPDMA_DMASTATUS 0x24
55#define CPDMA_RXBUFFOFS 0x28
56#define CPDMA_EM_CONTROL 0x2c
57
58/* Descriptor mode bits */
59#define CPDMA_DESC_SOP BIT(31)
60#define CPDMA_DESC_EOP BIT(30)
61#define CPDMA_DESC_OWNER BIT(29)
62#define CPDMA_DESC_EOQ BIT(28)
63#define CPDMA_DESC_TD_COMPLETE BIT(27)
64#define CPDMA_DESC_PASS_CRC BIT(26)
Mugunthan V Nf6e135c2013-02-11 09:52:18 +000065#define CPDMA_DESC_TO_PORT_EN BIT(20)
66#define CPDMA_TO_PORT_SHIFT 16
67#define CPDMA_DESC_PORT_MASK (BIT(18) | BIT(17) | BIT(16))
Mugunthan V N28a19fe2013-05-29 20:22:01 +000068#define CPDMA_DESC_CRC_LEN 4
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040069
70#define CPDMA_TEARDOWN_VALUE 0xfffffffc
71
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +020072#define CPDMA_MAX_RLIM_CNT 16384
73
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040074struct cpdma_desc {
75 /* hardware fields */
76 u32 hw_next;
77 u32 hw_buffer;
78 u32 hw_len;
79 u32 hw_mode;
80 /* software fields */
81 void *sw_token;
82 u32 sw_buffer;
83 u32 sw_len;
84};
85
86struct cpdma_desc_pool {
Olof Johanssonc767db52013-12-11 15:51:20 -080087 phys_addr_t phys;
Arnd Bergmann84092992016-01-29 12:39:10 +010088 dma_addr_t hw_addr;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040089 void __iomem *iomap; /* ioremap map */
90 void *cpumap; /* dma_alloc map */
91 int desc_size, mem_size;
Grygorii Strashkoaeec3022016-08-04 18:20:51 +030092 int num_desc;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040093 struct device *dev;
Grygorii Strashko742fb202016-06-27 12:05:11 +030094 struct gen_pool *gen_pool;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -040095};
96
97enum cpdma_state {
98 CPDMA_STATE_IDLE,
99 CPDMA_STATE_ACTIVE,
100 CPDMA_STATE_TEARDOWN,
101};
102
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400103struct cpdma_ctlr {
104 enum cpdma_state state;
105 struct cpdma_params params;
106 struct device *dev;
107 struct cpdma_desc_pool *pool;
108 spinlock_t lock;
109 struct cpdma_chan *channels[2 * CPDMA_MAX_CHANNELS];
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300110 int chan_num;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600111 int num_rx_desc; /* RX descriptors number */
112 int num_tx_desc; /* TX descriptors number */
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400113};
114
115struct cpdma_chan {
Mugunthan V Nfae50822013-01-17 06:31:34 +0000116 struct cpdma_desc __iomem *head, *tail;
117 void __iomem *hdp, *cp, *rxfree;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400118 enum cpdma_state state;
119 struct cpdma_ctlr *ctlr;
120 int chan_num;
121 spinlock_t lock;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400122 int count;
Grygorii Strashko742fb202016-06-27 12:05:11 +0300123 u32 desc_num;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400124 u32 mask;
125 cpdma_handler_fn handler;
126 enum dma_data_direction dir;
127 struct cpdma_chan_stats stats;
128 /* offsets into dmaregs */
129 int int_set, int_clear, td;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200130 int weight;
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200131 u32 rate_factor;
132 u32 rate;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400133};
134
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +0200135struct cpdma_control_info {
136 u32 reg;
137 u32 shift, mask;
138 int access;
139#define ACCESS_RO BIT(0)
140#define ACCESS_WO BIT(1)
141#define ACCESS_RW (ACCESS_RO | ACCESS_WO)
142};
143
144static struct cpdma_control_info controls[] = {
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200145 [CPDMA_TX_RLIM] = {CPDMA_DMACONTROL, 8, 0xffff, ACCESS_RW},
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +0200146 [CPDMA_CMD_IDLE] = {CPDMA_DMACONTROL, 3, 1, ACCESS_WO},
147 [CPDMA_COPY_ERROR_FRAMES] = {CPDMA_DMACONTROL, 4, 1, ACCESS_RW},
148 [CPDMA_RX_OFF_LEN_UPDATE] = {CPDMA_DMACONTROL, 2, 1, ACCESS_RW},
149 [CPDMA_RX_OWNERSHIP_FLIP] = {CPDMA_DMACONTROL, 1, 1, ACCESS_RW},
150 [CPDMA_TX_PRIO_FIXED] = {CPDMA_DMACONTROL, 0, 1, ACCESS_RW},
151 [CPDMA_STAT_IDLE] = {CPDMA_DMASTATUS, 31, 1, ACCESS_RO},
152 [CPDMA_STAT_TX_ERR_CODE] = {CPDMA_DMASTATUS, 20, 0xf, ACCESS_RW},
153 [CPDMA_STAT_TX_ERR_CHAN] = {CPDMA_DMASTATUS, 16, 0x7, ACCESS_RW},
154 [CPDMA_STAT_RX_ERR_CODE] = {CPDMA_DMASTATUS, 12, 0xf, ACCESS_RW},
155 [CPDMA_STAT_RX_ERR_CHAN] = {CPDMA_DMASTATUS, 8, 0x7, ACCESS_RW},
156 [CPDMA_RX_BUFFER_OFFSET] = {CPDMA_RXBUFFOFS, 0, 0xffff, ACCESS_RW},
157};
158
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +0300159#define tx_chan_num(chan) (chan)
160#define rx_chan_num(chan) ((chan) + CPDMA_MAX_CHANNELS)
161#define is_rx_chan(chan) ((chan)->chan_num >= CPDMA_MAX_CHANNELS)
162#define is_tx_chan(chan) (!is_rx_chan(chan))
163#define __chan_linear(chan_num) ((chan_num) & (CPDMA_MAX_CHANNELS - 1))
164#define chan_linear(chan) __chan_linear((chan)->chan_num)
165
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400166/* The following make access to common cpdma_ctlr params more readable */
167#define dmaregs params.dmaregs
168#define num_chan params.num_chan
169
170/* various accessors */
Grygorii Strashkoa6c83cc2017-01-06 14:07:29 -0600171#define dma_reg_read(ctlr, ofs) readl((ctlr)->dmaregs + (ofs))
172#define chan_read(chan, fld) readl((chan)->fld)
173#define desc_read(desc, fld) readl(&(desc)->fld)
174#define dma_reg_write(ctlr, ofs, v) writel(v, (ctlr)->dmaregs + (ofs))
175#define chan_write(chan, fld, v) writel(v, (chan)->fld)
176#define desc_write(desc, fld, v) writel((u32)(v), &(desc)->fld)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400177
Mugunthan V Nf6e135c2013-02-11 09:52:18 +0000178#define cpdma_desc_to_port(chan, mode, directed) \
179 do { \
180 if (!is_rx_chan(chan) && ((directed == 1) || \
181 (directed == 2))) \
182 mode |= (CPDMA_DESC_TO_PORT_EN | \
183 (directed << CPDMA_TO_PORT_SHIFT)); \
184 } while (0)
185
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600186static void cpdma_desc_pool_destroy(struct cpdma_ctlr *ctlr)
Grygorii Strashko742fb202016-06-27 12:05:11 +0300187{
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600188 struct cpdma_desc_pool *pool = ctlr->pool;
189
Grygorii Strashko742fb202016-06-27 12:05:11 +0300190 if (!pool)
191 return;
192
Grygorii Strashkoaeec3022016-08-04 18:20:51 +0300193 WARN(gen_pool_size(pool->gen_pool) != gen_pool_avail(pool->gen_pool),
194 "cpdma_desc_pool size %d != avail %d",
195 gen_pool_size(pool->gen_pool),
196 gen_pool_avail(pool->gen_pool));
Grygorii Strashko742fb202016-06-27 12:05:11 +0300197 if (pool->cpumap)
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600198 dma_free_coherent(ctlr->dev, pool->mem_size, pool->cpumap,
Grygorii Strashko742fb202016-06-27 12:05:11 +0300199 pool->phys);
Grygorii Strashko742fb202016-06-27 12:05:11 +0300200}
201
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400202/*
203 * Utility constructs for a cpdma descriptor pool. Some devices (e.g. davinci
204 * emac) have dedicated on-chip memory for these descriptors. Some other
205 * devices (e.g. cpsw switches) use plain old memory. Descriptor pools
206 * abstract out these details
207 */
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600208int cpdma_desc_pool_create(struct cpdma_ctlr *ctlr)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400209{
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600210 struct cpdma_params *cpdma_params = &ctlr->params;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400211 struct cpdma_desc_pool *pool;
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600212 int ret = -ENOMEM;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400213
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600214 pool = devm_kzalloc(ctlr->dev, sizeof(*pool), GFP_KERNEL);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400215 if (!pool)
Grygorii Strashko742fb202016-06-27 12:05:11 +0300216 goto gen_pool_create_fail;
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600217 ctlr->pool = pool;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400218
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600219 pool->mem_size = cpdma_params->desc_mem_size;
220 pool->desc_size = ALIGN(sizeof(struct cpdma_desc),
221 cpdma_params->desc_align);
222 pool->num_desc = pool->mem_size / pool->desc_size;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400223
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600224 if (cpdma_params->descs_pool_size) {
225 /* recalculate memory size required cpdma descriptor pool
226 * basing on number of descriptors specified by user and
227 * if memory size > CPPI internal RAM size (desc_mem_size)
228 * then switch to use DDR
229 */
230 pool->num_desc = cpdma_params->descs_pool_size;
231 pool->mem_size = pool->desc_size * pool->num_desc;
232 if (pool->mem_size > cpdma_params->desc_mem_size)
233 cpdma_params->desc_mem_phys = 0;
234 }
235
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600236 pool->gen_pool = devm_gen_pool_create(ctlr->dev, ilog2(pool->desc_size),
237 -1, "cpdma");
Grygorii Strashko742fb202016-06-27 12:05:11 +0300238 if (IS_ERR(pool->gen_pool)) {
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600239 ret = PTR_ERR(pool->gen_pool);
240 dev_err(ctlr->dev, "pool create failed %d\n", ret);
Grygorii Strashko742fb202016-06-27 12:05:11 +0300241 goto gen_pool_create_fail;
242 }
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400243
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600244 if (cpdma_params->desc_mem_phys) {
245 pool->phys = cpdma_params->desc_mem_phys;
Grygorii Strashko7f3b4902017-01-06 14:07:32 -0600246 pool->iomap = devm_ioremap(ctlr->dev, pool->phys,
247 pool->mem_size);
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600248 pool->hw_addr = cpdma_params->desc_hw_addr;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400249 } else {
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600250 pool->cpumap = dma_alloc_coherent(ctlr->dev, pool->mem_size,
251 &pool->hw_addr, GFP_KERNEL);
Arnd Bergmann84092992016-01-29 12:39:10 +0100252 pool->iomap = (void __iomem __force *)pool->cpumap;
253 pool->phys = pool->hw_addr; /* assumes no IOMMU, don't use this value */
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400254 }
255
Grygorii Strashko742fb202016-06-27 12:05:11 +0300256 if (!pool->iomap)
257 goto gen_pool_create_fail;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400258
Grygorii Strashko742fb202016-06-27 12:05:11 +0300259 ret = gen_pool_add_virt(pool->gen_pool, (unsigned long)pool->iomap,
260 pool->phys, pool->mem_size, -1);
261 if (ret < 0) {
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600262 dev_err(ctlr->dev, "pool add failed %d\n", ret);
Grygorii Strashko742fb202016-06-27 12:05:11 +0300263 goto gen_pool_add_virt_fail;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400264 }
Grygorii Strashko742fb202016-06-27 12:05:11 +0300265
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600266 return 0;
Grygorii Strashko742fb202016-06-27 12:05:11 +0300267
268gen_pool_add_virt_fail:
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600269 cpdma_desc_pool_destroy(ctlr);
Grygorii Strashko742fb202016-06-27 12:05:11 +0300270gen_pool_create_fail:
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600271 ctlr->pool = NULL;
272 return ret;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400273}
274
275static inline dma_addr_t desc_phys(struct cpdma_desc_pool *pool,
276 struct cpdma_desc __iomem *desc)
277{
278 if (!desc)
279 return 0;
Olof Johanssonc767db52013-12-11 15:51:20 -0800280 return pool->hw_addr + (__force long)desc - (__force long)pool->iomap;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400281}
282
283static inline struct cpdma_desc __iomem *
284desc_from_phys(struct cpdma_desc_pool *pool, dma_addr_t dma)
285{
Sriram6a1fef62011-03-22 02:31:03 +0000286 return dma ? pool->iomap + dma - pool->hw_addr : NULL;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400287}
288
289static struct cpdma_desc __iomem *
Grygorii Strashko742fb202016-06-27 12:05:11 +0300290cpdma_desc_alloc(struct cpdma_desc_pool *pool)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400291{
Grygorii Strashkoaeec3022016-08-04 18:20:51 +0300292 return (struct cpdma_desc __iomem *)
293 gen_pool_alloc(pool->gen_pool, pool->desc_size);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400294}
295
296static void cpdma_desc_free(struct cpdma_desc_pool *pool,
297 struct cpdma_desc __iomem *desc, int num_desc)
298{
Grygorii Strashko742fb202016-06-27 12:05:11 +0300299 gen_pool_free(pool->gen_pool, (unsigned long)desc, pool->desc_size);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400300}
301
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +0200302static int _cpdma_control_set(struct cpdma_ctlr *ctlr, int control, int value)
303{
304 struct cpdma_control_info *info = &controls[control];
305 u32 val;
306
307 if (!ctlr->params.has_ext_regs)
308 return -ENOTSUPP;
309
310 if (ctlr->state != CPDMA_STATE_ACTIVE)
311 return -EINVAL;
312
313 if (control < 0 || control >= ARRAY_SIZE(controls))
314 return -ENOENT;
315
316 if ((info->access & ACCESS_WO) != ACCESS_WO)
317 return -EPERM;
318
319 val = dma_reg_read(ctlr, info->reg);
320 val &= ~(info->mask << info->shift);
321 val |= (value & info->mask) << info->shift;
322 dma_reg_write(ctlr, info->reg, val);
323
324 return 0;
325}
326
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200327static int _cpdma_control_get(struct cpdma_ctlr *ctlr, int control)
328{
329 struct cpdma_control_info *info = &controls[control];
330 int ret;
331
332 if (!ctlr->params.has_ext_regs)
333 return -ENOTSUPP;
334
335 if (ctlr->state != CPDMA_STATE_ACTIVE)
336 return -EINVAL;
337
338 if (control < 0 || control >= ARRAY_SIZE(controls))
339 return -ENOENT;
340
341 if ((info->access & ACCESS_RO) != ACCESS_RO)
342 return -EPERM;
343
344 ret = (dma_reg_read(ctlr, info->reg) >> info->shift) & info->mask;
345 return ret;
346}
347
348/* cpdma_chan_set_chan_shaper - set shaper for a channel
349 * Has to be called under ctlr lock
350 */
351static int cpdma_chan_set_chan_shaper(struct cpdma_chan *chan)
352{
353 struct cpdma_ctlr *ctlr = chan->ctlr;
354 u32 rate_reg;
355 u32 rmask;
356 int ret;
357
358 if (!chan->rate)
359 return 0;
360
361 rate_reg = CPDMA_TX_PRI0_RATE + 4 * chan->chan_num;
362 dma_reg_write(ctlr, rate_reg, chan->rate_factor);
363
364 rmask = _cpdma_control_get(ctlr, CPDMA_TX_RLIM);
365 rmask |= chan->mask;
366
367 ret = _cpdma_control_set(ctlr, CPDMA_TX_RLIM, rmask);
368 return ret;
369}
370
371static int cpdma_chan_on(struct cpdma_chan *chan)
372{
373 struct cpdma_ctlr *ctlr = chan->ctlr;
374 struct cpdma_desc_pool *pool = ctlr->pool;
375 unsigned long flags;
376
377 spin_lock_irqsave(&chan->lock, flags);
378 if (chan->state != CPDMA_STATE_IDLE) {
379 spin_unlock_irqrestore(&chan->lock, flags);
380 return -EBUSY;
381 }
382 if (ctlr->state != CPDMA_STATE_ACTIVE) {
383 spin_unlock_irqrestore(&chan->lock, flags);
384 return -EINVAL;
385 }
386 dma_reg_write(ctlr, chan->int_set, chan->mask);
387 chan->state = CPDMA_STATE_ACTIVE;
388 if (chan->head) {
389 chan_write(chan, hdp, desc_phys(pool, chan->head));
390 if (chan->rxfree)
391 chan_write(chan, rxfree, chan->count);
392 }
393
394 spin_unlock_irqrestore(&chan->lock, flags);
395 return 0;
396}
397
398/* cpdma_chan_fit_rate - set rate for a channel and check if it's possible.
399 * rmask - mask of rate limited channels
400 * Returns min rate in Kb/s
401 */
402static int cpdma_chan_fit_rate(struct cpdma_chan *ch, u32 rate,
403 u32 *rmask, int *prio_mode)
404{
405 struct cpdma_ctlr *ctlr = ch->ctlr;
406 struct cpdma_chan *chan;
407 u32 old_rate = ch->rate;
408 u32 new_rmask = 0;
409 int rlim = 1;
410 int i;
411
412 *prio_mode = 0;
413 for (i = tx_chan_num(0); i < tx_chan_num(CPDMA_MAX_CHANNELS); i++) {
414 chan = ctlr->channels[i];
415 if (!chan) {
416 rlim = 0;
417 continue;
418 }
419
420 if (chan == ch)
421 chan->rate = rate;
422
423 if (chan->rate) {
424 if (rlim) {
425 new_rmask |= chan->mask;
426 } else {
427 ch->rate = old_rate;
428 dev_err(ctlr->dev, "Prev channel of %dch is not rate limited\n",
429 chan->chan_num);
430 return -EINVAL;
431 }
432 } else {
433 *prio_mode = 1;
434 rlim = 0;
435 }
436 }
437
438 *rmask = new_rmask;
439 return 0;
440}
441
442static u32 cpdma_chan_set_factors(struct cpdma_ctlr *ctlr,
443 struct cpdma_chan *ch)
444{
445 u32 delta = UINT_MAX, prev_delta = UINT_MAX, best_delta = UINT_MAX;
446 u32 best_send_cnt = 0, best_idle_cnt = 0;
447 u32 new_rate, best_rate = 0, rate_reg;
448 u64 send_cnt, idle_cnt;
449 u32 min_send_cnt, freq;
450 u64 divident, divisor;
451
452 if (!ch->rate) {
453 ch->rate_factor = 0;
454 goto set_factor;
455 }
456
457 freq = ctlr->params.bus_freq_mhz * 1000 * 32;
458 if (!freq) {
459 dev_err(ctlr->dev, "The bus frequency is not set\n");
460 return -EINVAL;
461 }
462
463 min_send_cnt = freq - ch->rate;
464 send_cnt = DIV_ROUND_UP(min_send_cnt, ch->rate);
465 while (send_cnt <= CPDMA_MAX_RLIM_CNT) {
466 divident = ch->rate * send_cnt;
467 divisor = min_send_cnt;
468 idle_cnt = DIV_ROUND_CLOSEST_ULL(divident, divisor);
469
470 divident = freq * idle_cnt;
471 divisor = idle_cnt + send_cnt;
472 new_rate = DIV_ROUND_CLOSEST_ULL(divident, divisor);
473
474 delta = new_rate >= ch->rate ? new_rate - ch->rate : delta;
475 if (delta < best_delta) {
476 best_delta = delta;
477 best_send_cnt = send_cnt;
478 best_idle_cnt = idle_cnt;
479 best_rate = new_rate;
480
481 if (!delta)
482 break;
483 }
484
485 if (prev_delta >= delta) {
486 prev_delta = delta;
487 send_cnt++;
488 continue;
489 }
490
491 idle_cnt++;
492 divident = freq * idle_cnt;
493 send_cnt = DIV_ROUND_CLOSEST_ULL(divident, ch->rate);
494 send_cnt -= idle_cnt;
495 prev_delta = UINT_MAX;
496 }
497
498 ch->rate = best_rate;
499 ch->rate_factor = best_send_cnt | (best_idle_cnt << 16);
500
501set_factor:
502 rate_reg = CPDMA_TX_PRI0_RATE + 4 * ch->chan_num;
503 dma_reg_write(ctlr, rate_reg, ch->rate_factor);
504 return 0;
505}
506
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400507struct cpdma_ctlr *cpdma_ctlr_create(struct cpdma_params *params)
508{
509 struct cpdma_ctlr *ctlr;
510
George Cheriane1943122014-05-12 10:21:21 +0530511 ctlr = devm_kzalloc(params->dev, sizeof(*ctlr), GFP_KERNEL);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400512 if (!ctlr)
513 return NULL;
514
515 ctlr->state = CPDMA_STATE_IDLE;
516 ctlr->params = *params;
517 ctlr->dev = params->dev;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300518 ctlr->chan_num = 0;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400519 spin_lock_init(&ctlr->lock);
520
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600521 if (cpdma_desc_pool_create(ctlr))
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400522 return NULL;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600523 /* split pool equally between RX/TX by default */
524 ctlr->num_tx_desc = ctlr->pool->num_desc / 2;
525 ctlr->num_rx_desc = ctlr->pool->num_desc - ctlr->num_tx_desc;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400526
527 if (WARN_ON(ctlr->num_chan > CPDMA_MAX_CHANNELS))
528 ctlr->num_chan = CPDMA_MAX_CHANNELS;
529 return ctlr;
530}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000531EXPORT_SYMBOL_GPL(cpdma_ctlr_create);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400532
533int cpdma_ctlr_start(struct cpdma_ctlr *ctlr)
534{
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200535 struct cpdma_chan *chan;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400536 unsigned long flags;
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200537 int i, prio_mode;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400538
539 spin_lock_irqsave(&ctlr->lock, flags);
540 if (ctlr->state != CPDMA_STATE_IDLE) {
541 spin_unlock_irqrestore(&ctlr->lock, flags);
542 return -EBUSY;
543 }
544
545 if (ctlr->params.has_soft_reset) {
Sebastian Siewior817f6d12013-04-23 07:31:35 +0000546 unsigned timeout = 10 * 100;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400547
548 dma_reg_write(ctlr, CPDMA_SOFTRESET, 1);
Sebastian Siewior817f6d12013-04-23 07:31:35 +0000549 while (timeout) {
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400550 if (dma_reg_read(ctlr, CPDMA_SOFTRESET) == 0)
551 break;
Sebastian Siewior817f6d12013-04-23 07:31:35 +0000552 udelay(10);
553 timeout--;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400554 }
Sebastian Siewior817f6d12013-04-23 07:31:35 +0000555 WARN_ON(!timeout);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400556 }
557
558 for (i = 0; i < ctlr->num_chan; i++) {
Grygorii Strashkoa6c83cc2017-01-06 14:07:29 -0600559 writel(0, ctlr->params.txhdp + 4 * i);
560 writel(0, ctlr->params.rxhdp + 4 * i);
561 writel(0, ctlr->params.txcp + 4 * i);
562 writel(0, ctlr->params.rxcp + 4 * i);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400563 }
564
565 dma_reg_write(ctlr, CPDMA_RXINTMASKCLEAR, 0xffffffff);
566 dma_reg_write(ctlr, CPDMA_TXINTMASKCLEAR, 0xffffffff);
567
568 dma_reg_write(ctlr, CPDMA_TXCONTROL, 1);
569 dma_reg_write(ctlr, CPDMA_RXCONTROL, 1);
570
571 ctlr->state = CPDMA_STATE_ACTIVE;
572
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200573 prio_mode = 0;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400574 for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) {
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200575 chan = ctlr->channels[i];
576 if (chan) {
577 cpdma_chan_set_chan_shaper(chan);
578 cpdma_chan_on(chan);
579
580 /* off prio mode if all tx channels are rate limited */
581 if (is_tx_chan(chan) && !chan->rate)
582 prio_mode = 1;
583 }
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400584 }
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +0200585
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200586 _cpdma_control_set(ctlr, CPDMA_TX_PRIO_FIXED, prio_mode);
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +0200587 _cpdma_control_set(ctlr, CPDMA_RX_BUFFER_OFFSET, 0);
588
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400589 spin_unlock_irqrestore(&ctlr->lock, flags);
590 return 0;
591}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000592EXPORT_SYMBOL_GPL(cpdma_ctlr_start);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400593
594int cpdma_ctlr_stop(struct cpdma_ctlr *ctlr)
595{
596 unsigned long flags;
597 int i;
598
599 spin_lock_irqsave(&ctlr->lock, flags);
Ivan Khoronzhukb993eec2016-11-11 16:10:47 +0200600 if (ctlr->state != CPDMA_STATE_ACTIVE) {
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400601 spin_unlock_irqrestore(&ctlr->lock, flags);
602 return -EINVAL;
603 }
604
605 ctlr->state = CPDMA_STATE_TEARDOWN;
Ivan Khoronzhuk080d5c5a2016-08-22 21:18:25 +0300606 spin_unlock_irqrestore(&ctlr->lock, flags);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400607
608 for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) {
609 if (ctlr->channels[i])
610 cpdma_chan_stop(ctlr->channels[i]);
611 }
612
Ivan Khoronzhuk080d5c5a2016-08-22 21:18:25 +0300613 spin_lock_irqsave(&ctlr->lock, flags);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400614 dma_reg_write(ctlr, CPDMA_RXINTMASKCLEAR, 0xffffffff);
615 dma_reg_write(ctlr, CPDMA_TXINTMASKCLEAR, 0xffffffff);
616
617 dma_reg_write(ctlr, CPDMA_TXCONTROL, 0);
618 dma_reg_write(ctlr, CPDMA_RXCONTROL, 0);
619
620 ctlr->state = CPDMA_STATE_IDLE;
621
622 spin_unlock_irqrestore(&ctlr->lock, flags);
623 return 0;
624}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000625EXPORT_SYMBOL_GPL(cpdma_ctlr_stop);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400626
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400627int cpdma_ctlr_destroy(struct cpdma_ctlr *ctlr)
628{
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400629 int ret = 0, i;
630
631 if (!ctlr)
632 return -EINVAL;
633
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400634 if (ctlr->state != CPDMA_STATE_IDLE)
635 cpdma_ctlr_stop(ctlr);
636
Cyril Roelandt79876e02013-02-12 12:52:30 +0000637 for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++)
638 cpdma_chan_destroy(ctlr->channels[i]);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400639
Grygorii Strashko5fcc40a2017-01-06 14:07:31 -0600640 cpdma_desc_pool_destroy(ctlr);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400641 return ret;
642}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000643EXPORT_SYMBOL_GPL(cpdma_ctlr_destroy);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400644
645int cpdma_ctlr_int_ctrl(struct cpdma_ctlr *ctlr, bool enable)
646{
647 unsigned long flags;
648 int i, reg;
649
650 spin_lock_irqsave(&ctlr->lock, flags);
651 if (ctlr->state != CPDMA_STATE_ACTIVE) {
652 spin_unlock_irqrestore(&ctlr->lock, flags);
653 return -EINVAL;
654 }
655
656 reg = enable ? CPDMA_DMAINTMASKSET : CPDMA_DMAINTMASKCLEAR;
657 dma_reg_write(ctlr, reg, CPDMA_DMAINT_HOSTERR);
658
659 for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) {
660 if (ctlr->channels[i])
661 cpdma_chan_int_ctrl(ctlr->channels[i], enable);
662 }
663
664 spin_unlock_irqrestore(&ctlr->lock, flags);
665 return 0;
666}
Arnd Bergmann6929e242013-02-14 17:53:01 +0100667EXPORT_SYMBOL_GPL(cpdma_ctlr_int_ctrl);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400668
Mugunthan V N510a1e722013-02-17 22:19:20 +0000669void cpdma_ctlr_eoi(struct cpdma_ctlr *ctlr, u32 value)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400670{
Mugunthan V N510a1e722013-02-17 22:19:20 +0000671 dma_reg_write(ctlr, CPDMA_MACEOIVECTOR, value);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400672}
Arnd Bergmann6929e242013-02-14 17:53:01 +0100673EXPORT_SYMBOL_GPL(cpdma_ctlr_eoi);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400674
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300675u32 cpdma_ctrl_rxchs_state(struct cpdma_ctlr *ctlr)
676{
677 return dma_reg_read(ctlr, CPDMA_RXINTSTATMASKED);
678}
679EXPORT_SYMBOL_GPL(cpdma_ctrl_rxchs_state);
680
681u32 cpdma_ctrl_txchs_state(struct cpdma_ctlr *ctlr)
682{
683 return dma_reg_read(ctlr, CPDMA_TXINTSTATMASKED);
684}
685EXPORT_SYMBOL_GPL(cpdma_ctrl_txchs_state);
686
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200687static void cpdma_chan_set_descs(struct cpdma_ctlr *ctlr,
688 int rx, int desc_num,
689 int per_ch_desc)
690{
691 struct cpdma_chan *chan, *most_chan = NULL;
692 int desc_cnt = desc_num;
693 int most_dnum = 0;
694 int min, max, i;
695
696 if (!desc_num)
697 return;
698
699 if (rx) {
700 min = rx_chan_num(0);
701 max = rx_chan_num(CPDMA_MAX_CHANNELS);
702 } else {
703 min = tx_chan_num(0);
704 max = tx_chan_num(CPDMA_MAX_CHANNELS);
705 }
706
707 for (i = min; i < max; i++) {
708 chan = ctlr->channels[i];
709 if (!chan)
710 continue;
711
712 if (chan->weight)
713 chan->desc_num = (chan->weight * desc_num) / 100;
714 else
715 chan->desc_num = per_ch_desc;
716
717 desc_cnt -= chan->desc_num;
718
719 if (most_dnum < chan->desc_num) {
720 most_dnum = chan->desc_num;
721 most_chan = chan;
722 }
723 }
724 /* use remains */
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600725 if (most_chan)
726 most_chan->desc_num += desc_cnt;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200727}
728
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300729/**
730 * cpdma_chan_split_pool - Splits ctrl pool between all channels.
731 * Has to be called under ctlr lock
732 */
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600733int cpdma_chan_split_pool(struct cpdma_ctlr *ctlr)
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300734{
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200735 int tx_per_ch_desc = 0, rx_per_ch_desc = 0;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200736 int free_rx_num = 0, free_tx_num = 0;
737 int rx_weight = 0, tx_weight = 0;
738 int tx_desc_num, rx_desc_num;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300739 struct cpdma_chan *chan;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600740 int i;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300741
742 if (!ctlr->chan_num)
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200743 return 0;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300744
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300745 for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) {
746 chan = ctlr->channels[i];
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200747 if (!chan)
748 continue;
749
750 if (is_rx_chan(chan)) {
751 if (!chan->weight)
752 free_rx_num++;
753 rx_weight += chan->weight;
754 } else {
755 if (!chan->weight)
756 free_tx_num++;
757 tx_weight += chan->weight;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200758 }
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300759 }
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200760
761 if (rx_weight > 100 || tx_weight > 100)
762 return -EINVAL;
763
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600764 tx_desc_num = ctlr->num_tx_desc;
765 rx_desc_num = ctlr->num_rx_desc;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200766
767 if (free_tx_num) {
768 tx_per_ch_desc = tx_desc_num - (tx_weight * tx_desc_num) / 100;
769 tx_per_ch_desc /= free_tx_num;
770 }
771 if (free_rx_num) {
772 rx_per_ch_desc = rx_desc_num - (rx_weight * rx_desc_num) / 100;
773 rx_per_ch_desc /= free_rx_num;
774 }
775
776 cpdma_chan_set_descs(ctlr, 0, tx_desc_num, tx_per_ch_desc);
777 cpdma_chan_set_descs(ctlr, 1, rx_desc_num, rx_per_ch_desc);
778
779 return 0;
780}
Grygorii Strashkobe034fc2017-01-06 14:07:34 -0600781EXPORT_SYMBOL_GPL(cpdma_chan_split_pool);
782
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200783
784/* cpdma_chan_set_weight - set weight of a channel in percentage.
785 * Tx and Rx channels have separate weights. That is 100% for RX
786 * and 100% for Tx. The weight is used to split cpdma resources
787 * in correct proportion required by the channels, including number
788 * of descriptors. The channel rate is not enough to know the
789 * weight of a channel as the maximum rate of an interface is needed.
790 * If weight = 0, then channel uses rest of descriptors leaved by
791 * weighted channels.
792 */
793int cpdma_chan_set_weight(struct cpdma_chan *ch, int weight)
794{
795 struct cpdma_ctlr *ctlr = ch->ctlr;
796 unsigned long flags, ch_flags;
797 int ret;
798
799 spin_lock_irqsave(&ctlr->lock, flags);
800 spin_lock_irqsave(&ch->lock, ch_flags);
801 if (ch->weight == weight) {
802 spin_unlock_irqrestore(&ch->lock, ch_flags);
803 spin_unlock_irqrestore(&ctlr->lock, flags);
804 return 0;
805 }
806 ch->weight = weight;
807 spin_unlock_irqrestore(&ch->lock, ch_flags);
808
809 /* re-split pool using new channel weight */
810 ret = cpdma_chan_split_pool(ctlr);
811 spin_unlock_irqrestore(&ctlr->lock, flags);
812 return ret;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300813}
Paul Gortmaker397c5ad2016-12-01 15:25:28 -0500814EXPORT_SYMBOL_GPL(cpdma_chan_set_weight);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300815
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200816/* cpdma_chan_get_min_rate - get minimum allowed rate for channel
817 * Should be called before cpdma_chan_set_rate.
818 * Returns min rate in Kb/s
819 */
820u32 cpdma_chan_get_min_rate(struct cpdma_ctlr *ctlr)
821{
822 unsigned int divident, divisor;
823
824 divident = ctlr->params.bus_freq_mhz * 32 * 1000;
825 divisor = 1 + CPDMA_MAX_RLIM_CNT;
826
827 return DIV_ROUND_UP(divident, divisor);
828}
Paul Gortmaker397c5ad2016-12-01 15:25:28 -0500829EXPORT_SYMBOL_GPL(cpdma_chan_get_min_rate);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200830
831/* cpdma_chan_set_rate - limits bandwidth for transmit channel.
832 * The bandwidth * limited channels have to be in order beginning from lowest.
833 * ch - transmit channel the bandwidth is configured for
834 * rate - bandwidth in Kb/s, if 0 - then off shaper
835 */
836int cpdma_chan_set_rate(struct cpdma_chan *ch, u32 rate)
837{
838 struct cpdma_ctlr *ctlr = ch->ctlr;
839 unsigned long flags, ch_flags;
840 int ret, prio_mode;
841 u32 rmask;
842
843 if (!ch || !is_tx_chan(ch))
844 return -EINVAL;
845
846 if (ch->rate == rate)
847 return rate;
848
849 spin_lock_irqsave(&ctlr->lock, flags);
850 spin_lock_irqsave(&ch->lock, ch_flags);
851
852 ret = cpdma_chan_fit_rate(ch, rate, &rmask, &prio_mode);
853 if (ret)
854 goto err;
855
856 ret = cpdma_chan_set_factors(ctlr, ch);
857 if (ret)
858 goto err;
859
860 spin_unlock_irqrestore(&ch->lock, ch_flags);
861
862 /* on shapers */
863 _cpdma_control_set(ctlr, CPDMA_TX_RLIM, rmask);
864 _cpdma_control_set(ctlr, CPDMA_TX_PRIO_FIXED, prio_mode);
865 spin_unlock_irqrestore(&ctlr->lock, flags);
866 return ret;
867
868err:
869 spin_unlock_irqrestore(&ch->lock, ch_flags);
870 spin_unlock_irqrestore(&ctlr->lock, flags);
871 return ret;
872}
Paul Gortmaker397c5ad2016-12-01 15:25:28 -0500873EXPORT_SYMBOL_GPL(cpdma_chan_set_rate);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200874
875u32 cpdma_chan_get_rate(struct cpdma_chan *ch)
876{
877 unsigned long flags;
878 u32 rate;
879
880 spin_lock_irqsave(&ch->lock, flags);
881 rate = ch->rate;
882 spin_unlock_irqrestore(&ch->lock, flags);
883
884 return rate;
885}
Paul Gortmaker397c5ad2016-12-01 15:25:28 -0500886EXPORT_SYMBOL_GPL(cpdma_chan_get_rate);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200887
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400888struct cpdma_chan *cpdma_chan_create(struct cpdma_ctlr *ctlr, int chan_num,
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +0300889 cpdma_handler_fn handler, int rx_type)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400890{
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +0300891 int offset = chan_num * 4;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400892 struct cpdma_chan *chan;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400893 unsigned long flags;
894
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +0300895 chan_num = rx_type ? rx_chan_num(chan_num) : tx_chan_num(chan_num);
896
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400897 if (__chan_linear(chan_num) >= ctlr->num_chan)
898 return NULL;
899
George Cheriane1943122014-05-12 10:21:21 +0530900 chan = devm_kzalloc(ctlr->dev, sizeof(*chan), GFP_KERNEL);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400901 if (!chan)
George Cheriane1943122014-05-12 10:21:21 +0530902 return ERR_PTR(-ENOMEM);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400903
904 spin_lock_irqsave(&ctlr->lock, flags);
George Cheriane1943122014-05-12 10:21:21 +0530905 if (ctlr->channels[chan_num]) {
906 spin_unlock_irqrestore(&ctlr->lock, flags);
907 devm_kfree(ctlr->dev, chan);
908 return ERR_PTR(-EBUSY);
909 }
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400910
911 chan->ctlr = ctlr;
912 chan->state = CPDMA_STATE_IDLE;
913 chan->chan_num = chan_num;
914 chan->handler = handler;
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +0200915 chan->rate = 0;
Ivan Khoronzhuk0fc64322016-11-29 17:00:47 +0200916 chan->weight = 0;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400917
918 if (is_rx_chan(chan)) {
919 chan->hdp = ctlr->params.rxhdp + offset;
920 chan->cp = ctlr->params.rxcp + offset;
921 chan->rxfree = ctlr->params.rxfree + offset;
922 chan->int_set = CPDMA_RXINTMASKSET;
923 chan->int_clear = CPDMA_RXINTMASKCLEAR;
924 chan->td = CPDMA_RXTEARDOWN;
925 chan->dir = DMA_FROM_DEVICE;
926 } else {
927 chan->hdp = ctlr->params.txhdp + offset;
928 chan->cp = ctlr->params.txcp + offset;
929 chan->int_set = CPDMA_TXINTMASKSET;
930 chan->int_clear = CPDMA_TXINTMASKCLEAR;
931 chan->td = CPDMA_TXTEARDOWN;
932 chan->dir = DMA_TO_DEVICE;
933 }
934 chan->mask = BIT(chan_linear(chan));
935
936 spin_lock_init(&chan->lock);
937
938 ctlr->channels[chan_num] = chan;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300939 ctlr->chan_num++;
940
941 cpdma_chan_split_pool(ctlr);
942
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400943 spin_unlock_irqrestore(&ctlr->lock, flags);
944 return chan;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400945}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000946EXPORT_SYMBOL_GPL(cpdma_chan_create);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400947
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300948int cpdma_chan_get_rx_buf_num(struct cpdma_chan *chan)
Ivan Khoronzhuk17933312016-06-17 13:25:39 +0300949{
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300950 unsigned long flags;
951 int desc_num;
952
953 spin_lock_irqsave(&chan->lock, flags);
954 desc_num = chan->desc_num;
955 spin_unlock_irqrestore(&chan->lock, flags);
956
957 return desc_num;
Ivan Khoronzhuk17933312016-06-17 13:25:39 +0300958}
959EXPORT_SYMBOL_GPL(cpdma_chan_get_rx_buf_num);
960
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400961int cpdma_chan_destroy(struct cpdma_chan *chan)
962{
Julia Lawallf37c54b2012-08-14 05:49:47 +0000963 struct cpdma_ctlr *ctlr;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400964 unsigned long flags;
965
966 if (!chan)
967 return -EINVAL;
Julia Lawallf37c54b2012-08-14 05:49:47 +0000968 ctlr = chan->ctlr;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400969
970 spin_lock_irqsave(&ctlr->lock, flags);
971 if (chan->state != CPDMA_STATE_IDLE)
972 cpdma_chan_stop(chan);
973 ctlr->channels[chan->chan_num] = NULL;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300974 ctlr->chan_num--;
Ivan Khoronzhukb602e492016-11-08 15:16:05 +0200975 devm_kfree(ctlr->dev, chan);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +0300976 cpdma_chan_split_pool(ctlr);
977
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400978 spin_unlock_irqrestore(&ctlr->lock, flags);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400979 return 0;
980}
Arnd Bergmann32a6d902012-04-20 10:56:09 +0000981EXPORT_SYMBOL_GPL(cpdma_chan_destroy);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400982
983int cpdma_chan_get_stats(struct cpdma_chan *chan,
984 struct cpdma_chan_stats *stats)
985{
986 unsigned long flags;
987 if (!chan)
988 return -EINVAL;
989 spin_lock_irqsave(&chan->lock, flags);
990 memcpy(stats, &chan->stats, sizeof(*stats));
991 spin_unlock_irqrestore(&chan->lock, flags);
992 return 0;
993}
Daniel Mack0ca04b62013-08-22 13:47:00 +0200994EXPORT_SYMBOL_GPL(cpdma_chan_get_stats);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400995
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -0400996static void __cpdma_chan_submit(struct cpdma_chan *chan,
997 struct cpdma_desc __iomem *desc)
998{
999 struct cpdma_ctlr *ctlr = chan->ctlr;
1000 struct cpdma_desc __iomem *prev = chan->tail;
1001 struct cpdma_desc_pool *pool = ctlr->pool;
1002 dma_addr_t desc_dma;
1003 u32 mode;
1004
1005 desc_dma = desc_phys(pool, desc);
1006
1007 /* simple case - idle channel */
1008 if (!chan->head) {
1009 chan->stats.head_enqueue++;
1010 chan->head = desc;
1011 chan->tail = desc;
1012 if (chan->state == CPDMA_STATE_ACTIVE)
1013 chan_write(chan, hdp, desc_dma);
1014 return;
1015 }
1016
1017 /* first chain the descriptor at the tail of the list */
1018 desc_write(prev, hw_next, desc_dma);
1019 chan->tail = desc;
1020 chan->stats.tail_enqueue++;
1021
1022 /* next check if EOQ has been triggered already */
1023 mode = desc_read(prev, hw_mode);
1024 if (((mode & (CPDMA_DESC_EOQ | CPDMA_DESC_OWNER)) == CPDMA_DESC_EOQ) &&
1025 (chan->state == CPDMA_STATE_ACTIVE)) {
1026 desc_write(prev, hw_mode, mode & ~CPDMA_DESC_EOQ);
1027 chan_write(chan, hdp, desc_dma);
1028 chan->stats.misqueued++;
1029 }
1030}
1031
1032int cpdma_chan_submit(struct cpdma_chan *chan, void *token, void *data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001033 int len, int directed)
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001034{
1035 struct cpdma_ctlr *ctlr = chan->ctlr;
1036 struct cpdma_desc __iomem *desc;
1037 dma_addr_t buffer;
1038 unsigned long flags;
1039 u32 mode;
1040 int ret = 0;
1041
1042 spin_lock_irqsave(&chan->lock, flags);
1043
1044 if (chan->state == CPDMA_STATE_TEARDOWN) {
1045 ret = -EINVAL;
1046 goto unlock_ret;
1047 }
1048
Grygorii Strashko742fb202016-06-27 12:05:11 +03001049 if (chan->count >= chan->desc_num) {
1050 chan->stats.desc_alloc_fail++;
1051 ret = -ENOMEM;
1052 goto unlock_ret;
1053 }
1054
1055 desc = cpdma_desc_alloc(ctlr->pool);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001056 if (!desc) {
1057 chan->stats.desc_alloc_fail++;
1058 ret = -ENOMEM;
1059 goto unlock_ret;
1060 }
1061
1062 if (len < ctlr->params.min_packet_size) {
1063 len = ctlr->params.min_packet_size;
1064 chan->stats.runt_transmit_buff++;
1065 }
1066
1067 buffer = dma_map_single(ctlr->dev, data, len, chan->dir);
Sebastian Siewior14bd0762013-06-20 16:58:45 +02001068 ret = dma_mapping_error(ctlr->dev, buffer);
1069 if (ret) {
1070 cpdma_desc_free(ctlr->pool, desc, 1);
1071 ret = -EINVAL;
1072 goto unlock_ret;
1073 }
1074
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001075 mode = CPDMA_DESC_OWNER | CPDMA_DESC_SOP | CPDMA_DESC_EOP;
Mugunthan V Nf6e135c2013-02-11 09:52:18 +00001076 cpdma_desc_to_port(chan, mode, directed);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001077
Grygorii Strashkoa6c83cc2017-01-06 14:07:29 -06001078 /* Relaxed IO accessors can be used here as there is read barrier
1079 * at the end of write sequence.
1080 */
1081 writel_relaxed(0, &desc->hw_next);
1082 writel_relaxed(buffer, &desc->hw_buffer);
1083 writel_relaxed(len, &desc->hw_len);
1084 writel_relaxed(mode | len, &desc->hw_mode);
1085 writel_relaxed(token, &desc->sw_token);
1086 writel_relaxed(buffer, &desc->sw_buffer);
1087 writel_relaxed(len, &desc->sw_len);
1088 desc_read(desc, sw_len);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001089
1090 __cpdma_chan_submit(chan, desc);
1091
1092 if (chan->state == CPDMA_STATE_ACTIVE && chan->rxfree)
1093 chan_write(chan, rxfree, 1);
1094
1095 chan->count++;
1096
1097unlock_ret:
1098 spin_unlock_irqrestore(&chan->lock, flags);
1099 return ret;
1100}
Arnd Bergmann32a6d902012-04-20 10:56:09 +00001101EXPORT_SYMBOL_GPL(cpdma_chan_submit);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001102
Mugunthan V Nfae50822013-01-17 06:31:34 +00001103bool cpdma_check_free_tx_desc(struct cpdma_chan *chan)
1104{
Mugunthan V Nfae50822013-01-17 06:31:34 +00001105 struct cpdma_ctlr *ctlr = chan->ctlr;
1106 struct cpdma_desc_pool *pool = ctlr->pool;
Grygorii Strashko742fb202016-06-27 12:05:11 +03001107 bool free_tx_desc;
1108 unsigned long flags;
Mugunthan V Nfae50822013-01-17 06:31:34 +00001109
Grygorii Strashko742fb202016-06-27 12:05:11 +03001110 spin_lock_irqsave(&chan->lock, flags);
1111 free_tx_desc = (chan->count < chan->desc_num) &&
1112 gen_pool_avail(pool->gen_pool);
1113 spin_unlock_irqrestore(&chan->lock, flags);
1114 return free_tx_desc;
Mugunthan V Nfae50822013-01-17 06:31:34 +00001115}
1116EXPORT_SYMBOL_GPL(cpdma_check_free_tx_desc);
1117
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001118static void __cpdma_chan_free(struct cpdma_chan *chan,
1119 struct cpdma_desc __iomem *desc,
1120 int outlen, int status)
1121{
1122 struct cpdma_ctlr *ctlr = chan->ctlr;
1123 struct cpdma_desc_pool *pool = ctlr->pool;
1124 dma_addr_t buff_dma;
1125 int origlen;
1126 void *token;
1127
1128 token = (void *)desc_read(desc, sw_token);
1129 buff_dma = desc_read(desc, sw_buffer);
1130 origlen = desc_read(desc, sw_len);
1131
1132 dma_unmap_single(ctlr->dev, buff_dma, origlen, chan->dir);
1133 cpdma_desc_free(pool, desc, 1);
1134 (*chan->handler)(token, outlen, status);
1135}
1136
1137static int __cpdma_chan_process(struct cpdma_chan *chan)
1138{
1139 struct cpdma_ctlr *ctlr = chan->ctlr;
1140 struct cpdma_desc __iomem *desc;
1141 int status, outlen;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +00001142 int cb_status = 0;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001143 struct cpdma_desc_pool *pool = ctlr->pool;
1144 dma_addr_t desc_dma;
1145 unsigned long flags;
1146
1147 spin_lock_irqsave(&chan->lock, flags);
1148
1149 desc = chan->head;
1150 if (!desc) {
1151 chan->stats.empty_dequeue++;
1152 status = -ENOENT;
1153 goto unlock_ret;
1154 }
1155 desc_dma = desc_phys(pool, desc);
1156
Grygorii Strashkoa6c83cc2017-01-06 14:07:29 -06001157 status = desc_read(desc, hw_mode);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001158 outlen = status & 0x7ff;
1159 if (status & CPDMA_DESC_OWNER) {
1160 chan->stats.busy_dequeue++;
1161 status = -EBUSY;
1162 goto unlock_ret;
1163 }
Mugunthan V N28a19fe2013-05-29 20:22:01 +00001164
1165 if (status & CPDMA_DESC_PASS_CRC)
1166 outlen -= CPDMA_DESC_CRC_LEN;
1167
Mugunthan V Nf6e135c2013-02-11 09:52:18 +00001168 status = status & (CPDMA_DESC_EOQ | CPDMA_DESC_TD_COMPLETE |
1169 CPDMA_DESC_PORT_MASK);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001170
1171 chan->head = desc_from_phys(pool, desc_read(desc, hw_next));
1172 chan_write(chan, cp, desc_dma);
1173 chan->count--;
1174 chan->stats.good_dequeue++;
1175
Grygorii Strashko12a303e2017-01-06 14:07:30 -06001176 if ((status & CPDMA_DESC_EOQ) && chan->head) {
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001177 chan->stats.requeue++;
1178 chan_write(chan, hdp, desc_phys(pool, chan->head));
1179 }
1180
1181 spin_unlock_irqrestore(&chan->lock, flags);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +00001182 if (unlikely(status & CPDMA_DESC_TD_COMPLETE))
1183 cb_status = -ENOSYS;
1184 else
1185 cb_status = status;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001186
Sebastian Siewiorb4727e62013-04-23 07:31:39 +00001187 __cpdma_chan_free(chan, desc, outlen, cb_status);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001188 return status;
1189
1190unlock_ret:
1191 spin_unlock_irqrestore(&chan->lock, flags);
1192 return status;
1193}
1194
1195int cpdma_chan_process(struct cpdma_chan *chan, int quota)
1196{
1197 int used = 0, ret = 0;
1198
1199 if (chan->state != CPDMA_STATE_ACTIVE)
1200 return -EINVAL;
1201
1202 while (used < quota) {
1203 ret = __cpdma_chan_process(chan);
1204 if (ret < 0)
1205 break;
1206 used++;
1207 }
1208 return used;
1209}
Arnd Bergmann32a6d902012-04-20 10:56:09 +00001210EXPORT_SYMBOL_GPL(cpdma_chan_process);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001211
1212int cpdma_chan_start(struct cpdma_chan *chan)
1213{
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001214 struct cpdma_ctlr *ctlr = chan->ctlr;
1215 unsigned long flags;
1216 int ret;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001217
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001218 spin_lock_irqsave(&ctlr->lock, flags);
1219 ret = cpdma_chan_set_chan_shaper(chan);
1220 spin_unlock_irqrestore(&ctlr->lock, flags);
1221 if (ret)
1222 return ret;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001223
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001224 ret = cpdma_chan_on(chan);
1225 if (ret)
1226 return ret;
1227
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001228 return 0;
1229}
Arnd Bergmann32a6d902012-04-20 10:56:09 +00001230EXPORT_SYMBOL_GPL(cpdma_chan_start);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001231
1232int cpdma_chan_stop(struct cpdma_chan *chan)
1233{
1234 struct cpdma_ctlr *ctlr = chan->ctlr;
1235 struct cpdma_desc_pool *pool = ctlr->pool;
1236 unsigned long flags;
1237 int ret;
Sebastian Siewior817f6d12013-04-23 07:31:35 +00001238 unsigned timeout;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001239
1240 spin_lock_irqsave(&chan->lock, flags);
Christian Rieschcd11cf52014-03-24 13:46:27 +01001241 if (chan->state == CPDMA_STATE_TEARDOWN) {
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001242 spin_unlock_irqrestore(&chan->lock, flags);
1243 return -EINVAL;
1244 }
1245
1246 chan->state = CPDMA_STATE_TEARDOWN;
1247 dma_reg_write(ctlr, chan->int_clear, chan->mask);
1248
1249 /* trigger teardown */
Christian Rieschb4ad0422012-02-22 21:58:00 +00001250 dma_reg_write(ctlr, chan->td, chan_linear(chan));
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001251
1252 /* wait for teardown complete */
Sebastian Siewior817f6d12013-04-23 07:31:35 +00001253 timeout = 100 * 100; /* 100 ms */
1254 while (timeout) {
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001255 u32 cp = chan_read(chan, cp);
1256 if ((cp & CPDMA_TEARDOWN_VALUE) == CPDMA_TEARDOWN_VALUE)
1257 break;
Sebastian Siewior817f6d12013-04-23 07:31:35 +00001258 udelay(10);
1259 timeout--;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001260 }
Sebastian Siewior817f6d12013-04-23 07:31:35 +00001261 WARN_ON(!timeout);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001262 chan_write(chan, cp, CPDMA_TEARDOWN_VALUE);
1263
1264 /* handle completed packets */
Ilya Yanok7746ab02011-12-18 10:02:04 +00001265 spin_unlock_irqrestore(&chan->lock, flags);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001266 do {
1267 ret = __cpdma_chan_process(chan);
1268 if (ret < 0)
1269 break;
1270 } while ((ret & CPDMA_DESC_TD_COMPLETE) == 0);
Ilya Yanok7746ab02011-12-18 10:02:04 +00001271 spin_lock_irqsave(&chan->lock, flags);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001272
1273 /* remaining packets haven't been tx/rx'ed, clean them up */
1274 while (chan->head) {
1275 struct cpdma_desc __iomem *desc = chan->head;
1276 dma_addr_t next_dma;
1277
1278 next_dma = desc_read(desc, hw_next);
1279 chan->head = desc_from_phys(pool, next_dma);
htbeginffb5ba92012-10-01 16:42:43 +00001280 chan->count--;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001281 chan->stats.teardown_dequeue++;
1282
1283 /* issue callback without locks held */
1284 spin_unlock_irqrestore(&chan->lock, flags);
1285 __cpdma_chan_free(chan, desc, 0, -ENOSYS);
1286 spin_lock_irqsave(&chan->lock, flags);
1287 }
1288
1289 chan->state = CPDMA_STATE_IDLE;
1290 spin_unlock_irqrestore(&chan->lock, flags);
1291 return 0;
1292}
Arnd Bergmann32a6d902012-04-20 10:56:09 +00001293EXPORT_SYMBOL_GPL(cpdma_chan_stop);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001294
1295int cpdma_chan_int_ctrl(struct cpdma_chan *chan, bool enable)
1296{
1297 unsigned long flags;
1298
1299 spin_lock_irqsave(&chan->lock, flags);
1300 if (chan->state != CPDMA_STATE_ACTIVE) {
1301 spin_unlock_irqrestore(&chan->lock, flags);
1302 return -EINVAL;
1303 }
1304
1305 dma_reg_write(chan->ctlr, enable ? chan->int_set : chan->int_clear,
1306 chan->mask);
1307 spin_unlock_irqrestore(&chan->lock, flags);
1308
1309 return 0;
1310}
1311
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001312int cpdma_control_get(struct cpdma_ctlr *ctlr, int control)
1313{
1314 unsigned long flags;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001315 int ret;
1316
1317 spin_lock_irqsave(&ctlr->lock, flags);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001318 ret = _cpdma_control_get(ctlr, control);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001319 spin_unlock_irqrestore(&ctlr->lock, flags);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001320
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001321 return ret;
1322}
1323
1324int cpdma_control_set(struct cpdma_ctlr *ctlr, int control, int value)
1325{
1326 unsigned long flags;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001327 int ret;
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001328
1329 spin_lock_irqsave(&ctlr->lock, flags);
Ivan Khoronzhuk991ddb12016-11-11 15:45:24 +02001330 ret = _cpdma_control_set(ctlr, control, value);
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001331 spin_unlock_irqrestore(&ctlr->lock, flags);
Ivan Khoronzhuk8f32b902016-11-29 17:00:48 +02001332
Cyril Chemparathyef8c2da2010-09-15 10:11:28 -04001333 return ret;
1334}
Arnd Bergmann6929e242013-02-14 17:53:01 +01001335EXPORT_SYMBOL_GPL(cpdma_control_set);
Sebastian Siewior4bc21d42013-04-24 08:48:22 +00001336
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06001337int cpdma_get_num_rx_descs(struct cpdma_ctlr *ctlr)
1338{
1339 return ctlr->num_rx_desc;
1340}
1341EXPORT_SYMBOL_GPL(cpdma_get_num_rx_descs);
1342
1343int cpdma_get_num_tx_descs(struct cpdma_ctlr *ctlr)
1344{
1345 return ctlr->num_tx_desc;
1346}
1347EXPORT_SYMBOL_GPL(cpdma_get_num_tx_descs);
1348
1349void cpdma_set_num_rx_descs(struct cpdma_ctlr *ctlr, int num_rx_desc)
1350{
1351 ctlr->num_rx_desc = num_rx_desc;
1352 ctlr->num_tx_desc = ctlr->pool->num_desc - ctlr->num_rx_desc;
1353}
1354EXPORT_SYMBOL_GPL(cpdma_set_num_rx_descs);
1355
Sebastian Siewior4bc21d42013-04-24 08:48:22 +00001356MODULE_LICENSE("GPL");