blob: 212674d723e35a21ac556c0da78805ac8bfb4ee8 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * SBP2 driver (SCSI over IEEE1394)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05003 *
Kristian Høgsberg27a15e52007-02-06 14:49:39 -05004 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
Kristian Høgsbergc781c062007-05-07 20:33:32 -040021/*
22 * The basic structure of this driver is based on the old storage driver,
Kristian Høgsberg27a15e52007-02-06 14:49:39 -050023 * drivers/ieee1394/sbp2.c, originally written by
24 * James Goodwin <jamesg@filanet.com>
25 * with later contributions and ongoing maintenance from
26 * Ben Collins <bcollins@debian.org>,
27 * Stefan Richter <stefanr@s5r6.in-berlin.de>
28 * and many others.
29 */
30
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050031#include <linux/kernel.h>
32#include <linux/module.h>
Stefan Richter5cd54c92007-06-17 23:55:41 +020033#include <linux/moduleparam.h>
Stefan Richterfe69ca32006-12-28 12:46:54 +010034#include <linux/mod_devicetable.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050035#include <linux/device.h>
Andrew Morton0b5b2902006-12-27 14:49:23 -080036#include <linux/scatterlist.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050037#include <linux/dma-mapping.h>
Stefan Richtercf47c7a2007-06-17 23:52:08 +020038#include <linux/blkdev.h>
Stefan Richtere7cdf232007-07-01 13:54:57 +020039#include <linux/string.h>
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -050040#include <linux/timer.h>
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050041
42#include <scsi/scsi.h>
43#include <scsi/scsi_cmnd.h>
44#include <scsi/scsi_dbg.h>
45#include <scsi/scsi_device.h>
46#include <scsi/scsi_host.h>
47
48#include "fw-transaction.h"
49#include "fw-topology.h"
50#include "fw-device.h"
51
Stefan Richter5cd54c92007-06-17 23:55:41 +020052/*
53 * So far only bridges from Oxford Semiconductor are known to support
54 * concurrent logins. Depending on firmware, four or two concurrent logins
55 * are possible on OXFW911 and newer Oxsemi bridges.
56 *
57 * Concurrent logins are useful together with cluster filesystems.
58 */
59static int sbp2_param_exclusive_login = 1;
60module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644);
61MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device "
62 "(default = Y, use N for concurrent initiators)");
63
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050064/* I don't know why the SCSI stack doesn't define something like this... */
Kristian Høgsberga98e2712007-05-07 20:33:34 -040065typedef void (*scsi_done_fn_t)(struct scsi_cmnd *);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050066
67static const char sbp2_driver_name[] = "sbp2";
68
69struct sbp2_device {
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -040070 struct kref kref;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050071 struct fw_unit *unit;
72 struct fw_address_handler address_handler;
73 struct list_head orb_list;
74 u64 management_agent_address;
75 u64 command_block_agent_address;
76 u32 workarounds;
77 int login_id;
78
Kristian Høgsbergc781c062007-05-07 20:33:32 -040079 /*
80 * We cache these addresses and only update them once we've
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050081 * logged in or reconnected to the sbp2 device. That way, any
82 * IO to the device will automatically fail and get retried if
83 * it happens in a window where the device is not ready to
Kristian Høgsbergc781c062007-05-07 20:33:32 -040084 * handle it (e.g. after a bus reset but before we reconnect).
85 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050086 int node_id;
87 int address_high;
88 int generation;
89
Kristian Høgsberg7f37c422007-02-06 14:49:34 -050090 int retries;
91 struct delayed_work work;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050092};
93
94#define SBP2_MAX_SG_ELEMENT_LENGTH 0xf000
95#define SBP2_MAX_SECTORS 255 /* Max sectors supported */
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -050096#define SBP2_ORB_TIMEOUT 2000 /* Timeout in ms */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -050097
98#define SBP2_ORB_NULL 0x80000000
99
100#define SBP2_DIRECTION_TO_MEDIA 0x0
101#define SBP2_DIRECTION_FROM_MEDIA 0x1
102
103/* Unit directory keys */
104#define SBP2_COMMAND_SET_SPECIFIER 0x38
105#define SBP2_COMMAND_SET 0x39
106#define SBP2_COMMAND_SET_REVISION 0x3b
107#define SBP2_FIRMWARE_REVISION 0x3c
108
109/* Flags for detected oddities and brokeness */
110#define SBP2_WORKAROUND_128K_MAX_TRANS 0x1
111#define SBP2_WORKAROUND_INQUIRY_36 0x2
112#define SBP2_WORKAROUND_MODE_SENSE_8 0x4
113#define SBP2_WORKAROUND_FIX_CAPACITY 0x8
114#define SBP2_WORKAROUND_OVERRIDE 0x100
115
116/* Management orb opcodes */
117#define SBP2_LOGIN_REQUEST 0x0
118#define SBP2_QUERY_LOGINS_REQUEST 0x1
119#define SBP2_RECONNECT_REQUEST 0x3
120#define SBP2_SET_PASSWORD_REQUEST 0x4
121#define SBP2_LOGOUT_REQUEST 0x7
122#define SBP2_ABORT_TASK_REQUEST 0xb
123#define SBP2_ABORT_TASK_SET 0xc
124#define SBP2_LOGICAL_UNIT_RESET 0xe
125#define SBP2_TARGET_RESET_REQUEST 0xf
126
127/* Offsets for command block agent registers */
128#define SBP2_AGENT_STATE 0x00
129#define SBP2_AGENT_RESET 0x04
130#define SBP2_ORB_POINTER 0x08
131#define SBP2_DOORBELL 0x10
132#define SBP2_UNSOLICITED_STATUS_ENABLE 0x14
133
134/* Status write response codes */
135#define SBP2_STATUS_REQUEST_COMPLETE 0x0
136#define SBP2_STATUS_TRANSPORT_FAILURE 0x1
137#define SBP2_STATUS_ILLEGAL_REQUEST 0x2
138#define SBP2_STATUS_VENDOR_DEPENDENT 0x3
139
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400140#define STATUS_GET_ORB_HIGH(v) ((v).status & 0xffff)
141#define STATUS_GET_SBP_STATUS(v) (((v).status >> 16) & 0xff)
142#define STATUS_GET_LEN(v) (((v).status >> 24) & 0x07)
143#define STATUS_GET_DEAD(v) (((v).status >> 27) & 0x01)
144#define STATUS_GET_RESPONSE(v) (((v).status >> 28) & 0x03)
145#define STATUS_GET_SOURCE(v) (((v).status >> 30) & 0x03)
146#define STATUS_GET_ORB_LOW(v) ((v).orb_low)
147#define STATUS_GET_DATA(v) ((v).data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500148
149struct sbp2_status {
150 u32 status;
151 u32 orb_low;
152 u8 data[24];
153};
154
155struct sbp2_pointer {
156 u32 high;
157 u32 low;
158};
159
160struct sbp2_orb {
161 struct fw_transaction t;
162 dma_addr_t request_bus;
163 int rcode;
164 struct sbp2_pointer pointer;
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400165 void (*callback)(struct sbp2_orb * orb, struct sbp2_status * status);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500166 struct list_head link;
167};
168
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400169#define MANAGEMENT_ORB_LUN(v) ((v))
170#define MANAGEMENT_ORB_FUNCTION(v) ((v) << 16)
171#define MANAGEMENT_ORB_RECONNECT(v) ((v) << 20)
Stefan Richter5cd54c92007-06-17 23:55:41 +0200172#define MANAGEMENT_ORB_EXCLUSIVE(v) ((v) ? 1 << 28 : 0)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400173#define MANAGEMENT_ORB_REQUEST_FORMAT(v) ((v) << 29)
174#define MANAGEMENT_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500175
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400176#define MANAGEMENT_ORB_RESPONSE_LENGTH(v) ((v))
177#define MANAGEMENT_ORB_PASSWORD_LENGTH(v) ((v) << 16)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500178
179struct sbp2_management_orb {
180 struct sbp2_orb base;
181 struct {
182 struct sbp2_pointer password;
183 struct sbp2_pointer response;
184 u32 misc;
185 u32 length;
186 struct sbp2_pointer status_fifo;
187 } request;
188 __be32 response[4];
189 dma_addr_t response_bus;
190 struct completion done;
191 struct sbp2_status status;
192};
193
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400194#define LOGIN_RESPONSE_GET_LOGIN_ID(v) ((v).misc & 0xffff)
195#define LOGIN_RESPONSE_GET_LENGTH(v) (((v).misc >> 16) & 0xffff)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500196
197struct sbp2_login_response {
198 u32 misc;
199 struct sbp2_pointer command_block_agent;
200 u32 reconnect_hold;
201};
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400202#define COMMAND_ORB_DATA_SIZE(v) ((v))
203#define COMMAND_ORB_PAGE_SIZE(v) ((v) << 16)
204#define COMMAND_ORB_PAGE_TABLE_PRESENT ((1) << 19)
205#define COMMAND_ORB_MAX_PAYLOAD(v) ((v) << 20)
206#define COMMAND_ORB_SPEED(v) ((v) << 24)
207#define COMMAND_ORB_DIRECTION(v) ((v) << 27)
208#define COMMAND_ORB_REQUEST_FORMAT(v) ((v) << 29)
209#define COMMAND_ORB_NOTIFY ((1) << 31)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500210
211struct sbp2_command_orb {
212 struct sbp2_orb base;
213 struct {
214 struct sbp2_pointer next;
215 struct sbp2_pointer data_descriptor;
216 u32 misc;
217 u8 command_block[12];
218 } request;
219 struct scsi_cmnd *cmd;
220 scsi_done_fn_t done;
221 struct fw_unit *unit;
222
Stefan Richter9fb2dd12007-07-01 13:55:31 +0200223 struct sbp2_pointer page_table[SG_ALL] __attribute__((aligned(8)));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500224 dma_addr_t page_table_bus;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500225};
226
227/*
228 * List of devices with known bugs.
229 *
230 * The firmware_revision field, masked with 0xffff00, is the best
231 * indicator for the type of bridge chip of a device. It yields a few
232 * false positives but this did not break correctly behaving devices
233 * so far. We use ~0 as a wildcard, since the 24 bit values we get
234 * from the config rom can never match that.
235 */
236static const struct {
237 u32 firmware_revision;
238 u32 model;
239 unsigned workarounds;
240} sbp2_workarounds_table[] = {
241 /* DViCO Momobay CX-1 with TSB42AA9 bridge */ {
242 .firmware_revision = 0x002800,
243 .model = 0x001010,
244 .workarounds = SBP2_WORKAROUND_INQUIRY_36 |
245 SBP2_WORKAROUND_MODE_SENSE_8,
246 },
247 /* Initio bridges, actually only needed for some older ones */ {
248 .firmware_revision = 0x000200,
249 .model = ~0,
250 .workarounds = SBP2_WORKAROUND_INQUIRY_36,
251 },
252 /* Symbios bridge */ {
253 .firmware_revision = 0xa0b800,
254 .model = ~0,
255 .workarounds = SBP2_WORKAROUND_128K_MAX_TRANS,
256 },
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400257
258 /*
259 * There are iPods (2nd gen, 3rd gen) with model_id == 0, but
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500260 * these iPods do not feature the read_capacity bug according
261 * to one report. Read_capacity behaviour as well as model_id
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400262 * could change due to Apple-supplied firmware updates though.
263 */
264
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500265 /* iPod 4th generation. */ {
266 .firmware_revision = 0x0a2700,
267 .model = 0x000021,
268 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
269 },
270 /* iPod mini */ {
271 .firmware_revision = 0x0a2700,
272 .model = 0x000023,
273 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
274 },
275 /* iPod Photo */ {
276 .firmware_revision = 0x0a2700,
277 .model = 0x00007e,
278 .workarounds = SBP2_WORKAROUND_FIX_CAPACITY,
279 }
280};
281
282static void
283sbp2_status_write(struct fw_card *card, struct fw_request *request,
284 int tcode, int destination, int source,
285 int generation, int speed,
286 unsigned long long offset,
287 void *payload, size_t length, void *callback_data)
288{
289 struct sbp2_device *sd = callback_data;
290 struct sbp2_orb *orb;
291 struct sbp2_status status;
292 size_t header_size;
293 unsigned long flags;
294
295 if (tcode != TCODE_WRITE_BLOCK_REQUEST ||
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400296 length == 0 || length > sizeof(status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500297 fw_send_response(card, request, RCODE_TYPE_ERROR);
298 return;
299 }
300
301 header_size = min(length, 2 * sizeof(u32));
302 fw_memcpy_from_be32(&status, payload, header_size);
303 if (length > header_size)
304 memcpy(status.data, payload + 8, length - header_size);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400305 if (STATUS_GET_SOURCE(status) == 2 || STATUS_GET_SOURCE(status) == 3) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500306 fw_notify("non-orb related status write, not handled\n");
307 fw_send_response(card, request, RCODE_COMPLETE);
308 return;
309 }
310
311 /* Lookup the orb corresponding to this status write. */
312 spin_lock_irqsave(&card->lock, flags);
313 list_for_each_entry(orb, &sd->orb_list, link) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400314 if (STATUS_GET_ORB_HIGH(status) == 0 &&
315 STATUS_GET_ORB_LOW(status) == orb->request_bus &&
Kristian Høgsberg12f26aa2007-04-10 18:11:20 -0400316 orb->rcode == RCODE_COMPLETE) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500317 list_del(&orb->link);
318 break;
319 }
320 }
321 spin_unlock_irqrestore(&card->lock, flags);
322
323 if (&orb->link != &sd->orb_list)
324 orb->callback(orb, &status);
325 else
326 fw_error("status write for unknown orb\n");
327
328 fw_send_response(card, request, RCODE_COMPLETE);
329}
330
331static void
332complete_transaction(struct fw_card *card, int rcode,
333 void *payload, size_t length, void *data)
334{
335 struct sbp2_orb *orb = data;
336 unsigned long flags;
337
338 orb->rcode = rcode;
339 if (rcode != RCODE_COMPLETE) {
340 spin_lock_irqsave(&card->lock, flags);
341 list_del(&orb->link);
342 spin_unlock_irqrestore(&card->lock, flags);
343 orb->callback(orb, NULL);
344 }
345}
346
347static void
348sbp2_send_orb(struct sbp2_orb *orb, struct fw_unit *unit,
349 int node_id, int generation, u64 offset)
350{
351 struct fw_device *device = fw_device(unit->device.parent);
352 struct sbp2_device *sd = unit->device.driver_data;
353 unsigned long flags;
354
355 orb->pointer.high = 0;
356 orb->pointer.low = orb->request_bus;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400357 fw_memcpy_to_be32(&orb->pointer, &orb->pointer, sizeof(orb->pointer));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500358
359 spin_lock_irqsave(&device->card->lock, flags);
360 list_add_tail(&orb->link, &sd->orb_list);
361 spin_unlock_irqrestore(&device->card->lock, flags);
362
363 fw_send_request(device->card, &orb->t, TCODE_WRITE_BLOCK_REQUEST,
Stefan Richterf1397492007-06-10 21:31:36 +0200364 node_id, generation, device->max_speed, offset,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400365 &orb->pointer, sizeof(orb->pointer),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500366 complete_transaction, orb);
367}
368
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500369static int sbp2_cancel_orbs(struct fw_unit *unit)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500370{
371 struct fw_device *device = fw_device(unit->device.parent);
372 struct sbp2_device *sd = unit->device.driver_data;
373 struct sbp2_orb *orb, *next;
374 struct list_head list;
375 unsigned long flags;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500376 int retval = -ENOENT;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500377
378 INIT_LIST_HEAD(&list);
379 spin_lock_irqsave(&device->card->lock, flags);
380 list_splice_init(&sd->orb_list, &list);
381 spin_unlock_irqrestore(&device->card->lock, flags);
382
383 list_for_each_entry_safe(orb, next, &list, link) {
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500384 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500385 if (fw_cancel_transaction(device->card, &orb->t) == 0)
386 continue;
387
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500388 orb->rcode = RCODE_CANCELLED;
389 orb->callback(orb, NULL);
390 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500391
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500392 return retval;
Kristian Høgsberg1d3d52c2007-02-06 14:49:33 -0500393}
394
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500395static void
396complete_management_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
397{
398 struct sbp2_management_orb *orb =
Jay Fenlason6f061482007-06-27 16:04:33 -0400399 container_of(base_orb, struct sbp2_management_orb, base);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500400
401 if (status)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400402 memcpy(&orb->status, status, sizeof(*status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500403 complete(&orb->done);
404}
405
406static int
407sbp2_send_management_orb(struct fw_unit *unit, int node_id, int generation,
408 int function, int lun, void *response)
409{
410 struct fw_device *device = fw_device(unit->device.parent);
411 struct sbp2_device *sd = unit->device.driver_data;
412 struct sbp2_management_orb *orb;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500413 int retval = -ENOMEM;
414
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400415 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500416 if (orb == NULL)
417 return -ENOMEM;
418
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400419 /*
420 * The sbp2 device is going to send a block read request to
421 * read out the request from host memory, so map it for dma.
422 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500423 orb->base.request_bus =
424 dma_map_single(device->card->device, &orb->request,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400425 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -0500426 if (dma_mapping_error(orb->base.request_bus))
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500427 goto out;
428
429 orb->response_bus =
430 dma_map_single(device->card->device, &orb->response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400431 sizeof(orb->response), DMA_FROM_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -0500432 if (dma_mapping_error(orb->response_bus))
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500433 goto out;
434
435 orb->request.response.high = 0;
436 orb->request.response.low = orb->response_bus;
437
438 orb->request.misc =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400439 MANAGEMENT_ORB_NOTIFY |
440 MANAGEMENT_ORB_FUNCTION(function) |
441 MANAGEMENT_ORB_LUN(lun);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500442 orb->request.length =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400443 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb->response));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500444
445 orb->request.status_fifo.high = sd->address_handler.offset >> 32;
446 orb->request.status_fifo.low = sd->address_handler.offset;
447
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500448 if (function == SBP2_LOGIN_REQUEST) {
449 orb->request.misc |=
Stefan Richter5cd54c92007-06-17 23:55:41 +0200450 MANAGEMENT_ORB_EXCLUSIVE(sbp2_param_exclusive_login) |
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400451 MANAGEMENT_ORB_RECONNECT(0);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500452 }
453
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400454 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500455
456 init_completion(&orb->done);
457 orb->base.callback = complete_management_orb;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500458
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500459 sbp2_send_orb(&orb->base, unit,
460 node_id, generation, sd->management_agent_address);
461
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500462 wait_for_completion_timeout(&orb->done,
463 msecs_to_jiffies(SBP2_ORB_TIMEOUT));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500464
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500465 retval = -EIO;
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500466 if (sbp2_cancel_orbs(unit) == 0) {
467 fw_error("orb reply timed out, rcode=0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500468 orb->base.rcode);
469 goto out;
470 }
471
Kristian Høgsberg2aaad972007-03-07 12:12:47 -0500472 if (orb->base.rcode != RCODE_COMPLETE) {
473 fw_error("management write failed, rcode 0x%02x\n",
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500474 orb->base.rcode);
475 goto out;
476 }
477
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400478 if (STATUS_GET_RESPONSE(orb->status) != 0 ||
479 STATUS_GET_SBP_STATUS(orb->status) != 0) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500480 fw_error("error status: %d:%d\n",
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400481 STATUS_GET_RESPONSE(orb->status),
482 STATUS_GET_SBP_STATUS(orb->status));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500483 goto out;
484 }
485
486 retval = 0;
487 out:
488 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400489 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500490 dma_unmap_single(device->card->device, orb->response_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400491 sizeof(orb->response), DMA_FROM_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500492
493 if (response)
494 fw_memcpy_from_be32(response,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400495 orb->response, sizeof(orb->response));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500496 kfree(orb);
497
498 return retval;
499}
500
501static void
502complete_agent_reset_write(struct fw_card *card, int rcode,
503 void *payload, size_t length, void *data)
504{
505 struct fw_transaction *t = data;
506
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500507 kfree(t);
508}
509
510static int sbp2_agent_reset(struct fw_unit *unit)
511{
512 struct fw_device *device = fw_device(unit->device.parent);
513 struct sbp2_device *sd = unit->device.driver_data;
514 struct fw_transaction *t;
515 static u32 zero;
516
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400517 t = kzalloc(sizeof(*t), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500518 if (t == NULL)
519 return -ENOMEM;
520
521 fw_send_request(device->card, t, TCODE_WRITE_QUADLET_REQUEST,
Stefan Richterffd0db22007-07-01 13:54:24 +0200522 sd->node_id, sd->generation, device->max_speed,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500523 sd->command_block_agent_address + SBP2_AGENT_RESET,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400524 &zero, sizeof(zero), complete_agent_reset_write, t);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500525
526 return 0;
527}
528
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500529static void sbp2_reconnect(struct work_struct *work);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400530static struct scsi_host_template scsi_driver_template;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500531
Stefan Richter79352e92007-06-18 18:46:49 +0200532static void release_sbp2_device(struct kref *kref)
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400533{
534 struct sbp2_device *sd = container_of(kref, struct sbp2_device, kref);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400535 struct Scsi_Host *host =
536 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400537
Stefan Richter79352e92007-06-18 18:46:49 +0200538 scsi_remove_host(host);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400539 sbp2_send_management_orb(sd->unit, sd->node_id, sd->generation,
540 SBP2_LOGOUT_REQUEST, sd->login_id, NULL);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400541 fw_core_remove_address_handler(&sd->address_handler);
542 fw_notify("removed sbp2 unit %s\n", sd->unit->device.bus_id);
543 put_device(&sd->unit->device);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400544 scsi_host_put(host);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400545}
546
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500547static void sbp2_login(struct work_struct *work)
548{
549 struct sbp2_device *sd =
550 container_of(work, struct sbp2_device, work.work);
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400551 struct Scsi_Host *host =
552 container_of((void *)sd, struct Scsi_Host, hostdata[0]);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500553 struct fw_unit *unit = sd->unit;
554 struct fw_device *device = fw_device(unit->device.parent);
555 struct sbp2_login_response response;
556 int generation, node_id, local_node_id, lun, retval;
557
558 /* FIXME: Make this work for multi-lun devices. */
559 lun = 0;
560
561 generation = device->card->generation;
562 node_id = device->node->node_id;
563 local_node_id = device->card->local_node->node_id;
564
565 if (sbp2_send_management_orb(unit, node_id, generation,
566 SBP2_LOGIN_REQUEST, lun, &response) < 0) {
567 if (sd->retries++ < 5) {
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500568 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
569 } else {
570 fw_error("failed to login to %s\n",
571 unit->device.bus_id);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400572 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500573 }
574 return;
575 }
576
577 sd->generation = generation;
578 sd->node_id = node_id;
579 sd->address_high = local_node_id << 16;
580
581 /* Get command block agent offset and login id. */
582 sd->command_block_agent_address =
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500583 ((u64) (response.command_block_agent.high & 0xffff) << 32) |
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500584 response.command_block_agent.low;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400585 sd->login_id = LOGIN_RESPONSE_GET_LOGIN_ID(response);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500586
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500587 fw_notify("logged in to sbp2 unit %s (%d retries)\n",
588 unit->device.bus_id, sd->retries);
589 fw_notify(" - management_agent_address: 0x%012llx\n",
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500590 (unsigned long long) sd->management_agent_address);
591 fw_notify(" - command_block_agent_address: 0x%012llx\n",
592 (unsigned long long) sd->command_block_agent_address);
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500593 fw_notify(" - status write address: 0x%012llx\n",
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500594 (unsigned long long) sd->address_handler.offset);
595
596#if 0
597 /* FIXME: The linux1394 sbp2 does this last step. */
598 sbp2_set_busy_timeout(scsi_id);
599#endif
600
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500601 PREPARE_DELAYED_WORK(&sd->work, sbp2_reconnect);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500602 sbp2_agent_reset(unit);
603
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400604 /* FIXME: Loop over luns here. */
605 lun = 0;
606 retval = scsi_add_device(host, 0, 0, lun);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500607 if (retval < 0) {
608 sbp2_send_management_orb(unit, sd->node_id, sd->generation,
609 SBP2_LOGOUT_REQUEST, sd->login_id,
610 NULL);
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400611 /*
612 * Set this back to sbp2_login so we fall back and
613 * retry login on bus reset.
614 */
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500615 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500616 }
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400617 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500618}
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500619
620static int sbp2_probe(struct device *dev)
621{
622 struct fw_unit *unit = fw_unit(dev);
623 struct fw_device *device = fw_device(unit->device.parent);
624 struct sbp2_device *sd;
625 struct fw_csr_iterator ci;
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400626 struct Scsi_Host *host;
627 int i, key, value, err;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500628 u32 model, firmware_revision;
629
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400630 err = -ENOMEM;
631 host = scsi_host_alloc(&scsi_driver_template, sizeof(*sd));
632 if (host == NULL)
633 goto fail;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500634
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400635 sd = (struct sbp2_device *) host->hostdata;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500636 unit->device.driver_data = sd;
637 sd->unit = unit;
638 INIT_LIST_HEAD(&sd->orb_list);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400639 kref_init(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500640
641 sd->address_handler.length = 0x100;
642 sd->address_handler.address_callback = sbp2_status_write;
643 sd->address_handler.callback_data = sd;
644
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400645 err = fw_core_add_address_handler(&sd->address_handler,
646 &fw_high_memory_region);
647 if (err < 0)
648 goto fail_host;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500649
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400650 err = fw_device_enable_phys_dma(device);
651 if (err < 0)
652 goto fail_address_handler;
653
654 err = scsi_add_host(host, &unit->device);
655 if (err < 0)
656 goto fail_address_handler;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500657
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400658 /*
659 * Scan unit directory to get management agent address,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500660 * firmware revison and model. Initialize firmware_revision
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400661 * and model to values that wont match anything in our table.
662 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500663 firmware_revision = 0xff000000;
664 model = 0xff000000;
665 fw_csr_iterator_init(&ci, unit->directory);
666 while (fw_csr_iterator_next(&ci, &key, &value)) {
667 switch (key) {
668 case CSR_DEPENDENT_INFO | CSR_OFFSET:
669 sd->management_agent_address =
670 0xfffff0000000ULL + 4 * value;
671 break;
672 case SBP2_FIRMWARE_REVISION:
673 firmware_revision = value;
674 break;
675 case CSR_MODEL:
676 model = value;
677 break;
678 }
679 }
680
681 for (i = 0; i < ARRAY_SIZE(sbp2_workarounds_table); i++) {
682 if (sbp2_workarounds_table[i].firmware_revision !=
683 (firmware_revision & 0xffffff00))
684 continue;
685 if (sbp2_workarounds_table[i].model != model &&
686 sbp2_workarounds_table[i].model != ~0)
687 continue;
688 sd->workarounds |= sbp2_workarounds_table[i].workarounds;
689 break;
690 }
691
692 if (sd->workarounds)
693 fw_notify("Workarounds for node %s: 0x%x "
694 "(firmware_revision 0x%06x, model_id 0x%06x)\n",
695 unit->device.bus_id,
696 sd->workarounds, firmware_revision, model);
697
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400698 get_device(&unit->device);
699
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400700 /*
701 * We schedule work to do the login so we can easily
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400702 * reschedule retries. Always get the ref before scheduling
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400703 * work.
704 */
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500705 INIT_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400706 if (schedule_delayed_work(&sd->work, 0))
707 kref_get(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500708
709 return 0;
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400710
711 fail_address_handler:
712 fw_core_remove_address_handler(&sd->address_handler);
713 fail_host:
714 scsi_host_put(host);
715 fail:
716 return err;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500717}
718
719static int sbp2_remove(struct device *dev)
720{
721 struct fw_unit *unit = fw_unit(dev);
722 struct sbp2_device *sd = unit->device.driver_data;
723
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400724 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500725
726 return 0;
727}
728
729static void sbp2_reconnect(struct work_struct *work)
730{
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500731 struct sbp2_device *sd =
732 container_of(work, struct sbp2_device, work.work);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500733 struct fw_unit *unit = sd->unit;
734 struct fw_device *device = fw_device(unit->device.parent);
735 int generation, node_id, local_node_id;
736
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500737 generation = device->card->generation;
738 node_id = device->node->node_id;
739 local_node_id = device->card->local_node->node_id;
740
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500741 if (sbp2_send_management_orb(unit, node_id, generation,
742 SBP2_RECONNECT_REQUEST,
743 sd->login_id, NULL) < 0) {
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500744 if (sd->retries++ >= 5) {
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500745 fw_error("failed to reconnect to %s\n",
746 unit->device.bus_id);
747 /* Fall back and try to log in again. */
748 sd->retries = 0;
Kristian Høgsberg1da0c932007-03-07 12:12:40 -0500749 PREPARE_DELAYED_WORK(&sd->work, sbp2_login);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500750 }
751 schedule_delayed_work(&sd->work, DIV_ROUND_UP(HZ, 5));
752 return;
753 }
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500754
755 sd->generation = generation;
756 sd->node_id = node_id;
Stefan Richter907293d2007-01-23 21:11:43 +0100757 sd->address_high = local_node_id << 16;
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500758
Kristian Høgsberg5c5539d2007-03-07 12:12:45 -0500759 fw_notify("reconnected to unit %s (%d retries)\n",
760 unit->device.bus_id, sd->retries);
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500761 sbp2_agent_reset(unit);
762 sbp2_cancel_orbs(unit);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400763 kref_put(&sd->kref, release_sbp2_device);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500764}
765
766static void sbp2_update(struct fw_unit *unit)
767{
768 struct fw_device *device = fw_device(unit->device.parent);
769 struct sbp2_device *sd = unit->device.driver_data;
770
Kristian Høgsberg7f37c422007-02-06 14:49:34 -0500771 sd->retries = 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500772 fw_device_enable_phys_dma(device);
Kristian Høgsbergb3d6e152007-03-14 17:34:58 -0400773 if (schedule_delayed_work(&sd->work, 0))
774 kref_get(&sd->kref);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500775}
776
777#define SBP2_UNIT_SPEC_ID_ENTRY 0x0000609e
778#define SBP2_SW_VERSION_ENTRY 0x00010483
779
Stefan Richter21ebcd12007-01-14 15:29:07 +0100780static const struct fw_device_id sbp2_id_table[] = {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500781 {
782 .match_flags = FW_MATCH_SPECIFIER_ID | FW_MATCH_VERSION,
783 .specifier_id = SBP2_UNIT_SPEC_ID_ENTRY,
Stefan Richter5af4e5e2007-01-21 20:45:32 +0100784 .version = SBP2_SW_VERSION_ENTRY,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500785 },
786 { }
787};
788
789static struct fw_driver sbp2_driver = {
790 .driver = {
791 .owner = THIS_MODULE,
792 .name = sbp2_driver_name,
793 .bus = &fw_bus_type,
794 .probe = sbp2_probe,
795 .remove = sbp2_remove,
796 },
797 .update = sbp2_update,
798 .id_table = sbp2_id_table,
799};
800
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400801static unsigned int
802sbp2_status_to_sense_data(u8 *sbp2_status, u8 *sense_data)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500803{
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400804 int sam_status;
805
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500806 sense_data[0] = 0x70;
807 sense_data[1] = 0x0;
808 sense_data[2] = sbp2_status[1];
809 sense_data[3] = sbp2_status[4];
810 sense_data[4] = sbp2_status[5];
811 sense_data[5] = sbp2_status[6];
812 sense_data[6] = sbp2_status[7];
813 sense_data[7] = 10;
814 sense_data[8] = sbp2_status[8];
815 sense_data[9] = sbp2_status[9];
816 sense_data[10] = sbp2_status[10];
817 sense_data[11] = sbp2_status[11];
818 sense_data[12] = sbp2_status[2];
819 sense_data[13] = sbp2_status[3];
820 sense_data[14] = sbp2_status[12];
821 sense_data[15] = sbp2_status[13];
822
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400823 sam_status = sbp2_status[0] & 0x3f;
824
825 switch (sam_status) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500826 case SAM_STAT_GOOD:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500827 case SAM_STAT_CHECK_CONDITION:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500828 case SAM_STAT_CONDITION_MET:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400829 case SAM_STAT_BUSY:
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500830 case SAM_STAT_RESERVATION_CONFLICT:
831 case SAM_STAT_COMMAND_TERMINATED:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400832 return DID_OK << 16 | sam_status;
833
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500834 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400835 return DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500836 }
837}
838
839static void
840complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
841{
Jay Fenlason6f061482007-06-27 16:04:33 -0400842 struct sbp2_command_orb *orb =
843 container_of(base_orb, struct sbp2_command_orb, base);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500844 struct fw_unit *unit = orb->unit;
845 struct fw_device *device = fw_device(unit->device.parent);
846 struct scatterlist *sg;
847 int result;
848
849 if (status != NULL) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400850 if (STATUS_GET_DEAD(*status))
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500851 sbp2_agent_reset(unit);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500852
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400853 switch (STATUS_GET_RESPONSE(*status)) {
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500854 case SBP2_STATUS_REQUEST_COMPLETE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400855 result = DID_OK << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500856 break;
857 case SBP2_STATUS_TRANSPORT_FAILURE:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400858 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500859 break;
860 case SBP2_STATUS_ILLEGAL_REQUEST:
861 case SBP2_STATUS_VENDOR_DEPENDENT:
862 default:
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400863 result = DID_ERROR << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500864 break;
865 }
866
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400867 if (result == DID_OK << 16 && STATUS_GET_LEN(*status) > 1)
868 result = sbp2_status_to_sense_data(STATUS_GET_DATA(*status),
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500869 orb->cmd->sense_buffer);
870 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400871 /*
872 * If the orb completes with status == NULL, something
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500873 * went wrong, typically a bus reset happened mid-orb
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400874 * or when sending the write (less likely).
875 */
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400876 result = DID_BUS_BUSY << 16;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500877 }
878
879 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400880 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500881
882 if (orb->cmd->use_sg > 0) {
883 sg = (struct scatterlist *)orb->cmd->request_buffer;
884 dma_unmap_sg(device->card->device, sg, orb->cmd->use_sg,
885 orb->cmd->sc_data_direction);
886 }
887
888 if (orb->page_table_bus != 0)
889 dma_unmap_single(device->card->device, orb->page_table_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400890 sizeof(orb->page_table_bus), DMA_TO_DEVICE);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500891
Kristian Høgsbergfbb54232007-04-10 18:11:18 -0400892 orb->cmd->result = result;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500893 orb->done(orb->cmd);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500894 kfree(orb);
895}
896
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400897static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500898{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400899 struct sbp2_device *sd =
900 (struct sbp2_device *)orb->cmd->device->host->hostdata;
901 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500902 struct fw_device *device = fw_device(unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500903 struct scatterlist *sg;
904 int sg_len, l, i, j, count;
905 size_t size;
906 dma_addr_t sg_addr;
907
908 sg = (struct scatterlist *)orb->cmd->request_buffer;
909 count = dma_map_sg(device->card->device, sg, orb->cmd->use_sg,
910 orb->cmd->sc_data_direction);
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400911 if (count == 0)
912 goto fail;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500913
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400914 /*
915 * Handle the special case where there is only one element in
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500916 * the scatter list by converting it to an immediate block
917 * request. This is also a workaround for broken devices such
918 * as the second generation iPod which doesn't support page
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400919 * tables.
920 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500921 if (count == 1 && sg_dma_len(sg) < SBP2_MAX_SG_ELEMENT_LENGTH) {
922 orb->request.data_descriptor.high = sd->address_high;
923 orb->request.data_descriptor.low = sg_dma_address(sg);
924 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400925 COMMAND_ORB_DATA_SIZE(sg_dma_len(sg));
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400926 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500927 }
928
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400929 /*
930 * Convert the scatterlist to an sbp2 page table. If any
Kristian Høgsberg, Stefan Richter36abb3b2007-05-09 19:23:10 -0400931 * scatterlist entries are too big for sbp2, we split them as we
932 * go. Even if we ask the block I/O layer to not give us sg
933 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
934 * during DMA mapping, and Linux currently doesn't prevent this.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400935 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500936 for (i = 0, j = 0; i < count; i++) {
937 sg_len = sg_dma_len(sg + i);
938 sg_addr = sg_dma_address(sg + i);
939 while (sg_len) {
940 l = min(sg_len, SBP2_MAX_SG_ELEMENT_LENGTH);
941 orb->page_table[j].low = sg_addr;
942 orb->page_table[j].high = (l << 16);
943 sg_addr += l;
944 sg_len -= l;
945 j++;
946 }
947 }
948
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400949 size = sizeof(orb->page_table[0]) * j;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500950
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400951 /*
952 * The data_descriptor pointer is the one case where we need
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500953 * to fill in the node ID part of the address. All other
954 * pointers assume that the data referenced reside on the
955 * initiator (i.e. us), but data_descriptor can refer to data
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400956 * on other nodes so we need to put our ID in descriptor.high.
957 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500958
959 orb->page_table_bus =
960 dma_map_single(device->card->device, orb->page_table,
961 size, DMA_TO_DEVICE);
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400962 if (dma_mapping_error(orb->page_table_bus))
963 goto fail_page_table;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500964 orb->request.data_descriptor.high = sd->address_high;
965 orb->request.data_descriptor.low = orb->page_table_bus;
966 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400967 COMMAND_ORB_PAGE_TABLE_PRESENT |
968 COMMAND_ORB_DATA_SIZE(j);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500969
970 fw_memcpy_to_be32(orb->page_table, orb->page_table, size);
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -0400971
972 return 0;
973
974 fail_page_table:
975 dma_unmap_sg(device->card->device, sg, orb->cmd->use_sg,
976 orb->cmd->sc_data_direction);
977 fail:
978 return -ENOMEM;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500979}
980
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500981/* SCSI stack integration */
982
983static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
984{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -0400985 struct sbp2_device *sd =
986 (struct sbp2_device *)cmd->device->host->hostdata;
987 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500988 struct fw_device *device = fw_device(unit->device.parent);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500989 struct sbp2_command_orb *orb;
990
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400991 /*
992 * Bidirectional commands are not yet implemented, and unknown
993 * transfer direction not handled.
994 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -0500995 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
Stefan Richter8a8cea22007-06-09 19:26:22 +0200996 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
Kristian Høgsberge1b68c42007-05-09 19:23:09 -0400997 cmd->result = DID_ERROR << 16;
998 done(cmd);
999 return 0;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001000 }
1001
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001002 orb = kzalloc(sizeof(*orb), GFP_ATOMIC);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001003 if (orb == NULL) {
1004 fw_notify("failed to alloc orb\n");
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001005 goto fail_alloc;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001006 }
1007
Kristian Høgsberg12f26aa2007-04-10 18:11:20 -04001008 /* Initialize rcode to something not RCODE_COMPLETE. */
1009 orb->base.rcode = -1;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001010 orb->base.request_bus =
1011 dma_map_single(device->card->device, &orb->request,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001012 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001013 if (dma_mapping_error(orb->base.request_bus))
1014 goto fail_mapping;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001015
1016 orb->unit = unit;
1017 orb->done = done;
1018 orb->cmd = cmd;
1019
1020 orb->request.next.high = SBP2_ORB_NULL;
1021 orb->request.next.low = 0x0;
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001022 /*
1023 * At speed 100 we can do 512 bytes per packet, at speed 200,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001024 * 1024 bytes per packet etc. The SBP-2 max_payload field
1025 * specifies the max payload size as 2 ^ (max_payload + 2), so
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001026 * if we set this to max_speed + 7, we get the right value.
1027 */
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001028 orb->request.misc =
Stefan Richterf1397492007-06-10 21:31:36 +02001029 COMMAND_ORB_MAX_PAYLOAD(device->max_speed + 7) |
1030 COMMAND_ORB_SPEED(device->max_speed) |
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001031 COMMAND_ORB_NOTIFY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001032
1033 if (cmd->sc_data_direction == DMA_FROM_DEVICE)
1034 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001035 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_FROM_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001036 else if (cmd->sc_data_direction == DMA_TO_DEVICE)
1037 orb->request.misc |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001038 COMMAND_ORB_DIRECTION(SBP2_DIRECTION_TO_MEDIA);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001039
Kristian Høgsberg213d7bb2007-05-09 19:23:11 -04001040 if (cmd->use_sg && sbp2_command_orb_map_scatterlist(orb) < 0)
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001041 goto fail_map_payload;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001042
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001043 fw_memcpy_to_be32(&orb->request, &orb->request, sizeof(orb->request));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001044
1045 memset(orb->request.command_block,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001046 0, sizeof(orb->request.command_block));
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001047 memcpy(orb->request.command_block, cmd->cmnd, COMMAND_SIZE(*cmd->cmnd));
1048
1049 orb->base.callback = complete_command_orb;
1050
1051 sbp2_send_orb(&orb->base, unit, sd->node_id, sd->generation,
1052 sd->command_block_agent_address + SBP2_ORB_POINTER);
1053
1054 return 0;
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001055
Kristian Høgsberg95ffc5e2007-05-09 19:23:08 -04001056 fail_map_payload:
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001057 dma_unmap_single(device->card->device, orb->base.request_bus,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001058 sizeof(orb->request), DMA_TO_DEVICE);
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -05001059 fail_mapping:
1060 kfree(orb);
1061 fail_alloc:
Kristian Høgsberge1b68c42007-05-09 19:23:09 -04001062 return SCSI_MLQUEUE_HOST_BUSY;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001063}
1064
Stefan Richtercfb01382007-01-23 21:20:08 +01001065static int sbp2_scsi_slave_alloc(struct scsi_device *sdev)
1066{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001067 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
Stefan Richtercfb01382007-01-23 21:20:08 +01001068
1069 sdev->allow_restart = 1;
1070
1071 if (sd->workarounds & SBP2_WORKAROUND_INQUIRY_36)
1072 sdev->inquiry_len = 36;
1073 return 0;
1074}
1075
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001076static int sbp2_scsi_slave_configure(struct scsi_device *sdev)
1077{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001078 struct sbp2_device *sd = (struct sbp2_device *)sdev->host->hostdata;
1079 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001080
Stefan Richtercfb01382007-01-23 21:20:08 +01001081 sdev->use_10_for_rw = 1;
1082
1083 if (sdev->type == TYPE_ROM)
1084 sdev->use_10_for_ms = 1;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001085 if (sdev->type == TYPE_DISK &&
1086 sd->workarounds & SBP2_WORKAROUND_MODE_SENSE_8)
1087 sdev->skip_ms_page_8 = 1;
1088 if (sd->workarounds & SBP2_WORKAROUND_FIX_CAPACITY) {
1089 fw_notify("setting fix_capacity for %s\n", unit->device.bus_id);
1090 sdev->fix_capacity = 1;
1091 }
Stefan Richtercf47c7a2007-06-17 23:52:08 +02001092 if (sd->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS)
1093 blk_queue_max_sectors(sdev->request_queue, 128 * 1024 / 512);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001094 return 0;
1095}
1096
1097/*
1098 * Called by scsi stack when something has really gone wrong. Usually
1099 * called when a command has timed-out for some reason.
1100 */
1101static int sbp2_scsi_abort(struct scsi_cmnd *cmd)
1102{
Kristian Høgsbergad85274f2007-05-09 19:23:07 -04001103 struct sbp2_device *sd =
1104 (struct sbp2_device *)cmd->device->host->hostdata;
1105 struct fw_unit *unit = sd->unit;
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001106
1107 fw_notify("sbp2_scsi_abort\n");
Kristian Høgsberg0fc7d6e2007-04-11 18:44:33 -04001108 sbp2_agent_reset(unit);
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001109 sbp2_cancel_orbs(unit);
1110
1111 return SUCCESS;
1112}
1113
Stefan Richter14e21982007-05-27 13:18:27 +02001114/*
1115 * Format of /sys/bus/scsi/devices/.../ieee1394_id:
1116 * u64 EUI-64 : u24 directory_ID : u16 LUN (all printed in hexadecimal)
1117 *
1118 * This is the concatenation of target port identifier and logical unit
1119 * identifier as per SAM-2...SAM-4 annex A.
1120 */
1121static ssize_t
1122sbp2_sysfs_ieee1394_id_show(struct device *dev, struct device_attribute *attr,
1123 char *buf)
1124{
1125 struct scsi_device *sdev = to_scsi_device(dev);
1126 struct sbp2_device *sd;
1127 struct fw_unit *unit;
1128 struct fw_device *device;
1129 u32 directory_id;
1130 struct fw_csr_iterator ci;
1131 int key, value, lun;
1132
1133 if (!sdev)
1134 return 0;
1135 sd = (struct sbp2_device *)sdev->host->hostdata;
1136 unit = sd->unit;
1137 device = fw_device(unit->device.parent);
1138
1139 /* implicit directory ID */
1140 directory_id = ((unit->directory - device->config_rom) * 4
1141 + CSR_CONFIG_ROM) & 0xffffff;
1142
1143 /* explicit directory ID, overrides implicit ID if present */
1144 fw_csr_iterator_init(&ci, unit->directory);
1145 while (fw_csr_iterator_next(&ci, &key, &value))
1146 if (key == CSR_DIRECTORY_ID) {
1147 directory_id = value;
1148 break;
1149 }
1150
1151 /* FIXME: Make this work for multi-lun devices. */
1152 lun = 0;
1153
1154 return sprintf(buf, "%08x%08x:%06x:%04x\n",
1155 device->config_rom[3], device->config_rom[4],
1156 directory_id, lun);
1157}
1158
1159static DEVICE_ATTR(ieee1394_id, S_IRUGO, sbp2_sysfs_ieee1394_id_show, NULL);
1160
1161static struct device_attribute *sbp2_scsi_sysfs_attrs[] = {
1162 &dev_attr_ieee1394_id,
1163 NULL
1164};
1165
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001166static struct scsi_host_template scsi_driver_template = {
1167 .module = THIS_MODULE,
1168 .name = "SBP-2 IEEE-1394",
1169 .proc_name = (char *)sbp2_driver_name,
1170 .queuecommand = sbp2_scsi_queuecommand,
Stefan Richtercfb01382007-01-23 21:20:08 +01001171 .slave_alloc = sbp2_scsi_slave_alloc,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001172 .slave_configure = sbp2_scsi_slave_configure,
1173 .eh_abort_handler = sbp2_scsi_abort,
1174 .this_id = -1,
1175 .sg_tablesize = SG_ALL,
1176 .use_clustering = ENABLE_CLUSTERING,
Stefan Richter02af8e72007-01-21 20:50:11 +01001177 .cmd_per_lun = 1,
1178 .can_queue = 1,
Stefan Richter14e21982007-05-27 13:18:27 +02001179 .sdev_attrs = sbp2_scsi_sysfs_attrs,
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001180};
1181
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001182MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1183MODULE_DESCRIPTION("SCSI over IEEE1394");
1184MODULE_LICENSE("GPL");
1185MODULE_DEVICE_TABLE(ieee1394, sbp2_id_table);
1186
Olaf Hering1e4c7b02007-05-05 23:17:13 +02001187/* Provide a module alias so root-on-sbp2 initrds don't break. */
1188#ifndef CONFIG_IEEE1394_SBP2_MODULE
1189MODULE_ALIAS("sbp2");
1190#endif
1191
Kristian Høgsberg9ba136d2006-12-19 19:58:40 -05001192static int __init sbp2_init(void)
1193{
1194 return driver_register(&sbp2_driver.driver);
1195}
1196
1197static void __exit sbp2_cleanup(void)
1198{
1199 driver_unregister(&sbp2_driver.driver);
1200}
1201
1202module_init(sbp2_init);
1203module_exit(sbp2_cleanup);