blob: df9e69f5474204220d54f7498c724e56ae41f383 [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 Schillig86a96682011-08-15 14:40:32 +020018static bool enable_multibuffer;
19module_param_named(datarouter, enable_multibuffer, bool, 0400);
20MODULE_PARM_DESC(datarouter, "Enable hardware data router support");
21
Swen Schillig00bab912008-06-10 18:20:57 +020022static int zfcp_qdio_buffers_enqueue(struct qdio_buffer **sbal)
Swen Schilligb4e44592007-07-18 10:55:13 +020023{
24 int pos;
25
26 for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos += QBUFF_PER_PAGE) {
Swen Schillig00bab912008-06-10 18:20:57 +020027 sbal[pos] = (struct qdio_buffer *) get_zeroed_page(GFP_KERNEL);
28 if (!sbal[pos])
Swen Schilligb4e44592007-07-18 10:55:13 +020029 return -ENOMEM;
Swen Schilligb4e44592007-07-18 10:55:13 +020030 }
31 for (pos = 0; pos < QDIO_MAX_BUFFERS_PER_Q; pos++)
32 if (pos % QBUFF_PER_PAGE)
Swen Schillig00bab912008-06-10 18:20:57 +020033 sbal[pos] = sbal[pos - 1] + 1;
Swen Schilligb4e44592007-07-18 10:55:13 +020034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Christof Schmitt339f4f42010-07-16 15:37:43 +020037static void zfcp_qdio_handler_error(struct zfcp_qdio *qdio, char *id,
38 unsigned int qdio_err)
Swen Schillig00bab912008-06-10 18:20:57 +020039{
Swen Schillig564e1c82009-08-18 15:43:19 +020040 struct zfcp_adapter *adapter = qdio->adapter;
41
Christof Schmittff3b24f2008-10-01 12:42:15 +020042 dev_warn(&adapter->ccw_device->dev, "A QDIO problem occurred\n");
Swen Schillig00bab912008-06-10 18:20:57 +020043
Swen Schillig86a96682011-08-15 14:40:32 +020044 if (qdio_err & QDIO_ERROR_SLSB_STATE) {
Christof Schmitt339f4f42010-07-16 15:37:43 +020045 zfcp_qdio_siosl(adapter);
Swen Schillig86a96682011-08-15 14:40:32 +020046 zfcp_erp_adapter_shutdown(adapter, 0, id);
47 return;
48 }
Swen Schillig00bab912008-06-10 18:20:57 +020049 zfcp_erp_adapter_reopen(adapter,
50 ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED |
Swen Schilligea4a3a62010-12-02 15:16:16 +010051 ZFCP_STATUS_COMMON_ERP_FAILED, id);
Swen Schillig00bab912008-06-10 18:20:57 +020052}
53
Christof Schmitt5d4e2262008-07-02 10:56:34 +020054static void zfcp_qdio_zero_sbals(struct qdio_buffer *sbal[], int first, int cnt)
55{
56 int i, sbal_idx;
57
58 for (i = first; i < first + cnt; i++) {
59 sbal_idx = i % QDIO_MAX_BUFFERS_PER_Q;
60 memset(sbal[sbal_idx], 0, sizeof(struct qdio_buffer));
61 }
62}
63
Martin Peschke94506fd2009-03-02 13:08:56 +010064/* this needs to be called prior to updating the queue fill level */
Heiko Carstens41e05a12009-08-18 15:43:32 +020065static inline void zfcp_qdio_account(struct zfcp_qdio *qdio)
Martin Peschke94506fd2009-03-02 13:08:56 +010066{
Heiko Carstens41e05a12009-08-18 15:43:32 +020067 unsigned long long now, span;
Swen Schillig706eca42010-07-16 15:37:38 +020068 int used;
Martin Peschke94506fd2009-03-02 13:08:56 +010069
Heiko Carstens41e05a12009-08-18 15:43:32 +020070 now = get_clock_monotonic();
71 span = (now - qdio->req_q_time) >> 12;
Swen Schillig706eca42010-07-16 15:37:38 +020072 used = QDIO_MAX_BUFFERS_PER_Q - atomic_read(&qdio->req_q_free);
Swen Schillig564e1c82009-08-18 15:43:19 +020073 qdio->req_q_util += used * span;
74 qdio->req_q_time = now;
Martin Peschke94506fd2009-03-02 13:08:56 +010075}
76
Jan Glauber779e6e12008-07-17 17:16:48 +020077static void zfcp_qdio_int_req(struct ccw_device *cdev, unsigned int qdio_err,
Swen Schillig706eca42010-07-16 15:37:38 +020078 int queue_no, int idx, int count,
Swen Schillig00bab912008-06-10 18:20:57 +020079 unsigned long parm)
80{
Swen Schillig564e1c82009-08-18 15:43:19 +020081 struct zfcp_qdio *qdio = (struct zfcp_qdio *) parm;
Swen Schillig00bab912008-06-10 18:20:57 +020082
Jan Glauber779e6e12008-07-17 17:16:48 +020083 if (unlikely(qdio_err)) {
Christof Schmitt339f4f42010-07-16 15:37:43 +020084 zfcp_qdio_handler_error(qdio, "qdireq1", qdio_err);
Swen Schillig00bab912008-06-10 18:20:57 +020085 return;
86 }
87
88 /* cleanup all SBALs being program-owned now */
Swen Schillig706eca42010-07-16 15:37:38 +020089 zfcp_qdio_zero_sbals(qdio->req_q, idx, count);
Swen Schillig00bab912008-06-10 18:20:57 +020090
Christof Schmitt44a24cb2010-09-08 14:39:57 +020091 spin_lock_irq(&qdio->stat_lock);
Swen Schillig564e1c82009-08-18 15:43:19 +020092 zfcp_qdio_account(qdio);
Christof Schmitt44a24cb2010-09-08 14:39:57 +020093 spin_unlock_irq(&qdio->stat_lock);
Swen Schillig706eca42010-07-16 15:37:38 +020094 atomic_add(count, &qdio->req_q_free);
Swen Schillig564e1c82009-08-18 15:43:19 +020095 wake_up(&qdio->req_q_wq);
Swen Schillig00bab912008-06-10 18:20:57 +020096}
97
Jan Glauber779e6e12008-07-17 17:16:48 +020098static void zfcp_qdio_int_resp(struct ccw_device *cdev, unsigned int qdio_err,
Swen Schillig706eca42010-07-16 15:37:38 +020099 int queue_no, int idx, int count,
Swen Schillig00bab912008-06-10 18:20:57 +0200100 unsigned long parm)
101{
Swen Schillig564e1c82009-08-18 15:43:19 +0200102 struct zfcp_qdio *qdio = (struct zfcp_qdio *) parm;
Swen Schillig86a96682011-08-15 14:40:32 +0200103 struct zfcp_adapter *adapter = qdio->adapter;
104 struct qdio_buffer_element *sbale;
105 int sbal_no, sbal_idx;
106 void *pl[ZFCP_QDIO_MAX_SBALS_PER_REQ + 1];
107 u64 req_id;
108 u8 scount;
Swen Schillig00bab912008-06-10 18:20:57 +0200109
Jan Glauber779e6e12008-07-17 17:16:48 +0200110 if (unlikely(qdio_err)) {
Swen Schillig86a96682011-08-15 14:40:32 +0200111 memset(pl, 0, ZFCP_QDIO_MAX_SBALS_PER_REQ * sizeof(void *));
112 if (zfcp_adapter_multi_buffer_active(adapter)) {
113 sbale = qdio->res_q[idx]->element;
114 req_id = (u64) sbale->addr;
115 scount = sbale->scount + 1; /* incl. signaling SBAL */
116
117 for (sbal_no = 0; sbal_no < scount; sbal_no++) {
118 sbal_idx = (idx + sbal_no) %
119 QDIO_MAX_BUFFERS_PER_Q;
120 pl[sbal_no] = qdio->res_q[sbal_idx];
121 }
122 zfcp_dbf_hba_def_err(adapter, req_id, scount, pl);
123 }
Christof Schmitt339f4f42010-07-16 15:37:43 +0200124 zfcp_qdio_handler_error(qdio, "qdires1", qdio_err);
Swen Schillig00bab912008-06-10 18:20:57 +0200125 return;
126 }
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /*
129 * go through all SBALs from input queue currently
130 * returned by QDIO layer
131 */
Swen Schillig00bab912008-06-10 18:20:57 +0200132 for (sbal_no = 0; sbal_no < count; sbal_no++) {
Swen Schillig706eca42010-07-16 15:37:38 +0200133 sbal_idx = (idx + sbal_no) % QDIO_MAX_BUFFERS_PER_Q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* go through all SBALEs of SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200135 zfcp_fsf_reqid_check(qdio, sbal_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
138 /*
Swen Schillig706eca42010-07-16 15:37:38 +0200139 * put SBALs back to response queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
Swen Schillig706eca42010-07-16 15:37:38 +0200141 if (do_QDIO(cdev, QDIO_FLAG_SYNC_INPUT, 0, idx, count))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100142 zfcp_erp_adapter_reopen(qdio->adapter, 0, "qdires2");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Swen Schillig44cc76f2008-10-01 12:42:16 +0200145static struct qdio_buffer_element *
Christof Schmitt1674b402010-04-30 18:09:34 +0200146zfcp_qdio_sbal_chain(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200148 struct qdio_buffer_element *sbale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* set last entry flag in current SBALE of current SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200151 sbale = zfcp_qdio_sbale_curr(qdio, q_req);
Jan Glauber3ec908782011-06-06 14:14:40 +0200152 sbale->eflags |= SBAL_EFLAGS_LAST_ENTRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* don't exceed last allowed SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200155 if (q_req->sbal_last == q_req->sbal_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return NULL;
157
158 /* set chaining flag in first SBALE of current SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200159 sbale = zfcp_qdio_sbale_req(qdio, q_req);
Jan Glauber3ec908782011-06-06 14:14:40 +0200160 sbale->sflags |= SBAL_SFLAGS0_MORE_SBALS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* calculate index of next SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200163 q_req->sbal_last++;
164 q_req->sbal_last %= QDIO_MAX_BUFFERS_PER_Q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* keep this requests number of SBALs up-to-date */
Swen Schillig42428f72009-08-18 15:43:18 +0200167 q_req->sbal_number++;
Swen Schillig01b04752010-07-16 15:37:37 +0200168 BUG_ON(q_req->sbal_number > ZFCP_QDIO_MAX_SBALS_PER_REQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* start at first SBALE of new SBAL */
Swen Schillig42428f72009-08-18 15:43:18 +0200171 q_req->sbale_curr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* set storage-block type for new SBAL */
Swen Schillig564e1c82009-08-18 15:43:19 +0200174 sbale = zfcp_qdio_sbale_curr(qdio, q_req);
Jan Glauber3ec908782011-06-06 14:14:40 +0200175 sbale->sflags |= q_req->sbtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 return sbale;
178}
179
Swen Schillig44cc76f2008-10-01 12:42:16 +0200180static struct qdio_buffer_element *
Christof Schmitt1674b402010-04-30 18:09:34 +0200181zfcp_qdio_sbale_next(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Swen Schillig86a96682011-08-15 14:40:32 +0200183 if (q_req->sbale_curr == qdio->max_sbale_per_sbal - 1)
Christof Schmitt1674b402010-04-30 18:09:34 +0200184 return zfcp_qdio_sbal_chain(qdio, q_req);
Swen Schillig42428f72009-08-18 15:43:18 +0200185 q_req->sbale_curr++;
Swen Schillig564e1c82009-08-18 15:43:19 +0200186 return zfcp_qdio_sbale_curr(qdio, q_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/**
190 * zfcp_qdio_sbals_from_sg - fill SBALs from scatter-gather list
Christof Schmitt1674b402010-04-30 18:09:34 +0200191 * @qdio: pointer to struct zfcp_qdio
192 * @q_req: pointer to struct zfcp_qdio_req
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * @sg: scatter-gather list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * @max_sbals: upper bound for number of SBALs to be used
Swen Schillig86a96682011-08-15 14:40:32 +0200195 * Returns: zero or -EINVAL on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
Christof Schmitt34c2b712010-02-17 11:18:59 +0100197int zfcp_qdio_sbals_from_sg(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req,
Swen Schillig01b04752010-07-16 15:37:37 +0200198 struct scatterlist *sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200200 struct qdio_buffer_element *sbale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Swen Schillig00bab912008-06-10 18:20:57 +0200202 /* set storage-block type for this request */
Swen Schillig564e1c82009-08-18 15:43:19 +0200203 sbale = zfcp_qdio_sbale_req(qdio, q_req);
Jan Glauber3ec908782011-06-06 14:14:40 +0200204 sbale->sflags |= q_req->sbtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Swen Schillig00bab912008-06-10 18:20:57 +0200206 for (; sg; sg = sg_next(sg)) {
Christof Schmitt1674b402010-04-30 18:09:34 +0200207 sbale = zfcp_qdio_sbale_next(qdio, q_req);
Christof Schmitt68322982010-04-30 18:09:33 +0200208 if (!sbale) {
209 atomic_inc(&qdio->req_q_full);
Swen Schillig706eca42010-07-16 15:37:38 +0200210 zfcp_qdio_zero_sbals(qdio->req_q, q_req->sbal_first,
211 q_req->sbal_number);
Christof Schmitt68322982010-04-30 18:09:33 +0200212 return -EINVAL;
213 }
Christof Schmitt68322982010-04-30 18:09:33 +0200214 sbale->addr = sg_virt(sg);
215 sbale->length = sg->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Swen Schillig86a96682011-08-15 14:40:32 +0200217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200220static int zfcp_qdio_sbal_check(struct zfcp_qdio *qdio)
221{
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200222 spin_lock_irq(&qdio->req_q_lock);
Swen Schillig706eca42010-07-16 15:37:38 +0200223 if (atomic_read(&qdio->req_q_free) ||
Christof Schmittc2af7542010-06-21 10:11:32 +0200224 !(atomic_read(&qdio->adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP))
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200225 return 1;
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200226 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200227 return 0;
228}
229
230/**
231 * zfcp_qdio_sbal_get - get free sbal in request queue, wait if necessary
232 * @qdio: pointer to struct zfcp_qdio
233 *
234 * The req_q_lock must be held by the caller of this function, and
235 * this function may only be called from process context; it will
236 * sleep when waiting for a free sbal.
237 *
238 * Returns: 0 on success, -EIO if there is no free sbal after waiting.
239 */
240int zfcp_qdio_sbal_get(struct zfcp_qdio *qdio)
241{
242 long ret;
243
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200244 spin_unlock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200245 ret = wait_event_interruptible_timeout(qdio->req_q_wq,
246 zfcp_qdio_sbal_check(qdio), 5 * HZ);
Christof Schmittc2af7542010-06-21 10:11:32 +0200247
248 if (!(atomic_read(&qdio->adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP))
249 return -EIO;
250
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200251 if (ret > 0)
252 return 0;
Christof Schmittc2af7542010-06-21 10:11:32 +0200253
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200254 if (!ret) {
255 atomic_inc(&qdio->req_q_full);
256 /* assume hanging outbound queue, try queue recovery */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100257 zfcp_erp_adapter_reopen(qdio->adapter, 0, "qdsbg_1");
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200258 }
259
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200260 spin_lock_irq(&qdio->req_q_lock);
Christof Schmitt6b9e1522010-04-30 18:09:35 +0200261 return -EIO;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/**
Swen Schillig00bab912008-06-10 18:20:57 +0200265 * zfcp_qdio_send - set PCI flag in first SBALE and send req to QDIO
Swen Schillig564e1c82009-08-18 15:43:19 +0200266 * @qdio: pointer to struct zfcp_qdio
Christof Schmitt34c2b712010-02-17 11:18:59 +0100267 * @q_req: pointer to struct zfcp_qdio_req
Swen Schillig00bab912008-06-10 18:20:57 +0200268 * Returns: 0 on success, error otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Christof Schmitt34c2b712010-02-17 11:18:59 +0100270int zfcp_qdio_send(struct zfcp_qdio *qdio, struct zfcp_qdio_req *q_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Christof Schmitt21ddaa52009-03-02 13:09:05 +0100272 int retval;
Swen Schillig706eca42010-07-16 15:37:38 +0200273 u8 sbal_number = q_req->sbal_number;
Swen Schillig00bab912008-06-10 18:20:57 +0200274
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200275 spin_lock(&qdio->stat_lock);
Swen Schillig564e1c82009-08-18 15:43:19 +0200276 zfcp_qdio_account(qdio);
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200277 spin_unlock(&qdio->stat_lock);
Martin Peschke94506fd2009-03-02 13:08:56 +0100278
Swen Schillig706eca42010-07-16 15:37:38 +0200279 retval = do_QDIO(qdio->adapter->ccw_device, QDIO_FLAG_SYNC_OUTPUT, 0,
280 q_req->sbal_first, sbal_number);
281
Swen Schillig00bab912008-06-10 18:20:57 +0200282 if (unlikely(retval)) {
Swen Schillig706eca42010-07-16 15:37:38 +0200283 zfcp_qdio_zero_sbals(qdio->req_q, q_req->sbal_first,
284 sbal_number);
Swen Schillig00bab912008-06-10 18:20:57 +0200285 return retval;
286 }
287
288 /* account for transferred buffers */
Swen Schillig706eca42010-07-16 15:37:38 +0200289 atomic_sub(sbal_number, &qdio->req_q_free);
290 qdio->req_q_idx += sbal_number;
291 qdio->req_q_idx %= QDIO_MAX_BUFFERS_PER_Q;
292
Swen Schillig00bab912008-06-10 18:20:57 +0200293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Swen Schillig564e1c82009-08-18 15:43:19 +0200296
297static void zfcp_qdio_setup_init_data(struct qdio_initialize *id,
298 struct zfcp_qdio *qdio)
299{
Jan Glauberd36deae2010-09-07 21:14:39 +0000300 memset(id, 0, sizeof(*id));
Swen Schillig564e1c82009-08-18 15:43:19 +0200301 id->cdev = qdio->adapter->ccw_device;
302 id->q_format = QDIO_ZFCP_QFMT;
303 memcpy(id->adapter_name, dev_name(&id->cdev->dev), 8);
304 ASCEBC(id->adapter_name, 8);
Christof Schmittdcc18f42010-07-16 15:37:41 +0200305 id->qib_rflags = QIB_RFLAGS_ENABLE_DATA_DIV;
Swen Schillig86a96682011-08-15 14:40:32 +0200306 if (enable_multibuffer)
307 id->qdr_ac |= QDR_AC_MULTI_BUFFER_ENABLE;
Swen Schillig564e1c82009-08-18 15:43:19 +0200308 id->no_input_qs = 1;
309 id->no_output_qs = 1;
310 id->input_handler = zfcp_qdio_int_resp;
311 id->output_handler = zfcp_qdio_int_req;
312 id->int_parm = (unsigned long) qdio;
Swen Schillig706eca42010-07-16 15:37:38 +0200313 id->input_sbal_addr_array = (void **) (qdio->res_q);
314 id->output_sbal_addr_array = (void **) (qdio->req_q);
Jan Glauber3d6c76f2011-01-05 12:47:50 +0100315 id->scan_threshold =
316 QDIO_MAX_BUFFERS_PER_Q - ZFCP_QDIO_MAX_SBALS_PER_REQ * 2;
Swen Schillig564e1c82009-08-18 15:43:19 +0200317}
Christof Schmittdcc18f42010-07-16 15:37:41 +0200318
Swen Schillig00bab912008-06-10 18:20:57 +0200319/**
Swen Schillig00bab912008-06-10 18:20:57 +0200320 * zfcp_qdio_allocate - allocate queue memory and initialize QDIO data
321 * @adapter: pointer to struct zfcp_adapter
322 * Returns: -ENOMEM on memory allocation error or return value from
323 * qdio_allocate
324 */
Swen Schilligd5a282a2009-08-18 15:43:22 +0200325static int zfcp_qdio_allocate(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200326{
Swen Schillig564e1c82009-08-18 15:43:19 +0200327 struct qdio_initialize init_data;
Swen Schillig00bab912008-06-10 18:20:57 +0200328
Swen Schillig706eca42010-07-16 15:37:38 +0200329 if (zfcp_qdio_buffers_enqueue(qdio->req_q) ||
330 zfcp_qdio_buffers_enqueue(qdio->res_q))
Swen Schillig00bab912008-06-10 18:20:57 +0200331 return -ENOMEM;
332
Swen Schillig564e1c82009-08-18 15:43:19 +0200333 zfcp_qdio_setup_init_data(&init_data, qdio);
Christof Schmitt3d63d3b2010-12-02 15:16:17 +0100334 init_waitqueue_head(&qdio->req_q_wq);
Swen Schillig00bab912008-06-10 18:20:57 +0200335
Swen Schillig564e1c82009-08-18 15:43:19 +0200336 return qdio_allocate(&init_data);
Swen Schillig00bab912008-06-10 18:20:57 +0200337}
338
339/**
340 * zfcp_close_qdio - close qdio queues for an adapter
Swen Schillig564e1c82009-08-18 15:43:19 +0200341 * @qdio: pointer to structure zfcp_qdio
Swen Schillig00bab912008-06-10 18:20:57 +0200342 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200343void zfcp_qdio_close(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200344{
Swen Schillig706eca42010-07-16 15:37:38 +0200345 struct zfcp_adapter *adapter = qdio->adapter;
346 int idx, count;
Swen Schillig00bab912008-06-10 18:20:57 +0200347
Swen Schillig706eca42010-07-16 15:37:38 +0200348 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP))
Swen Schillig00bab912008-06-10 18:20:57 +0200349 return;
350
351 /* clear QDIOUP flag, thus do_QDIO is not called during qdio_shutdown */
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200352 spin_lock_irq(&qdio->req_q_lock);
Swen Schillig706eca42010-07-16 15:37:38 +0200353 atomic_clear_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &adapter->status);
Christof Schmitt44a24cb2010-09-08 14:39:57 +0200354 spin_unlock_irq(&qdio->req_q_lock);
Swen Schillig00bab912008-06-10 18:20:57 +0200355
Christof Schmittc2af7542010-06-21 10:11:32 +0200356 wake_up(&qdio->req_q_wq);
357
Swen Schillig706eca42010-07-16 15:37:38 +0200358 qdio_shutdown(adapter->ccw_device, QDIO_FLAG_CLEANUP_USING_CLEAR);
Swen Schillig00bab912008-06-10 18:20:57 +0200359
360 /* cleanup used outbound sbals */
Swen Schillig706eca42010-07-16 15:37:38 +0200361 count = atomic_read(&qdio->req_q_free);
Swen Schillig00bab912008-06-10 18:20:57 +0200362 if (count < QDIO_MAX_BUFFERS_PER_Q) {
Swen Schillig706eca42010-07-16 15:37:38 +0200363 idx = (qdio->req_q_idx + count) % QDIO_MAX_BUFFERS_PER_Q;
Swen Schillig00bab912008-06-10 18:20:57 +0200364 count = QDIO_MAX_BUFFERS_PER_Q - count;
Swen Schillig706eca42010-07-16 15:37:38 +0200365 zfcp_qdio_zero_sbals(qdio->req_q, idx, count);
Swen Schillig00bab912008-06-10 18:20:57 +0200366 }
Swen Schillig706eca42010-07-16 15:37:38 +0200367 qdio->req_q_idx = 0;
368 atomic_set(&qdio->req_q_free, 0);
Swen Schillig00bab912008-06-10 18:20:57 +0200369}
370
371/**
372 * zfcp_qdio_open - prepare and initialize response queue
Swen Schillig564e1c82009-08-18 15:43:19 +0200373 * @qdio: pointer to struct zfcp_qdio
Swen Schillig00bab912008-06-10 18:20:57 +0200374 * Returns: 0 on success, otherwise -EIO
375 */
Swen Schillig564e1c82009-08-18 15:43:19 +0200376int zfcp_qdio_open(struct zfcp_qdio *qdio)
Swen Schillig00bab912008-06-10 18:20:57 +0200377{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200378 struct qdio_buffer_element *sbale;
Swen Schillig564e1c82009-08-18 15:43:19 +0200379 struct qdio_initialize init_data;
Swen Schillig706eca42010-07-16 15:37:38 +0200380 struct zfcp_adapter *adapter = qdio->adapter;
381 struct ccw_device *cdev = adapter->ccw_device;
Christof Schmittdcc18f42010-07-16 15:37:41 +0200382 struct qdio_ssqd_desc ssqd;
Swen Schillig00bab912008-06-10 18:20:57 +0200383 int cc;
384
Swen Schillig706eca42010-07-16 15:37:38 +0200385 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_QDIOUP)
Swen Schillig00bab912008-06-10 18:20:57 +0200386 return -EIO;
387
Christof Schmitt339f4f42010-07-16 15:37:43 +0200388 atomic_clear_mask(ZFCP_STATUS_ADAPTER_SIOSL_ISSUED,
389 &qdio->adapter->status);
390
Swen Schillig564e1c82009-08-18 15:43:19 +0200391 zfcp_qdio_setup_init_data(&init_data, qdio);
392
393 if (qdio_establish(&init_data))
Christof Schmittff3b24f2008-10-01 12:42:15 +0200394 goto failed_establish;
Swen Schillig00bab912008-06-10 18:20:57 +0200395
Christof Schmittdcc18f42010-07-16 15:37:41 +0200396 if (qdio_get_ssqd_desc(init_data.cdev, &ssqd))
397 goto failed_qdio;
398
399 if (ssqd.qdioac2 & CHSC_AC2_DATA_DIV_ENABLED)
400 atomic_set_mask(ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED,
401 &qdio->adapter->status);
402
Swen Schillig86a96682011-08-15 14:40:32 +0200403 if (ssqd.qdioac2 & CHSC_AC2_MULTI_BUFFER_ENABLED) {
404 atomic_set_mask(ZFCP_STATUS_ADAPTER_MB_ACT, &adapter->status);
405 qdio->max_sbale_per_sbal = QDIO_MAX_ELEMENTS_PER_BUFFER;
406 } else {
407 atomic_clear_mask(ZFCP_STATUS_ADAPTER_MB_ACT, &adapter->status);
408 qdio->max_sbale_per_sbal = QDIO_MAX_ELEMENTS_PER_BUFFER - 1;
409 }
410
411 qdio->max_sbale_per_req =
412 ZFCP_QDIO_MAX_SBALS_PER_REQ * qdio->max_sbale_per_sbal
413 - 2;
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 Schillig706eca42010-07-16 15:37:38 +0200418 sbale = &(qdio->res_q[cc]->element[0]);
Swen Schillig00bab912008-06-10 18:20:57 +0200419 sbale->length = 0;
Jan Glauber3ec908782011-06-06 14:14:40 +0200420 sbale->eflags = SBAL_EFLAGS_LAST_ENTRY;
421 sbale->sflags = 0;
Swen Schillig00bab912008-06-10 18:20:57 +0200422 sbale->addr = NULL;
423 }
424
Swen Schillig706eca42010-07-16 15:37:38 +0200425 if (do_QDIO(cdev, QDIO_FLAG_SYNC_INPUT, 0, 0, QDIO_MAX_BUFFERS_PER_Q))
Swen Schillig00bab912008-06-10 18:20:57 +0200426 goto failed_qdio;
Swen Schillig00bab912008-06-10 18:20:57 +0200427
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300428 /* set index of first available SBALS / number of available SBALS */
Swen Schillig706eca42010-07-16 15:37:38 +0200429 qdio->req_q_idx = 0;
430 atomic_set(&qdio->req_q_free, QDIO_MAX_BUFFERS_PER_Q);
Christof Schmitt3d63d3b2010-12-02 15:16:17 +0100431 atomic_set_mask(ZFCP_STATUS_ADAPTER_QDIOUP, &qdio->adapter->status);
Swen Schillig00bab912008-06-10 18:20:57 +0200432
Swen Schillig86a96682011-08-15 14:40:32 +0200433 if (adapter->scsi_host) {
434 adapter->scsi_host->sg_tablesize = qdio->max_sbale_per_req;
435 adapter->scsi_host->max_sectors = qdio->max_sbale_per_req * 8;
436 }
437
Swen Schillig00bab912008-06-10 18:20:57 +0200438 return 0;
439
440failed_qdio:
Swen Schillig564e1c82009-08-18 15:43:19 +0200441 qdio_shutdown(cdev, QDIO_FLAG_CLEANUP_USING_CLEAR);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200442failed_establish:
Swen Schillig564e1c82009-08-18 15:43:19 +0200443 dev_err(&cdev->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200444 "Setting up the QDIO connection to the FCP adapter failed\n");
Swen Schillig00bab912008-06-10 18:20:57 +0200445 return -EIO;
446}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200447
448void zfcp_qdio_destroy(struct zfcp_qdio *qdio)
449{
Swen Schilligd5a282a2009-08-18 15:43:22 +0200450 int p;
451
452 if (!qdio)
453 return;
454
455 if (qdio->adapter->ccw_device)
456 qdio_free(qdio->adapter->ccw_device);
457
Swen Schilligd5a282a2009-08-18 15:43:22 +0200458 for (p = 0; p < QDIO_MAX_BUFFERS_PER_Q; p += QBUFF_PER_PAGE) {
Swen Schillig706eca42010-07-16 15:37:38 +0200459 free_page((unsigned long) qdio->req_q[p]);
460 free_page((unsigned long) qdio->res_q[p]);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200461 }
462
463 kfree(qdio);
464}
465
466int zfcp_qdio_setup(struct zfcp_adapter *adapter)
467{
468 struct zfcp_qdio *qdio;
469
470 qdio = kzalloc(sizeof(struct zfcp_qdio), GFP_KERNEL);
471 if (!qdio)
472 return -ENOMEM;
473
474 qdio->adapter = adapter;
475
476 if (zfcp_qdio_allocate(qdio)) {
477 zfcp_qdio_destroy(qdio);
478 return -ENOMEM;
479 }
480
481 spin_lock_init(&qdio->req_q_lock);
482 spin_lock_init(&qdio->stat_lock);
483
484 adapter->qdio = qdio;
485 return 0;
486}
487
Christof Schmitt339f4f42010-07-16 15:37:43 +0200488/**
489 * zfcp_qdio_siosl - Trigger logging in FCP channel
490 * @adapter: The zfcp_adapter where to trigger logging
491 *
492 * Call the cio siosl function to trigger hardware logging. This
493 * wrapper function sets a flag to ensure hardware logging is only
494 * triggered once before going through qdio shutdown.
495 *
496 * The triggers are always run from qdio tasklet context, so no
497 * additional synchronization is necessary.
498 */
499void zfcp_qdio_siosl(struct zfcp_adapter *adapter)
500{
501 int rc;
502
503 if (atomic_read(&adapter->status) & ZFCP_STATUS_ADAPTER_SIOSL_ISSUED)
504 return;
505
506 rc = ccw_device_siosl(adapter->ccw_device);
507 if (!rc)
508 atomic_set_mask(ZFCP_STATUS_ADAPTER_SIOSL_ISSUED,
509 &adapter->status);
510}