blob: 462a8574dad96ffa6020c9aa27886c545b8a7988 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ------------------------------------------------------------
2 * rpa_vscsi.c
3 * (C) Copyright IBM Corporation 1994, 2003
4 * Authors: Colin DeVilbiss (devilbis@us.ibm.com)
5 * Santiago Leon (santil@us.ibm.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * ------------------------------------------------------------
23 * RPA-specific functions of the SCSI host adapter for Virtual I/O devices
24 *
25 * This driver allows the Linux SCSI peripheral drivers to directly
26 * access devices in the hosting partition, either on an iSeries
27 * hypervisor system or a converged hypervisor system.
28 */
29
30#include <asm/vio.h>
Stephen Rothwell71d276d2005-08-17 16:41:44 +100031#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/iommu.h>
33#include <asm/hvcall.h>
34#include <linux/dma-mapping.h>
35#include <linux/interrupt.h>
36#include "ibmvscsi.h"
Linda Xieb4687ca2005-06-27 17:01:48 -050037
38static char partition_name[97] = "UNKNOWN";
39static unsigned int partition_number = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* ------------------------------------------------------------
42 * Routines for managing the command/response queue
43 */
44/**
David Woodhoused3849d52007-09-22 08:29:36 +100045 * rpavscsi_handle_event: - Interrupt handler for crq events
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * @irq: number of irq to handle, not used
47 * @dev_instance: ibmvscsi_host_data of host that received interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
49 * Disables interrupts and schedules srp_task
50 * Always returns IRQ_HANDLED
51 */
David Woodhoused3849d52007-09-22 08:29:36 +100052static irqreturn_t rpavscsi_handle_event(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 struct ibmvscsi_host_data *hostdata =
55 (struct ibmvscsi_host_data *)dev_instance;
56 vio_disable_interrupts(to_vio_dev(hostdata->dev));
57 tasklet_schedule(&hostdata->srp_task);
58 return IRQ_HANDLED;
59}
60
61/**
62 * release_crq_queue: - Deallocates data and unregisters CRQ
63 * @queue: crq_queue to initialize and register
64 * @host_data: ibmvscsi_host_data of host
65 *
66 * Frees irq, deallocates a page for messages, unmaps dma, and unregisters
67 * the crq with the hypervisor.
68 */
David Woodhoused3849d52007-09-22 08:29:36 +100069static void rpavscsi_release_crq_queue(struct crq_queue *queue,
70 struct ibmvscsi_host_data *hostdata,
71 int max_requests)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 long rc;
74 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
75 free_irq(vdev->irq, (void *)hostdata);
76 tasklet_kill(&hostdata->srp_task);
77 do {
78 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +020079 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 dma_unmap_single(hostdata->dev,
81 queue->msg_token,
82 queue->size * sizeof(*queue->msgs), DMA_BIDIRECTIONAL);
83 free_page((unsigned long)queue->msgs);
84}
85
86/**
87 * crq_queue_next_crq: - Returns the next entry in message queue
88 * @queue: crq_queue to use
89 *
90 * Returns pointer to next entry in queue, or NULL if there are no new
91 * entried in the CRQ.
92 */
93static struct viosrp_crq *crq_queue_next_crq(struct crq_queue *queue)
94{
95 struct viosrp_crq *crq;
96 unsigned long flags;
97
98 spin_lock_irqsave(&queue->lock, flags);
99 crq = &queue->msgs[queue->cur];
100 if (crq->valid & 0x80) {
101 if (++queue->cur == queue->size)
102 queue->cur = 0;
103 } else
104 crq = NULL;
105 spin_unlock_irqrestore(&queue->lock, flags);
106
107 return crq;
108}
109
110/**
David Woodhoused3849d52007-09-22 08:29:36 +1000111 * rpavscsi_send_crq: - Send a CRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * @hostdata: the adapter
113 * @word1: the first 64 bits of the data
114 * @word2: the second 64 bits of the data
115 */
David Woodhoused3849d52007-09-22 08:29:36 +1000116static int rpavscsi_send_crq(struct ibmvscsi_host_data *hostdata,
117 u64 word1, u64 word2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
120
121 return plpar_hcall_norets(H_SEND_CRQ, vdev->unit_address, word1, word2);
122}
123
124/**
David Woodhoused3849d52007-09-22 08:29:36 +1000125 * rpavscsi_task: - Process srps asynchronously
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * @data: ibmvscsi_host_data of host
127 */
David Woodhoused3849d52007-09-22 08:29:36 +1000128static void rpavscsi_task(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct ibmvscsi_host_data *hostdata = (struct ibmvscsi_host_data *)data;
131 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
132 struct viosrp_crq *crq;
133 int done = 0;
134
135 while (!done) {
136 /* Pull all the valid messages off the CRQ */
137 while ((crq = crq_queue_next_crq(&hostdata->queue)) != NULL) {
138 ibmvscsi_handle_crq(crq, hostdata);
139 crq->valid = 0x00;
140 }
141
142 vio_enable_interrupts(vdev);
143 if ((crq = crq_queue_next_crq(&hostdata->queue)) != NULL) {
144 vio_disable_interrupts(vdev);
145 ibmvscsi_handle_crq(crq, hostdata);
146 crq->valid = 0x00;
147 } else {
148 done = 1;
149 }
150 }
151}
152
Linda Xieb4687ca2005-06-27 17:01:48 -0500153static void gather_partition_info(void)
154{
155 struct device_node *rootdn;
156
Jeremy Kerr294ef162006-07-12 15:40:51 +1000157 const char *ppartition_name;
158 const unsigned int *p_number_ptr;
Linda Xieb4687ca2005-06-27 17:01:48 -0500159
160 /* Retrieve information about this partition */
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000161 rootdn = of_find_node_by_path("/");
Linda Xieb4687ca2005-06-27 17:01:48 -0500162 if (!rootdn) {
163 return;
164 }
165
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000166 ppartition_name = of_get_property(rootdn, "ibm,partition-name", NULL);
Linda Xieb4687ca2005-06-27 17:01:48 -0500167 if (ppartition_name)
168 strncpy(partition_name, ppartition_name,
169 sizeof(partition_name));
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000170 p_number_ptr = of_get_property(rootdn, "ibm,partition-no", NULL);
Linda Xieb4687ca2005-06-27 17:01:48 -0500171 if (p_number_ptr)
172 partition_number = *p_number_ptr;
Stephen Rothwell8c8dc322007-04-24 13:50:55 +1000173 of_node_put(rootdn);
Linda Xieb4687ca2005-06-27 17:01:48 -0500174}
175
176static void set_adapter_info(struct ibmvscsi_host_data *hostdata)
177{
178 memset(&hostdata->madapter_info, 0x00,
179 sizeof(hostdata->madapter_info));
180
Brian King6c0a60e2007-06-13 17:12:19 -0500181 dev_info(hostdata->dev, "SRP_VERSION: %s\n", SRP_VERSION);
Linda Xieb4687ca2005-06-27 17:01:48 -0500182 strcpy(hostdata->madapter_info.srp_version, SRP_VERSION);
183
184 strncpy(hostdata->madapter_info.partition_name, partition_name,
185 sizeof(hostdata->madapter_info.partition_name));
186
187 hostdata->madapter_info.partition_number = partition_number;
188
189 hostdata->madapter_info.mad_version = 1;
190 hostdata->madapter_info.os_type = 2;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * reset_crq_queue: - resets a crq after a failure
195 * @queue: crq_queue to initialize and register
196 * @hostdata: ibmvscsi_host_data of host
197 *
198 */
David Woodhoused3849d52007-09-22 08:29:36 +1000199static int rpavscsi_reset_crq_queue(struct crq_queue *queue,
200 struct ibmvscsi_host_data *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 int rc;
203 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
204
205 /* Close the CRQ */
206 do {
207 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200208 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* Clean out the queue */
211 memset(queue->msgs, 0x00, PAGE_SIZE);
212 queue->cur = 0;
213
Linda Xieb4687ca2005-06-27 17:01:48 -0500214 set_adapter_info(hostdata);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* And re-open it again */
217 rc = plpar_hcall_norets(H_REG_CRQ,
218 vdev->unit_address,
219 queue->msg_token, PAGE_SIZE);
220 if (rc == 2) {
221 /* Adapter is good, but other end is not ready */
Brian King6c0a60e2007-06-13 17:12:19 -0500222 dev_warn(hostdata->dev, "Partner adapter not ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 } else if (rc != 0) {
Brian King6c0a60e2007-06-13 17:12:19 -0500224 dev_warn(hostdata->dev, "couldn't register crq--rc 0x%x\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Dave C Boutcherbb585962005-11-15 09:53:00 -0600226 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
David Woodhoused3849d52007-09-22 08:29:36 +1000228
229/**
230 * initialize_crq_queue: - Initializes and registers CRQ with hypervisor
231 * @queue: crq_queue to initialize and register
232 * @hostdata: ibmvscsi_host_data of host
233 *
234 * Allocates a page for messages, maps it for dma, and registers
235 * the crq with the hypervisor.
236 * Returns zero on success.
237 */
238static int rpavscsi_init_crq_queue(struct crq_queue *queue,
239 struct ibmvscsi_host_data *hostdata,
240 int max_requests)
241{
242 int rc;
243 int retrc;
244 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
245
246 queue->msgs = (struct viosrp_crq *)get_zeroed_page(GFP_KERNEL);
247
248 if (!queue->msgs)
249 goto malloc_failed;
250 queue->size = PAGE_SIZE / sizeof(*queue->msgs);
251
252 queue->msg_token = dma_map_single(hostdata->dev, queue->msgs,
253 queue->size * sizeof(*queue->msgs),
254 DMA_BIDIRECTIONAL);
255
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700256 if (dma_mapping_error(hostdata->dev, queue->msg_token))
David Woodhoused3849d52007-09-22 08:29:36 +1000257 goto map_failed;
258
259 gather_partition_info();
260 set_adapter_info(hostdata);
261
262 retrc = rc = plpar_hcall_norets(H_REG_CRQ,
263 vdev->unit_address,
264 queue->msg_token, PAGE_SIZE);
265 if (rc == H_RESOURCE)
266 /* maybe kexecing and resource is busy. try a reset */
267 rc = rpavscsi_reset_crq_queue(queue,
268 hostdata);
269
270 if (rc == 2) {
271 /* Adapter is good, but other end is not ready */
272 dev_warn(hostdata->dev, "Partner adapter not ready\n");
273 retrc = 0;
274 } else if (rc != 0) {
275 dev_warn(hostdata->dev, "Error %d opening adapter\n", rc);
276 goto reg_crq_failed;
277 }
278
279 if (request_irq(vdev->irq,
280 rpavscsi_handle_event,
281 0, "ibmvscsi", (void *)hostdata) != 0) {
282 dev_err(hostdata->dev, "couldn't register irq 0x%x\n",
283 vdev->irq);
284 goto req_irq_failed;
285 }
286
287 rc = vio_enable_interrupts(vdev);
288 if (rc != 0) {
289 dev_err(hostdata->dev, "Error %d enabling interrupts!!!\n", rc);
290 goto req_irq_failed;
291 }
292
293 queue->cur = 0;
294 spin_lock_init(&queue->lock);
295
296 tasklet_init(&hostdata->srp_task, (void *)rpavscsi_task,
297 (unsigned long)hostdata);
298
299 return retrc;
300
301 req_irq_failed:
302 do {
303 rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
304 } while ((rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
305 reg_crq_failed:
306 dma_unmap_single(hostdata->dev,
307 queue->msg_token,
308 queue->size * sizeof(*queue->msgs), DMA_BIDIRECTIONAL);
309 map_failed:
310 free_page((unsigned long)queue->msgs);
311 malloc_failed:
312 return -1;
313}
314
315/**
316 * reenable_crq_queue: - reenables a crq after
317 * @queue: crq_queue to initialize and register
318 * @hostdata: ibmvscsi_host_data of host
319 *
320 */
321static int rpavscsi_reenable_crq_queue(struct crq_queue *queue,
322 struct ibmvscsi_host_data *hostdata)
323{
324 int rc;
325 struct vio_dev *vdev = to_vio_dev(hostdata->dev);
326
327 /* Re-enable the CRQ */
328 do {
329 rc = plpar_hcall_norets(H_ENABLE_CRQ, vdev->unit_address);
330 } while ((rc == H_IN_PROGRESS) || (rc == H_BUSY) || (H_IS_LONG_BUSY(rc)));
331
332 if (rc)
333 dev_err(hostdata->dev, "Error %d enabling adapter\n", rc);
334 return rc;
335}
336
337struct ibmvscsi_ops rpavscsi_ops = {
338 .init_crq_queue = rpavscsi_init_crq_queue,
339 .release_crq_queue = rpavscsi_release_crq_queue,
340 .reset_crq_queue = rpavscsi_reset_crq_queue,
341 .reenable_crq_queue = rpavscsi_reenable_crq_queue,
342 .send_crq = rpavscsi_send_crq,
343};