blob: be593c8525b5fc7a499b4762ebfcdd8f7fe9854a [file] [log] [blame]
James Bottomley9927c682008-02-03 15:48:56 -06001/*
2 * SCSI Enclosure Services
3 *
4 * Copyright (C) 2008 James Bottomley <James.Bottomley@HansenPartnership.com>
5 *
6**-----------------------------------------------------------------------------
7**
8** This program is free software; you can redistribute it and/or
9** modify it under the terms of the GNU General Public License
10** version 2 as published by the Free Software Foundation.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20**
21**-----------------------------------------------------------------------------
22*/
23
24#include <linux/module.h>
25#include <linux/kernel.h>
26#include <linux/enclosure.h>
27
28#include <scsi/scsi.h>
29#include <scsi/scsi_cmnd.h>
30#include <scsi/scsi_dbg.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_driver.h>
33#include <scsi/scsi_host.h>
34
35struct ses_device {
Yinghai Lu691b4772008-02-13 16:25:16 -080036 unsigned char *page1;
37 unsigned char *page2;
38 unsigned char *page10;
James Bottomley9927c682008-02-03 15:48:56 -060039 short page1_len;
40 short page2_len;
41 short page10_len;
42};
43
44struct ses_component {
45 u64 addr;
46 unsigned char *desc;
47};
48
49static int ses_probe(struct device *dev)
50{
51 struct scsi_device *sdev = to_scsi_device(dev);
52 int err = -ENODEV;
53
54 if (sdev->type != TYPE_ENCLOSURE)
55 goto out;
56
57 err = 0;
58 sdev_printk(KERN_NOTICE, sdev, "Attached Enclosure device\n");
59
60 out:
61 return err;
62}
63
Matthew Wilcoxc95e62c2008-06-23 09:14:31 -060064#define SES_TIMEOUT (30 * HZ)
James Bottomley9927c682008-02-03 15:48:56 -060065#define SES_RETRIES 3
66
67static int ses_recv_diag(struct scsi_device *sdev, int page_code,
68 void *buf, int bufflen)
69{
Yinghai Lu691b4772008-02-13 16:25:16 -080070 unsigned char cmd[] = {
James Bottomley9927c682008-02-03 15:48:56 -060071 RECEIVE_DIAGNOSTIC,
72 1, /* Set PCV bit */
73 page_code,
74 bufflen >> 8,
75 bufflen & 0xff,
76 0
77 };
78
79 return scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buf, bufflen,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +090080 NULL, SES_TIMEOUT, SES_RETRIES, NULL);
James Bottomley9927c682008-02-03 15:48:56 -060081}
82
83static int ses_send_diag(struct scsi_device *sdev, int page_code,
84 void *buf, int bufflen)
85{
86 u32 result;
87
Yinghai Lu691b4772008-02-13 16:25:16 -080088 unsigned char cmd[] = {
James Bottomley9927c682008-02-03 15:48:56 -060089 SEND_DIAGNOSTIC,
90 0x10, /* Set PF bit */
91 0,
92 bufflen >> 8,
93 bufflen & 0xff,
94 0
95 };
96
97 result = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, buf, bufflen,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +090098 NULL, SES_TIMEOUT, SES_RETRIES, NULL);
James Bottomley9927c682008-02-03 15:48:56 -060099 if (result)
100 sdev_printk(KERN_ERR, sdev, "SEND DIAGNOSTIC result: %8x\n",
101 result);
102 return result;
103}
104
105static int ses_set_page2_descriptor(struct enclosure_device *edev,
106 struct enclosure_component *ecomp,
Yinghai Lu691b4772008-02-13 16:25:16 -0800107 unsigned char *desc)
James Bottomley9927c682008-02-03 15:48:56 -0600108{
109 int i, j, count = 0, descriptor = ecomp->number;
Tony Jonesee959b02008-02-22 00:13:36 +0100110 struct scsi_device *sdev = to_scsi_device(edev->edev.parent);
James Bottomley9927c682008-02-03 15:48:56 -0600111 struct ses_device *ses_dev = edev->scratch;
Yinghai Lu691b4772008-02-13 16:25:16 -0800112 unsigned char *type_ptr = ses_dev->page1 + 12 + ses_dev->page1[11];
113 unsigned char *desc_ptr = ses_dev->page2 + 8;
James Bottomley9927c682008-02-03 15:48:56 -0600114
115 /* Clear everything */
116 memset(desc_ptr, 0, ses_dev->page2_len - 8);
117 for (i = 0; i < ses_dev->page1[10]; i++, type_ptr += 4) {
118 for (j = 0; j < type_ptr[1]; j++) {
119 desc_ptr += 4;
120 if (type_ptr[0] != ENCLOSURE_COMPONENT_DEVICE &&
121 type_ptr[0] != ENCLOSURE_COMPONENT_ARRAY_DEVICE)
122 continue;
123 if (count++ == descriptor) {
124 memcpy(desc_ptr, desc, 4);
125 /* set select */
126 desc_ptr[0] |= 0x80;
127 /* clear reserved, just in case */
128 desc_ptr[0] &= 0xf0;
129 }
130 }
131 }
132
133 return ses_send_diag(sdev, 2, ses_dev->page2, ses_dev->page2_len);
134}
135
Yinghai Lu691b4772008-02-13 16:25:16 -0800136static unsigned char *ses_get_page2_descriptor(struct enclosure_device *edev,
James Bottomley9927c682008-02-03 15:48:56 -0600137 struct enclosure_component *ecomp)
138{
139 int i, j, count = 0, descriptor = ecomp->number;
Tony Jonesee959b02008-02-22 00:13:36 +0100140 struct scsi_device *sdev = to_scsi_device(edev->edev.parent);
James Bottomley9927c682008-02-03 15:48:56 -0600141 struct ses_device *ses_dev = edev->scratch;
Yinghai Lu691b4772008-02-13 16:25:16 -0800142 unsigned char *type_ptr = ses_dev->page1 + 12 + ses_dev->page1[11];
143 unsigned char *desc_ptr = ses_dev->page2 + 8;
James Bottomley9927c682008-02-03 15:48:56 -0600144
145 ses_recv_diag(sdev, 2, ses_dev->page2, ses_dev->page2_len);
146
147 for (i = 0; i < ses_dev->page1[10]; i++, type_ptr += 4) {
148 for (j = 0; j < type_ptr[1]; j++) {
149 desc_ptr += 4;
150 if (type_ptr[0] != ENCLOSURE_COMPONENT_DEVICE &&
151 type_ptr[0] != ENCLOSURE_COMPONENT_ARRAY_DEVICE)
152 continue;
153 if (count++ == descriptor)
154 return desc_ptr;
155 }
156 }
157 return NULL;
158}
159
160static void ses_get_fault(struct enclosure_device *edev,
161 struct enclosure_component *ecomp)
162{
Yinghai Lu691b4772008-02-13 16:25:16 -0800163 unsigned char *desc;
James Bottomley9927c682008-02-03 15:48:56 -0600164
165 desc = ses_get_page2_descriptor(edev, ecomp);
Yinghai Lu691b4772008-02-13 16:25:16 -0800166 if (desc)
167 ecomp->fault = (desc[3] & 0x60) >> 4;
James Bottomley9927c682008-02-03 15:48:56 -0600168}
169
170static int ses_set_fault(struct enclosure_device *edev,
171 struct enclosure_component *ecomp,
172 enum enclosure_component_setting val)
173{
Yinghai Lu691b4772008-02-13 16:25:16 -0800174 unsigned char desc[4] = {0 };
James Bottomley9927c682008-02-03 15:48:56 -0600175
176 switch (val) {
177 case ENCLOSURE_SETTING_DISABLED:
178 /* zero is disabled */
179 break;
180 case ENCLOSURE_SETTING_ENABLED:
181 desc[2] = 0x02;
182 break;
183 default:
184 /* SES doesn't do the SGPIO blink settings */
185 return -EINVAL;
186 }
187
188 return ses_set_page2_descriptor(edev, ecomp, desc);
189}
190
191static void ses_get_status(struct enclosure_device *edev,
192 struct enclosure_component *ecomp)
193{
Yinghai Lu691b4772008-02-13 16:25:16 -0800194 unsigned char *desc;
James Bottomley9927c682008-02-03 15:48:56 -0600195
196 desc = ses_get_page2_descriptor(edev, ecomp);
Yinghai Lu691b4772008-02-13 16:25:16 -0800197 if (desc)
198 ecomp->status = (desc[0] & 0x0f);
James Bottomley9927c682008-02-03 15:48:56 -0600199}
200
201static void ses_get_locate(struct enclosure_device *edev,
202 struct enclosure_component *ecomp)
203{
Yinghai Lu691b4772008-02-13 16:25:16 -0800204 unsigned char *desc;
James Bottomley9927c682008-02-03 15:48:56 -0600205
206 desc = ses_get_page2_descriptor(edev, ecomp);
Yinghai Lu691b4772008-02-13 16:25:16 -0800207 if (desc)
208 ecomp->locate = (desc[2] & 0x02) ? 1 : 0;
James Bottomley9927c682008-02-03 15:48:56 -0600209}
210
211static int ses_set_locate(struct enclosure_device *edev,
212 struct enclosure_component *ecomp,
213 enum enclosure_component_setting val)
214{
Yinghai Lu691b4772008-02-13 16:25:16 -0800215 unsigned char desc[4] = {0 };
James Bottomley9927c682008-02-03 15:48:56 -0600216
217 switch (val) {
218 case ENCLOSURE_SETTING_DISABLED:
219 /* zero is disabled */
220 break;
221 case ENCLOSURE_SETTING_ENABLED:
222 desc[2] = 0x02;
223 break;
224 default:
225 /* SES doesn't do the SGPIO blink settings */
226 return -EINVAL;
227 }
228 return ses_set_page2_descriptor(edev, ecomp, desc);
229}
230
231static int ses_set_active(struct enclosure_device *edev,
232 struct enclosure_component *ecomp,
233 enum enclosure_component_setting val)
234{
Yinghai Lu691b4772008-02-13 16:25:16 -0800235 unsigned char desc[4] = {0 };
James Bottomley9927c682008-02-03 15:48:56 -0600236
237 switch (val) {
238 case ENCLOSURE_SETTING_DISABLED:
239 /* zero is disabled */
240 ecomp->active = 0;
241 break;
242 case ENCLOSURE_SETTING_ENABLED:
243 desc[2] = 0x80;
244 ecomp->active = 1;
245 break;
246 default:
247 /* SES doesn't do the SGPIO blink settings */
248 return -EINVAL;
249 }
250 return ses_set_page2_descriptor(edev, ecomp, desc);
251}
252
253static struct enclosure_component_callbacks ses_enclosure_callbacks = {
254 .get_fault = ses_get_fault,
255 .set_fault = ses_set_fault,
256 .get_status = ses_get_status,
257 .get_locate = ses_get_locate,
258 .set_locate = ses_set_locate,
259 .set_active = ses_set_active,
260};
261
262struct ses_host_edev {
263 struct Scsi_Host *shost;
264 struct enclosure_device *edev;
265};
266
Adrian Bunke0aae1a2009-03-04 12:06:05 -0800267#if 0
James Bottomley9927c682008-02-03 15:48:56 -0600268int ses_match_host(struct enclosure_device *edev, void *data)
269{
270 struct ses_host_edev *sed = data;
271 struct scsi_device *sdev;
272
Tony Jonesee959b02008-02-22 00:13:36 +0100273 if (!scsi_is_sdev_device(edev->edev.parent))
James Bottomley9927c682008-02-03 15:48:56 -0600274 return 0;
275
Tony Jonesee959b02008-02-22 00:13:36 +0100276 sdev = to_scsi_device(edev->edev.parent);
James Bottomley9927c682008-02-03 15:48:56 -0600277
278 if (sdev->host != sed->shost)
279 return 0;
280
281 sed->edev = edev;
282 return 1;
283}
Adrian Bunke0aae1a2009-03-04 12:06:05 -0800284#endif /* 0 */
James Bottomley9927c682008-02-03 15:48:56 -0600285
286static void ses_process_descriptor(struct enclosure_component *ecomp,
287 unsigned char *desc)
288{
289 int eip = desc[0] & 0x10;
290 int invalid = desc[0] & 0x80;
291 enum scsi_protocol proto = desc[0] & 0x0f;
292 u64 addr = 0;
293 struct ses_component *scomp = ecomp->scratch;
294 unsigned char *d;
295
296 scomp->desc = desc;
297
298 if (invalid)
299 return;
300
301 switch (proto) {
302 case SCSI_PROTOCOL_SAS:
303 if (eip)
304 d = desc + 8;
305 else
306 d = desc + 4;
307 /* only take the phy0 addr */
308 addr = (u64)d[12] << 56 |
309 (u64)d[13] << 48 |
310 (u64)d[14] << 40 |
311 (u64)d[15] << 32 |
312 (u64)d[16] << 24 |
313 (u64)d[17] << 16 |
314 (u64)d[18] << 8 |
315 (u64)d[19];
316 break;
317 default:
318 /* FIXME: Need to add more protocols than just SAS */
319 break;
320 }
321 scomp->addr = addr;
322}
323
324struct efd {
325 u64 addr;
326 struct device *dev;
327};
328
329static int ses_enclosure_find_by_addr(struct enclosure_device *edev,
330 void *data)
331{
332 struct efd *efd = data;
333 int i;
334 struct ses_component *scomp;
335
336 if (!edev->component[0].scratch)
337 return 0;
338
339 for (i = 0; i < edev->components; i++) {
340 scomp = edev->component[i].scratch;
341 if (scomp->addr != efd->addr)
342 continue;
343
344 enclosure_add_device(edev, i, efd->dev);
345 return 1;
346 }
347 return 0;
348}
349
James Bottomley9927c682008-02-03 15:48:56 -0600350static void ses_match_to_enclosure(struct enclosure_device *edev,
351 struct scsi_device *sdev)
352{
Matthew Wilcox40c34602008-12-31 12:11:17 -0700353 unsigned char *buf;
James Bottomley9927c682008-02-03 15:48:56 -0600354 unsigned char *desc;
Matthew Wilcox40c34602008-12-31 12:11:17 -0700355 unsigned int vpd_len;
James Bottomley9927c682008-02-03 15:48:56 -0600356 struct efd efd = {
357 .addr = 0,
358 };
James Bottomley9927c682008-02-03 15:48:56 -0600359
Matthew Wilcox40c34602008-12-31 12:11:17 -0700360 buf = scsi_get_vpd_page(sdev, 0x83);
James Bottomley9927c682008-02-03 15:48:56 -0600361 if (!buf)
362 return;
363
Matthew Wilcox40c34602008-12-31 12:11:17 -0700364 vpd_len = ((buf[2] << 8) | buf[3]) + 4;
James Bottomley671a99c2008-07-29 11:38:25 -0500365
James Bottomley9927c682008-02-03 15:48:56 -0600366 desc = buf + 4;
James Bottomley671a99c2008-07-29 11:38:25 -0500367 while (desc < buf + vpd_len) {
James Bottomley9927c682008-02-03 15:48:56 -0600368 enum scsi_protocol proto = desc[0] >> 4;
369 u8 code_set = desc[0] & 0x0f;
370 u8 piv = desc[1] & 0x80;
371 u8 assoc = (desc[1] & 0x30) >> 4;
372 u8 type = desc[1] & 0x0f;
373 u8 len = desc[3];
374
Roel Kluinb3f1f9a2009-02-17 16:59:24 +0100375 if (piv && code_set == 1 && assoc == 1
James Bottomley9927c682008-02-03 15:48:56 -0600376 && proto == SCSI_PROTOCOL_SAS && type == 3 && len == 8)
377 efd.addr = (u64)desc[4] << 56 |
378 (u64)desc[5] << 48 |
379 (u64)desc[6] << 40 |
380 (u64)desc[7] << 32 |
381 (u64)desc[8] << 24 |
382 (u64)desc[9] << 16 |
383 (u64)desc[10] << 8 |
384 (u64)desc[11];
385
386 desc += len + 4;
387 }
388 if (!efd.addr)
389 goto free;
390
391 efd.dev = &sdev->sdev_gendev;
392
393 enclosure_for_each_device(ses_enclosure_find_by_addr, &efd);
394 free:
395 kfree(buf);
396}
397
398#define INIT_ALLOC_SIZE 32
399
Tony Jonesee959b02008-02-22 00:13:36 +0100400static int ses_intf_add(struct device *cdev,
James Bottomley9927c682008-02-03 15:48:56 -0600401 struct class_interface *intf)
402{
Tony Jonesee959b02008-02-22 00:13:36 +0100403 struct scsi_device *sdev = to_scsi_device(cdev->parent);
James Bottomley9927c682008-02-03 15:48:56 -0600404 struct scsi_device *tmp_sdev;
Yinghai Lu691b4772008-02-13 16:25:16 -0800405 unsigned char *buf = NULL, *hdr_buf, *type_ptr, *desc_ptr = NULL,
406 *addl_desc_ptr = NULL;
James Bottomley9927c682008-02-03 15:48:56 -0600407 struct ses_device *ses_dev;
408 u32 result;
Yinghai Lu691b4772008-02-13 16:25:16 -0800409 int i, j, types, len, page7_len = 0, components = 0;
James Bottomley9927c682008-02-03 15:48:56 -0600410 int err = -ENOMEM;
411 struct enclosure_device *edev;
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800412 struct ses_component *scomp = NULL;
James Bottomley9927c682008-02-03 15:48:56 -0600413
414 if (!scsi_device_enclosure(sdev)) {
415 /* not an enclosure, but might be in one */
James Bottomley163f52b2009-08-01 00:39:36 +0000416 struct enclosure_device *prev = NULL;
417
418 while ((edev = enclosure_find(&sdev->host->shost_gendev, prev)) != NULL) {
James Bottomley9927c682008-02-03 15:48:56 -0600419 ses_match_to_enclosure(edev, sdev);
James Bottomley163f52b2009-08-01 00:39:36 +0000420 prev = edev;
James Bottomley9927c682008-02-03 15:48:56 -0600421 }
422 return -ENODEV;
423 }
424
425 /* TYPE_ENCLOSURE prints a message in probe */
426 if (sdev->type != TYPE_ENCLOSURE)
427 sdev_printk(KERN_NOTICE, sdev, "Embedded Enclosure Device\n");
428
429 ses_dev = kzalloc(sizeof(*ses_dev), GFP_KERNEL);
430 hdr_buf = kzalloc(INIT_ALLOC_SIZE, GFP_KERNEL);
431 if (!hdr_buf || !ses_dev)
432 goto err_init_free;
433
434 result = ses_recv_diag(sdev, 1, hdr_buf, INIT_ALLOC_SIZE);
435 if (result)
436 goto recv_failed;
437
438 if (hdr_buf[1] != 0) {
439 /* FIXME: need subenclosure support; I've just never
440 * seen a device with subenclosures and it makes the
441 * traversal routines more complex */
442 sdev_printk(KERN_ERR, sdev,
443 "FIXME driver has no support for subenclosures (%d)\n",
Yinghai Lu691b4772008-02-13 16:25:16 -0800444 hdr_buf[1]);
James Bottomley9927c682008-02-03 15:48:56 -0600445 goto err_free;
446 }
447
448 len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
449 buf = kzalloc(len, GFP_KERNEL);
450 if (!buf)
451 goto err_free;
452
James Bottomley9927c682008-02-03 15:48:56 -0600453 result = ses_recv_diag(sdev, 1, buf, len);
454 if (result)
455 goto recv_failed;
456
457 types = buf[10];
James Bottomley9927c682008-02-03 15:48:56 -0600458
Yinghai Lu691b4772008-02-13 16:25:16 -0800459 type_ptr = buf + 12 + buf[11];
James Bottomley9927c682008-02-03 15:48:56 -0600460
461 for (i = 0; i < types; i++, type_ptr += 4) {
462 if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
463 type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE)
464 components += type_ptr[1];
465 }
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800466 ses_dev->page1 = buf;
467 ses_dev->page1_len = len;
468 buf = NULL;
James Bottomley9927c682008-02-03 15:48:56 -0600469
470 result = ses_recv_diag(sdev, 2, hdr_buf, INIT_ALLOC_SIZE);
471 if (result)
472 goto recv_failed;
473
474 len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
475 buf = kzalloc(len, GFP_KERNEL);
476 if (!buf)
477 goto err_free;
478
479 /* make sure getting page 2 actually works */
480 result = ses_recv_diag(sdev, 2, buf, len);
481 if (result)
482 goto recv_failed;
483 ses_dev->page2 = buf;
484 ses_dev->page2_len = len;
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800485 buf = NULL;
James Bottomley9927c682008-02-03 15:48:56 -0600486
487 /* The additional information page --- allows us
488 * to match up the devices */
489 result = ses_recv_diag(sdev, 10, hdr_buf, INIT_ALLOC_SIZE);
Yinghai Lu691b4772008-02-13 16:25:16 -0800490 if (!result) {
James Bottomley9927c682008-02-03 15:48:56 -0600491
Yinghai Lu691b4772008-02-13 16:25:16 -0800492 len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
493 buf = kzalloc(len, GFP_KERNEL);
494 if (!buf)
495 goto err_free;
James Bottomley9927c682008-02-03 15:48:56 -0600496
Yinghai Lu691b4772008-02-13 16:25:16 -0800497 result = ses_recv_diag(sdev, 10, buf, len);
498 if (result)
499 goto recv_failed;
500 ses_dev->page10 = buf;
501 ses_dev->page10_len = len;
502 buf = NULL;
503 }
James Bottomley9927c682008-02-03 15:48:56 -0600504
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800505 scomp = kzalloc(sizeof(struct ses_component) * components, GFP_KERNEL);
James Bottomley9927c682008-02-03 15:48:56 -0600506 if (!scomp)
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800507 goto err_free;
James Bottomley9927c682008-02-03 15:48:56 -0600508
Kay Sievers71610f52008-12-03 22:41:36 +0100509 edev = enclosure_register(cdev->parent, dev_name(&sdev->sdev_gendev),
James Bottomley9927c682008-02-03 15:48:56 -0600510 components, &ses_enclosure_callbacks);
511 if (IS_ERR(edev)) {
512 err = PTR_ERR(edev);
513 goto err_free;
514 }
515
516 edev->scratch = ses_dev;
517 for (i = 0; i < components; i++)
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800518 edev->component[i].scratch = scomp + i;
James Bottomley9927c682008-02-03 15:48:56 -0600519
520 /* Page 7 for the descriptors is optional */
James Bottomley9927c682008-02-03 15:48:56 -0600521 result = ses_recv_diag(sdev, 7, hdr_buf, INIT_ALLOC_SIZE);
522 if (result)
523 goto simple_populate;
524
Yinghai Lu691b4772008-02-13 16:25:16 -0800525 page7_len = len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
James Bottomley9927c682008-02-03 15:48:56 -0600526 /* add 1 for trailing '\0' we'll use */
527 buf = kzalloc(len + 1, GFP_KERNEL);
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800528 if (!buf)
529 goto simple_populate;
James Bottomley9927c682008-02-03 15:48:56 -0600530 result = ses_recv_diag(sdev, 7, buf, len);
531 if (result) {
532 simple_populate:
533 kfree(buf);
534 buf = NULL;
535 desc_ptr = NULL;
536 addl_desc_ptr = NULL;
537 } else {
538 desc_ptr = buf + 8;
539 len = (desc_ptr[2] << 8) + desc_ptr[3];
540 /* skip past overall descriptor */
541 desc_ptr += len + 4;
Yinghai Lu691b4772008-02-13 16:25:16 -0800542 if (ses_dev->page10)
543 addl_desc_ptr = ses_dev->page10 + 8;
James Bottomley9927c682008-02-03 15:48:56 -0600544 }
545 type_ptr = ses_dev->page1 + 12 + ses_dev->page1[11];
546 components = 0;
547 for (i = 0; i < types; i++, type_ptr += 4) {
548 for (j = 0; j < type_ptr[1]; j++) {
549 char *name = NULL;
550 struct enclosure_component *ecomp;
551
552 if (desc_ptr) {
Yinghai Lu691b4772008-02-13 16:25:16 -0800553 if (desc_ptr >= buf + page7_len) {
554 desc_ptr = NULL;
555 } else {
556 len = (desc_ptr[2] << 8) + desc_ptr[3];
557 desc_ptr += 4;
558 /* Add trailing zero - pushes into
559 * reserved space */
560 desc_ptr[len] = '\0';
561 name = desc_ptr;
562 }
James Bottomley9927c682008-02-03 15:48:56 -0600563 }
Yinghai Lu691b4772008-02-13 16:25:16 -0800564 if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
565 type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE) {
566
567 ecomp = enclosure_component_register(edev,
James Bottomley9927c682008-02-03 15:48:56 -0600568 components++,
569 type_ptr[0],
570 name);
Yinghai Lu691b4772008-02-13 16:25:16 -0800571
572 if (!IS_ERR(ecomp) && addl_desc_ptr)
James Bottomley9927c682008-02-03 15:48:56 -0600573 ses_process_descriptor(ecomp,
574 addl_desc_ptr);
James Bottomley9927c682008-02-03 15:48:56 -0600575 }
Yinghai Lu691b4772008-02-13 16:25:16 -0800576 if (desc_ptr)
577 desc_ptr += len;
578
579 if (addl_desc_ptr)
580 addl_desc_ptr += addl_desc_ptr[1] + 2;
581
James Bottomley9927c682008-02-03 15:48:56 -0600582 }
583 }
584 kfree(buf);
585 kfree(hdr_buf);
586
587 /* see if there are any devices matching before
588 * we found the enclosure */
589 shost_for_each_device(tmp_sdev, sdev->host) {
590 if (tmp_sdev->lun != 0 || scsi_device_enclosure(tmp_sdev))
591 continue;
592 ses_match_to_enclosure(edev, tmp_sdev);
593 }
594
595 return 0;
596
597 recv_failed:
598 sdev_printk(KERN_ERR, sdev, "Failed to get diagnostic page 0x%x\n",
599 result);
600 err = -ENODEV;
601 err_free:
602 kfree(buf);
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800603 kfree(scomp);
James Bottomley9927c682008-02-03 15:48:56 -0600604 kfree(ses_dev->page10);
605 kfree(ses_dev->page2);
606 kfree(ses_dev->page1);
607 err_init_free:
608 kfree(ses_dev);
609 kfree(hdr_buf);
610 sdev_printk(KERN_ERR, sdev, "Failed to bind enclosure %d\n", err);
611 return err;
612}
613
614static int ses_remove(struct device *dev)
615{
616 return 0;
617}
618
James Bottomley43d8eb92009-08-01 00:41:22 +0000619static void ses_intf_remove_component(struct scsi_device *sdev)
James Bottomley9927c682008-02-03 15:48:56 -0600620{
James Bottomley43d8eb92009-08-01 00:41:22 +0000621 struct enclosure_device *edev, *prev = NULL;
622
623 while ((edev = enclosure_find(&sdev->host->shost_gendev, prev)) != NULL) {
624 prev = edev;
625 if (!enclosure_remove_device(edev, &sdev->sdev_gendev))
626 break;
627 }
628 if (edev)
629 put_device(&edev->edev);
630}
631
632static void ses_intf_remove_enclosure(struct scsi_device *sdev)
633{
James Bottomley9927c682008-02-03 15:48:56 -0600634 struct enclosure_device *edev;
635 struct ses_device *ses_dev;
636
James Bottomley163f52b2009-08-01 00:39:36 +0000637 /* exact match to this enclosure */
James Bottomley43d8eb92009-08-01 00:41:22 +0000638 edev = enclosure_find(&sdev->sdev_gendev, NULL);
James Bottomley9927c682008-02-03 15:48:56 -0600639 if (!edev)
640 return;
641
642 ses_dev = edev->scratch;
643 edev->scratch = NULL;
644
Yinghai Lu7c46c20a2008-02-10 23:25:25 -0800645 kfree(ses_dev->page10);
James Bottomley9927c682008-02-03 15:48:56 -0600646 kfree(ses_dev->page1);
647 kfree(ses_dev->page2);
648 kfree(ses_dev);
649
650 kfree(edev->component[0].scratch);
651
Tony Jonesee959b02008-02-22 00:13:36 +0100652 put_device(&edev->edev);
James Bottomley9927c682008-02-03 15:48:56 -0600653 enclosure_unregister(edev);
654}
655
James Bottomley43d8eb92009-08-01 00:41:22 +0000656static void ses_intf_remove(struct device *cdev,
657 struct class_interface *intf)
658{
659 struct scsi_device *sdev = to_scsi_device(cdev->parent);
660
661 if (!scsi_device_enclosure(sdev))
662 ses_intf_remove_component(sdev);
663 else
664 ses_intf_remove_enclosure(sdev);
665}
666
James Bottomley9927c682008-02-03 15:48:56 -0600667static struct class_interface ses_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100668 .add_dev = ses_intf_add,
669 .remove_dev = ses_intf_remove,
James Bottomley9927c682008-02-03 15:48:56 -0600670};
671
672static struct scsi_driver ses_template = {
673 .owner = THIS_MODULE,
674 .gendrv = {
675 .name = "ses",
676 .probe = ses_probe,
677 .remove = ses_remove,
678 },
679};
680
681static int __init ses_init(void)
682{
683 int err;
684
685 err = scsi_register_interface(&ses_interface);
686 if (err)
687 return err;
688
689 err = scsi_register_driver(&ses_template.gendrv);
690 if (err)
691 goto out_unreg;
692
693 return 0;
694
695 out_unreg:
696 scsi_unregister_interface(&ses_interface);
697 return err;
698}
699
700static void __exit ses_exit(void)
701{
702 scsi_unregister_driver(&ses_template.gendrv);
703 scsi_unregister_interface(&ses_interface);
704}
705
706module_init(ses_init);
707module_exit(ses_exit);
708
709MODULE_ALIAS_SCSI_DEVICE(TYPE_ENCLOSURE);
710
711MODULE_AUTHOR("James Bottomley");
712MODULE_DESCRIPTION("SCSI Enclosure Services (ses) driver");
713MODULE_LICENSE("GPL v2");