adb4284634956faf64b508d649375bf0e879061f
[deliverable/linux.git] / drivers / net / ethernet / cavium / liquidio / request_manager.c
1 /**********************************************************************
2 * Author: Cavium, Inc.
3 *
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
6 *
7 * Copyright (c) 2003-2015 Cavium, Inc.
8 *
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
12 *
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * This file may also be available under a different license from Cavium.
20 * Contact Cavium, Inc. for more information
21 **********************************************************************/
22 #include <linux/version.h>
23 #include <linux/types.h>
24 #include <linux/list.h>
25 #include <linux/interrupt.h>
26 #include <linux/pci.h>
27 #include <linux/kthread.h>
28 #include <linux/netdevice.h>
29 #include "octeon_config.h"
30 #include "liquidio_common.h"
31 #include "octeon_droq.h"
32 #include "octeon_iq.h"
33 #include "response_manager.h"
34 #include "octeon_device.h"
35 #include "octeon_nic.h"
36 #include "octeon_main.h"
37 #include "octeon_network.h"
38 #include "cn66xx_regs.h"
39 #include "cn66xx_device.h"
40 #include "cn68xx_regs.h"
41 #include "cn68xx_device.h"
42 #include "liquidio_image.h"
43
44 #define INCR_INSTRQUEUE_PKT_COUNT(octeon_dev_ptr, iq_no, field, count) \
45 (octeon_dev_ptr->instr_queue[iq_no]->stats.field += count)
46
47 struct iq_post_status {
48 int status;
49 int index;
50 };
51
52 static void check_db_timeout(struct work_struct *work);
53 static void __check_db_timeout(struct octeon_device *oct, unsigned long iq_no);
54
55 static void (*reqtype_free_fn[MAX_OCTEON_DEVICES][REQTYPE_LAST + 1]) (void *);
56
57 static inline int IQ_INSTR_MODE_64B(struct octeon_device *oct, int iq_no)
58 {
59 struct octeon_instr_queue *iq =
60 (struct octeon_instr_queue *)oct->instr_queue[iq_no];
61 return iq->iqcmd_64B;
62 }
63
64 #define IQ_INSTR_MODE_32B(oct, iq_no) (!IQ_INSTR_MODE_64B(oct, iq_no))
65
66 /* Define this to return the request status comaptible to old code */
67 /*#define OCTEON_USE_OLD_REQ_STATUS*/
68
69 /* Return 0 on success, 1 on failure */
70 int octeon_init_instr_queue(struct octeon_device *oct,
71 u32 iq_no, u32 num_descs)
72 {
73 struct octeon_instr_queue *iq;
74 struct octeon_iq_config *conf = NULL;
75 u32 q_size;
76 struct cavium_wq *db_wq;
77
78 if (OCTEON_CN6XXX(oct))
79 conf = &(CFG_GET_IQ_CFG(CHIP_FIELD(oct, cn6xxx, conf)));
80
81 if (!conf) {
82 dev_err(&oct->pci_dev->dev, "Unsupported Chip %x\n",
83 oct->chip_id);
84 return 1;
85 }
86
87 if (num_descs & (num_descs - 1)) {
88 dev_err(&oct->pci_dev->dev,
89 "Number of descriptors for instr queue %d not in power of 2.\n",
90 iq_no);
91 return 1;
92 }
93
94 q_size = (u32)conf->instr_type * num_descs;
95
96 iq = oct->instr_queue[iq_no];
97
98 iq->base_addr = lio_dma_alloc(oct, q_size,
99 (dma_addr_t *)&iq->base_addr_dma);
100 if (!iq->base_addr) {
101 dev_err(&oct->pci_dev->dev, "Cannot allocate memory for instr queue %d\n",
102 iq_no);
103 return 1;
104 }
105
106 iq->max_count = num_descs;
107
108 /* Initialize a list to holds requests that have been posted to Octeon
109 * but has yet to be fetched by octeon
110 */
111 iq->request_list = vmalloc(sizeof(*iq->request_list) * num_descs);
112 if (!iq->request_list) {
113 lio_dma_free(oct, q_size, iq->base_addr, iq->base_addr_dma);
114 dev_err(&oct->pci_dev->dev, "Alloc failed for IQ[%d] nr free list\n",
115 iq_no);
116 return 1;
117 }
118
119 memset(iq->request_list, 0, sizeof(*iq->request_list) * num_descs);
120
121 dev_dbg(&oct->pci_dev->dev, "IQ[%d]: base: %p basedma: %llx count: %d\n",
122 iq_no, iq->base_addr, iq->base_addr_dma, iq->max_count);
123
124 iq->iq_no = iq_no;
125 iq->fill_threshold = (u32)conf->db_min;
126 iq->fill_cnt = 0;
127 iq->host_write_index = 0;
128 iq->octeon_read_index = 0;
129 iq->flush_index = 0;
130 iq->last_db_time = 0;
131 iq->do_auto_flush = 1;
132 iq->db_timeout = (u32)conf->db_timeout;
133 atomic_set(&iq->instr_pending, 0);
134
135 /* Initialize the spinlock for this instruction queue */
136 spin_lock_init(&iq->lock);
137
138 oct->io_qmask.iq |= (1 << iq_no);
139
140 /* Set the 32B/64B mode for each input queue */
141 oct->io_qmask.iq64B |= ((conf->instr_type == 64) << iq_no);
142 iq->iqcmd_64B = (conf->instr_type == 64);
143
144 oct->fn_list.setup_iq_regs(oct, iq_no);
145
146 oct->check_db_wq[iq_no].wq = create_workqueue("check_iq_db");
147 if (!oct->check_db_wq[iq_no].wq) {
148 lio_dma_free(oct, q_size, iq->base_addr, iq->base_addr_dma);
149 dev_err(&oct->pci_dev->dev, "check db wq create failed for iq %d\n",
150 iq_no);
151 return 1;
152 }
153
154 db_wq = &oct->check_db_wq[iq_no];
155
156 INIT_DELAYED_WORK(&db_wq->wk.work, check_db_timeout);
157 db_wq->wk.ctxptr = oct;
158 db_wq->wk.ctxul = iq_no;
159 queue_delayed_work(db_wq->wq, &db_wq->wk.work, msecs_to_jiffies(1));
160
161 return 0;
162 }
163
164 int octeon_delete_instr_queue(struct octeon_device *oct, u32 iq_no)
165 {
166 u64 desc_size = 0, q_size;
167 struct octeon_instr_queue *iq = oct->instr_queue[iq_no];
168
169 cancel_delayed_work_sync(&oct->check_db_wq[iq_no].wk.work);
170 flush_workqueue(oct->check_db_wq[iq_no].wq);
171 destroy_workqueue(oct->check_db_wq[iq_no].wq);
172
173 if (OCTEON_CN6XXX(oct))
174 desc_size =
175 CFG_GET_IQ_INSTR_TYPE(CHIP_FIELD(oct, cn6xxx, conf));
176
177 if (iq->request_list)
178 vfree(iq->request_list);
179
180 if (iq->base_addr) {
181 q_size = iq->max_count * desc_size;
182 lio_dma_free(oct, (u32)q_size, iq->base_addr,
183 iq->base_addr_dma);
184 return 0;
185 }
186 return 1;
187 }
188
189 /* Return 0 on success, 1 on failure */
190 int octeon_setup_iq(struct octeon_device *oct,
191 u32 iq_no,
192 u32 num_descs,
193 void *app_ctx)
194 {
195 if (oct->instr_queue[iq_no]) {
196 dev_dbg(&oct->pci_dev->dev, "IQ is in use. Cannot create the IQ: %d again\n",
197 iq_no);
198 oct->instr_queue[iq_no]->app_ctx = app_ctx;
199 return 0;
200 }
201 oct->instr_queue[iq_no] =
202 vmalloc(sizeof(struct octeon_instr_queue));
203 if (!oct->instr_queue[iq_no])
204 return 1;
205
206 memset(oct->instr_queue[iq_no], 0,
207 sizeof(struct octeon_instr_queue));
208
209 oct->instr_queue[iq_no]->app_ctx = app_ctx;
210 if (octeon_init_instr_queue(oct, iq_no, num_descs)) {
211 vfree(oct->instr_queue[iq_no]);
212 oct->instr_queue[iq_no] = NULL;
213 return 1;
214 }
215
216 oct->num_iqs++;
217 oct->fn_list.enable_io_queues(oct);
218 return 0;
219 }
220
221 int lio_wait_for_instr_fetch(struct octeon_device *oct)
222 {
223 int i, retry = 1000, pending, instr_cnt = 0;
224
225 do {
226 instr_cnt = 0;
227
228 /*for (i = 0; i < oct->num_iqs; i++) {*/
229 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES; i++) {
230 if (!(oct->io_qmask.iq & (1UL << i)))
231 continue;
232 pending =
233 atomic_read(&oct->
234 instr_queue[i]->instr_pending);
235 if (pending)
236 __check_db_timeout(oct, i);
237 instr_cnt += pending;
238 }
239
240 if (instr_cnt == 0)
241 break;
242
243 schedule_timeout_uninterruptible(1);
244
245 } while (retry-- && instr_cnt);
246
247 return instr_cnt;
248 }
249
250 static inline void
251 ring_doorbell(struct octeon_device *oct, struct octeon_instr_queue *iq)
252 {
253 if (atomic_read(&oct->status) == OCT_DEV_RUNNING) {
254 writel(iq->fill_cnt, iq->doorbell_reg);
255 /* make sure doorbell write goes through */
256 mmiowb();
257 iq->fill_cnt = 0;
258 iq->last_db_time = jiffies;
259 return;
260 }
261 }
262
263 static inline void __copy_cmd_into_iq(struct octeon_instr_queue *iq,
264 u8 *cmd)
265 {
266 u8 *iqptr, cmdsize;
267
268 cmdsize = ((iq->iqcmd_64B) ? 64 : 32);
269 iqptr = iq->base_addr + (cmdsize * iq->host_write_index);
270
271 memcpy(iqptr, cmd, cmdsize);
272 }
273
274 static inline int
275 __post_command(struct octeon_device *octeon_dev __attribute__((unused)),
276 struct octeon_instr_queue *iq,
277 u32 force_db __attribute__((unused)), u8 *cmd)
278 {
279 u32 index = -1;
280
281 /* This ensures that the read index does not wrap around to the same
282 * position if queue gets full before Octeon could fetch any instr.
283 */
284 if (atomic_read(&iq->instr_pending) >= (s32)(iq->max_count - 1))
285 return -1;
286
287 __copy_cmd_into_iq(iq, cmd);
288
289 /* "index" is returned, host_write_index is modified. */
290 index = iq->host_write_index;
291 INCR_INDEX_BY1(iq->host_write_index, iq->max_count);
292 iq->fill_cnt++;
293
294 /* Flush the command into memory. We need to be sure the data is in
295 * memory before indicating that the instruction is pending.
296 */
297 wmb();
298
299 atomic_inc(&iq->instr_pending);
300
301 return index;
302 }
303
304 static inline struct iq_post_status
305 __post_command2(struct octeon_device *octeon_dev __attribute__((unused)),
306 struct octeon_instr_queue *iq,
307 u32 force_db __attribute__((unused)), u8 *cmd)
308 {
309 struct iq_post_status st;
310
311 st.status = IQ_SEND_OK;
312
313 /* This ensures that the read index does not wrap around to the same
314 * position if queue gets full before Octeon could fetch any instr.
315 */
316 if (atomic_read(&iq->instr_pending) >= (s32)(iq->max_count - 1)) {
317 st.status = IQ_SEND_FAILED;
318 st.index = -1;
319 return st;
320 }
321
322 if (atomic_read(&iq->instr_pending) >= (s32)(iq->max_count - 2))
323 st.status = IQ_SEND_STOP;
324
325 __copy_cmd_into_iq(iq, cmd);
326
327 /* "index" is returned, host_write_index is modified. */
328 st.index = iq->host_write_index;
329 INCR_INDEX_BY1(iq->host_write_index, iq->max_count);
330 iq->fill_cnt++;
331
332 /* Flush the command into memory. We need to be sure the data is in
333 * memory before indicating that the instruction is pending.
334 */
335 wmb();
336
337 atomic_inc(&iq->instr_pending);
338
339 return st;
340 }
341
342 int
343 octeon_register_reqtype_free_fn(struct octeon_device *oct, int reqtype,
344 void (*fn)(void *))
345 {
346 if (reqtype > REQTYPE_LAST) {
347 dev_err(&oct->pci_dev->dev, "%s: Invalid reqtype: %d\n",
348 __func__, reqtype);
349 return -EINVAL;
350 }
351
352 reqtype_free_fn[oct->octeon_id][reqtype] = fn;
353
354 return 0;
355 }
356
357 static inline void
358 __add_to_request_list(struct octeon_instr_queue *iq,
359 int idx, void *buf, int reqtype)
360 {
361 iq->request_list[idx].buf = buf;
362 iq->request_list[idx].reqtype = reqtype;
363 }
364
365 int
366 lio_process_iq_request_list(struct octeon_device *oct,
367 struct octeon_instr_queue *iq)
368 {
369 int reqtype;
370 void *buf;
371 u32 old = iq->flush_index;
372 u32 inst_count = 0;
373 unsigned pkts_compl = 0, bytes_compl = 0;
374 struct octeon_soft_command *sc;
375 struct octeon_instr_irh *irh;
376
377 while (old != iq->octeon_read_index) {
378 reqtype = iq->request_list[old].reqtype;
379 buf = iq->request_list[old].buf;
380
381 if (reqtype == REQTYPE_NONE)
382 goto skip_this;
383
384 octeon_update_tx_completion_counters(buf, reqtype, &pkts_compl,
385 &bytes_compl);
386
387 switch (reqtype) {
388 case REQTYPE_NORESP_NET:
389 case REQTYPE_NORESP_NET_SG:
390 case REQTYPE_RESP_NET_SG:
391 reqtype_free_fn[oct->octeon_id][reqtype](buf);
392 break;
393 case REQTYPE_RESP_NET:
394 case REQTYPE_SOFT_COMMAND:
395 sc = buf;
396
397 irh = (struct octeon_instr_irh *)&sc->cmd.irh;
398 if (irh->rflag) {
399 /* We're expecting a response from Octeon.
400 * It's up to lio_process_ordered_list() to
401 * process sc. Add sc to the ordered soft
402 * command response list because we expect
403 * a response from Octeon.
404 */
405 spin_lock_bh(&oct->response_list
406 [OCTEON_ORDERED_SC_LIST].lock);
407 atomic_inc(&oct->response_list
408 [OCTEON_ORDERED_SC_LIST].
409 pending_req_count);
410 list_add_tail(&sc->node, &oct->response_list
411 [OCTEON_ORDERED_SC_LIST].head);
412 spin_unlock_bh(&oct->response_list
413 [OCTEON_ORDERED_SC_LIST].lock);
414 } else {
415 if (sc->callback) {
416 sc->callback(oct, OCTEON_REQUEST_DONE,
417 sc->callback_arg);
418 }
419 }
420 break;
421 default:
422 dev_err(&oct->pci_dev->dev,
423 "%s Unknown reqtype: %d buf: %p at idx %d\n",
424 __func__, reqtype, buf, old);
425 }
426
427 iq->request_list[old].buf = NULL;
428 iq->request_list[old].reqtype = 0;
429
430 skip_this:
431 inst_count++;
432 INCR_INDEX_BY1(old, iq->max_count);
433 }
434 if (bytes_compl)
435 octeon_report_tx_completion_to_bql(iq->app_ctx, pkts_compl,
436 bytes_compl);
437 iq->flush_index = old;
438
439 return inst_count;
440 }
441
442 static inline void
443 update_iq_indices(struct octeon_device *oct, struct octeon_instr_queue *iq)
444 {
445 u32 inst_processed = 0;
446
447 /* Calculate how many commands Octeon has read and move the read index
448 * accordingly.
449 */
450 iq->octeon_read_index = oct->fn_list.update_iq_read_idx(oct, iq);
451
452 /* Move the NORESPONSE requests to the per-device completion list. */
453 if (iq->flush_index != iq->octeon_read_index)
454 inst_processed = lio_process_iq_request_list(oct, iq);
455
456 if (inst_processed)
457 atomic_sub(inst_processed, &iq->instr_pending);
458 iq->stats.instr_processed += inst_processed;
459 }
460
461 static void
462 octeon_flush_iq(struct octeon_device *oct, struct octeon_instr_queue *iq,
463 u32 pending_thresh)
464 {
465 if (atomic_read(&iq->instr_pending) >= (s32)pending_thresh) {
466 spin_lock_bh(&iq->lock);
467 update_iq_indices(oct, iq);
468 spin_unlock_bh(&iq->lock);
469 }
470 }
471
472 static void __check_db_timeout(struct octeon_device *oct, unsigned long iq_no)
473 {
474 struct octeon_instr_queue *iq;
475 u64 next_time;
476
477 if (!oct)
478 return;
479 iq = oct->instr_queue[iq_no];
480 if (!iq)
481 return;
482
483 /* If jiffies - last_db_time < db_timeout do nothing */
484 next_time = iq->last_db_time + iq->db_timeout;
485 if (!time_after(jiffies, (unsigned long)next_time))
486 return;
487 iq->last_db_time = jiffies;
488
489 /* Get the lock and prevent tasklets. This routine gets called from
490 * the poll thread. Instructions can now be posted in tasklet context
491 */
492 spin_lock_bh(&iq->lock);
493 if (iq->fill_cnt != 0)
494 ring_doorbell(oct, iq);
495
496 spin_unlock_bh(&iq->lock);
497
498 /* Flush the instruction queue */
499 if (iq->do_auto_flush)
500 octeon_flush_iq(oct, iq, 1);
501 }
502
503 /* Called by the Poll thread at regular intervals to check the instruction
504 * queue for commands to be posted and for commands that were fetched by Octeon.
505 */
506 static void check_db_timeout(struct work_struct *work)
507 {
508 struct cavium_wk *wk = (struct cavium_wk *)work;
509 struct octeon_device *oct = (struct octeon_device *)wk->ctxptr;
510 unsigned long iq_no = wk->ctxul;
511 struct cavium_wq *db_wq = &oct->check_db_wq[iq_no];
512
513 __check_db_timeout(oct, iq_no);
514 queue_delayed_work(db_wq->wq, &db_wq->wk.work, msecs_to_jiffies(1));
515 }
516
517 int
518 octeon_send_command(struct octeon_device *oct, u32 iq_no,
519 u32 force_db, void *cmd, void *buf,
520 u32 datasize, u32 reqtype)
521 {
522 struct iq_post_status st;
523 struct octeon_instr_queue *iq = oct->instr_queue[iq_no];
524
525 spin_lock_bh(&iq->lock);
526
527 st = __post_command2(oct, iq, force_db, cmd);
528
529 if (st.status != IQ_SEND_FAILED) {
530 octeon_report_sent_bytes_to_bql(buf, reqtype);
531 __add_to_request_list(iq, st.index, buf, reqtype);
532 INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, bytes_sent, datasize);
533 INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, instr_posted, 1);
534
535 if (iq->fill_cnt >= iq->fill_threshold || force_db)
536 ring_doorbell(oct, iq);
537 } else {
538 INCR_INSTRQUEUE_PKT_COUNT(oct, iq_no, instr_dropped, 1);
539 }
540
541 spin_unlock_bh(&iq->lock);
542
543 if (iq->do_auto_flush)
544 octeon_flush_iq(oct, iq, 2);
545
546 return st.status;
547 }
548
549 void
550 octeon_prepare_soft_command(struct octeon_device *oct,
551 struct octeon_soft_command *sc,
552 u8 opcode,
553 u8 subcode,
554 u32 irh_ossp,
555 u64 ossp0,
556 u64 ossp1)
557 {
558 struct octeon_config *oct_cfg;
559 struct octeon_instr_ih *ih;
560 struct octeon_instr_irh *irh;
561 struct octeon_instr_rdp *rdp;
562
563 BUG_ON(opcode > 15);
564 BUG_ON(subcode > 127);
565
566 oct_cfg = octeon_get_conf(oct);
567
568 ih = (struct octeon_instr_ih *)&sc->cmd.ih;
569 ih->tagtype = ATOMIC_TAG;
570 ih->tag = LIO_CONTROL;
571 ih->raw = 1;
572 ih->grp = CFG_GET_CTRL_Q_GRP(oct_cfg);
573
574 if (sc->datasize) {
575 ih->dlengsz = sc->datasize;
576 ih->rs = 1;
577 }
578
579 irh = (struct octeon_instr_irh *)&sc->cmd.irh;
580 irh->opcode = opcode;
581 irh->subcode = subcode;
582
583 /* opcode/subcode specific parameters (ossp) */
584 irh->ossp = irh_ossp;
585 sc->cmd.ossp[0] = ossp0;
586 sc->cmd.ossp[1] = ossp1;
587
588 if (sc->rdatasize) {
589 rdp = (struct octeon_instr_rdp *)&sc->cmd.rdp;
590 rdp->pcie_port = oct->pcie_port;
591 rdp->rlen = sc->rdatasize;
592
593 irh->rflag = 1;
594 irh->len = 4;
595 ih->fsz = 40; /* irh+ossp[0]+ossp[1]+rdp+rptr = 40 bytes */
596 } else {
597 irh->rflag = 0;
598 irh->len = 2;
599 ih->fsz = 24; /* irh + ossp[0] + ossp[1] = 24 bytes */
600 }
601
602 while (!(oct->io_qmask.iq & (1 << sc->iq_no)))
603 sc->iq_no++;
604 }
605
606 int octeon_send_soft_command(struct octeon_device *oct,
607 struct octeon_soft_command *sc)
608 {
609 struct octeon_instr_ih *ih;
610 struct octeon_instr_irh *irh;
611 struct octeon_instr_rdp *rdp;
612
613 ih = (struct octeon_instr_ih *)&sc->cmd.ih;
614 if (ih->dlengsz) {
615 BUG_ON(!sc->dmadptr);
616 sc->cmd.dptr = sc->dmadptr;
617 }
618
619 irh = (struct octeon_instr_irh *)&sc->cmd.irh;
620 if (irh->rflag) {
621 BUG_ON(!sc->dmarptr);
622 BUG_ON(!sc->status_word);
623 *sc->status_word = COMPLETION_WORD_INIT;
624
625 rdp = (struct octeon_instr_rdp *)&sc->cmd.rdp;
626
627 sc->cmd.rptr = sc->dmarptr;
628 }
629
630 if (sc->wait_time)
631 sc->timeout = jiffies + sc->wait_time;
632
633 return octeon_send_command(oct, sc->iq_no, 1, &sc->cmd, sc,
634 (u32)ih->dlengsz, REQTYPE_SOFT_COMMAND);
635 }
636
637 int octeon_setup_sc_buffer_pool(struct octeon_device *oct)
638 {
639 int i;
640 u64 dma_addr;
641 struct octeon_soft_command *sc;
642
643 INIT_LIST_HEAD(&oct->sc_buf_pool.head);
644 spin_lock_init(&oct->sc_buf_pool.lock);
645 atomic_set(&oct->sc_buf_pool.alloc_buf_count, 0);
646
647 for (i = 0; i < MAX_SOFT_COMMAND_BUFFERS; i++) {
648 sc = (struct octeon_soft_command *)
649 lio_dma_alloc(oct,
650 SOFT_COMMAND_BUFFER_SIZE,
651 (dma_addr_t *)&dma_addr);
652 if (!sc)
653 return 1;
654
655 sc->dma_addr = dma_addr;
656 sc->size = SOFT_COMMAND_BUFFER_SIZE;
657
658 list_add_tail(&sc->node, &oct->sc_buf_pool.head);
659 }
660
661 return 0;
662 }
663
664 int octeon_free_sc_buffer_pool(struct octeon_device *oct)
665 {
666 struct list_head *tmp, *tmp2;
667 struct octeon_soft_command *sc;
668
669 spin_lock(&oct->sc_buf_pool.lock);
670
671 list_for_each_safe(tmp, tmp2, &oct->sc_buf_pool.head) {
672 list_del(tmp);
673
674 sc = (struct octeon_soft_command *)tmp;
675
676 lio_dma_free(oct, sc->size, sc, sc->dma_addr);
677 }
678
679 INIT_LIST_HEAD(&oct->sc_buf_pool.head);
680
681 spin_unlock(&oct->sc_buf_pool.lock);
682
683 return 0;
684 }
685
686 struct octeon_soft_command *octeon_alloc_soft_command(struct octeon_device *oct,
687 u32 datasize,
688 u32 rdatasize,
689 u32 ctxsize)
690 {
691 u64 dma_addr;
692 u32 size;
693 u32 offset = sizeof(struct octeon_soft_command);
694 struct octeon_soft_command *sc = NULL;
695 struct list_head *tmp;
696
697 BUG_ON((offset + datasize + rdatasize + ctxsize) >
698 SOFT_COMMAND_BUFFER_SIZE);
699
700 spin_lock(&oct->sc_buf_pool.lock);
701
702 if (list_empty(&oct->sc_buf_pool.head)) {
703 spin_unlock(&oct->sc_buf_pool.lock);
704 return NULL;
705 }
706
707 list_for_each(tmp, &oct->sc_buf_pool.head)
708 break;
709
710 list_del(tmp);
711
712 atomic_inc(&oct->sc_buf_pool.alloc_buf_count);
713
714 spin_unlock(&oct->sc_buf_pool.lock);
715
716 sc = (struct octeon_soft_command *)tmp;
717
718 dma_addr = sc->dma_addr;
719 size = sc->size;
720
721 memset(sc, 0, sc->size);
722
723 sc->dma_addr = dma_addr;
724 sc->size = size;
725
726 if (ctxsize) {
727 sc->ctxptr = (u8 *)sc + offset;
728 sc->ctxsize = ctxsize;
729 }
730
731 /* Start data at 128 byte boundary */
732 offset = (offset + ctxsize + 127) & 0xffffff80;
733
734 if (datasize) {
735 sc->virtdptr = (u8 *)sc + offset;
736 sc->dmadptr = dma_addr + offset;
737 sc->datasize = datasize;
738 }
739
740 /* Start rdata at 128 byte boundary */
741 offset = (offset + datasize + 127) & 0xffffff80;
742
743 if (rdatasize) {
744 BUG_ON(rdatasize < 16);
745 sc->virtrptr = (u8 *)sc + offset;
746 sc->dmarptr = dma_addr + offset;
747 sc->rdatasize = rdatasize;
748 sc->status_word = (u64 *)((u8 *)(sc->virtrptr) + rdatasize - 8);
749 }
750
751 return sc;
752 }
753
754 void octeon_free_soft_command(struct octeon_device *oct,
755 struct octeon_soft_command *sc)
756 {
757 spin_lock(&oct->sc_buf_pool.lock);
758
759 list_add_tail(&sc->node, &oct->sc_buf_pool.head);
760
761 atomic_dec(&oct->sc_buf_pool.alloc_buf_count);
762
763 spin_unlock(&oct->sc_buf_pool.lock);
764 }
This page took 0.060964 seconds and 4 git commands to generate.