blob: b8d858c7a7a5f6dd33189bb01e605790716cde4b [file] [log] [blame]
Yong Wang0c42bd02010-07-30 16:23:03 +08001/*
2 * Topcliff PCH DMA controller driver
3 * Copyright (c) 2010 Intel Corporation
Tomoya MORINAGAe79e72b2011-11-17 16:14:22 +09004 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
Yong Wang0c42bd02010-07-30 16:23:03 +08005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Yong Wang0c42bd02010-07-30 16:23:03 +080014 */
15
16#include <linux/dmaengine.h>
17#include <linux/dma-mapping.h>
18#include <linux/init.h>
19#include <linux/pci.h>
Vinod Koula15783c2014-05-22 18:50:49 +053020#include <linux/slab.h>
Yong Wang0c42bd02010-07-30 16:23:03 +080021#include <linux/interrupt.h>
22#include <linux/module.h>
23#include <linux/pch_dma.h>
24
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000025#include "dmaengine.h"
26
Yong Wang0c42bd02010-07-30 16:23:03 +080027#define DRV_NAME "pch-dma"
28
29#define DMA_CTL0_DISABLE 0x0
30#define DMA_CTL0_SG 0x1
31#define DMA_CTL0_ONESHOT 0x2
32#define DMA_CTL0_MODE_MASK_BITS 0x3
33#define DMA_CTL0_DIR_SHIFT_BITS 2
34#define DMA_CTL0_BITS_PER_CH 4
35
36#define DMA_CTL2_START_SHIFT_BITS 8
37#define DMA_CTL2_IRQ_ENABLE_MASK ((1UL << DMA_CTL2_START_SHIFT_BITS) - 1)
38
39#define DMA_STATUS_IDLE 0x0
40#define DMA_STATUS_DESC_READ 0x1
41#define DMA_STATUS_WAIT 0x2
42#define DMA_STATUS_ACCESS 0x3
43#define DMA_STATUS_BITS_PER_CH 2
44#define DMA_STATUS_MASK_BITS 0x3
45#define DMA_STATUS_SHIFT_BITS 16
46#define DMA_STATUS_IRQ(x) (0x1 << (x))
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +090047#define DMA_STATUS0_ERR(x) (0x1 << ((x) + 8))
48#define DMA_STATUS2_ERR(x) (0x1 << (x))
Yong Wang0c42bd02010-07-30 16:23:03 +080049
50#define DMA_DESC_WIDTH_SHIFT_BITS 12
51#define DMA_DESC_WIDTH_1_BYTE (0x3 << DMA_DESC_WIDTH_SHIFT_BITS)
52#define DMA_DESC_WIDTH_2_BYTES (0x2 << DMA_DESC_WIDTH_SHIFT_BITS)
53#define DMA_DESC_WIDTH_4_BYTES (0x0 << DMA_DESC_WIDTH_SHIFT_BITS)
54#define DMA_DESC_MAX_COUNT_1_BYTE 0x3FF
55#define DMA_DESC_MAX_COUNT_2_BYTES 0x3FF
56#define DMA_DESC_MAX_COUNT_4_BYTES 0x7FF
57#define DMA_DESC_END_WITHOUT_IRQ 0x0
58#define DMA_DESC_END_WITH_IRQ 0x1
59#define DMA_DESC_FOLLOW_WITHOUT_IRQ 0x2
60#define DMA_DESC_FOLLOW_WITH_IRQ 0x3
61
Tomoya MORINAGAc43f1502011-10-11 21:43:21 +090062#define MAX_CHAN_NR 12
Yong Wang0c42bd02010-07-30 16:23:03 +080063
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +090064#define DMA_MASK_CTL0_MODE 0x33333333
65#define DMA_MASK_CTL2_MODE 0x00003333
66
Yong Wang0c42bd02010-07-30 16:23:03 +080067static unsigned int init_nr_desc_per_channel = 64;
68module_param(init_nr_desc_per_channel, uint, 0644);
69MODULE_PARM_DESC(init_nr_desc_per_channel,
70 "initial descriptors per channel (default: 64)");
71
72struct pch_dma_desc_regs {
73 u32 dev_addr;
74 u32 mem_addr;
75 u32 size;
76 u32 next;
77};
78
79struct pch_dma_regs {
80 u32 dma_ctl0;
81 u32 dma_ctl1;
82 u32 dma_ctl2;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +090083 u32 dma_ctl3;
Yong Wang0c42bd02010-07-30 16:23:03 +080084 u32 dma_sts0;
85 u32 dma_sts1;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +090086 u32 dma_sts2;
Yong Wang0c42bd02010-07-30 16:23:03 +080087 u32 reserved3;
Tomoya MORINAGA26d890f2011-02-18 10:01:21 +053088 struct pch_dma_desc_regs desc[MAX_CHAN_NR];
Yong Wang0c42bd02010-07-30 16:23:03 +080089};
90
91struct pch_dma_desc {
92 struct pch_dma_desc_regs regs;
93 struct dma_async_tx_descriptor txd;
94 struct list_head desc_node;
95 struct list_head tx_list;
96};
97
98struct pch_dma_chan {
99 struct dma_chan chan;
100 void __iomem *membase;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530101 enum dma_transfer_direction dir;
Yong Wang0c42bd02010-07-30 16:23:03 +0800102 struct tasklet_struct tasklet;
103 unsigned long err_status;
104
105 spinlock_t lock;
106
Yong Wang0c42bd02010-07-30 16:23:03 +0800107 struct list_head active_list;
108 struct list_head queue;
109 struct list_head free_list;
110 unsigned int descs_allocated;
111};
112
113#define PDC_DEV_ADDR 0x00
114#define PDC_MEM_ADDR 0x04
115#define PDC_SIZE 0x08
116#define PDC_NEXT 0x0C
117
118#define channel_readl(pdc, name) \
119 readl((pdc)->membase + PDC_##name)
120#define channel_writel(pdc, name, val) \
121 writel((val), (pdc)->membase + PDC_##name)
122
123struct pch_dma {
124 struct dma_device dma;
125 void __iomem *membase;
126 struct pci_pool *pool;
127 struct pch_dma_regs regs;
128 struct pch_dma_desc_regs ch_regs[MAX_CHAN_NR];
Tomoya MORINAGA26d890f2011-02-18 10:01:21 +0530129 struct pch_dma_chan channels[MAX_CHAN_NR];
Yong Wang0c42bd02010-07-30 16:23:03 +0800130};
131
132#define PCH_DMA_CTL0 0x00
133#define PCH_DMA_CTL1 0x04
134#define PCH_DMA_CTL2 0x08
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900135#define PCH_DMA_CTL3 0x0C
Yong Wang0c42bd02010-07-30 16:23:03 +0800136#define PCH_DMA_STS0 0x10
137#define PCH_DMA_STS1 0x14
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900138#define PCH_DMA_STS2 0x18
Yong Wang0c42bd02010-07-30 16:23:03 +0800139
140#define dma_readl(pd, name) \
Yong Wang61cd2202010-08-05 10:38:43 +0800141 readl((pd)->membase + PCH_DMA_##name)
Yong Wang0c42bd02010-07-30 16:23:03 +0800142#define dma_writel(pd, name, val) \
Yong Wang61cd2202010-08-05 10:38:43 +0800143 writel((val), (pd)->membase + PCH_DMA_##name)
Yong Wang0c42bd02010-07-30 16:23:03 +0800144
Tomoya MORINAGA08645fd2011-05-09 16:09:36 +0900145static inline
146struct pch_dma_desc *to_pd_desc(struct dma_async_tx_descriptor *txd)
Yong Wang0c42bd02010-07-30 16:23:03 +0800147{
148 return container_of(txd, struct pch_dma_desc, txd);
149}
150
151static inline struct pch_dma_chan *to_pd_chan(struct dma_chan *chan)
152{
153 return container_of(chan, struct pch_dma_chan, chan);
154}
155
156static inline struct pch_dma *to_pd(struct dma_device *ddev)
157{
158 return container_of(ddev, struct pch_dma, dma);
159}
160
161static inline struct device *chan2dev(struct dma_chan *chan)
162{
163 return &chan->dev->device;
164}
165
166static inline struct device *chan2parent(struct dma_chan *chan)
167{
168 return chan->dev->device.parent;
169}
170
Tomoya MORINAGA08645fd2011-05-09 16:09:36 +0900171static inline
172struct pch_dma_desc *pdc_first_active(struct pch_dma_chan *pd_chan)
Yong Wang0c42bd02010-07-30 16:23:03 +0800173{
174 return list_first_entry(&pd_chan->active_list,
175 struct pch_dma_desc, desc_node);
176}
177
Tomoya MORINAGA08645fd2011-05-09 16:09:36 +0900178static inline
179struct pch_dma_desc *pdc_first_queued(struct pch_dma_chan *pd_chan)
Yong Wang0c42bd02010-07-30 16:23:03 +0800180{
181 return list_first_entry(&pd_chan->queue,
182 struct pch_dma_desc, desc_node);
183}
184
185static void pdc_enable_irq(struct dma_chan *chan, int enable)
186{
187 struct pch_dma *pd = to_pd(chan->device);
188 u32 val;
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900189 int pos;
190
191 if (chan->chan_id < 8)
192 pos = chan->chan_id;
193 else
194 pos = chan->chan_id + 8;
Yong Wang0c42bd02010-07-30 16:23:03 +0800195
196 val = dma_readl(pd, CTL2);
197
198 if (enable)
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900199 val |= 0x1 << pos;
Yong Wang0c42bd02010-07-30 16:23:03 +0800200 else
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900201 val &= ~(0x1 << pos);
Yong Wang0c42bd02010-07-30 16:23:03 +0800202
203 dma_writel(pd, CTL2, val);
204
205 dev_dbg(chan2dev(chan), "pdc_enable_irq: chan %d -> %x\n",
206 chan->chan_id, val);
207}
208
209static void pdc_set_dir(struct dma_chan *chan)
210{
211 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
212 struct pch_dma *pd = to_pd(chan->device);
213 u32 val;
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900214 u32 mask_mode;
215 u32 mask_ctl;
Yong Wang0c42bd02010-07-30 16:23:03 +0800216
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900217 if (chan->chan_id < 8) {
218 val = dma_readl(pd, CTL0);
Yong Wang0c42bd02010-07-30 16:23:03 +0800219
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900220 mask_mode = DMA_CTL0_MODE_MASK_BITS <<
221 (DMA_CTL0_BITS_PER_CH * chan->chan_id);
222 mask_ctl = DMA_MASK_CTL0_MODE & ~(DMA_CTL0_MODE_MASK_BITS <<
223 (DMA_CTL0_BITS_PER_CH * chan->chan_id));
224 val &= mask_mode;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530225 if (pd_chan->dir == DMA_MEM_TO_DEV)
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900226 val |= 0x1 << (DMA_CTL0_BITS_PER_CH * chan->chan_id +
227 DMA_CTL0_DIR_SHIFT_BITS);
228 else
229 val &= ~(0x1 << (DMA_CTL0_BITS_PER_CH * chan->chan_id +
230 DMA_CTL0_DIR_SHIFT_BITS));
Yong Wang0c42bd02010-07-30 16:23:03 +0800231
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900232 val |= mask_ctl;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900233 dma_writel(pd, CTL0, val);
234 } else {
235 int ch = chan->chan_id - 8; /* ch8-->0 ch9-->1 ... ch11->3 */
236 val = dma_readl(pd, CTL3);
237
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900238 mask_mode = DMA_CTL0_MODE_MASK_BITS <<
239 (DMA_CTL0_BITS_PER_CH * ch);
240 mask_ctl = DMA_MASK_CTL2_MODE & ~(DMA_CTL0_MODE_MASK_BITS <<
241 (DMA_CTL0_BITS_PER_CH * ch));
242 val &= mask_mode;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530243 if (pd_chan->dir == DMA_MEM_TO_DEV)
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900244 val |= 0x1 << (DMA_CTL0_BITS_PER_CH * ch +
245 DMA_CTL0_DIR_SHIFT_BITS);
246 else
247 val &= ~(0x1 << (DMA_CTL0_BITS_PER_CH * ch +
248 DMA_CTL0_DIR_SHIFT_BITS));
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900249 val |= mask_ctl;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900250 dma_writel(pd, CTL3, val);
251 }
Yong Wang0c42bd02010-07-30 16:23:03 +0800252
253 dev_dbg(chan2dev(chan), "pdc_set_dir: chan %d -> %x\n",
254 chan->chan_id, val);
255}
256
257static void pdc_set_mode(struct dma_chan *chan, u32 mode)
258{
259 struct pch_dma *pd = to_pd(chan->device);
260 u32 val;
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900261 u32 mask_ctl;
262 u32 mask_dir;
Yong Wang0c42bd02010-07-30 16:23:03 +0800263
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900264 if (chan->chan_id < 8) {
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900265 mask_ctl = DMA_MASK_CTL0_MODE & ~(DMA_CTL0_MODE_MASK_BITS <<
266 (DMA_CTL0_BITS_PER_CH * chan->chan_id));
267 mask_dir = 1 << (DMA_CTL0_BITS_PER_CH * chan->chan_id +\
268 DMA_CTL0_DIR_SHIFT_BITS);
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900269 val = dma_readl(pd, CTL0);
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900270 val &= mask_dir;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900271 val |= mode << (DMA_CTL0_BITS_PER_CH * chan->chan_id);
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900272 val |= mask_ctl;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900273 dma_writel(pd, CTL0, val);
274 } else {
275 int ch = chan->chan_id - 8; /* ch8-->0 ch9-->1 ... ch11->3 */
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900276 mask_ctl = DMA_MASK_CTL2_MODE & ~(DMA_CTL0_MODE_MASK_BITS <<
277 (DMA_CTL0_BITS_PER_CH * ch));
278 mask_dir = 1 << (DMA_CTL0_BITS_PER_CH * ch +\
279 DMA_CTL0_DIR_SHIFT_BITS);
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900280 val = dma_readl(pd, CTL3);
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900281 val &= mask_dir;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900282 val |= mode << (DMA_CTL0_BITS_PER_CH * ch);
Tomoya MORINAGA0b052f42011-07-14 09:52:38 +0900283 val |= mask_ctl;
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900284 dma_writel(pd, CTL3, val);
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900285 }
Yong Wang0c42bd02010-07-30 16:23:03 +0800286
287 dev_dbg(chan2dev(chan), "pdc_set_mode: chan %d -> %x\n",
288 chan->chan_id, val);
289}
290
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900291static u32 pdc_get_status0(struct pch_dma_chan *pd_chan)
Yong Wang0c42bd02010-07-30 16:23:03 +0800292{
293 struct pch_dma *pd = to_pd(pd_chan->chan.device);
294 u32 val;
295
296 val = dma_readl(pd, STS0);
297 return DMA_STATUS_MASK_BITS & (val >> (DMA_STATUS_SHIFT_BITS +
298 DMA_STATUS_BITS_PER_CH * pd_chan->chan.chan_id));
299}
300
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900301static u32 pdc_get_status2(struct pch_dma_chan *pd_chan)
302{
303 struct pch_dma *pd = to_pd(pd_chan->chan.device);
304 u32 val;
305
306 val = dma_readl(pd, STS2);
307 return DMA_STATUS_MASK_BITS & (val >> (DMA_STATUS_SHIFT_BITS +
308 DMA_STATUS_BITS_PER_CH * (pd_chan->chan.chan_id - 8)));
309}
310
Yong Wang0c42bd02010-07-30 16:23:03 +0800311static bool pdc_is_idle(struct pch_dma_chan *pd_chan)
312{
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900313 u32 sts;
314
315 if (pd_chan->chan.chan_id < 8)
316 sts = pdc_get_status0(pd_chan);
317 else
318 sts = pdc_get_status2(pd_chan);
319
320
321 if (sts == DMA_STATUS_IDLE)
Yong Wang0c42bd02010-07-30 16:23:03 +0800322 return true;
323 else
324 return false;
325}
326
327static void pdc_dostart(struct pch_dma_chan *pd_chan, struct pch_dma_desc* desc)
328{
Yong Wang0c42bd02010-07-30 16:23:03 +0800329 if (!pdc_is_idle(pd_chan)) {
330 dev_err(chan2dev(&pd_chan->chan),
331 "BUG: Attempt to start non-idle channel\n");
332 return;
333 }
334
Yong Wang0c42bd02010-07-30 16:23:03 +0800335 dev_dbg(chan2dev(&pd_chan->chan), "chan %d -> dev_addr: %x\n",
336 pd_chan->chan.chan_id, desc->regs.dev_addr);
337 dev_dbg(chan2dev(&pd_chan->chan), "chan %d -> mem_addr: %x\n",
338 pd_chan->chan.chan_id, desc->regs.mem_addr);
339 dev_dbg(chan2dev(&pd_chan->chan), "chan %d -> size: %x\n",
340 pd_chan->chan.chan_id, desc->regs.size);
341 dev_dbg(chan2dev(&pd_chan->chan), "chan %d -> next: %x\n",
342 pd_chan->chan.chan_id, desc->regs.next);
343
Tomoya MORINAGA943d8d82010-12-01 19:49:48 +0900344 if (list_empty(&desc->tx_list)) {
345 channel_writel(pd_chan, DEV_ADDR, desc->regs.dev_addr);
346 channel_writel(pd_chan, MEM_ADDR, desc->regs.mem_addr);
347 channel_writel(pd_chan, SIZE, desc->regs.size);
348 channel_writel(pd_chan, NEXT, desc->regs.next);
Yong Wang0c42bd02010-07-30 16:23:03 +0800349 pdc_set_mode(&pd_chan->chan, DMA_CTL0_ONESHOT);
Tomoya MORINAGA943d8d82010-12-01 19:49:48 +0900350 } else {
351 channel_writel(pd_chan, NEXT, desc->txd.phys);
Yong Wang0c42bd02010-07-30 16:23:03 +0800352 pdc_set_mode(&pd_chan->chan, DMA_CTL0_SG);
Tomoya MORINAGA943d8d82010-12-01 19:49:48 +0900353 }
Yong Wang0c42bd02010-07-30 16:23:03 +0800354}
355
356static void pdc_chain_complete(struct pch_dma_chan *pd_chan,
357 struct pch_dma_desc *desc)
358{
359 struct dma_async_tx_descriptor *txd = &desc->txd;
Dave Jiang5c066f72016-07-20 13:12:29 -0700360 struct dmaengine_desc_callback cb;
Yong Wang0c42bd02010-07-30 16:23:03 +0800361
Dave Jiang5c066f72016-07-20 13:12:29 -0700362 dmaengine_desc_get_callback(txd, &cb);
Yong Wang0c42bd02010-07-30 16:23:03 +0800363 list_splice_init(&desc->tx_list, &pd_chan->free_list);
364 list_move(&desc->desc_node, &pd_chan->free_list);
365
Dave Jiang5c066f72016-07-20 13:12:29 -0700366 dmaengine_desc_callback_invoke(&cb, NULL);
Yong Wang0c42bd02010-07-30 16:23:03 +0800367}
368
369static void pdc_complete_all(struct pch_dma_chan *pd_chan)
370{
371 struct pch_dma_desc *desc, *_d;
372 LIST_HEAD(list);
373
374 BUG_ON(!pdc_is_idle(pd_chan));
375
376 if (!list_empty(&pd_chan->queue))
377 pdc_dostart(pd_chan, pdc_first_queued(pd_chan));
378
379 list_splice_init(&pd_chan->active_list, &list);
380 list_splice_init(&pd_chan->queue, &pd_chan->active_list);
381
382 list_for_each_entry_safe(desc, _d, &list, desc_node)
383 pdc_chain_complete(pd_chan, desc);
384}
385
386static void pdc_handle_error(struct pch_dma_chan *pd_chan)
387{
388 struct pch_dma_desc *bad_desc;
389
390 bad_desc = pdc_first_active(pd_chan);
391 list_del(&bad_desc->desc_node);
392
393 list_splice_init(&pd_chan->queue, pd_chan->active_list.prev);
394
395 if (!list_empty(&pd_chan->active_list))
396 pdc_dostart(pd_chan, pdc_first_active(pd_chan));
397
398 dev_crit(chan2dev(&pd_chan->chan), "Bad descriptor submitted\n");
399 dev_crit(chan2dev(&pd_chan->chan), "descriptor cookie: %d\n",
400 bad_desc->txd.cookie);
401
402 pdc_chain_complete(pd_chan, bad_desc);
403}
404
405static void pdc_advance_work(struct pch_dma_chan *pd_chan)
406{
407 if (list_empty(&pd_chan->active_list) ||
408 list_is_singular(&pd_chan->active_list)) {
409 pdc_complete_all(pd_chan);
410 } else {
411 pdc_chain_complete(pd_chan, pdc_first_active(pd_chan));
412 pdc_dostart(pd_chan, pdc_first_active(pd_chan));
413 }
414}
415
Yong Wang0c42bd02010-07-30 16:23:03 +0800416static dma_cookie_t pd_tx_submit(struct dma_async_tx_descriptor *txd)
417{
418 struct pch_dma_desc *desc = to_pd_desc(txd);
419 struct pch_dma_chan *pd_chan = to_pd_chan(txd->chan);
420 dma_cookie_t cookie;
421
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530422 spin_lock(&pd_chan->lock);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000423 cookie = dma_cookie_assign(txd);
Yong Wang0c42bd02010-07-30 16:23:03 +0800424
425 if (list_empty(&pd_chan->active_list)) {
426 list_add_tail(&desc->desc_node, &pd_chan->active_list);
427 pdc_dostart(pd_chan, desc);
428 } else {
429 list_add_tail(&desc->desc_node, &pd_chan->queue);
430 }
431
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530432 spin_unlock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800433 return 0;
434}
435
436static struct pch_dma_desc *pdc_alloc_desc(struct dma_chan *chan, gfp_t flags)
437{
438 struct pch_dma_desc *desc = NULL;
439 struct pch_dma *pd = to_pd(chan->device);
440 dma_addr_t addr;
441
Souptick Joarder5c279b12016-11-28 15:41:44 +0530442 desc = pci_pool_zalloc(pd->pool, flags, &addr);
Yong Wang0c42bd02010-07-30 16:23:03 +0800443 if (desc) {
Yong Wang0c42bd02010-07-30 16:23:03 +0800444 INIT_LIST_HEAD(&desc->tx_list);
445 dma_async_tx_descriptor_init(&desc->txd, chan);
446 desc->txd.tx_submit = pd_tx_submit;
447 desc->txd.flags = DMA_CTRL_ACK;
448 desc->txd.phys = addr;
449 }
450
451 return desc;
452}
453
454static struct pch_dma_desc *pdc_desc_get(struct pch_dma_chan *pd_chan)
455{
456 struct pch_dma_desc *desc, *_d;
457 struct pch_dma_desc *ret = NULL;
Liu Yuan364de772011-04-02 14:20:47 +0800458 int i = 0;
Yong Wang0c42bd02010-07-30 16:23:03 +0800459
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530460 spin_lock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800461 list_for_each_entry_safe(desc, _d, &pd_chan->free_list, desc_node) {
462 i++;
463 if (async_tx_test_ack(&desc->txd)) {
464 list_del(&desc->desc_node);
465 ret = desc;
466 break;
467 }
468 dev_dbg(chan2dev(&pd_chan->chan), "desc %p not ACKed\n", desc);
469 }
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530470 spin_unlock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800471 dev_dbg(chan2dev(&pd_chan->chan), "scanned %d descriptors\n", i);
472
473 if (!ret) {
Tomoya MORINAGA5c1ef592013-02-12 11:25:33 +0900474 ret = pdc_alloc_desc(&pd_chan->chan, GFP_ATOMIC);
Yong Wang0c42bd02010-07-30 16:23:03 +0800475 if (ret) {
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530476 spin_lock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800477 pd_chan->descs_allocated++;
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530478 spin_unlock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800479 } else {
480 dev_err(chan2dev(&pd_chan->chan),
481 "failed to alloc desc\n");
482 }
483 }
484
485 return ret;
486}
487
488static void pdc_desc_put(struct pch_dma_chan *pd_chan,
489 struct pch_dma_desc *desc)
490{
491 if (desc) {
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530492 spin_lock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800493 list_splice_init(&desc->tx_list, &pd_chan->free_list);
494 list_add(&desc->desc_node, &pd_chan->free_list);
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530495 spin_unlock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800496 }
497}
498
499static int pd_alloc_chan_resources(struct dma_chan *chan)
500{
501 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
502 struct pch_dma_desc *desc;
503 LIST_HEAD(tmp_list);
504 int i;
505
506 if (!pdc_is_idle(pd_chan)) {
507 dev_dbg(chan2dev(chan), "DMA channel not idle ?\n");
508 return -EIO;
509 }
510
511 if (!list_empty(&pd_chan->free_list))
512 return pd_chan->descs_allocated;
513
514 for (i = 0; i < init_nr_desc_per_channel; i++) {
515 desc = pdc_alloc_desc(chan, GFP_KERNEL);
516
517 if (!desc) {
518 dev_warn(chan2dev(chan),
519 "Only allocated %d initial descriptors\n", i);
520 break;
521 }
522
523 list_add_tail(&desc->desc_node, &tmp_list);
524 }
525
Alexander Stein70f18912011-06-22 17:05:33 +0200526 spin_lock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800527 list_splice(&tmp_list, &pd_chan->free_list);
528 pd_chan->descs_allocated = i;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +0000529 dma_cookie_init(chan);
Alexander Stein70f18912011-06-22 17:05:33 +0200530 spin_unlock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800531
532 pdc_enable_irq(chan, 1);
Yong Wang0c42bd02010-07-30 16:23:03 +0800533
534 return pd_chan->descs_allocated;
535}
536
537static void pd_free_chan_resources(struct dma_chan *chan)
538{
539 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
540 struct pch_dma *pd = to_pd(chan->device);
541 struct pch_dma_desc *desc, *_d;
542 LIST_HEAD(tmp_list);
543
544 BUG_ON(!pdc_is_idle(pd_chan));
545 BUG_ON(!list_empty(&pd_chan->active_list));
546 BUG_ON(!list_empty(&pd_chan->queue));
547
Alexander Stein70f18912011-06-22 17:05:33 +0200548 spin_lock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800549 list_splice_init(&pd_chan->free_list, &tmp_list);
550 pd_chan->descs_allocated = 0;
Alexander Stein70f18912011-06-22 17:05:33 +0200551 spin_unlock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800552
553 list_for_each_entry_safe(desc, _d, &tmp_list, desc_node)
554 pci_pool_free(pd->pool, desc, desc->txd.phys);
555
556 pdc_enable_irq(chan, 0);
557}
558
559static enum dma_status pd_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
560 struct dma_tx_state *txstate)
561{
Andy Shevchenkoda0a9082013-05-27 15:14:38 +0300562 return dma_cookie_status(chan, cookie, txstate);
Yong Wang0c42bd02010-07-30 16:23:03 +0800563}
564
565static void pd_issue_pending(struct dma_chan *chan)
566{
567 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
568
569 if (pdc_is_idle(pd_chan)) {
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530570 spin_lock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800571 pdc_advance_work(pd_chan);
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530572 spin_unlock(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800573 }
574}
575
576static struct dma_async_tx_descriptor *pd_prep_slave_sg(struct dma_chan *chan,
577 struct scatterlist *sgl, unsigned int sg_len,
Alexandre Bounine185ecb52012-03-08 15:35:13 -0500578 enum dma_transfer_direction direction, unsigned long flags,
579 void *context)
Yong Wang0c42bd02010-07-30 16:23:03 +0800580{
581 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
582 struct pch_dma_slave *pd_slave = chan->private;
583 struct pch_dma_desc *first = NULL;
584 struct pch_dma_desc *prev = NULL;
585 struct pch_dma_desc *desc = NULL;
586 struct scatterlist *sg;
587 dma_addr_t reg;
588 int i;
589
590 if (unlikely(!sg_len)) {
591 dev_info(chan2dev(chan), "prep_slave_sg: length is zero!\n");
592 return NULL;
593 }
594
Vinod Kouldb8196d2011-10-13 22:34:23 +0530595 if (direction == DMA_DEV_TO_MEM)
Yong Wang0c42bd02010-07-30 16:23:03 +0800596 reg = pd_slave->rx_reg;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530597 else if (direction == DMA_MEM_TO_DEV)
Yong Wang0c42bd02010-07-30 16:23:03 +0800598 reg = pd_slave->tx_reg;
599 else
600 return NULL;
601
Tomoya MORINAGAc8fcba62011-05-09 16:09:35 +0900602 pd_chan->dir = direction;
603 pdc_set_dir(chan);
604
Yong Wang0c42bd02010-07-30 16:23:03 +0800605 for_each_sg(sgl, sg, sg_len, i) {
606 desc = pdc_desc_get(pd_chan);
607
608 if (!desc)
609 goto err_desc_get;
610
611 desc->regs.dev_addr = reg;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +0200612 desc->regs.mem_addr = sg_dma_address(sg);
Yong Wang0c42bd02010-07-30 16:23:03 +0800613 desc->regs.size = sg_dma_len(sg);
614 desc->regs.next = DMA_DESC_FOLLOW_WITHOUT_IRQ;
615
616 switch (pd_slave->width) {
617 case PCH_DMA_WIDTH_1_BYTE:
618 if (desc->regs.size > DMA_DESC_MAX_COUNT_1_BYTE)
619 goto err_desc_get;
620 desc->regs.size |= DMA_DESC_WIDTH_1_BYTE;
621 break;
622 case PCH_DMA_WIDTH_2_BYTES:
623 if (desc->regs.size > DMA_DESC_MAX_COUNT_2_BYTES)
624 goto err_desc_get;
625 desc->regs.size |= DMA_DESC_WIDTH_2_BYTES;
626 break;
627 case PCH_DMA_WIDTH_4_BYTES:
628 if (desc->regs.size > DMA_DESC_MAX_COUNT_4_BYTES)
629 goto err_desc_get;
630 desc->regs.size |= DMA_DESC_WIDTH_4_BYTES;
631 break;
632 default:
633 goto err_desc_get;
634 }
635
Yong Wang0c42bd02010-07-30 16:23:03 +0800636 if (!first) {
637 first = desc;
638 } else {
639 prev->regs.next |= desc->txd.phys;
640 list_add_tail(&desc->desc_node, &first->tx_list);
641 }
642
643 prev = desc;
644 }
645
646 if (flags & DMA_PREP_INTERRUPT)
647 desc->regs.next = DMA_DESC_END_WITH_IRQ;
648 else
649 desc->regs.next = DMA_DESC_END_WITHOUT_IRQ;
650
651 first->txd.cookie = -EBUSY;
652 desc->txd.flags = flags;
653
654 return &first->txd;
655
656err_desc_get:
657 dev_err(chan2dev(chan), "failed to get desc or wrong parameters\n");
658 pdc_desc_put(pd_chan, first);
659 return NULL;
660}
661
Maxime Ripardc91781b2014-11-17 14:42:40 +0100662static int pd_device_terminate_all(struct dma_chan *chan)
Yong Wang0c42bd02010-07-30 16:23:03 +0800663{
664 struct pch_dma_chan *pd_chan = to_pd_chan(chan);
665 struct pch_dma_desc *desc, *_d;
666 LIST_HEAD(list);
667
Alexander Stein70f18912011-06-22 17:05:33 +0200668 spin_lock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800669
670 pdc_set_mode(&pd_chan->chan, DMA_CTL0_DISABLE);
671
672 list_splice_init(&pd_chan->active_list, &list);
673 list_splice_init(&pd_chan->queue, &list);
674
675 list_for_each_entry_safe(desc, _d, &list, desc_node)
676 pdc_chain_complete(pd_chan, desc);
677
Alexander Stein70f18912011-06-22 17:05:33 +0200678 spin_unlock_irq(&pd_chan->lock);
Yong Wang0c42bd02010-07-30 16:23:03 +0800679
Yong Wang0c42bd02010-07-30 16:23:03 +0800680 return 0;
681}
682
683static void pdc_tasklet(unsigned long data)
684{
685 struct pch_dma_chan *pd_chan = (struct pch_dma_chan *)data;
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530686 unsigned long flags;
Yong Wang0c42bd02010-07-30 16:23:03 +0800687
688 if (!pdc_is_idle(pd_chan)) {
689 dev_err(chan2dev(&pd_chan->chan),
690 "BUG: handle non-idle channel in tasklet\n");
691 return;
692 }
693
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530694 spin_lock_irqsave(&pd_chan->lock, flags);
Yong Wang0c42bd02010-07-30 16:23:03 +0800695 if (test_and_clear_bit(0, &pd_chan->err_status))
696 pdc_handle_error(pd_chan);
697 else
698 pdc_advance_work(pd_chan);
Tomoya MORINAGAc5a9f9d2011-02-18 10:01:20 +0530699 spin_unlock_irqrestore(&pd_chan->lock, flags);
Yong Wang0c42bd02010-07-30 16:23:03 +0800700}
701
702static irqreturn_t pd_irq(int irq, void *devid)
703{
704 struct pch_dma *pd = (struct pch_dma *)devid;
705 struct pch_dma_chan *pd_chan;
706 u32 sts0;
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900707 u32 sts2;
Yong Wang0c42bd02010-07-30 16:23:03 +0800708 int i;
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900709 int ret0 = IRQ_NONE;
710 int ret2 = IRQ_NONE;
Yong Wang0c42bd02010-07-30 16:23:03 +0800711
712 sts0 = dma_readl(pd, STS0);
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900713 sts2 = dma_readl(pd, STS2);
Yong Wang0c42bd02010-07-30 16:23:03 +0800714
715 dev_dbg(pd->dma.dev, "pd_irq sts0: %x\n", sts0);
716
717 for (i = 0; i < pd->dma.chancnt; i++) {
718 pd_chan = &pd->channels[i];
719
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900720 if (i < 8) {
721 if (sts0 & DMA_STATUS_IRQ(i)) {
722 if (sts0 & DMA_STATUS0_ERR(i))
723 set_bit(0, &pd_chan->err_status);
Yong Wang0c42bd02010-07-30 16:23:03 +0800724
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900725 tasklet_schedule(&pd_chan->tasklet);
726 ret0 = IRQ_HANDLED;
727 }
728 } else {
729 if (sts2 & DMA_STATUS_IRQ(i - 8)) {
730 if (sts2 & DMA_STATUS2_ERR(i))
731 set_bit(0, &pd_chan->err_status);
732
733 tasklet_schedule(&pd_chan->tasklet);
734 ret2 = IRQ_HANDLED;
735 }
Yong Wang0c42bd02010-07-30 16:23:03 +0800736 }
Yong Wang0c42bd02010-07-30 16:23:03 +0800737 }
738
739 /* clear interrupt bits in status register */
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900740 if (ret0)
741 dma_writel(pd, STS0, sts0);
742 if (ret2)
743 dma_writel(pd, STS2, sts2);
Yong Wang0c42bd02010-07-30 16:23:03 +0800744
Tomoya MORINAGAc3d49132011-05-31 10:34:45 +0900745 return ret0 | ret2;
Yong Wang0c42bd02010-07-30 16:23:03 +0800746}
747
Rakib Mullick0b863b32011-03-06 17:26:10 +0600748#ifdef CONFIG_PM
Yong Wang0c42bd02010-07-30 16:23:03 +0800749static void pch_dma_save_regs(struct pch_dma *pd)
750{
751 struct pch_dma_chan *pd_chan;
752 struct dma_chan *chan, *_c;
753 int i = 0;
754
755 pd->regs.dma_ctl0 = dma_readl(pd, CTL0);
756 pd->regs.dma_ctl1 = dma_readl(pd, CTL1);
757 pd->regs.dma_ctl2 = dma_readl(pd, CTL2);
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900758 pd->regs.dma_ctl3 = dma_readl(pd, CTL3);
Yong Wang0c42bd02010-07-30 16:23:03 +0800759
760 list_for_each_entry_safe(chan, _c, &pd->dma.channels, device_node) {
761 pd_chan = to_pd_chan(chan);
762
763 pd->ch_regs[i].dev_addr = channel_readl(pd_chan, DEV_ADDR);
764 pd->ch_regs[i].mem_addr = channel_readl(pd_chan, MEM_ADDR);
765 pd->ch_regs[i].size = channel_readl(pd_chan, SIZE);
766 pd->ch_regs[i].next = channel_readl(pd_chan, NEXT);
767
768 i++;
769 }
770}
771
772static void pch_dma_restore_regs(struct pch_dma *pd)
773{
774 struct pch_dma_chan *pd_chan;
775 struct dma_chan *chan, *_c;
776 int i = 0;
777
778 dma_writel(pd, CTL0, pd->regs.dma_ctl0);
779 dma_writel(pd, CTL1, pd->regs.dma_ctl1);
780 dma_writel(pd, CTL2, pd->regs.dma_ctl2);
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900781 dma_writel(pd, CTL3, pd->regs.dma_ctl3);
Yong Wang0c42bd02010-07-30 16:23:03 +0800782
783 list_for_each_entry_safe(chan, _c, &pd->dma.channels, device_node) {
784 pd_chan = to_pd_chan(chan);
785
786 channel_writel(pd_chan, DEV_ADDR, pd->ch_regs[i].dev_addr);
787 channel_writel(pd_chan, MEM_ADDR, pd->ch_regs[i].mem_addr);
788 channel_writel(pd_chan, SIZE, pd->ch_regs[i].size);
789 channel_writel(pd_chan, NEXT, pd->ch_regs[i].next);
790
791 i++;
792 }
793}
794
795static int pch_dma_suspend(struct pci_dev *pdev, pm_message_t state)
796{
797 struct pch_dma *pd = pci_get_drvdata(pdev);
798
799 if (pd)
800 pch_dma_save_regs(pd);
801
802 pci_save_state(pdev);
803 pci_disable_device(pdev);
804 pci_set_power_state(pdev, pci_choose_state(pdev, state));
805
806 return 0;
807}
808
809static int pch_dma_resume(struct pci_dev *pdev)
810{
811 struct pch_dma *pd = pci_get_drvdata(pdev);
812 int err;
813
814 pci_set_power_state(pdev, PCI_D0);
815 pci_restore_state(pdev);
816
817 err = pci_enable_device(pdev);
818 if (err) {
819 dev_dbg(&pdev->dev, "failed to enable device\n");
820 return err;
821 }
822
823 if (pd)
824 pch_dma_restore_regs(pd);
825
826 return 0;
827}
Rakib Mullick0b863b32011-03-06 17:26:10 +0600828#endif
Yong Wang0c42bd02010-07-30 16:23:03 +0800829
Bill Pemberton463a1f82012-11-19 13:22:55 -0500830static int pch_dma_probe(struct pci_dev *pdev,
Yong Wang0c42bd02010-07-30 16:23:03 +0800831 const struct pci_device_id *id)
832{
833 struct pch_dma *pd;
834 struct pch_dma_regs *regs;
835 unsigned int nr_channels;
836 int err;
837 int i;
838
839 nr_channels = id->driver_data;
Tomoya MORINAGA01631243d2011-10-12 09:38:35 +0900840 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
Yong Wang0c42bd02010-07-30 16:23:03 +0800841 if (!pd)
842 return -ENOMEM;
843
844 pci_set_drvdata(pdev, pd);
845
846 err = pci_enable_device(pdev);
847 if (err) {
848 dev_err(&pdev->dev, "Cannot enable PCI device\n");
849 goto err_free_mem;
850 }
851
852 if (!(pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
853 dev_err(&pdev->dev, "Cannot find proper base address\n");
Wei Yongjun27abb2f2013-07-17 08:34:59 +0800854 err = -ENODEV;
Yong Wang0c42bd02010-07-30 16:23:03 +0800855 goto err_disable_pdev;
856 }
857
858 err = pci_request_regions(pdev, DRV_NAME);
859 if (err) {
860 dev_err(&pdev->dev, "Cannot obtain PCI resources\n");
861 goto err_disable_pdev;
862 }
863
864 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
865 if (err) {
866 dev_err(&pdev->dev, "Cannot set proper DMA config\n");
867 goto err_free_res;
868 }
869
870 regs = pd->membase = pci_iomap(pdev, 1, 0);
871 if (!pd->membase) {
872 dev_err(&pdev->dev, "Cannot map MMIO registers\n");
873 err = -ENOMEM;
874 goto err_free_res;
875 }
876
877 pci_set_master(pdev);
878
879 err = request_irq(pdev->irq, pd_irq, IRQF_SHARED, DRV_NAME, pd);
880 if (err) {
881 dev_err(&pdev->dev, "Failed to request IRQ\n");
882 goto err_iounmap;
883 }
884
885 pd->pool = pci_pool_create("pch_dma_desc_pool", pdev,
886 sizeof(struct pch_dma_desc), 4, 0);
887 if (!pd->pool) {
888 dev_err(&pdev->dev, "Failed to alloc DMA descriptors\n");
889 err = -ENOMEM;
890 goto err_free_irq;
891 }
892
893 pd->dma.dev = &pdev->dev;
Yong Wang0c42bd02010-07-30 16:23:03 +0800894
895 INIT_LIST_HEAD(&pd->dma.channels);
896
897 for (i = 0; i < nr_channels; i++) {
898 struct pch_dma_chan *pd_chan = &pd->channels[i];
899
900 pd_chan->chan.device = &pd->dma;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +0000901 dma_cookie_init(&pd_chan->chan);
Yong Wang0c42bd02010-07-30 16:23:03 +0800902
903 pd_chan->membase = &regs->desc[i];
904
Yong Wang0c42bd02010-07-30 16:23:03 +0800905 spin_lock_init(&pd_chan->lock);
906
907 INIT_LIST_HEAD(&pd_chan->active_list);
908 INIT_LIST_HEAD(&pd_chan->queue);
909 INIT_LIST_HEAD(&pd_chan->free_list);
910
911 tasklet_init(&pd_chan->tasklet, pdc_tasklet,
912 (unsigned long)pd_chan);
913 list_add_tail(&pd_chan->chan.device_node, &pd->dma.channels);
914 }
915
916 dma_cap_zero(pd->dma.cap_mask);
917 dma_cap_set(DMA_PRIVATE, pd->dma.cap_mask);
918 dma_cap_set(DMA_SLAVE, pd->dma.cap_mask);
919
920 pd->dma.device_alloc_chan_resources = pd_alloc_chan_resources;
921 pd->dma.device_free_chan_resources = pd_free_chan_resources;
922 pd->dma.device_tx_status = pd_tx_status;
923 pd->dma.device_issue_pending = pd_issue_pending;
924 pd->dma.device_prep_slave_sg = pd_prep_slave_sg;
Maxime Ripardc91781b2014-11-17 14:42:40 +0100925 pd->dma.device_terminate_all = pd_device_terminate_all;
Yong Wang0c42bd02010-07-30 16:23:03 +0800926
927 err = dma_async_device_register(&pd->dma);
928 if (err) {
929 dev_err(&pdev->dev, "Failed to register DMA device\n");
930 goto err_free_pool;
931 }
932
933 return 0;
934
935err_free_pool:
936 pci_pool_destroy(pd->pool);
937err_free_irq:
938 free_irq(pdev->irq, pd);
939err_iounmap:
940 pci_iounmap(pdev, pd->membase);
941err_free_res:
942 pci_release_regions(pdev);
943err_disable_pdev:
944 pci_disable_device(pdev);
945err_free_mem:
Alexey Khoroshilov12d7b7a2015-04-11 01:28:41 +0300946 kfree(pd);
Yong Wang0c42bd02010-07-30 16:23:03 +0800947 return err;
948}
949
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -0800950static void pch_dma_remove(struct pci_dev *pdev)
Yong Wang0c42bd02010-07-30 16:23:03 +0800951{
952 struct pch_dma *pd = pci_get_drvdata(pdev);
953 struct pch_dma_chan *pd_chan;
954 struct dma_chan *chan, *_c;
955
956 if (pd) {
957 dma_async_device_unregister(&pd->dma);
958
Vinod Koul9068b032014-03-06 12:24:08 +0530959 free_irq(pdev->irq, pd);
960
Yong Wang0c42bd02010-07-30 16:23:03 +0800961 list_for_each_entry_safe(chan, _c, &pd->dma.channels,
962 device_node) {
963 pd_chan = to_pd_chan(chan);
964
Yong Wang0c42bd02010-07-30 16:23:03 +0800965 tasklet_kill(&pd_chan->tasklet);
966 }
967
968 pci_pool_destroy(pd->pool);
Yong Wang0c42bd02010-07-30 16:23:03 +0800969 pci_iounmap(pdev, pd->membase);
970 pci_release_regions(pdev);
971 pci_disable_device(pdev);
972 kfree(pd);
973 }
974}
975
976/* PCI Device ID of DMA device */
Tomoya MORINAGA2cdf2452011-01-05 17:43:52 +0900977#define PCI_VENDOR_ID_ROHM 0x10DB
978#define PCI_DEVICE_ID_EG20T_PCH_DMA_8CH 0x8810
979#define PCI_DEVICE_ID_EG20T_PCH_DMA_4CH 0x8815
980#define PCI_DEVICE_ID_ML7213_DMA1_8CH 0x8026
981#define PCI_DEVICE_ID_ML7213_DMA2_8CH 0x802B
982#define PCI_DEVICE_ID_ML7213_DMA3_4CH 0x8034
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900983#define PCI_DEVICE_ID_ML7213_DMA4_12CH 0x8032
Tomoya MORINAGAc0dfc042011-05-09 16:09:39 +0900984#define PCI_DEVICE_ID_ML7223_DMA1_4CH 0x800B
985#define PCI_DEVICE_ID_ML7223_DMA2_4CH 0x800E
986#define PCI_DEVICE_ID_ML7223_DMA3_4CH 0x8017
987#define PCI_DEVICE_ID_ML7223_DMA4_4CH 0x803B
Tomoya MORINAGAca7fe2d2011-11-17 16:14:23 +0900988#define PCI_DEVICE_ID_ML7831_DMA1_8CH 0x8810
989#define PCI_DEVICE_ID_ML7831_DMA2_4CH 0x8815
Yong Wang0c42bd02010-07-30 16:23:03 +0800990
Michele Curti345e3122014-12-02 18:07:56 +0100991static const struct pci_device_id pch_dma_id_table[] = {
Tomoya MORINAGA2cdf2452011-01-05 17:43:52 +0900992 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_8CH), 8 },
993 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_4CH), 4 },
994 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA1_8CH), 8}, /* UART Video */
995 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA2_8CH), 8}, /* PCMIF SPI */
996 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA3_4CH), 4}, /* FPGA */
Tomoya MORINAGA194f5f22011-05-09 16:09:38 +0900997 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA4_12CH), 12}, /* I2S */
Tomoya MORINAGAc0dfc042011-05-09 16:09:39 +0900998 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA1_4CH), 4}, /* UART */
999 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA2_4CH), 4}, /* Video SPI */
1000 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA3_4CH), 4}, /* Security */
1001 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA4_4CH), 4}, /* FPGA */
Tomoya MORINAGAca7fe2d2011-11-17 16:14:23 +09001002 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_DMA1_8CH), 8}, /* UART */
1003 { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_DMA2_4CH), 4}, /* SPI */
Dzianis Kahanovich87acf5a2010-10-27 20:33:05 -06001004 { 0, },
Yong Wang0c42bd02010-07-30 16:23:03 +08001005};
1006
1007static struct pci_driver pch_dma_driver = {
1008 .name = DRV_NAME,
1009 .id_table = pch_dma_id_table,
1010 .probe = pch_dma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05001011 .remove = pch_dma_remove,
Yong Wang0c42bd02010-07-30 16:23:03 +08001012#ifdef CONFIG_PM
1013 .suspend = pch_dma_suspend,
1014 .resume = pch_dma_resume,
1015#endif
1016};
1017
Wei Yongjun53b99892012-10-10 21:04:58 +08001018module_pci_driver(pch_dma_driver);
Yong Wang0c42bd02010-07-30 16:23:03 +08001019
Tomoya MORINAGAca7fe2d2011-11-17 16:14:23 +09001020MODULE_DESCRIPTION("Intel EG20T PCH / LAPIS Semicon ML7213/ML7223/ML7831 IOH "
Tomoya MORINAGA2cdf2452011-01-05 17:43:52 +09001021 "DMA controller driver");
Yong Wang0c42bd02010-07-30 16:23:03 +08001022MODULE_AUTHOR("Yong Wang <yong.y.wang@intel.com>");
1023MODULE_LICENSE("GPL v2");
Ben Hutchings58ddff22013-09-02 00:02:06 +01001024MODULE_DEVICE_TABLE(pci, pch_dma_id_table);