blob: 28117e130e2c0848ddb64d3ac5c41c725fcd9bc9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Swen Schillig00bab912008-06-10 18:20:57 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Swen Schillig00bab912008-06-10 18:20:57 +02004 * Setup and helper functions to access QDIO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Christof Schmitt1674b402010-04-30 18:09:34 +02006 * Copyright IBM Corporation 2002, 2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "zfcp_ext.h"
Christof Schmitt34c2b712010-02-17 11:18:59 +010014#include "zfcp_qdio.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Christof Schmitt5d4e2262008-07-02 10:56:34 +020016#define QBUFF_PER_PAGE (PAGE_SIZE / sizeof(struct qdio_buffer))
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Swen Schillig00bab912008-06-10 18:20:57 +020018static int zfcp_qdio_buffers_enqueue(struct qdio_buffer **sbal)
Swen Schilligb4e44592007-07-18 10:55:13 +020019{
20 int pos;
21
22 for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos += QBUFF_PER_PAGE) {
Swen Schillig00bab912008-06-10 18:20:57 +020023 sbal[pos] = (struct qdio_buffer *) get_zeroed_page(GFP_KERNEL);
24 if (!sbal[pos])
Swen Schilligb4e44592007-07-18 10:55:13 +020025 return -ENOMEM;
Swen Schilligb4e44592007-07-18 10:55:13 +020026 }
27 for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos++)
28 if (pos % QBUFF_PER_PAGE)
Swen Schillig00bab912008-06-10 18:20:57 +020029 sbal[pos] = sbal[pos - 1] + 1;
Swen Schilligb4e44592007-07-18 10:55:13 +020030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
32
Swen Schillig564e1c82009-08-18 15:43:19 +020033static void zfcp_qdio_handler_error(struct zfcp_qdio *qdio, char *id)
Swen Schillig00bab912008-06-10 18:20:57 +020034{
Swen Schillig564e1c82009-08-18 15:43:19 +020035 struct zfcp_adapter *adapter = qdio->adapter;
36
Christof Schmittff3b24f2008-10-01 12:42:15 +020037 dev_warn(&adapter->ccw_device->dev, "A QDIO problem occurred\n");
Swen Schillig00bab912008-06-10 18:20:57 +020038
39 zfcp_erp_adapter_reopen(adapter,
40 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
41 ZFCP_STATUS_COMMON_ERP_FAILED, id, NULL);
42}
43
Christof Schmitt5d4e2262008-07-02 10:56:34 +020044static void zfcp_qdio_zero_sbals(struct qdio_buffer *sbal[], int first, int cnt)
45{
46 int i, sbal_idx;
47
48 for (i = first; i < first + cnt; i++) {
49 sbal_idx = i % QDIO_MAX_BUFFERS_PER_Q;
50 memset(sbal[sbal_idx], 0, sizeof(struct qdio_buffer));
51 }
52}
53
Martin Peschke94506fd2009-03-02 13:08:56 +010054/* this needs to be called prior to updating the queue fill level */
Heiko Carstens41e05a12009-08-18 15:43:32 +020055static inline void zfcp_qdio_account(struct zfcp_qdio *qdio)
Martin Peschke94506fd2009-03-02 13:08:56 +010056{
Heiko Carstens41e05a12009-08-18 15:43:32 +020057 unsigned long long now, span;
Martin Peschke94506fd2009-03-02 13:08:56 +010058 int free, used;
59
Swen Schillig564e1c82009-08-18 15:43:19 +020060 spin_lock(&qdio->stat_lock);
Heiko Carstens41e05a12009-08-18 15:43:32 +020061 now = get_clock_monotonic();
62 span = (now - qdio->req_q_time) >> 12;
63 free = atomic_read(&qdio->req_q.count);
Martin Peschke94506fd2009-03-02 13:08:56 +010064 used = QDIO_MAX_BUFFERS_PER_Q - free;
Swen Schillig564e1c82009-08-18 15:43:19 +020065 qdio->req_q_util += used * span;
66 qdio->req_q_time = now;
67 spin_unlock(&qdio->stat_lock);
Martin Peschke94506fd2009-03-02 13:08:56 +010068}
69
Jan Glauber779e6e12008-07-17 17:16:48 +020070static void zfcp_qdio_int_req(struct ccw_device *cdev, unsigned int qdio_err,
71 int queue_no, int first, int count,
Swen Schillig00bab912008-06-10 18:20:57 +020072 unsigned long parm)
73{
Swen Schillig564e1c82009-08-18 15:43:19 +020074 struct zfcp_qdio *qdio = (struct zfcp_qdio *) parm;
75 struct zfcp_qdio_queue *queue = &qdio->req_q;
Swen Schillig00bab912008-06-10 18:20:57 +020076
Jan Glauber779e6e12008-07-17 17:16:48 +020077 if (unlikely(qdio_err)) {
Swen Schillig57717102009-08-18 15:43:21 +020078 zfcp_dbf_hba_qdio(qdio->adapter->dbf, qdio_err, first,
79 count);
Swen Schillig564e1c82009-08-18 15:43:19 +020080 zfcp_qdio_handler_error(qdio, "qdireq1");
Swen Schillig00bab912008-06-10 18:20:57 +020081 return;
82 }
83
84 /* cleanup all SBALs being program-owned now */
85 zfcp_qdio_zero_sbals(queue->sbal, first, count);
86
Swen Schillig564e1c82009-08-18 15:43:19 +020087 zfcp_qdio_account(qdio);
Swen Schillig00bab912008-06-10 18:20:57 +020088 atomic_add(count, &queue->count);
Swen Schillig564e1c82009-08-18 15:43:19 +020089 wake_up(&qdio->req_q_wq);
Swen Schillig00bab912008-06-10 18:20:57 +020090}
91
Swen Schillig564e1c82009-08-18 15:43:19 +020092static void zfcp_qdio_resp_put_back(struct zfcp_qdio *qdio, int processed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Swen Schillig564e1c82009-08-18 15:43:19 +020094 struct zfcp_qdio_queue *queue = &qdio->resp_q;
95 struct ccw_device *cdev = qdio->adapter->ccw_device;
Swen Schillig00bab912008-06-10 18:20:57 +020096 u8 count, start = queue->first;
97 unsigned int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Swen Schillig00bab912008-06-10 18:20:57 +020099 count = atomic_read(&queue->count) + processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Jan Glauber779e6e12008-07-17 17:16:48 +0200101 retval = do_QDIO(cdev, QDIO_FLAG_SYNC_INPUT, 0, start, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Swen Schillig00bab912008-06-10 18:20:57 +0200103 if (unlikely(retval)) {
104 atomic_set(&queue->count, count);
Christof Schmitt452b5052010-02-17 11:18:51 +0100105 zfcp_erp_adapter_reopen(qdio->adapter, 0, "qdrpb_1", NULL);
Swen Schillig00bab912008-06-10 18:20:57 +0200106 } else {
107 queue->first += count;
108 queue->first %= QDIO_MAX_BUFFERS_PER_Q;
109 atomic_set(&queue->count, 0);
110 }
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jan Glauber779e6e12008-07-17 17:16:48 +0200113static void zfcp_qdio_int_resp(struct ccw_device *cdev, unsigned int qdio_err,
114 int queue_no, int first, int count,
Swen Schillig00bab912008-06-10 18:20:57 +0200115 unsigned long parm)
116{
Swen Schillig564e1c82009-08-18 15:43:19 +0200117 struct zfcp_qdio *qdio = (struct zfcp_qdio *) parm;
Swen Schilligbd63eaf2009-08-18 15:43:13 +0200118 int sbal_idx, sbal_no;
Swen Schillig00bab912008-06-10 18:20:57 +0200119
Jan Glauber779e6e12008-07-17 17:16:48 +0200120 if (unlikely(qdio_err)) {
Swen Schillig57717102009-08-18 15:43:21 +0200121 zfcp_dbf_hba_qdio(qdio->adapter->dbf, qdio_err, first,
122 count);
Swen Schillig564e1c82009-08-18 15:43:19 +0200123 zfcp_qdio_handler_error(qdio, "qdires1");
Swen Schillig00bab912008-06-10 18:20:57 +0200124 return;
125 }
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /*
128 * go through all SBALs from input queue currently
129 * returned by QDIO layer
130 */
Swen Schillig00bab912008-06-10 18:20:57 +0200131 for (sbal_no = 0; sbal_no < count; sbal_no++) {
132 sbal_idx = (first + sbal_no) % QDIO_MAX_BUFFERS_PER_Q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* go through all SBALEs of SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200134 zfcp_fsf_reqid_check(qdio, sbal_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 /*
138 * put range of SBALs back to response queue
139 * (including SBALs which have already been free before)
140 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200141 zfcp_qdio_resp_put_back(qdio, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Swen Schillig564e1c82009-08-18 15:43:19 +0200144static void zfcp_qdio_sbal_limit(struct zfcp_qdio *qdio,
Christof Schmitt34c2b712010-02-17 11:18:59 +0100145 struct zfcp_qdio_req *q_req, int max_sbals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Swen Schillig564e1c82009-08-18 15:43:19 +0200147 int count = atomic_read(&qdio->req_q.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 count = min(count, max_sbals);
Swen Schillig42428f72009-08-18 15:43:18 +0200149 q_req->sbal_limit = (q_req->sbal_first + count - 1)
Swen Schillig00bab912008-06-10 18:20:57 +0200150 % QDIO_MAX_BUFFERS_PER_Q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Swen Schillig44cc76f2008-10-01 12:42:16 +0200153static struct qdio_buffer_element *
Christof Schmitt1674b402010-04-30 18:09:34 +0200154zfcp_qdio_sbal_chain(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200156 struct qdio_buffer_element *sbale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* set last entry flag in current SBALE of current SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200159 sbale = zfcp_qdio_sbale_curr(qdio, q_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
161
162 /* don't exceed last allowed SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200163 if (q_req->sbal_last == q_req->sbal_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return NULL;
165
166 /* set chaining flag in first SBALE of current SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200167 sbale = zfcp_qdio_sbale_req(qdio, q_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 sbale->flags |= SBAL_FLAGS0_MORE_SBALS;
169
170 /* calculate index of next SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200171 q_req->sbal_last++;
172 q_req->sbal_last %= QDIO_MAX_BUFFERS_PER_Q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* keep this requests number of SBALs up-to-date */
Swen Schillig42428f72009-08-18 15:43:18 +0200175 q_req->sbal_number++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* start at first SBALE of new SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200178 q_req->sbale_curr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* set storage-block type for new SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200181 sbale = zfcp_qdio_sbale_curr(qdio, q_req);
Christof Schmitt1674b402010-04-30 18:09:34 +0200182 sbale->flags |= q_req->sbtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 return sbale;
185}
186
Swen Schillig44cc76f2008-10-01 12:42:16 +0200187static struct qdio_buffer_element *
Christof Schmitt1674b402010-04-30 18:09:34 +0200188zfcp_qdio_sbale_next(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Christof Schmitt1674b402010-04-30 18:09:34 +0200190 if (q_req->sbale_curr == ZFCP_QDIO_LAST_SBALE_PER_SBAL)
191 return zfcp_qdio_sbal_chain(qdio, q_req);
Swen Schillig42428f72009-08-18 15:43:18 +0200192 q_req->sbale_curr++;
Swen Schillig564e1c82009-08-18 15:43:19 +0200193 return zfcp_qdio_sbale_curr(qdio, q_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Swen Schillig564e1c82009-08-18 15:43:19 +0200196static void zfcp_qdio_undo_sbals(struct zfcp_qdio *qdio,
Christof Schmitt34c2b712010-02-17 11:18:59 +0100197 struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Swen Schillig564e1c82009-08-18 15:43:19 +0200199 struct qdio_buffer **sbal = qdio->req_q.sbal;
Swen Schillig42428f72009-08-18 15:43:18 +0200200 int first = q_req->sbal_first;
201 int last = q_req->sbal_last;
Swen Schillig00bab912008-06-10 18:20:57 +0200202 int count = (last - first + QDIO_MAX_BUFFERS_PER_Q) %
203 QDIO_MAX_BUFFERS_PER_Q + 1;
204 zfcp_qdio_zero_sbals(sbal, first, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/**
208 * zfcp_qdio_sbals_from_sg - fill SBALs from scatter-gather list
Christof Schmitt1674b402010-04-30 18:09:34 +0200209 * @qdio: pointer to struct zfcp_qdio
210 * @q_req: pointer to struct zfcp_qdio_req
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * @sg: scatter-gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * @max_sbals: upper bound for number of SBALs to be used
Swen Schillig00bab912008-06-10 18:20:57 +0200213 * Returns: number of bytes, or error (negativ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 */
Christof Schmitt34c2b712010-02-17 11:18:59 +0100215int zfcp_qdio_sbals_from_sg(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req,
Christof Schmitt1674b402010-04-30 18:09:34 +0200216 struct scatterlist *sg, int max_sbals)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200218 struct qdio_buffer_element *sbale;
Christof Schmitt68322982010-04-30 18:09:33 +0200219 int bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /* figure out last allowed SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200222 zfcp_qdio_sbal_limit(qdio, q_req, max_sbals);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Swen Schillig00bab912008-06-10 18:20:57 +0200224 /* set storage-block type for this request */
Swen Schillig564e1c82009-08-18 15:43:19 +0200225 sbale = zfcp_qdio_sbale_req(qdio, q_req);
Christof Schmitt1674b402010-04-30 18:09:34 +0200226 sbale->flags |= q_req->sbtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Swen Schillig00bab912008-06-10 18:20:57 +0200228 for (; sg; sg = sg_next(sg)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200229 sbale = zfcp_qdio_sbale_next(qdio, q_req);
Christof Schmitt68322982010-04-30 18:09:33 +0200230 if (!sbale) {
231 atomic_inc(&qdio->req_q_full);
232 zfcp_qdio_undo_sbals(qdio, q_req);
233 return -EINVAL;
234 }
235
236 sbale->addr = sg_virt(sg);
237 sbale->length = sg->length;
238
Swen Schillig00bab912008-06-10 18:20:57 +0200239 bytes += sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Swen Schillig00bab912008-06-10 18:20:57 +0200241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* assume that no other SBALEs are to follow in the same SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200243 sbale = zfcp_qdio_sbale_curr(qdio, q_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 sbale->flags |= SBAL_FLAGS_LAST_ENTRY;
Swen Schillig00bab912008-06-10 18:20:57 +0200245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return bytes;
247}
248
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200249static int zfcp_qdio_sbal_check(struct zfcp_qdio *qdio)
250{
251 struct zfcp_qdio_queue *req_q = &qdio->req_q;
252
253 spin_lock_bh(&qdio->req_q_lock);
254 if (atomic_read(&req_q->count))
255 return 1;
256 spin_unlock_bh(&qdio->req_q_lock);
257 return 0;
258}
259
260/**
261 * zfcp_qdio_sbal_get - get free sbal in request queue, wait if necessary
262 * @qdio: pointer to struct zfcp_qdio
263 *
264 * The req_q_lock must be held by the caller of this function, and
265 * this function may only be called from process context; it will
266 * sleep when waiting for a free sbal.
267 *
268 * Returns: 0 on success, -EIO if there is no free sbal after waiting.
269 */
270int zfcp_qdio_sbal_get(struct zfcp_qdio *qdio)
271{
272 long ret;
273
274 spin_unlock_bh(&qdio->req_q_lock);
275 ret = wait_event_interruptible_timeout(qdio->req_q_wq,
276 zfcp_qdio_sbal_check(qdio), 5 * HZ);
277 if (ret > 0)
278 return 0;
279 if (!ret) {
280 atomic_inc(&qdio->req_q_full);
281 /* assume hanging outbound queue, try queue recovery */
282 zfcp_erp_adapter_reopen(qdio->adapter, 0, "qdsbg_1", NULL);
283 }
284
285 spin_lock_bh(&qdio->req_q_lock);
286 return -EIO;
287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/**
Swen Schillig00bab912008-06-10 18:20:57 +0200290 * zfcp_qdio_send - set PCI flag in first SBALE and send req to QDIO
Swen Schillig564e1c82009-08-18 15:43:19 +0200291 * @qdio: pointer to struct zfcp_qdio
Christof Schmitt34c2b712010-02-17 11:18:59 +0100292 * @q_req: pointer to struct zfcp_qdio_req
Swen Schillig00bab912008-06-10 18:20:57 +0200293 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
Christof Schmitt34c2b712010-02-17 11:18:59 +0100295int zfcp_qdio_send(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Swen Schillig564e1c82009-08-18 15:43:19 +0200297 struct zfcp_qdio_queue *req_q = &qdio->req_q;
Swen Schillig42428f72009-08-18 15:43:18 +0200298 int first = q_req->sbal_first;
299 int count = q_req->sbal_number;
Christof Schmitt21ddaa52009-03-02 13:09:05 +0100300 int retval;
301 unsigned int qdio_flags = QDIO_FLAG_SYNC_OUTPUT;
Swen Schillig00bab912008-06-10 18:20:57 +0200302
Swen Schillig564e1c82009-08-18 15:43:19 +0200303 zfcp_qdio_account(qdio);
Martin Peschke94506fd2009-03-02 13:08:56 +0100304
Swen Schillig564e1c82009-08-18 15:43:19 +0200305 retval = do_QDIO(qdio->adapter->ccw_device, qdio_flags, 0, first,
306 count);
Swen Schillig00bab912008-06-10 18:20:57 +0200307 if (unlikely(retval)) {
308 zfcp_qdio_zero_sbals(req_q->sbal, first, count);
309 return retval;
310 }
311
312 /* account for transferred buffers */
313 atomic_sub(count, &req_q->count);
314 req_q->first += count;
315 req_q->first %= QDIO_MAX_BUFFERS_PER_Q;
Swen Schillig00bab912008-06-10 18:20:57 +0200316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Swen Schillig564e1c82009-08-18 15:43:19 +0200319
320static void zfcp_qdio_setup_init_data(struct qdio_initialize *id,
321 struct zfcp_qdio *qdio)
322{
323
324 id->cdev = qdio->adapter->ccw_device;
325 id->q_format = QDIO_ZFCP_QFMT;
326 memcpy(id->adapter_name, dev_name(&id->cdev->dev), 8);
327 ASCEBC(id->adapter_name, 8);
328 id->qib_param_field_format = 0;
329 id->qib_param_field = NULL;
330 id->input_slib_elements = NULL;
331 id->output_slib_elements = NULL;
332 id->no_input_qs = 1;
333 id->no_output_qs = 1;
334 id->input_handler = zfcp_qdio_int_resp;
335 id->output_handler = zfcp_qdio_int_req;
336 id->int_parm = (unsigned long) qdio;
Swen Schillig564e1c82009-08-18 15:43:19 +0200337 id->input_sbal_addr_array = (void **) (qdio->resp_q.sbal);
338 id->output_sbal_addr_array = (void **) (qdio->req_q.sbal);
339
340}
Swen Schillig00bab912008-06-10 18:20:57 +0200341/**
Swen Schillig00bab912008-06-10 18:20:57 +0200342 * zfcp_qdio_allocate - allocate queue memory and initialize QDIO data
343 * @adapter: pointer to struct zfcp_adapter
344 * Returns: -ENOMEM on memory allocation error or return value from
345 * qdio_allocate
346 */
Swen Schilligd5a282a2009-08-18 15:43:22 +0200347static int zfcp_qdio_allocate(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200348{
Swen Schillig564e1c82009-08-18 15:43:19 +0200349 struct qdio_initialize init_data;
Swen Schillig00bab912008-06-10 18:20:57 +0200350
Swen Schillig564e1c82009-08-18 15:43:19 +0200351 if (zfcp_qdio_buffers_enqueue(qdio->req_q.sbal) ||
352 zfcp_qdio_buffers_enqueue(qdio->resp_q.sbal))
Swen Schillig00bab912008-06-10 18:20:57 +0200353 return -ENOMEM;
354
Swen Schillig564e1c82009-08-18 15:43:19 +0200355 zfcp_qdio_setup_init_data(&init_data, qdio);
Swen Schillig00bab912008-06-10 18:20:57 +0200356
Swen Schillig564e1c82009-08-18 15:43:19 +0200357 return qdio_allocate(&init_data);
Swen Schillig00bab912008-06-10 18:20:57 +0200358}
359
360/**
361 * zfcp_close_qdio - close qdio queues for an adapter
Swen Schillig564e1c82009-08-18 15:43:19 +0200362 * @qdio: pointer to structure zfcp_qdio
Swen Schillig00bab912008-06-10 18:20:57 +0200363 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200364void zfcp_qdio_close(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200365{
366 struct zfcp_qdio_queue *req_q;
367 int first, count;
368
Swen Schillig564e1c82009-08-18 15:43:19 +0200369 if (!(atomic_read(&qdio->adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP))
Swen Schillig00bab912008-06-10 18:20:57 +0200370 return;
371
372 /* clear QDIOUP flag, thus do_QDIO is not called during qdio_shutdown */
Swen Schillig564e1c82009-08-18 15:43:19 +0200373 req_q = &qdio->req_q;
374 spin_lock_bh(&qdio->req_q_lock);
375 atomic_clear_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &qdio->adapter->status);
376 spin_unlock_bh(&qdio->req_q_lock);
Swen Schillig00bab912008-06-10 18:20:57 +0200377
Swen Schillig564e1c82009-08-18 15:43:19 +0200378 qdio_shutdown(qdio->adapter->ccw_device,
379 QDIO_FLAG_CLEANUP_USING_CLEAR);
Swen Schillig00bab912008-06-10 18:20:57 +0200380
381 /* cleanup used outbound sbals */
382 count = atomic_read(&req_q->count);
383 if (count < QDIO_MAX_BUFFERS_PER_Q) {
384 first = (req_q->first + count) % QDIO_MAX_BUFFERS_PER_Q;
385 count = QDIO_MAX_BUFFERS_PER_Q - count;
386 zfcp_qdio_zero_sbals(req_q->sbal, first, count);
387 }
388 req_q->first = 0;
389 atomic_set(&req_q->count, 0);
Swen Schillig564e1c82009-08-18 15:43:19 +0200390 qdio->resp_q.first = 0;
391 atomic_set(&qdio->resp_q.count, 0);
Swen Schillig00bab912008-06-10 18:20:57 +0200392}
393
394/**
395 * zfcp_qdio_open - prepare and initialize response queue
Swen Schillig564e1c82009-08-18 15:43:19 +0200396 * @qdio: pointer to struct zfcp_qdio
Swen Schillig00bab912008-06-10 18:20:57 +0200397 * Returns: 0 on success, otherwise -EIO
398 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200399int zfcp_qdio_open(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200400{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200401 struct qdio_buffer_element *sbale;
Swen Schillig564e1c82009-08-18 15:43:19 +0200402 struct qdio_initialize init_data;
403 struct ccw_device *cdev = qdio->adapter->ccw_device;
Swen Schillig00bab912008-06-10 18:20:57 +0200404 int cc;
405
Swen Schillig564e1c82009-08-18 15:43:19 +0200406 if (atomic_read(&qdio->adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP)
Swen Schillig00bab912008-06-10 18:20:57 +0200407 return -EIO;
408
Swen Schillig564e1c82009-08-18 15:43:19 +0200409 zfcp_qdio_setup_init_data(&init_data, qdio);
410
411 if (qdio_establish(&init_data))
Christof Schmittff3b24f2008-10-01 12:42:15 +0200412 goto failed_establish;
Swen Schillig00bab912008-06-10 18:20:57 +0200413
Swen Schillig564e1c82009-08-18 15:43:19 +0200414 if (qdio_activate(cdev))
Swen Schillig00bab912008-06-10 18:20:57 +0200415 goto failed_qdio;
Swen Schillig00bab912008-06-10 18:20:57 +0200416
417 for (cc = 0; cc < QDIO_MAX_BUFFERS_PER_Q; cc++) {
Swen Schillig564e1c82009-08-18 15:43:19 +0200418 sbale = &(qdio->resp_q.sbal[cc]->element[0]);
Swen Schillig00bab912008-06-10 18:20:57 +0200419 sbale->length = 0;
420 sbale->flags = SBAL_FLAGS_LAST_ENTRY;
421 sbale->addr = NULL;
422 }
423
Swen Schillig564e1c82009-08-18 15:43:19 +0200424 if (do_QDIO(cdev, QDIO_FLAG_SYNC_INPUT, 0, 0,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200425 QDIO_MAX_BUFFERS_PER_Q))
Swen Schillig00bab912008-06-10 18:20:57 +0200426 goto failed_qdio;
Swen Schillig00bab912008-06-10 18:20:57 +0200427
428 /* set index of first avalable SBALS / number of available SBALS */
Swen Schillig564e1c82009-08-18 15:43:19 +0200429 qdio->req_q.first = 0;
430 atomic_set(&qdio->req_q.count, QDIO_MAX_BUFFERS_PER_Q);
Swen Schillig00bab912008-06-10 18:20:57 +0200431
432 return 0;
433
434failed_qdio:
Swen Schillig564e1c82009-08-18 15:43:19 +0200435 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200436failed_establish:
Swen Schillig564e1c82009-08-18 15:43:19 +0200437 dev_err(&cdev->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200438 "Setting up the QDIO connection to the FCP adapter failed\n");
Swen Schillig00bab912008-06-10 18:20:57 +0200439 return -EIO;
440}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200441
442void zfcp_qdio_destroy(struct zfcp_qdio *qdio)
443{
444 struct qdio_buffer **sbal_req, **sbal_resp;
445 int p;
446
447 if (!qdio)
448 return;
449
450 if (qdio->adapter->ccw_device)
451 qdio_free(qdio->adapter->ccw_device);
452
453 sbal_req = qdio->req_q.sbal;
454 sbal_resp = qdio->resp_q.sbal;
455
456 for (p = 0; p < QDIO_MAX_BUFFERS_PER_Q; p += QBUFF_PER_PAGE) {
457 free_page((unsigned long) sbal_req[p]);
458 free_page((unsigned long) sbal_resp[p]);
459 }
460
461 kfree(qdio);
462}
463
464int zfcp_qdio_setup(struct zfcp_adapter *adapter)
465{
466 struct zfcp_qdio *qdio;
467
468 qdio = kzalloc(sizeof(struct zfcp_qdio), GFP_KERNEL);
469 if (!qdio)
470 return -ENOMEM;
471
472 qdio->adapter = adapter;
473
474 if (zfcp_qdio_allocate(qdio)) {
475 zfcp_qdio_destroy(qdio);
476 return -ENOMEM;
477 }
478
479 spin_lock_init(&qdio->req_q_lock);
480 spin_lock_init(&qdio->stat_lock);
481
482 adapter->qdio = qdio;
483 return 0;
484}
485