blob: 6287a7c72b9e0aa5741fa3492ecc533ae1c46855 [file] [log] [blame]
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001/**********************************************************************
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/dma-mapping.h>
27#include <linux/pci.h>
28#include <linux/kthread.h>
29#include <linux/netdevice.h>
30#include "octeon_config.h"
31#include "liquidio_common.h"
32#include "octeon_droq.h"
33#include "octeon_iq.h"
34#include "response_manager.h"
35#include "octeon_device.h"
36#include "octeon_nic.h"
37#include "octeon_main.h"
38#include "octeon_network.h"
39#include "cn66xx_regs.h"
40#include "cn66xx_device.h"
41#include "cn68xx_regs.h"
42#include "cn68xx_device.h"
43#include "liquidio_image.h"
44
45static void oct_poll_req_completion(struct work_struct *work);
46
47int octeon_setup_response_list(struct octeon_device *oct)
48{
49 int i, ret = 0;
50 struct cavium_wq *cwq;
51
52 for (i = 0; i < MAX_RESPONSE_LISTS; i++) {
53 INIT_LIST_HEAD(&oct->response_list[i].head);
54 spin_lock_init(&oct->response_list[i].lock);
55 atomic_set(&oct->response_list[i].pending_req_count, 0);
56 }
57
Bhaktipriya Shridhar523a61b2016-06-04 20:21:40 +053058 oct->dma_comp_wq.wq = alloc_workqueue("dma-comp", WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070059 if (!oct->dma_comp_wq.wq) {
60 dev_err(&oct->pci_dev->dev, "failed to create wq thread\n");
61 return -ENOMEM;
62 }
63
64 cwq = &oct->dma_comp_wq;
65 INIT_DELAYED_WORK(&cwq->wk.work, oct_poll_req_completion);
66 cwq->wk.ctxptr = oct;
67 queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(100));
68
69 return ret;
70}
71
72void octeon_delete_response_list(struct octeon_device *oct)
73{
74 cancel_delayed_work_sync(&oct->dma_comp_wq.wk.work);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070075 destroy_workqueue(oct->dma_comp_wq.wq);
76}
77
78int lio_process_ordered_list(struct octeon_device *octeon_dev,
79 u32 force_quit)
80{
81 struct octeon_response_list *ordered_sc_list;
82 struct octeon_soft_command *sc;
83 int request_complete = 0;
84 int resp_to_process = MAX_ORD_REQS_TO_PROCESS;
85 u32 status;
86 u64 status64;
87 struct octeon_instr_rdp *rdp;
88
89 ordered_sc_list = &octeon_dev->response_list[OCTEON_ORDERED_SC_LIST];
90
91 do {
92 spin_lock_bh(&ordered_sc_list->lock);
93
94 if (ordered_sc_list->head.next == &ordered_sc_list->head) {
95 /* ordered_sc_list is empty; there is
96 * nothing to process
97 */
98 spin_unlock_bh
99 (&ordered_sc_list->lock);
100 return 1;
101 }
102
103 sc = (struct octeon_soft_command *)ordered_sc_list->
104 head.next;
105 rdp = (struct octeon_instr_rdp *)&sc->cmd.rdp;
106
107 status = OCTEON_REQUEST_PENDING;
108
109 /* check if octeon has finished DMA'ing a response
110 * to where rptr is pointing to
111 */
112 dma_sync_single_for_cpu(&octeon_dev->pci_dev->dev,
113 sc->cmd.rptr, rdp->rlen,
114 DMA_FROM_DEVICE);
115 status64 = *sc->status_word;
116
117 if (status64 != COMPLETION_WORD_INIT) {
118 if ((status64 & 0xff) != 0xff) {
119 octeon_swap_8B_data(&status64, 1);
120 if (((status64 & 0xff) != 0xff)) {
121 status = (u32)(status64 &
122 0xffffffffULL);
123 }
124 }
125 } else if (force_quit || (sc->timeout &&
126 time_after(jiffies, (unsigned long)sc->timeout))) {
127 status = OCTEON_REQUEST_TIMEOUT;
128 }
129
130 if (status != OCTEON_REQUEST_PENDING) {
131 /* we have received a response or we have timed out */
132 /* remove node from linked list */
133 list_del(&sc->node);
134 atomic_dec(&octeon_dev->response_list
135 [OCTEON_ORDERED_SC_LIST].
136 pending_req_count);
137 spin_unlock_bh
138 (&ordered_sc_list->lock);
139
140 if (sc->callback)
141 sc->callback(octeon_dev, status,
142 sc->callback_arg);
143
144 request_complete++;
145
146 } else {
147 /* no response yet */
148 request_complete = 0;
149 spin_unlock_bh
150 (&ordered_sc_list->lock);
151 }
152
153 /* If we hit the Max Ordered requests to process every loop,
154 * we quit
155 * and let this function be invoked the next time the poll
156 * thread runs
157 * to process the remaining requests. This function can take up
158 * the entire CPU if there is no upper limit to the requests
159 * processed.
160 */
161 if (request_complete >= resp_to_process)
162 break;
163 } while (request_complete);
164
165 return 0;
166}
167
168static void oct_poll_req_completion(struct work_struct *work)
169{
170 struct cavium_wk *wk = (struct cavium_wk *)work;
171 struct octeon_device *oct = (struct octeon_device *)wk->ctxptr;
172 struct cavium_wq *cwq = &oct->dma_comp_wq;
173
174 lio_process_ordered_list(oct, 0);
175
176 queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(100));
177}