aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/isci/init.c
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2011-07-03 01:56:22 -0400
committerDan Williams <dan.j.williams@intel.com>2011-07-03 01:56:22 -0400
commit6f231dda68080759f1aed3769896e94c73099f0f (patch)
tree45b6ce02fa40e0e9c35526ac6c45950138387516 /drivers/scsi/isci/init.c
parent59c5f46fbe01a00eedf54a23789634438bb80603 (diff)
isci: Intel(R) C600 Series Chipset Storage Control Unit Driver
Support for the up to 2x4-port 6Gb/s SAS controllers embedded in the chipset. This is a snapshot of the first publicly available version of the driver, commit 4c1db2d0 in the 'historical' branch. git://git.kernel.org/pub/scm/linux/kernel/git/djbw/isci.git historical Signed-off-by: Maciej Trela <maciej.trela@intel.com> Signed-off-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Edmund Nadolski <edmund.nadolski@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/init.c')
-rw-r--r--drivers/scsi/isci/init.c613
1 files changed, 613 insertions, 0 deletions
diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c
new file mode 100644
index 000000000000..07b072f3004d
--- /dev/null
+++ b/drivers/scsi/isci/init.c
@@ -0,0 +1,613 @@
1/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27 * All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 *
33 * * Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * * Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in
37 * the documentation and/or other materials provided with the
38 * distribution.
39 * * Neither the name of Intel Corporation nor the names of its
40 * contributors may be used to endorse or promote products derived
41 * from this software without specific prior written permission.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 */
55
56#include <linux/kernel.h>
57#include <linux/init.h>
58#include <linux/module.h>
59#include <asm/string.h>
60#include "isci.h"
61#include "task.h"
62#include "sci_controller_constants.h"
63#include "scic_remote_device.h"
64#include "sci_environment.h"
65
66static struct scsi_transport_template *isci_transport_template;
67struct kmem_cache *isci_kmem_cache;
68
69static DEFINE_PCI_DEVICE_TABLE(isci_id_table) = {
70 { PCI_VDEVICE(INTEL, 0x1D61),},
71 { PCI_VDEVICE(INTEL, 0x1D63),},
72 { PCI_VDEVICE(INTEL, 0x1D65),},
73 { PCI_VDEVICE(INTEL, 0x1D67),},
74 { PCI_VDEVICE(INTEL, 0x1D69),},
75 { PCI_VDEVICE(INTEL, 0x1D6B),},
76 { PCI_VDEVICE(INTEL, 0x1D60),},
77 { PCI_VDEVICE(INTEL, 0x1D62),},
78 { PCI_VDEVICE(INTEL, 0x1D64),},
79 { PCI_VDEVICE(INTEL, 0x1D66),},
80 { PCI_VDEVICE(INTEL, 0x1D68),},
81 { PCI_VDEVICE(INTEL, 0x1D6A),},
82 {}
83};
84
85static int __devinit isci_pci_probe(
86 struct pci_dev *pdev,
87 const struct pci_device_id *device_id_p);
88
89static void __devexit isci_pci_remove(struct pci_dev *pdev);
90
91MODULE_DEVICE_TABLE(pci, isci_id_table);
92
93static struct pci_driver isci_pci_driver = {
94 .name = DRV_NAME,
95 .id_table = isci_id_table,
96 .probe = isci_pci_probe,
97 .remove = __devexit_p(isci_pci_remove),
98};
99
100/* linux isci specific settings */
101int loglevel = 3;
102module_param(loglevel, int, S_IRUGO | S_IWUSR);
103
104#if defined(CONFIG_PBG_HBA_A0)
105int isci_si_rev = ISCI_SI_REVA0;
106#elif defined(CONFIG_PBG_HBA_A2)
107int isci_si_rev = ISCI_SI_REVA2;
108#else
109int isci_si_rev = ISCI_SI_REVB0;
110#endif
111module_param(isci_si_rev, int, S_IRUGO | S_IWUSR);
112MODULE_PARM_DESC(isci_si_rev, "override default si rev (0: A0 1: A2 2: B0)");
113
114static struct scsi_host_template isci_sht = {
115
116 .module = THIS_MODULE,
117 .name = DRV_NAME,
118 .queuecommand = sas_queuecommand,
119 .target_alloc = sas_target_alloc,
120 .slave_configure = sas_slave_configure,
121 .slave_destroy = sas_slave_destroy,
122 .scan_finished = isci_host_scan_finished,
123 .scan_start = isci_host_scan_start,
124 .change_queue_depth = sas_change_queue_depth,
125 .change_queue_type = sas_change_queue_type,
126 .bios_param = sas_bios_param,
127 .can_queue = ISCI_CAN_QUEUE_VAL,
128 .cmd_per_lun = 1,
129 .this_id = -1,
130 .sg_tablesize = SG_ALL,
131 .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
132 .use_clustering = ENABLE_CLUSTERING,
133 .eh_device_reset_handler = sas_eh_device_reset_handler,
134 .eh_bus_reset_handler = isci_bus_reset_handler,
135 .slave_alloc = sas_slave_alloc,
136 .target_destroy = sas_target_destroy,
137 .ioctl = sas_ioctl,
138};
139
140static struct sas_domain_function_template isci_transport_ops = {
141
142 /* The class calls these to notify the LLDD of an event. */
143 .lldd_port_formed = isci_port_formed,
144 .lldd_port_deformed = isci_port_deformed,
145
146 /* The class calls these when a device is found or gone. */
147 .lldd_dev_found = isci_remote_device_found,
148 .lldd_dev_gone = isci_remote_device_gone,
149
150 .lldd_execute_task = isci_task_execute_task,
151 /* Task Management Functions. Must be called from process context. */
152 .lldd_abort_task = isci_task_abort_task,
153 .lldd_abort_task_set = isci_task_abort_task_set,
154 .lldd_clear_aca = isci_task_clear_aca,
155 .lldd_clear_task_set = isci_task_clear_task_set,
156 .lldd_I_T_nexus_reset = isci_task_I_T_nexus_reset,
157 .lldd_lu_reset = isci_task_lu_reset,
158 .lldd_query_task = isci_task_query_task,
159
160 /* Port and Adapter management */
161 .lldd_clear_nexus_port = isci_task_clear_nexus_port,
162 .lldd_clear_nexus_ha = isci_task_clear_nexus_ha,
163
164 /* Phy management */
165 .lldd_control_phy = isci_phy_control,
166};
167
168
169/******************************************************************************
170* P R O T E C T E D M E T H O D S
171******************************************************************************/
172
173
174
175/**
176 * isci_register_sas_ha() - This method initializes various lldd
177 * specific members of the sas_ha struct and calls the libsas
178 * sas_register_ha() function.
179 * @isci_host: This parameter specifies the lldd specific wrapper for the
180 * libsas sas_ha struct.
181 *
182 * This method returns an error code indicating sucess or failure. The user
183 * should check for possible memory allocation error return otherwise, a zero
184 * indicates success.
185 */
186static int isci_register_sas_ha(struct isci_host *isci_host)
187{
188 int i;
189 struct sas_ha_struct *sas_ha = &(isci_host->sas_ha);
190 struct asd_sas_phy **sas_phys;
191 struct asd_sas_port **sas_ports;
192
193 sas_phys = devm_kzalloc(&isci_host->pdev->dev,
194 SCI_MAX_PHYS * sizeof(void *),
195 GFP_KERNEL);
196 if (!sas_phys)
197 return -ENOMEM;
198
199 sas_ports = devm_kzalloc(&isci_host->pdev->dev,
200 SCI_MAX_PORTS * sizeof(void *),
201 GFP_KERNEL);
202 if (!sas_ports)
203 return -ENOMEM;
204
205 /*----------------- Libsas Initialization Stuff----------------------
206 * Set various fields in the sas_ha struct:
207 */
208
209 sas_ha->sas_ha_name = DRV_NAME;
210 sas_ha->lldd_module = THIS_MODULE;
211 sas_ha->sas_addr = &(isci_host->sas_addr[0]);
212
213 /* set the array of phy and port structs. */
214 for (i = 0; i < SCI_MAX_PHYS; i++) {
215 sas_phys[i] = &(isci_host->phys[i].sas_phy);
216 sas_ports[i] = &(isci_host->sas_ports[i]);
217 }
218
219 sas_ha->sas_phy = sas_phys;
220 sas_ha->sas_port = sas_ports;
221 sas_ha->num_phys = SCI_MAX_PHYS;
222
223 sas_ha->lldd_queue_size = ISCI_CAN_QUEUE_VAL;
224 sas_ha->lldd_max_execute_num = 1;
225 sas_ha->strict_wide_ports = 1;
226
227 sas_register_ha(sas_ha);
228
229 return 0;
230}
231
232static void isci_unregister_sas_ha(struct isci_host *isci_host)
233{
234 if (!isci_host)
235 return;
236
237 sas_unregister_ha(&(isci_host->sas_ha));
238
239 sas_remove_host(isci_host->shost);
240 scsi_remove_host(isci_host->shost);
241 scsi_host_put(isci_host->shost);
242}
243
244static int __devinit isci_pci_init(struct pci_dev *pdev)
245{
246 int err, bar_num, bar_mask;
247 void __iomem * const *iomap;
248
249 err = pcim_enable_device(pdev);
250 if (err) {
251 dev_err(&pdev->dev,
252 "failed enable PCI device %s!\n",
253 pci_name(pdev));
254 return err;
255 }
256
257 for (bar_num = 0; bar_num < SCI_PCI_BAR_COUNT; bar_num++)
258 bar_mask |= 1 << (bar_num * 2);
259
260 err = pcim_iomap_regions(pdev, bar_mask, DRV_NAME);
261 if (err)
262 return err;
263
264 iomap = pcim_iomap_table(pdev);
265 if (!iomap)
266 return -ENOMEM;
267
268 pci_set_master(pdev);
269
270 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
271 if (err) {
272 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
273 if (err)
274 return err;
275 }
276
277 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
278 if (err) {
279 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
280 if (err)
281 return err;
282 }
283
284 return 0;
285}
286
287static struct isci_host *isci_host_by_id(struct pci_dev *pdev, int id)
288{
289 struct isci_host *h;
290
291 for_each_isci_host(h, pdev)
292 if (h->id == id)
293 return h;
294 return NULL;
295}
296
297static int num_controllers(struct pci_dev *pdev)
298{
299 /* bar size alone can tell us if we are running with a dual controller
300 * part, no need to trust revision ids that might be under broken firmware
301 * control
302 */
303 resource_size_t scu_bar_size = pci_resource_len(pdev, SCI_SCU_BAR*2);
304 resource_size_t smu_bar_size = pci_resource_len(pdev, SCI_SMU_BAR*2);
305
306 if (scu_bar_size >= SCI_SCU_BAR_SIZE*SCI_MAX_CONTROLLERS &&
307 smu_bar_size >= SCI_SMU_BAR_SIZE*SCI_MAX_CONTROLLERS)
308 return SCI_MAX_CONTROLLERS;
309 else
310 return 1;
311}
312
313static int isci_setup_interrupts(struct pci_dev *pdev)
314{
315 int err, i, num_msix;
316 struct isci_pci_info *pci_info = to_pci_info(pdev);
317
318 /*
319 * Determine the number of vectors associated with this
320 * PCI function.
321 */
322 num_msix = num_controllers(pdev) * SCI_NUM_MSI_X_INT;
323
324 for (i = 0; i < num_msix; i++)
325 pci_info->msix_entries[i].entry = i;
326
327 err = pci_enable_msix(pdev, pci_info->msix_entries, num_msix);
328 if (err)
329 goto intx;
330
331 for (i = 0; i < num_msix; i++) {
332 int id = i / SCI_NUM_MSI_X_INT;
333 struct msix_entry *msix = &pci_info->msix_entries[i];
334 struct isci_host *isci_host = isci_host_by_id(pdev, id);
335
336 BUG_ON(!isci_host);
337
338 /* @todo: need to handle error case. */
339 err = devm_request_irq(&pdev->dev, msix->vector, isci_isr, 0,
340 DRV_NAME"-msix", isci_host);
341 if (!err)
342 continue;
343
344 dev_info(&pdev->dev, "msix setup failed falling back to intx\n");
345 while (i--) {
346 id = i / SCI_NUM_MSI_X_INT;
347 isci_host = isci_host_by_id(pdev, id);
348 msix = &pci_info->msix_entries[i];
349 devm_free_irq(&pdev->dev, msix->vector, isci_host);
350 }
351 pci_disable_msix(pdev);
352 goto intx;
353 }
354
355 return 0;
356
357 intx:
358 err = devm_request_irq(&pdev->dev, pdev->irq, isci_legacy_isr,
359 IRQF_SHARED, DRV_NAME"-intx", pdev);
360
361 return err;
362}
363
364/**
365 * isci_parse_oem_parameters() - This method will take OEM parameters
366 * from the module init parameters and copy them to oem_params. This will
367 * only copy values that are not set to the module parameter default values
368 * @oem_parameters: This parameter specifies the controller default OEM
369 * parameters. It is expected that this has been initialized to the default
370 * parameters for the controller
371 *
372 *
373 */
374enum sci_status isci_parse_oem_parameters(union scic_oem_parameters *oem_params,
375 int scu_index,
376 struct isci_firmware *fw)
377{
378 int i;
379
380 /* check for valid inputs */
381 if (!(scu_index >= 0
382 && scu_index < SCI_MAX_CONTROLLERS
383 && oem_params != NULL)) {
384 return SCI_FAILURE;
385 }
386
387 for (i = 0; i < SCI_MAX_PHYS; i++) {
388 int array_idx = i + (SCI_MAX_PHYS * scu_index);
389 u64 sas_addr = fw->sas_addrs[array_idx];
390
391 if (sas_addr != 0) {
392 oem_params->sds1.phys[i].sas_address.low =
393 (u32)(sas_addr & 0xffffffff);
394 oem_params->sds1.phys[i].sas_address.high =
395 (u32)((sas_addr >> 32) & 0xffffffff);
396 }
397 }
398
399 for (i = 0; i < SCI_MAX_PORTS; i++) {
400 int array_idx = i + (SCI_MAX_PORTS * scu_index);
401 u32 pmask = fw->phy_masks[array_idx];
402
403 oem_params->sds1.ports[i].phy_mask = pmask;
404 }
405
406 return SCI_SUCCESS;
407}
408
409/**
410 * isci_parse_user_parameters() - This method will take user parameters
411 * from the module init parameters and copy them to user_params. This will
412 * only copy values that are not set to the module parameter default values
413 * @user_parameters: This parameter specifies the controller default user
414 * parameters. It is expected that this has been initialized to the default
415 * parameters for the controller
416 *
417 *
418 */
419enum sci_status isci_parse_user_parameters(
420 union scic_user_parameters *user_params,
421 int scu_index,
422 struct isci_firmware *fw)
423{
424 int i;
425
426 if (!(scu_index >= 0
427 && scu_index < SCI_MAX_CONTROLLERS
428 && user_params != NULL)) {
429 return SCI_FAILURE;
430 }
431
432 for (i = 0; i < SCI_MAX_PORTS; i++) {
433 int array_idx = i + (SCI_MAX_PORTS * scu_index);
434 u32 gen = fw->phy_gens[array_idx];
435
436 user_params->sds1.phys[i].max_speed_generation = gen;
437
438 }
439
440 return SCI_SUCCESS;
441}
442
443static struct isci_host *isci_host_alloc(struct pci_dev *pdev, int id)
444{
445 struct isci_host *isci_host;
446 struct Scsi_Host *shost;
447 int err;
448
449 isci_host = devm_kzalloc(&pdev->dev, sizeof(*isci_host), GFP_KERNEL);
450 if (!isci_host)
451 return NULL;
452
453 isci_host->pdev = pdev;
454 isci_host->id = id;
455
456 shost = scsi_host_alloc(&isci_sht, sizeof(void *));
457 if (!shost)
458 return NULL;
459 isci_host->shost = shost;
460
461 err = isci_host_init(isci_host);
462 if (err)
463 goto err_shost;
464
465 SHOST_TO_SAS_HA(shost) = &isci_host->sas_ha;
466 isci_host->sas_ha.core.shost = shost;
467 shost->transportt = isci_transport_template;
468
469 shost->max_id = ~0;
470 shost->max_lun = ~0;
471 shost->max_cmd_len = MAX_COMMAND_SIZE;
472
473 err = scsi_add_host(shost, &pdev->dev);
474 if (err)
475 goto err_shost;
476
477 err = isci_register_sas_ha(isci_host);
478 if (err)
479 goto err_shost_remove;
480
481 return isci_host;
482
483 err_shost_remove:
484 scsi_remove_host(shost);
485 err_shost:
486 scsi_host_put(shost);
487
488 return NULL;
489}
490
491static void check_si_rev(struct pci_dev *pdev)
492{
493 if (num_controllers(pdev) > 1)
494 isci_si_rev = ISCI_SI_REVB0;
495 else {
496 switch (pdev->revision) {
497 case 0:
498 case 1:
499 /* if the id is ambiguous don't update isci_si_rev */
500 break;
501 case 3:
502 isci_si_rev = ISCI_SI_REVA2;
503 break;
504 default:
505 case 4:
506 isci_si_rev = ISCI_SI_REVB0;
507 break;
508 }
509 }
510
511 dev_info(&pdev->dev, "driver configured for %s silicon (rev: %d)\n",
512 isci_si_rev == ISCI_SI_REVA0 ? "A0" :
513 isci_si_rev == ISCI_SI_REVA2 ? "A2" : "B0", pdev->revision);
514
515}
516
517static int __devinit isci_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
518{
519 struct isci_pci_info *pci_info;
520 int err, i;
521 struct isci_host *isci_host;
522
523 check_si_rev(pdev);
524
525 pci_info = devm_kzalloc(&pdev->dev, sizeof(*pci_info), GFP_KERNEL);
526 if (!pci_info)
527 return -ENOMEM;
528 pci_set_drvdata(pdev, pci_info);
529
530 err = isci_pci_init(pdev);
531 if (err)
532 return err;
533
534 for (i = 0; i < num_controllers(pdev); i++) {
535 struct isci_host *h = isci_host_alloc(pdev, i);
536
537 if (!h) {
538 err = -ENOMEM;
539 goto err_host_alloc;
540 }
541
542 h->next = pci_info->hosts;
543 pci_info->hosts = h;
544 }
545
546 err = isci_setup_interrupts(pdev);
547 if (err)
548 goto err_host_alloc;
549
550 for_each_isci_host(isci_host, pdev)
551 scsi_scan_host(isci_host->shost);
552
553 return 0;
554
555 err_host_alloc:
556 for_each_isci_host(isci_host, pdev)
557 isci_unregister_sas_ha(isci_host);
558 return err;
559}
560
561static void __devexit isci_pci_remove(struct pci_dev *pdev)
562{
563 struct isci_host *isci_host;
564
565 for_each_isci_host(isci_host, pdev) {
566 isci_unregister_sas_ha(isci_host);
567 isci_host_deinit(isci_host);
568 scic_controller_disable_interrupts(isci_host->core_controller);
569 }
570}
571
572static __init int isci_init(void)
573{
574 int err = -ENOMEM;
575
576 pr_info("%s: Intel(R) C600 SAS Controller Driver\n", DRV_NAME);
577
578 isci_kmem_cache = kmem_cache_create(DRV_NAME,
579 sizeof(struct isci_remote_device) +
580 scic_remote_device_get_object_size(),
581 0, 0, NULL);
582 if (!isci_kmem_cache)
583 return err;
584
585 isci_transport_template = sas_domain_attach_transport(&isci_transport_ops);
586 if (!isci_transport_template)
587 goto err_kmem;
588
589 err = pci_register_driver(&isci_pci_driver);
590 if (err)
591 goto err_sas;
592
593 return 0;
594
595 err_sas:
596 sas_release_transport(isci_transport_template);
597 err_kmem:
598 kmem_cache_destroy(isci_kmem_cache);
599
600 return err;
601}
602
603static __exit void isci_exit(void)
604{
605 pci_unregister_driver(&isci_pci_driver);
606 sas_release_transport(isci_transport_template);
607 kmem_cache_destroy(isci_kmem_cache);
608}
609
610MODULE_LICENSE("Dual BSD/GPL");
611MODULE_FIRMWARE(ISCI_FW_NAME);
612module_init(isci_init);
613module_exit(isci_exit);