blob: 6d475a2e298c44b35eb9f9d1b2353df736b88d0a [file] [log] [blame]
Kim Phillips8e8ec592011-03-13 16:54:26 +08001/*
2 * CAAM/SEC 4.x transport/backend driver
3 * JobR backend functionality
4 *
Kim Phillips4bba1e92012-06-22 19:48:54 -05005 * Copyright 2008-2012 Freescale Semiconductor, Inc.
Kim Phillips8e8ec592011-03-13 16:54:26 +08006 */
7
Rob Herring5af50732013-09-17 14:28:33 -05008#include <linux/of_irq.h>
Michael Neuling6c5dc7f2013-11-18 15:20:01 +11009#include <linux/of_address.h>
Rob Herring5af50732013-09-17 14:28:33 -050010
Kim Phillips8e8ec592011-03-13 16:54:26 +080011#include "compat.h"
12#include "regs.h"
13#include "jr.h"
14#include "desc.h"
15#include "intern.h"
16
Ruchika Gupta313ea292013-10-25 12:01:01 +053017struct jr_driver_data {
18 /* List of Physical JobR's with the Driver */
19 struct list_head jr_list;
20 spinlock_t jr_alloc_lock; /* jr_list lock */
21} ____cacheline_aligned;
22
23static struct jr_driver_data driver_data;
24
25static int caam_reset_hw_jr(struct device *dev)
26{
27 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
28 unsigned int timeout = 100000;
29
30 /*
31 * mask interrupts since we are going to poll
32 * for reset completion status
33 */
Horia Geantă261ea052016-05-19 18:11:26 +030034 clrsetbits_32(&jrp->rregs->rconfig_lo, 0, JRCFG_IMSK);
Ruchika Gupta313ea292013-10-25 12:01:01 +053035
36 /* initiate flush (required prior to reset) */
37 wr_reg32(&jrp->rregs->jrcommand, JRCR_RESET);
38 while (((rd_reg32(&jrp->rregs->jrintstatus) & JRINT_ERR_HALT_MASK) ==
39 JRINT_ERR_HALT_INPROGRESS) && --timeout)
40 cpu_relax();
41
42 if ((rd_reg32(&jrp->rregs->jrintstatus) & JRINT_ERR_HALT_MASK) !=
43 JRINT_ERR_HALT_COMPLETE || timeout == 0) {
44 dev_err(dev, "failed to flush job ring %d\n", jrp->ridx);
45 return -EIO;
46 }
47
48 /* initiate reset */
49 timeout = 100000;
50 wr_reg32(&jrp->rregs->jrcommand, JRCR_RESET);
51 while ((rd_reg32(&jrp->rregs->jrcommand) & JRCR_RESET) && --timeout)
52 cpu_relax();
53
54 if (timeout == 0) {
55 dev_err(dev, "failed to reset job ring %d\n", jrp->ridx);
56 return -EIO;
57 }
58
59 /* unmask interrupts */
Horia Geantă261ea052016-05-19 18:11:26 +030060 clrsetbits_32(&jrp->rregs->rconfig_lo, JRCFG_IMSK, 0);
Ruchika Gupta313ea292013-10-25 12:01:01 +053061
62 return 0;
63}
64
65/*
66 * Shutdown JobR independent of platform property code
67 */
Fabio Estevam029c0532016-02-14 13:08:21 -020068static int caam_jr_shutdown(struct device *dev)
Ruchika Gupta313ea292013-10-25 12:01:01 +053069{
70 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
71 dma_addr_t inpbusaddr, outbusaddr;
72 int ret;
73
74 ret = caam_reset_hw_jr(dev);
75
Horia Geantă0de12a72016-11-09 10:46:21 +020076 tasklet_kill(&jrp->irqtask);
77
Ruchika Gupta313ea292013-10-25 12:01:01 +053078 /* Release interrupt */
79 free_irq(jrp->irq, dev);
80
81 /* Free rings */
82 inpbusaddr = rd_reg64(&jrp->rregs->inpring_base);
83 outbusaddr = rd_reg64(&jrp->rregs->outring_base);
84 dma_free_coherent(dev, sizeof(dma_addr_t) * JOBR_DEPTH,
85 jrp->inpring, inpbusaddr);
86 dma_free_coherent(dev, sizeof(struct jr_outentry) * JOBR_DEPTH,
87 jrp->outring, outbusaddr);
88 kfree(jrp->entinfo);
89
90 return ret;
91}
92
93static int caam_jr_remove(struct platform_device *pdev)
94{
95 int ret;
96 struct device *jrdev;
97 struct caam_drv_private_jr *jrpriv;
98
99 jrdev = &pdev->dev;
100 jrpriv = dev_get_drvdata(jrdev);
101
102 /*
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530103 * Return EBUSY if job ring already allocated.
Ruchika Gupta313ea292013-10-25 12:01:01 +0530104 */
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530105 if (atomic_read(&jrpriv->tfm_count)) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530106 dev_err(jrdev, "Device is busy\n");
107 return -EBUSY;
108 }
109
110 /* Remove the node from Physical JobR list maintained by driver */
111 spin_lock(&driver_data.jr_alloc_lock);
112 list_del(&jrpriv->list_node);
113 spin_unlock(&driver_data.jr_alloc_lock);
114
115 /* Release ring */
116 ret = caam_jr_shutdown(jrdev);
117 if (ret)
118 dev_err(jrdev, "Failed to shut down job ring\n");
119 irq_dispose_mapping(jrpriv->irq);
120
121 return ret;
122}
123
Kim Phillips8e8ec592011-03-13 16:54:26 +0800124/* Main per-ring interrupt handler */
125static irqreturn_t caam_jr_interrupt(int irq, void *st_dev)
126{
127 struct device *dev = st_dev;
128 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
129 u32 irqstate;
130
131 /*
132 * Check the output ring for ready responses, kick
Horia Geantă0de12a72016-11-09 10:46:21 +0200133 * tasklet if jobs done.
Kim Phillips8e8ec592011-03-13 16:54:26 +0800134 */
135 irqstate = rd_reg32(&jrp->rregs->jrintstatus);
136 if (!irqstate)
137 return IRQ_NONE;
138
139 /*
140 * If JobR error, we got more development work to do
141 * Flag a bug now, but we really need to shut down and
142 * restart the queue (and fix code).
143 */
144 if (irqstate & JRINT_JR_ERROR) {
145 dev_err(dev, "job ring error: irqstate: %08x\n", irqstate);
146 BUG();
147 }
148
149 /* mask valid interrupts */
Horia Geantă261ea052016-05-19 18:11:26 +0300150 clrsetbits_32(&jrp->rregs->rconfig_lo, 0, JRCFG_IMSK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800151
152 /* Have valid interrupt at this point, just ACK and trigger */
153 wr_reg32(&jrp->rregs->jrintstatus, irqstate);
154
Horia Geantă0de12a72016-11-09 10:46:21 +0200155 preempt_disable();
156 tasklet_schedule(&jrp->irqtask);
157 preempt_enable();
158
159 return IRQ_HANDLED;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800160}
161
Horia Geantă0de12a72016-11-09 10:46:21 +0200162/* Deferred service handler, run as interrupt-fired tasklet */
163static void caam_jr_dequeue(unsigned long devarg)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800164{
165 int hw_idx, sw_idx, i, head, tail;
Horia Geantă0de12a72016-11-09 10:46:21 +0200166 struct device *dev = (struct device *)devarg;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800167 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
168 void (*usercall)(struct device *dev, u32 *desc, u32 status, void *arg);
169 u32 *userdesc, userstatus;
170 void *userarg;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800171
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500172 while (rd_reg32(&jrp->rregs->outring_used)) {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800173
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500174 head = ACCESS_ONCE(jrp->head);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800175
Kim Phillipsce026cb2012-07-13 18:04:23 -0500176 spin_lock(&jrp->outlock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800177
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500178 sw_idx = tail = jrp->tail;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800179 hw_idx = jrp->out_ring_read_index;
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500180
Kim Phillips8e8ec592011-03-13 16:54:26 +0800181 for (i = 0; CIRC_CNT(head, tail + i, JOBR_DEPTH) >= 1; i++) {
182 sw_idx = (tail + i) & (JOBR_DEPTH - 1);
183
Kim Phillips8e8ec592011-03-13 16:54:26 +0800184 if (jrp->outring[hw_idx].desc ==
Horia Geantă261ea052016-05-19 18:11:26 +0300185 caam_dma_to_cpu(jrp->entinfo[sw_idx].desc_addr_dma))
Kim Phillips8e8ec592011-03-13 16:54:26 +0800186 break; /* found */
187 }
188 /* we should never fail to find a matching descriptor */
189 BUG_ON(CIRC_CNT(head, tail + i, JOBR_DEPTH) <= 0);
190
191 /* Unmap just-run descriptor so we can post-process */
Horia Geantăac617412018-08-06 15:29:09 +0300192 dma_unmap_single(dev,
193 caam_dma_to_cpu(jrp->outring[hw_idx].desc),
Kim Phillips8e8ec592011-03-13 16:54:26 +0800194 jrp->entinfo[sw_idx].desc_size,
195 DMA_TO_DEVICE);
196
197 /* mark completed, avoid matching on a recycled desc addr */
198 jrp->entinfo[sw_idx].desc_addr_dma = 0;
199
200 /* Stash callback params for use outside of lock */
201 usercall = jrp->entinfo[sw_idx].callbk;
202 userarg = jrp->entinfo[sw_idx].cbkarg;
203 userdesc = jrp->entinfo[sw_idx].desc_addr_virt;
Horia Geantă261ea052016-05-19 18:11:26 +0300204 userstatus = caam32_to_cpu(jrp->outring[hw_idx].jrstatus);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800205
Victoria Milhoane7472422015-08-05 11:28:35 -0700206 /*
207 * Make sure all information from the job has been obtained
208 * before telling CAAM that the job has been removed from the
209 * output ring.
210 */
211 mb();
212
Kim Phillips14a8e292012-06-22 19:48:56 -0500213 /* set done */
214 wr_reg32(&jrp->rregs->outring_rmvd, 1);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800215
216 jrp->out_ring_read_index = (jrp->out_ring_read_index + 1) &
217 (JOBR_DEPTH - 1);
218
219 /*
220 * if this job completed out-of-order, do not increment
221 * the tail. Otherwise, increment tail by 1 plus the
222 * number of subsequent jobs already completed out-of-order
223 */
224 if (sw_idx == tail) {
225 do {
226 tail = (tail + 1) & (JOBR_DEPTH - 1);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800227 } while (CIRC_CNT(head, tail, JOBR_DEPTH) >= 1 &&
228 jrp->entinfo[tail].desc_addr_dma == 0);
229
230 jrp->tail = tail;
231 }
232
Kim Phillipsce026cb2012-07-13 18:04:23 -0500233 spin_unlock(&jrp->outlock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800234
235 /* Finally, execute user's callback */
236 usercall(dev, userdesc, userstatus, userarg);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800237 }
238
Kim Phillips8e8ec592011-03-13 16:54:26 +0800239 /* reenable / unmask IRQs */
Horia Geantă261ea052016-05-19 18:11:26 +0300240 clrsetbits_32(&jrp->rregs->rconfig_lo, JRCFG_IMSK, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800241}
242
243/**
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530244 * caam_jr_alloc() - Alloc a job ring for someone to use as needed.
245 *
246 * returns : pointer to the newly allocated physical
247 * JobR dev can be written to if successful.
248 **/
249struct device *caam_jr_alloc(void)
250{
251 struct caam_drv_private_jr *jrpriv, *min_jrpriv = NULL;
Catalin Vasilee930c762016-05-06 16:18:53 +0300252 struct device *dev = ERR_PTR(-ENODEV);
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530253 int min_tfm_cnt = INT_MAX;
254 int tfm_cnt;
255
256 spin_lock(&driver_data.jr_alloc_lock);
257
258 if (list_empty(&driver_data.jr_list)) {
259 spin_unlock(&driver_data.jr_alloc_lock);
260 return ERR_PTR(-ENODEV);
261 }
262
263 list_for_each_entry(jrpriv, &driver_data.jr_list, list_node) {
264 tfm_cnt = atomic_read(&jrpriv->tfm_count);
265 if (tfm_cnt < min_tfm_cnt) {
266 min_tfm_cnt = tfm_cnt;
267 min_jrpriv = jrpriv;
268 }
269 if (!min_tfm_cnt)
270 break;
271 }
272
273 if (min_jrpriv) {
274 atomic_inc(&min_jrpriv->tfm_count);
275 dev = min_jrpriv->dev;
276 }
277 spin_unlock(&driver_data.jr_alloc_lock);
278
279 return dev;
280}
281EXPORT_SYMBOL(caam_jr_alloc);
282
283/**
284 * caam_jr_free() - Free the Job Ring
285 * @rdev - points to the dev that identifies the Job ring to
286 * be released.
287 **/
288void caam_jr_free(struct device *rdev)
289{
290 struct caam_drv_private_jr *jrpriv = dev_get_drvdata(rdev);
291
292 atomic_dec(&jrpriv->tfm_count);
293}
294EXPORT_SYMBOL(caam_jr_free);
295
296/**
Kim Phillips8e8ec592011-03-13 16:54:26 +0800297 * caam_jr_enqueue() - Enqueue a job descriptor head. Returns 0 if OK,
298 * -EBUSY if the queue is full, -EIO if it cannot map the caller's
299 * descriptor.
300 * @dev: device of the job ring to be used. This device should have
301 * been assigned prior by caam_jr_register().
302 * @desc: points to a job descriptor that execute our request. All
303 * descriptors (and all referenced data) must be in a DMAable
304 * region, and all data references must be physical addresses
305 * accessible to CAAM (i.e. within a PAMU window granted
306 * to it).
307 * @cbk: pointer to a callback function to be invoked upon completion
308 * of this request. This has the form:
309 * callback(struct device *dev, u32 *desc, u32 stat, void *arg)
310 * where:
311 * @dev: contains the job ring device that processed this
312 * response.
313 * @desc: descriptor that initiated the request, same as
314 * "desc" being argued to caam_jr_enqueue().
315 * @status: untranslated status received from CAAM. See the
316 * reference manual for a detailed description of
317 * error meaning, or see the JRSTA definitions in the
318 * register header file
319 * @areq: optional pointer to an argument passed with the
320 * original request
321 * @areq: optional pointer to a user argument for use at callback
322 * time.
323 **/
324int caam_jr_enqueue(struct device *dev, u32 *desc,
325 void (*cbk)(struct device *dev, u32 *desc,
326 u32 status, void *areq),
327 void *areq)
328{
329 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
330 struct caam_jrentry_info *head_entry;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800331 int head, tail, desc_size;
332 dma_addr_t desc_dma;
333
Horia Geantă261ea052016-05-19 18:11:26 +0300334 desc_size = (caam32_to_cpu(*desc) & HDR_JD_LENGTH_MASK) * sizeof(u32);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800335 desc_dma = dma_map_single(dev, desc, desc_size, DMA_TO_DEVICE);
336 if (dma_mapping_error(dev, desc_dma)) {
337 dev_err(dev, "caam_jr_enqueue(): can't map jobdesc\n");
338 return -EIO;
339 }
340
Kim Phillipsce026cb2012-07-13 18:04:23 -0500341 spin_lock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800342
343 head = jrp->head;
344 tail = ACCESS_ONCE(jrp->tail);
345
346 if (!rd_reg32(&jrp->rregs->inpring_avail) ||
347 CIRC_SPACE(head, tail, JOBR_DEPTH) <= 0) {
Kim Phillipsce026cb2012-07-13 18:04:23 -0500348 spin_unlock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800349 dma_unmap_single(dev, desc_dma, desc_size, DMA_TO_DEVICE);
350 return -EBUSY;
351 }
352
353 head_entry = &jrp->entinfo[head];
354 head_entry->desc_addr_virt = desc;
355 head_entry->desc_size = desc_size;
356 head_entry->callbk = (void *)cbk;
357 head_entry->cbkarg = areq;
358 head_entry->desc_addr_dma = desc_dma;
359
Horia Geantă261ea052016-05-19 18:11:26 +0300360 jrp->inpring[jrp->inp_ring_write_index] = cpu_to_caam_dma(desc_dma);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800361
Victoria Milhoane7472422015-08-05 11:28:35 -0700362 /*
363 * Guarantee that the descriptor's DMA address has been written to
364 * the next slot in the ring before the write index is updated, since
365 * other cores may update this index independently.
366 */
Kim Phillips8e8ec592011-03-13 16:54:26 +0800367 smp_wmb();
368
369 jrp->inp_ring_write_index = (jrp->inp_ring_write_index + 1) &
370 (JOBR_DEPTH - 1);
371 jrp->head = (head + 1) & (JOBR_DEPTH - 1);
372
Victoria Milhoane7472422015-08-05 11:28:35 -0700373 /*
374 * Ensure that all job information has been written before
375 * notifying CAAM that a new job was added to the input ring.
376 */
377 wmb();
378
Kim Phillips8e8ec592011-03-13 16:54:26 +0800379 wr_reg32(&jrp->rregs->inpring_jobadd, 1);
380
Kim Phillipsce026cb2012-07-13 18:04:23 -0500381 spin_unlock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800382
383 return 0;
384}
385EXPORT_SYMBOL(caam_jr_enqueue);
386
Kim Phillips8e8ec592011-03-13 16:54:26 +0800387/*
388 * Init JobR independent of platform property detection
389 */
390static int caam_jr_init(struct device *dev)
391{
392 struct caam_drv_private_jr *jrp;
393 dma_addr_t inpbusaddr, outbusaddr;
394 int i, error;
395
396 jrp = dev_get_drvdata(dev);
397
Horia Geantă0de12a72016-11-09 10:46:21 +0200398 tasklet_init(&jrp->irqtask, caam_jr_dequeue, (unsigned long)dev);
399
Kim Phillipsa0ca6ca2012-06-22 19:48:57 -0500400 /* Connect job ring interrupt handler. */
Horia Geantă0de12a72016-11-09 10:46:21 +0200401 error = request_irq(jrp->irq, caam_jr_interrupt, IRQF_SHARED,
402 dev_name(dev), dev);
Kim Phillips9620fd92011-04-11 19:15:16 -0500403 if (error) {
404 dev_err(dev, "can't connect JobR %d interrupt (%d)\n",
405 jrp->ridx, jrp->irq);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200406 goto out_kill_deq;
Kim Phillips9620fd92011-04-11 19:15:16 -0500407 }
408
Kim Phillips8e8ec592011-03-13 16:54:26 +0800409 error = caam_reset_hw_jr(dev);
410 if (error)
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200411 goto out_free_irq;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800412
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200413 error = -ENOMEM;
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300414 jrp->inpring = dma_alloc_coherent(dev, sizeof(*jrp->inpring) *
415 JOBR_DEPTH, &inpbusaddr, GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200416 if (!jrp->inpring)
417 goto out_free_irq;
Bharat Bhushan1af8ea82012-07-11 11:06:10 +0800418
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300419 jrp->outring = dma_alloc_coherent(dev, sizeof(*jrp->outring) *
Bharat Bhushan1af8ea82012-07-11 11:06:10 +0800420 JOBR_DEPTH, &outbusaddr, GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200421 if (!jrp->outring)
422 goto out_free_inpring;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800423
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300424 jrp->entinfo = kcalloc(JOBR_DEPTH, sizeof(*jrp->entinfo), GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200425 if (!jrp->entinfo)
426 goto out_free_outring;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800427
428 for (i = 0; i < JOBR_DEPTH; i++)
429 jrp->entinfo[i].desc_addr_dma = !0;
430
431 /* Setup rings */
Kim Phillips8e8ec592011-03-13 16:54:26 +0800432 jrp->inp_ring_write_index = 0;
433 jrp->out_ring_read_index = 0;
434 jrp->head = 0;
435 jrp->tail = 0;
436
437 wr_reg64(&jrp->rregs->inpring_base, inpbusaddr);
438 wr_reg64(&jrp->rregs->outring_base, outbusaddr);
439 wr_reg32(&jrp->rregs->inpring_size, JOBR_DEPTH);
440 wr_reg32(&jrp->rregs->outring_size, JOBR_DEPTH);
441
442 jrp->ringsize = JOBR_DEPTH;
443
444 spin_lock_init(&jrp->inplock);
445 spin_lock_init(&jrp->outlock);
446
447 /* Select interrupt coalescing parameters */
Horia Geantă261ea052016-05-19 18:11:26 +0300448 clrsetbits_32(&jrp->rregs->rconfig_lo, 0, JOBR_INTC |
449 (JOBR_INTC_COUNT_THLD << JRCFG_ICDCT_SHIFT) |
450 (JOBR_INTC_TIME_THLD << JRCFG_ICTT_SHIFT));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800451
Kim Phillips8e8ec592011-03-13 16:54:26 +0800452 return 0;
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200453
454out_free_outring:
455 dma_free_coherent(dev, sizeof(struct jr_outentry) * JOBR_DEPTH,
456 jrp->outring, outbusaddr);
457out_free_inpring:
458 dma_free_coherent(dev, sizeof(dma_addr_t) * JOBR_DEPTH,
459 jrp->inpring, inpbusaddr);
460 dev_err(dev, "can't allocate job rings for %d\n", jrp->ridx);
461out_free_irq:
462 free_irq(jrp->irq, dev);
463out_kill_deq:
Horia Geantă0de12a72016-11-09 10:46:21 +0200464 tasklet_kill(&jrp->irqtask);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200465 return error;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800466}
467
Kim Phillips8e8ec592011-03-13 16:54:26 +0800468
469/*
Ruchika Gupta313ea292013-10-25 12:01:01 +0530470 * Probe routine for each detected JobR subsystem.
Kim Phillips8e8ec592011-03-13 16:54:26 +0800471 */
Ruchika Gupta313ea292013-10-25 12:01:01 +0530472static int caam_jr_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800473{
Ruchika Gupta313ea292013-10-25 12:01:01 +0530474 struct device *jrdev;
475 struct device_node *nprop;
476 struct caam_job_ring __iomem *ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800477 struct caam_drv_private_jr *jrpriv;
Ruchika Gupta313ea292013-10-25 12:01:01 +0530478 static int total_jobrs;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800479 int error;
480
Ruchika Gupta313ea292013-10-25 12:01:01 +0530481 jrdev = &pdev->dev;
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300482 jrpriv = devm_kmalloc(jrdev, sizeof(*jrpriv), GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530483 if (!jrpriv)
484 return -ENOMEM;
485
486 dev_set_drvdata(jrdev, jrpriv);
487
488 /* save ring identity relative to detection */
489 jrpriv->ridx = total_jobrs++;
490
491 nprop = pdev->dev.of_node;
492 /* Get configuration properties from device tree */
493 /* First, get register page */
494 ctrl = of_iomap(nprop, 0);
495 if (!ctrl) {
496 dev_err(jrdev, "of_iomap() failed\n");
Kim Phillips8e8ec592011-03-13 16:54:26 +0800497 return -ENOMEM;
498 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800499
Ruchika Gupta313ea292013-10-25 12:01:01 +0530500 jrpriv->rregs = (struct caam_job_ring __force *)ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800501
Kim Phillipse13af182012-06-22 19:48:51 -0500502 if (sizeof(dma_addr_t) == sizeof(u64))
Ruchika Gupta313ea292013-10-25 12:01:01 +0530503 if (of_device_is_compatible(nprop, "fsl,sec-v5.0-job-ring"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300504 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500505 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300506 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500507 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300508 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(32));
Kim Phillipse13af182012-06-22 19:48:51 -0500509
Kim Phillips8e8ec592011-03-13 16:54:26 +0800510 /* Identify the interrupt */
Linus Torvalds26b265c2013-11-23 16:18:25 -0800511 jrpriv->irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800512
513 /* Now do the platform independent part */
514 error = caam_jr_init(jrdev); /* now turn on hardware */
Cristian Stoicac6bf62e2015-01-22 16:00:48 +0200515 if (error) {
516 irq_dispose_mapping(jrpriv->irq);
Arvind Yadav33878792016-09-28 16:01:42 +0530517 iounmap(ctrl);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800518 return error;
Cristian Stoicac6bf62e2015-01-22 16:00:48 +0200519 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800520
Ruchika Gupta313ea292013-10-25 12:01:01 +0530521 jrpriv->dev = jrdev;
522 spin_lock(&driver_data.jr_alloc_lock);
523 list_add_tail(&jrpriv->list_node, &driver_data.jr_list);
524 spin_unlock(&driver_data.jr_alloc_lock);
525
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530526 atomic_set(&jrpriv->tfm_count, 0);
527
Ruchika Gupta313ea292013-10-25 12:01:01 +0530528 return 0;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800529}
Ruchika Gupta313ea292013-10-25 12:01:01 +0530530
531static struct of_device_id caam_jr_match[] = {
532 {
533 .compatible = "fsl,sec-v4.0-job-ring",
534 },
535 {
536 .compatible = "fsl,sec4.0-job-ring",
537 },
538 {},
539};
540MODULE_DEVICE_TABLE(of, caam_jr_match);
541
542static struct platform_driver caam_jr_driver = {
543 .driver = {
544 .name = "caam_jr",
Ruchika Gupta313ea292013-10-25 12:01:01 +0530545 .of_match_table = caam_jr_match,
546 },
547 .probe = caam_jr_probe,
548 .remove = caam_jr_remove,
549};
550
551static int __init jr_driver_init(void)
552{
553 spin_lock_init(&driver_data.jr_alloc_lock);
554 INIT_LIST_HEAD(&driver_data.jr_list);
555 return platform_driver_register(&caam_jr_driver);
556}
557
558static void __exit jr_driver_exit(void)
559{
560 platform_driver_unregister(&caam_jr_driver);
561}
562
563module_init(jr_driver_init);
564module_exit(jr_driver_exit);
565
566MODULE_LICENSE("GPL");
567MODULE_DESCRIPTION("FSL CAAM JR request backend");
568MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");