blob: 757c27f9953d52aa4b662f317b7c0d5ff508a685 [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
Ruchika Gupta313ea292013-10-25 12:01:01 +053076 /* Release interrupt */
77 free_irq(jrp->irq, dev);
78
79 /* Free rings */
80 inpbusaddr = rd_reg64(&jrp->rregs->inpring_base);
81 outbusaddr = rd_reg64(&jrp->rregs->outring_base);
82 dma_free_coherent(dev, sizeof(dma_addr_t) * JOBR_DEPTH,
83 jrp->inpring, inpbusaddr);
84 dma_free_coherent(dev, sizeof(struct jr_outentry) * JOBR_DEPTH,
85 jrp->outring, outbusaddr);
86 kfree(jrp->entinfo);
87
88 return ret;
89}
90
91static int caam_jr_remove(struct platform_device *pdev)
92{
93 int ret;
94 struct device *jrdev;
95 struct caam_drv_private_jr *jrpriv;
96
97 jrdev = &pdev->dev;
98 jrpriv = dev_get_drvdata(jrdev);
99
100 /*
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530101 * Return EBUSY if job ring already allocated.
Ruchika Gupta313ea292013-10-25 12:01:01 +0530102 */
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530103 if (atomic_read(&jrpriv->tfm_count)) {
Ruchika Gupta313ea292013-10-25 12:01:01 +0530104 dev_err(jrdev, "Device is busy\n");
105 return -EBUSY;
106 }
107
108 /* Remove the node from Physical JobR list maintained by driver */
109 spin_lock(&driver_data.jr_alloc_lock);
110 list_del(&jrpriv->list_node);
111 spin_unlock(&driver_data.jr_alloc_lock);
112
113 /* Release ring */
114 ret = caam_jr_shutdown(jrdev);
115 if (ret)
116 dev_err(jrdev, "Failed to shut down job ring\n");
117 irq_dispose_mapping(jrpriv->irq);
118
119 return ret;
120}
121
Kim Phillips8e8ec592011-03-13 16:54:26 +0800122/* Main per-ring interrupt handler */
123static irqreturn_t caam_jr_interrupt(int irq, void *st_dev)
124{
125 struct device *dev = st_dev;
126 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
127 u32 irqstate;
128
129 /*
130 * Check the output ring for ready responses, kick
Russell King66d2e202016-08-08 18:05:24 +0100131 * the threaded irq if jobs done.
Kim Phillips8e8ec592011-03-13 16:54:26 +0800132 */
133 irqstate = rd_reg32(&jrp->rregs->jrintstatus);
134 if (!irqstate)
135 return IRQ_NONE;
136
137 /*
138 * If JobR error, we got more development work to do
139 * Flag a bug now, but we really need to shut down and
140 * restart the queue (and fix code).
141 */
142 if (irqstate & JRINT_JR_ERROR) {
143 dev_err(dev, "job ring error: irqstate: %08x\n", irqstate);
144 BUG();
145 }
146
147 /* mask valid interrupts */
Horia Geantă261ea052016-05-19 18:11:26 +0300148 clrsetbits_32(&jrp->rregs->rconfig_lo, 0, JRCFG_IMSK);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800149
150 /* Have valid interrupt at this point, just ACK and trigger */
151 wr_reg32(&jrp->rregs->jrintstatus, irqstate);
152
Russell King66d2e202016-08-08 18:05:24 +0100153 return IRQ_WAKE_THREAD;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800154}
155
Russell King66d2e202016-08-08 18:05:24 +0100156static irqreturn_t caam_jr_threadirq(int irq, void *st_dev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800157{
158 int hw_idx, sw_idx, i, head, tail;
Russell King66d2e202016-08-08 18:05:24 +0100159 struct device *dev = st_dev;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800160 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
161 void (*usercall)(struct device *dev, u32 *desc, u32 status, void *arg);
162 u32 *userdesc, userstatus;
163 void *userarg;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800164
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500165 while (rd_reg32(&jrp->rregs->outring_used)) {
Kim Phillips8e8ec592011-03-13 16:54:26 +0800166
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500167 head = ACCESS_ONCE(jrp->head);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800168
Kim Phillipsce026cb2012-07-13 18:04:23 -0500169 spin_lock(&jrp->outlock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800170
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500171 sw_idx = tail = jrp->tail;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800172 hw_idx = jrp->out_ring_read_index;
Kim Phillipsa8ea07c2012-06-22 19:48:55 -0500173
Kim Phillips8e8ec592011-03-13 16:54:26 +0800174 for (i = 0; CIRC_CNT(head, tail + i, JOBR_DEPTH) >= 1; i++) {
175 sw_idx = (tail + i) & (JOBR_DEPTH - 1);
176
Kim Phillips8e8ec592011-03-13 16:54:26 +0800177 if (jrp->outring[hw_idx].desc ==
Horia Geantă261ea052016-05-19 18:11:26 +0300178 caam_dma_to_cpu(jrp->entinfo[sw_idx].desc_addr_dma))
Kim Phillips8e8ec592011-03-13 16:54:26 +0800179 break; /* found */
180 }
181 /* we should never fail to find a matching descriptor */
182 BUG_ON(CIRC_CNT(head, tail + i, JOBR_DEPTH) <= 0);
183
184 /* Unmap just-run descriptor so we can post-process */
185 dma_unmap_single(dev, jrp->outring[hw_idx].desc,
186 jrp->entinfo[sw_idx].desc_size,
187 DMA_TO_DEVICE);
188
189 /* mark completed, avoid matching on a recycled desc addr */
190 jrp->entinfo[sw_idx].desc_addr_dma = 0;
191
192 /* Stash callback params for use outside of lock */
193 usercall = jrp->entinfo[sw_idx].callbk;
194 userarg = jrp->entinfo[sw_idx].cbkarg;
195 userdesc = jrp->entinfo[sw_idx].desc_addr_virt;
Horia Geantă261ea052016-05-19 18:11:26 +0300196 userstatus = caam32_to_cpu(jrp->outring[hw_idx].jrstatus);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800197
Victoria Milhoane7472422015-08-05 11:28:35 -0700198 /*
199 * Make sure all information from the job has been obtained
200 * before telling CAAM that the job has been removed from the
201 * output ring.
202 */
203 mb();
204
Kim Phillips14a8e292012-06-22 19:48:56 -0500205 /* set done */
206 wr_reg32(&jrp->rregs->outring_rmvd, 1);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800207
208 jrp->out_ring_read_index = (jrp->out_ring_read_index + 1) &
209 (JOBR_DEPTH - 1);
210
211 /*
212 * if this job completed out-of-order, do not increment
213 * the tail. Otherwise, increment tail by 1 plus the
214 * number of subsequent jobs already completed out-of-order
215 */
216 if (sw_idx == tail) {
217 do {
218 tail = (tail + 1) & (JOBR_DEPTH - 1);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800219 } while (CIRC_CNT(head, tail, JOBR_DEPTH) >= 1 &&
220 jrp->entinfo[tail].desc_addr_dma == 0);
221
222 jrp->tail = tail;
223 }
224
Kim Phillipsce026cb2012-07-13 18:04:23 -0500225 spin_unlock(&jrp->outlock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800226
227 /* Finally, execute user's callback */
228 usercall(dev, userdesc, userstatus, userarg);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800229 }
230
Kim Phillips8e8ec592011-03-13 16:54:26 +0800231 /* reenable / unmask IRQs */
Horia Geantă261ea052016-05-19 18:11:26 +0300232 clrsetbits_32(&jrp->rregs->rconfig_lo, JRCFG_IMSK, 0);
Russell King66d2e202016-08-08 18:05:24 +0100233
234 return IRQ_HANDLED;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800235}
236
237/**
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530238 * caam_jr_alloc() - Alloc a job ring for someone to use as needed.
239 *
240 * returns : pointer to the newly allocated physical
241 * JobR dev can be written to if successful.
242 **/
243struct device *caam_jr_alloc(void)
244{
245 struct caam_drv_private_jr *jrpriv, *min_jrpriv = NULL;
Catalin Vasilee930c762016-05-06 16:18:53 +0300246 struct device *dev = ERR_PTR(-ENODEV);
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530247 int min_tfm_cnt = INT_MAX;
248 int tfm_cnt;
249
250 spin_lock(&driver_data.jr_alloc_lock);
251
252 if (list_empty(&driver_data.jr_list)) {
253 spin_unlock(&driver_data.jr_alloc_lock);
254 return ERR_PTR(-ENODEV);
255 }
256
257 list_for_each_entry(jrpriv, &driver_data.jr_list, list_node) {
258 tfm_cnt = atomic_read(&jrpriv->tfm_count);
259 if (tfm_cnt < min_tfm_cnt) {
260 min_tfm_cnt = tfm_cnt;
261 min_jrpriv = jrpriv;
262 }
263 if (!min_tfm_cnt)
264 break;
265 }
266
267 if (min_jrpriv) {
268 atomic_inc(&min_jrpriv->tfm_count);
269 dev = min_jrpriv->dev;
270 }
271 spin_unlock(&driver_data.jr_alloc_lock);
272
273 return dev;
274}
275EXPORT_SYMBOL(caam_jr_alloc);
276
277/**
278 * caam_jr_free() - Free the Job Ring
279 * @rdev - points to the dev that identifies the Job ring to
280 * be released.
281 **/
282void caam_jr_free(struct device *rdev)
283{
284 struct caam_drv_private_jr *jrpriv = dev_get_drvdata(rdev);
285
286 atomic_dec(&jrpriv->tfm_count);
287}
288EXPORT_SYMBOL(caam_jr_free);
289
290/**
Kim Phillips8e8ec592011-03-13 16:54:26 +0800291 * caam_jr_enqueue() - Enqueue a job descriptor head. Returns 0 if OK,
292 * -EBUSY if the queue is full, -EIO if it cannot map the caller's
293 * descriptor.
294 * @dev: device of the job ring to be used. This device should have
295 * been assigned prior by caam_jr_register().
296 * @desc: points to a job descriptor that execute our request. All
297 * descriptors (and all referenced data) must be in a DMAable
298 * region, and all data references must be physical addresses
299 * accessible to CAAM (i.e. within a PAMU window granted
300 * to it).
301 * @cbk: pointer to a callback function to be invoked upon completion
302 * of this request. This has the form:
303 * callback(struct device *dev, u32 *desc, u32 stat, void *arg)
304 * where:
305 * @dev: contains the job ring device that processed this
306 * response.
307 * @desc: descriptor that initiated the request, same as
308 * "desc" being argued to caam_jr_enqueue().
309 * @status: untranslated status received from CAAM. See the
310 * reference manual for a detailed description of
311 * error meaning, or see the JRSTA definitions in the
312 * register header file
313 * @areq: optional pointer to an argument passed with the
314 * original request
315 * @areq: optional pointer to a user argument for use at callback
316 * time.
317 **/
318int caam_jr_enqueue(struct device *dev, u32 *desc,
319 void (*cbk)(struct device *dev, u32 *desc,
320 u32 status, void *areq),
321 void *areq)
322{
323 struct caam_drv_private_jr *jrp = dev_get_drvdata(dev);
324 struct caam_jrentry_info *head_entry;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800325 int head, tail, desc_size;
326 dma_addr_t desc_dma;
327
Horia Geantă261ea052016-05-19 18:11:26 +0300328 desc_size = (caam32_to_cpu(*desc) & HDR_JD_LENGTH_MASK) * sizeof(u32);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800329 desc_dma = dma_map_single(dev, desc, desc_size, DMA_TO_DEVICE);
330 if (dma_mapping_error(dev, desc_dma)) {
331 dev_err(dev, "caam_jr_enqueue(): can't map jobdesc\n");
332 return -EIO;
333 }
334
Kim Phillipsce026cb2012-07-13 18:04:23 -0500335 spin_lock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800336
337 head = jrp->head;
338 tail = ACCESS_ONCE(jrp->tail);
339
340 if (!rd_reg32(&jrp->rregs->inpring_avail) ||
341 CIRC_SPACE(head, tail, JOBR_DEPTH) <= 0) {
Kim Phillipsce026cb2012-07-13 18:04:23 -0500342 spin_unlock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800343 dma_unmap_single(dev, desc_dma, desc_size, DMA_TO_DEVICE);
344 return -EBUSY;
345 }
346
347 head_entry = &jrp->entinfo[head];
348 head_entry->desc_addr_virt = desc;
349 head_entry->desc_size = desc_size;
350 head_entry->callbk = (void *)cbk;
351 head_entry->cbkarg = areq;
352 head_entry->desc_addr_dma = desc_dma;
353
Horia Geantă261ea052016-05-19 18:11:26 +0300354 jrp->inpring[jrp->inp_ring_write_index] = cpu_to_caam_dma(desc_dma);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800355
Victoria Milhoane7472422015-08-05 11:28:35 -0700356 /*
357 * Guarantee that the descriptor's DMA address has been written to
358 * the next slot in the ring before the write index is updated, since
359 * other cores may update this index independently.
360 */
Kim Phillips8e8ec592011-03-13 16:54:26 +0800361 smp_wmb();
362
363 jrp->inp_ring_write_index = (jrp->inp_ring_write_index + 1) &
364 (JOBR_DEPTH - 1);
365 jrp->head = (head + 1) & (JOBR_DEPTH - 1);
366
Victoria Milhoane7472422015-08-05 11:28:35 -0700367 /*
368 * Ensure that all job information has been written before
369 * notifying CAAM that a new job was added to the input ring.
370 */
371 wmb();
372
Kim Phillips8e8ec592011-03-13 16:54:26 +0800373 wr_reg32(&jrp->rregs->inpring_jobadd, 1);
374
Kim Phillipsce026cb2012-07-13 18:04:23 -0500375 spin_unlock_bh(&jrp->inplock);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800376
377 return 0;
378}
379EXPORT_SYMBOL(caam_jr_enqueue);
380
Kim Phillips8e8ec592011-03-13 16:54:26 +0800381/*
382 * Init JobR independent of platform property detection
383 */
384static int caam_jr_init(struct device *dev)
385{
386 struct caam_drv_private_jr *jrp;
387 dma_addr_t inpbusaddr, outbusaddr;
388 int i, error;
389
390 jrp = dev_get_drvdata(dev);
391
Kim Phillipsa0ca6ca2012-06-22 19:48:57 -0500392 /* Connect job ring interrupt handler. */
Russell King66d2e202016-08-08 18:05:24 +0100393 error = request_threaded_irq(jrp->irq, caam_jr_interrupt,
394 caam_jr_threadirq, IRQF_SHARED,
395 dev_name(dev), dev);
Kim Phillips9620fd92011-04-11 19:15:16 -0500396 if (error) {
397 dev_err(dev, "can't connect JobR %d interrupt (%d)\n",
398 jrp->ridx, jrp->irq);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200399 goto out_kill_deq;
Kim Phillips9620fd92011-04-11 19:15:16 -0500400 }
401
Kim Phillips8e8ec592011-03-13 16:54:26 +0800402 error = caam_reset_hw_jr(dev);
403 if (error)
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200404 goto out_free_irq;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800405
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200406 error = -ENOMEM;
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300407 jrp->inpring = dma_alloc_coherent(dev, sizeof(*jrp->inpring) *
408 JOBR_DEPTH, &inpbusaddr, GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200409 if (!jrp->inpring)
410 goto out_free_irq;
Bharat Bhushan1af8ea82012-07-11 11:06:10 +0800411
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300412 jrp->outring = dma_alloc_coherent(dev, sizeof(*jrp->outring) *
Bharat Bhushan1af8ea82012-07-11 11:06:10 +0800413 JOBR_DEPTH, &outbusaddr, GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200414 if (!jrp->outring)
415 goto out_free_inpring;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800416
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300417 jrp->entinfo = kcalloc(JOBR_DEPTH, sizeof(*jrp->entinfo), GFP_KERNEL);
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200418 if (!jrp->entinfo)
419 goto out_free_outring;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800420
421 for (i = 0; i < JOBR_DEPTH; i++)
422 jrp->entinfo[i].desc_addr_dma = !0;
423
424 /* Setup rings */
Kim Phillips8e8ec592011-03-13 16:54:26 +0800425 jrp->inp_ring_write_index = 0;
426 jrp->out_ring_read_index = 0;
427 jrp->head = 0;
428 jrp->tail = 0;
429
430 wr_reg64(&jrp->rregs->inpring_base, inpbusaddr);
431 wr_reg64(&jrp->rregs->outring_base, outbusaddr);
432 wr_reg32(&jrp->rregs->inpring_size, JOBR_DEPTH);
433 wr_reg32(&jrp->rregs->outring_size, JOBR_DEPTH);
434
435 jrp->ringsize = JOBR_DEPTH;
436
437 spin_lock_init(&jrp->inplock);
438 spin_lock_init(&jrp->outlock);
439
440 /* Select interrupt coalescing parameters */
Horia Geantă261ea052016-05-19 18:11:26 +0300441 clrsetbits_32(&jrp->rregs->rconfig_lo, 0, JOBR_INTC |
442 (JOBR_INTC_COUNT_THLD << JRCFG_ICDCT_SHIFT) |
443 (JOBR_INTC_TIME_THLD << JRCFG_ICTT_SHIFT));
Kim Phillips8e8ec592011-03-13 16:54:26 +0800444
Kim Phillips8e8ec592011-03-13 16:54:26 +0800445 return 0;
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200446
447out_free_outring:
448 dma_free_coherent(dev, sizeof(struct jr_outentry) * JOBR_DEPTH,
449 jrp->outring, outbusaddr);
450out_free_inpring:
451 dma_free_coherent(dev, sizeof(dma_addr_t) * JOBR_DEPTH,
452 jrp->inpring, inpbusaddr);
453 dev_err(dev, "can't allocate job rings for %d\n", jrp->ridx);
454out_free_irq:
455 free_irq(jrp->irq, dev);
456out_kill_deq:
Cristian Stoicacbceeef2015-01-22 16:00:49 +0200457 return error;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800458}
459
Kim Phillips8e8ec592011-03-13 16:54:26 +0800460
461/*
Ruchika Gupta313ea292013-10-25 12:01:01 +0530462 * Probe routine for each detected JobR subsystem.
Kim Phillips8e8ec592011-03-13 16:54:26 +0800463 */
Ruchika Gupta313ea292013-10-25 12:01:01 +0530464static int caam_jr_probe(struct platform_device *pdev)
Kim Phillips8e8ec592011-03-13 16:54:26 +0800465{
Ruchika Gupta313ea292013-10-25 12:01:01 +0530466 struct device *jrdev;
467 struct device_node *nprop;
468 struct caam_job_ring __iomem *ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800469 struct caam_drv_private_jr *jrpriv;
Ruchika Gupta313ea292013-10-25 12:01:01 +0530470 static int total_jobrs;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800471 int error;
472
Ruchika Gupta313ea292013-10-25 12:01:01 +0530473 jrdev = &pdev->dev;
Fabio Estevam9c4f9732015-08-21 13:52:00 -0300474 jrpriv = devm_kmalloc(jrdev, sizeof(*jrpriv), GFP_KERNEL);
Ruchika Gupta313ea292013-10-25 12:01:01 +0530475 if (!jrpriv)
476 return -ENOMEM;
477
478 dev_set_drvdata(jrdev, jrpriv);
479
480 /* save ring identity relative to detection */
481 jrpriv->ridx = total_jobrs++;
482
483 nprop = pdev->dev.of_node;
484 /* Get configuration properties from device tree */
485 /* First, get register page */
486 ctrl = of_iomap(nprop, 0);
487 if (!ctrl) {
488 dev_err(jrdev, "of_iomap() failed\n");
Kim Phillips8e8ec592011-03-13 16:54:26 +0800489 return -ENOMEM;
490 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800491
Ruchika Gupta313ea292013-10-25 12:01:01 +0530492 jrpriv->rregs = (struct caam_job_ring __force *)ctrl;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800493
Kim Phillipse13af182012-06-22 19:48:51 -0500494 if (sizeof(dma_addr_t) == sizeof(u64))
Ruchika Gupta313ea292013-10-25 12:01:01 +0530495 if (of_device_is_compatible(nprop, "fsl,sec-v5.0-job-ring"))
Horia Geantaa2ac2872014-07-11 15:34:47 +0300496 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(40));
Kim Phillipse13af182012-06-22 19:48:51 -0500497 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300498 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(36));
Kim Phillipse13af182012-06-22 19:48:51 -0500499 else
Horia Geantaa2ac2872014-07-11 15:34:47 +0300500 dma_set_mask_and_coherent(jrdev, DMA_BIT_MASK(32));
Kim Phillipse13af182012-06-22 19:48:51 -0500501
Kim Phillips8e8ec592011-03-13 16:54:26 +0800502 /* Identify the interrupt */
Linus Torvalds26b265c2013-11-23 16:18:25 -0800503 jrpriv->irq = irq_of_parse_and_map(nprop, 0);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800504
505 /* Now do the platform independent part */
506 error = caam_jr_init(jrdev); /* now turn on hardware */
Cristian Stoicac6bf62e2015-01-22 16:00:48 +0200507 if (error) {
508 irq_dispose_mapping(jrpriv->irq);
Arvind Yadav33878792016-09-28 16:01:42 +0530509 iounmap(ctrl);
Kim Phillips8e8ec592011-03-13 16:54:26 +0800510 return error;
Cristian Stoicac6bf62e2015-01-22 16:00:48 +0200511 }
Kim Phillips8e8ec592011-03-13 16:54:26 +0800512
Ruchika Gupta313ea292013-10-25 12:01:01 +0530513 jrpriv->dev = jrdev;
514 spin_lock(&driver_data.jr_alloc_lock);
515 list_add_tail(&jrpriv->list_node, &driver_data.jr_list);
516 spin_unlock(&driver_data.jr_alloc_lock);
517
Ruchika Gupta07defbf2013-10-25 12:01:02 +0530518 atomic_set(&jrpriv->tfm_count, 0);
519
Ruchika Gupta313ea292013-10-25 12:01:01 +0530520 return 0;
Kim Phillips8e8ec592011-03-13 16:54:26 +0800521}
Ruchika Gupta313ea292013-10-25 12:01:01 +0530522
523static struct of_device_id caam_jr_match[] = {
524 {
525 .compatible = "fsl,sec-v4.0-job-ring",
526 },
527 {
528 .compatible = "fsl,sec4.0-job-ring",
529 },
530 {},
531};
532MODULE_DEVICE_TABLE(of, caam_jr_match);
533
534static struct platform_driver caam_jr_driver = {
535 .driver = {
536 .name = "caam_jr",
Ruchika Gupta313ea292013-10-25 12:01:01 +0530537 .of_match_table = caam_jr_match,
538 },
539 .probe = caam_jr_probe,
540 .remove = caam_jr_remove,
541};
542
543static int __init jr_driver_init(void)
544{
545 spin_lock_init(&driver_data.jr_alloc_lock);
546 INIT_LIST_HEAD(&driver_data.jr_list);
547 return platform_driver_register(&caam_jr_driver);
548}
549
550static void __exit jr_driver_exit(void)
551{
552 platform_driver_unregister(&caam_jr_driver);
553}
554
555module_init(jr_driver_init);
556module_exit(jr_driver_exit);
557
558MODULE_LICENSE("GPL");
559MODULE_DESCRIPTION("FSL CAAM JR request backend");
560MODULE_AUTHOR("Freescale Semiconductor - NMG/STC");