init.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  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. #include <linux/kernel.h>
  56. #include <linux/init.h>
  57. #include <linux/module.h>
  58. #include <linux/firmware.h>
  59. #include <linux/efi.h>
  60. #include <asm/string.h>
  61. #include <scsi/scsi_host.h>
  62. #include "isci.h"
  63. #include "task.h"
  64. #include "probe_roms.h"
  65. #define MAJ 1
  66. #define MIN 0
  67. #define BUILD 0
  68. #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
  69. __stringify(BUILD)
  70. MODULE_VERSION(DRV_VERSION);
  71. static struct scsi_transport_template *isci_transport_template;
  72. static DEFINE_PCI_DEVICE_TABLE(isci_id_table) = {
  73. { PCI_VDEVICE(INTEL, 0x1D61),},
  74. { PCI_VDEVICE(INTEL, 0x1D63),},
  75. { PCI_VDEVICE(INTEL, 0x1D65),},
  76. { PCI_VDEVICE(INTEL, 0x1D67),},
  77. { PCI_VDEVICE(INTEL, 0x1D69),},
  78. { PCI_VDEVICE(INTEL, 0x1D6B),},
  79. { PCI_VDEVICE(INTEL, 0x1D60),},
  80. { PCI_VDEVICE(INTEL, 0x1D62),},
  81. { PCI_VDEVICE(INTEL, 0x1D64),},
  82. { PCI_VDEVICE(INTEL, 0x1D66),},
  83. { PCI_VDEVICE(INTEL, 0x1D68),},
  84. { PCI_VDEVICE(INTEL, 0x1D6A),},
  85. {}
  86. };
  87. MODULE_DEVICE_TABLE(pci, isci_id_table);
  88. /* linux isci specific settings */
  89. unsigned char no_outbound_task_to = 20;
  90. module_param(no_outbound_task_to, byte, 0);
  91. MODULE_PARM_DESC(no_outbound_task_to, "No Outbound Task Timeout (1us incr)");
  92. u16 ssp_max_occ_to = 20;
  93. module_param(ssp_max_occ_to, ushort, 0);
  94. MODULE_PARM_DESC(ssp_max_occ_to, "SSP Max occupancy timeout (100us incr)");
  95. u16 stp_max_occ_to = 5;
  96. module_param(stp_max_occ_to, ushort, 0);
  97. MODULE_PARM_DESC(stp_max_occ_to, "STP Max occupancy timeout (100us incr)");
  98. u16 ssp_inactive_to = 5;
  99. module_param(ssp_inactive_to, ushort, 0);
  100. MODULE_PARM_DESC(ssp_inactive_to, "SSP inactivity timeout (100us incr)");
  101. u16 stp_inactive_to = 5;
  102. module_param(stp_inactive_to, ushort, 0);
  103. MODULE_PARM_DESC(stp_inactive_to, "STP inactivity timeout (100us incr)");
  104. unsigned char phy_gen = 3;
  105. module_param(phy_gen, byte, 0);
  106. MODULE_PARM_DESC(phy_gen, "PHY generation (1: 1.5Gbps 2: 3.0Gbps 3: 6.0Gbps)");
  107. unsigned char max_concurr_spinup;
  108. module_param(max_concurr_spinup, byte, 0);
  109. MODULE_PARM_DESC(max_concurr_spinup, "Max concurrent device spinup");
  110. static ssize_t isci_show_id(struct device *dev, struct device_attribute *attr, char *buf)
  111. {
  112. struct Scsi_Host *shost = container_of(dev, typeof(*shost), shost_dev);
  113. struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
  114. struct isci_host *ihost = container_of(sas_ha, typeof(*ihost), sas_ha);
  115. return snprintf(buf, PAGE_SIZE, "%d\n", ihost->id);
  116. }
  117. static DEVICE_ATTR(isci_id, S_IRUGO, isci_show_id, NULL);
  118. struct device_attribute *isci_host_attrs[] = {
  119. &dev_attr_isci_id,
  120. NULL
  121. };
  122. static struct scsi_host_template isci_sht = {
  123. .module = THIS_MODULE,
  124. .name = DRV_NAME,
  125. .proc_name = DRV_NAME,
  126. .queuecommand = sas_queuecommand,
  127. .target_alloc = sas_target_alloc,
  128. .slave_configure = sas_slave_configure,
  129. .slave_destroy = sas_slave_destroy,
  130. .scan_finished = isci_host_scan_finished,
  131. .scan_start = isci_host_scan_start,
  132. .change_queue_depth = sas_change_queue_depth,
  133. .change_queue_type = sas_change_queue_type,
  134. .bios_param = sas_bios_param,
  135. .can_queue = ISCI_CAN_QUEUE_VAL,
  136. .cmd_per_lun = 1,
  137. .this_id = -1,
  138. .sg_tablesize = SG_ALL,
  139. .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
  140. .use_clustering = ENABLE_CLUSTERING,
  141. .eh_device_reset_handler = sas_eh_device_reset_handler,
  142. .eh_bus_reset_handler = isci_bus_reset_handler,
  143. .slave_alloc = sas_slave_alloc,
  144. .target_destroy = sas_target_destroy,
  145. .ioctl = sas_ioctl,
  146. .shost_attrs = isci_host_attrs,
  147. };
  148. static struct sas_domain_function_template isci_transport_ops = {
  149. /* The class calls these to notify the LLDD of an event. */
  150. .lldd_port_formed = isci_port_formed,
  151. .lldd_port_deformed = isci_port_deformed,
  152. /* The class calls these when a device is found or gone. */
  153. .lldd_dev_found = isci_remote_device_found,
  154. .lldd_dev_gone = isci_remote_device_gone,
  155. .lldd_execute_task = isci_task_execute_task,
  156. /* Task Management Functions. Must be called from process context. */
  157. .lldd_abort_task = isci_task_abort_task,
  158. .lldd_abort_task_set = isci_task_abort_task_set,
  159. .lldd_clear_aca = isci_task_clear_aca,
  160. .lldd_clear_task_set = isci_task_clear_task_set,
  161. .lldd_I_T_nexus_reset = isci_task_I_T_nexus_reset,
  162. .lldd_lu_reset = isci_task_lu_reset,
  163. .lldd_query_task = isci_task_query_task,
  164. /* Port and Adapter management */
  165. .lldd_clear_nexus_port = isci_task_clear_nexus_port,
  166. .lldd_clear_nexus_ha = isci_task_clear_nexus_ha,
  167. /* Phy management */
  168. .lldd_control_phy = isci_phy_control,
  169. /* GPIO support */
  170. .lldd_write_gpio = isci_gpio_write,
  171. };
  172. /******************************************************************************
  173. * P R O T E C T E D M E T H O D S
  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. */
  186. static 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. sas_phys = devm_kzalloc(&isci_host->pdev->dev,
  193. SCI_MAX_PHYS * sizeof(void *),
  194. GFP_KERNEL);
  195. if (!sas_phys)
  196. return -ENOMEM;
  197. sas_ports = devm_kzalloc(&isci_host->pdev->dev,
  198. SCI_MAX_PORTS * sizeof(void *),
  199. GFP_KERNEL);
  200. if (!sas_ports)
  201. return -ENOMEM;
  202. /*----------------- Libsas Initialization Stuff----------------------
  203. * Set various fields in the sas_ha struct:
  204. */
  205. sas_ha->sas_ha_name = DRV_NAME;
  206. sas_ha->lldd_module = THIS_MODULE;
  207. sas_ha->sas_addr = &isci_host->phys[0].sas_addr[0];
  208. /* set the array of phy and port structs. */
  209. for (i = 0; i < SCI_MAX_PHYS; i++) {
  210. sas_phys[i] = &isci_host->phys[i].sas_phy;
  211. sas_ports[i] = &isci_host->ports[i].sas_port;
  212. }
  213. sas_ha->sas_phy = sas_phys;
  214. sas_ha->sas_port = sas_ports;
  215. sas_ha->num_phys = SCI_MAX_PHYS;
  216. sas_ha->lldd_queue_size = ISCI_CAN_QUEUE_VAL;
  217. sas_ha->lldd_max_execute_num = 1;
  218. sas_ha->strict_wide_ports = 1;
  219. sas_register_ha(sas_ha);
  220. return 0;
  221. }
  222. static void isci_unregister(struct isci_host *isci_host)
  223. {
  224. struct Scsi_Host *shost;
  225. if (!isci_host)
  226. return;
  227. shost = isci_host->shost;
  228. sas_unregister_ha(&isci_host->sas_ha);
  229. sas_remove_host(isci_host->shost);
  230. scsi_remove_host(isci_host->shost);
  231. scsi_host_put(isci_host->shost);
  232. }
  233. static int __devinit isci_pci_init(struct pci_dev *pdev)
  234. {
  235. int err, bar_num, bar_mask = 0;
  236. void __iomem * const *iomap;
  237. err = pcim_enable_device(pdev);
  238. if (err) {
  239. dev_err(&pdev->dev,
  240. "failed enable PCI device %s!\n",
  241. pci_name(pdev));
  242. return err;
  243. }
  244. for (bar_num = 0; bar_num < SCI_PCI_BAR_COUNT; bar_num++)
  245. bar_mask |= 1 << (bar_num * 2);
  246. err = pcim_iomap_regions(pdev, bar_mask, DRV_NAME);
  247. if (err)
  248. return err;
  249. iomap = pcim_iomap_table(pdev);
  250. if (!iomap)
  251. return -ENOMEM;
  252. pci_set_master(pdev);
  253. err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
  254. if (err) {
  255. err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  256. if (err)
  257. return err;
  258. }
  259. err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
  260. if (err) {
  261. err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  262. if (err)
  263. return err;
  264. }
  265. return 0;
  266. }
  267. static int num_controllers(struct pci_dev *pdev)
  268. {
  269. /* bar size alone can tell us if we are running with a dual controller
  270. * part, no need to trust revision ids that might be under broken firmware
  271. * control
  272. */
  273. resource_size_t scu_bar_size = pci_resource_len(pdev, SCI_SCU_BAR*2);
  274. resource_size_t smu_bar_size = pci_resource_len(pdev, SCI_SMU_BAR*2);
  275. if (scu_bar_size >= SCI_SCU_BAR_SIZE*SCI_MAX_CONTROLLERS &&
  276. smu_bar_size >= SCI_SMU_BAR_SIZE*SCI_MAX_CONTROLLERS)
  277. return SCI_MAX_CONTROLLERS;
  278. else
  279. return 1;
  280. }
  281. static int isci_setup_interrupts(struct pci_dev *pdev)
  282. {
  283. int err, i, num_msix;
  284. struct isci_host *ihost;
  285. struct isci_pci_info *pci_info = to_pci_info(pdev);
  286. /*
  287. * Determine the number of vectors associated with this
  288. * PCI function.
  289. */
  290. num_msix = num_controllers(pdev) * SCI_NUM_MSI_X_INT;
  291. for (i = 0; i < num_msix; i++)
  292. pci_info->msix_entries[i].entry = i;
  293. err = pci_enable_msix(pdev, pci_info->msix_entries, num_msix);
  294. if (err)
  295. goto intx;
  296. for (i = 0; i < num_msix; i++) {
  297. int id = i / SCI_NUM_MSI_X_INT;
  298. struct msix_entry *msix = &pci_info->msix_entries[i];
  299. irq_handler_t isr;
  300. ihost = pci_info->hosts[id];
  301. /* odd numbered vectors are error interrupts */
  302. if (i & 1)
  303. isr = isci_error_isr;
  304. else
  305. isr = isci_msix_isr;
  306. err = devm_request_irq(&pdev->dev, msix->vector, isr, 0,
  307. DRV_NAME"-msix", ihost);
  308. if (!err)
  309. continue;
  310. dev_info(&pdev->dev, "msix setup failed falling back to intx\n");
  311. while (i--) {
  312. id = i / SCI_NUM_MSI_X_INT;
  313. ihost = pci_info->hosts[id];
  314. msix = &pci_info->msix_entries[i];
  315. devm_free_irq(&pdev->dev, msix->vector, ihost);
  316. }
  317. pci_disable_msix(pdev);
  318. goto intx;
  319. }
  320. return 0;
  321. intx:
  322. for_each_isci_host(i, ihost, pdev) {
  323. err = devm_request_irq(&pdev->dev, pdev->irq, isci_intx_isr,
  324. IRQF_SHARED, DRV_NAME"-intx", ihost);
  325. if (err)
  326. break;
  327. }
  328. return err;
  329. }
  330. static struct isci_host *isci_host_alloc(struct pci_dev *pdev, int id)
  331. {
  332. struct isci_host *isci_host;
  333. struct Scsi_Host *shost;
  334. int err;
  335. isci_host = devm_kzalloc(&pdev->dev, sizeof(*isci_host), GFP_KERNEL);
  336. if (!isci_host)
  337. return NULL;
  338. isci_host->pdev = pdev;
  339. isci_host->id = id;
  340. shost = scsi_host_alloc(&isci_sht, sizeof(void *));
  341. if (!shost)
  342. return NULL;
  343. isci_host->shost = shost;
  344. err = isci_host_init(isci_host);
  345. if (err)
  346. goto err_shost;
  347. SHOST_TO_SAS_HA(shost) = &isci_host->sas_ha;
  348. isci_host->sas_ha.core.shost = shost;
  349. shost->transportt = isci_transport_template;
  350. shost->max_id = ~0;
  351. shost->max_lun = ~0;
  352. shost->max_cmd_len = MAX_COMMAND_SIZE;
  353. err = scsi_add_host(shost, &pdev->dev);
  354. if (err)
  355. goto err_shost;
  356. err = isci_register_sas_ha(isci_host);
  357. if (err)
  358. goto err_shost_remove;
  359. return isci_host;
  360. err_shost_remove:
  361. scsi_remove_host(shost);
  362. err_shost:
  363. scsi_host_put(shost);
  364. return NULL;
  365. }
  366. static int __devinit isci_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
  367. {
  368. struct isci_pci_info *pci_info;
  369. int err, i;
  370. struct isci_host *isci_host;
  371. const struct firmware *fw = NULL;
  372. struct isci_orom *orom = NULL;
  373. char *source = "(platform)";
  374. dev_info(&pdev->dev, "driver configured for rev: %d silicon\n",
  375. pdev->revision);
  376. pci_info = devm_kzalloc(&pdev->dev, sizeof(*pci_info), GFP_KERNEL);
  377. if (!pci_info)
  378. return -ENOMEM;
  379. pci_set_drvdata(pdev, pci_info);
  380. if (efi_enabled)
  381. orom = isci_get_efi_var(pdev);
  382. if (!orom)
  383. orom = isci_request_oprom(pdev);
  384. for (i = 0; orom && i < ARRAY_SIZE(orom->ctrl); i++) {
  385. if (sci_oem_parameters_validate(&orom->ctrl[i])) {
  386. dev_warn(&pdev->dev,
  387. "[%d]: invalid oem parameters detected, falling back to firmware\n", i);
  388. devm_kfree(&pdev->dev, orom);
  389. orom = NULL;
  390. break;
  391. }
  392. }
  393. if (!orom) {
  394. source = "(firmware)";
  395. orom = isci_request_firmware(pdev, fw);
  396. if (!orom) {
  397. /* TODO convert this to WARN_TAINT_ONCE once the
  398. * orom/efi parameter support is widely available
  399. */
  400. dev_warn(&pdev->dev,
  401. "Loading user firmware failed, using default "
  402. "values\n");
  403. dev_warn(&pdev->dev,
  404. "Default OEM configuration being used: 4 "
  405. "narrow ports, and default SAS Addresses\n");
  406. }
  407. }
  408. if (orom)
  409. dev_info(&pdev->dev,
  410. "OEM SAS parameters (version: %u.%u) loaded %s\n",
  411. (orom->hdr.version & 0xf0) >> 4,
  412. (orom->hdr.version & 0xf), source);
  413. pci_info->orom = orom;
  414. err = isci_pci_init(pdev);
  415. if (err)
  416. return err;
  417. for (i = 0; i < num_controllers(pdev); i++) {
  418. struct isci_host *h = isci_host_alloc(pdev, i);
  419. if (!h) {
  420. err = -ENOMEM;
  421. goto err_host_alloc;
  422. }
  423. pci_info->hosts[i] = h;
  424. }
  425. err = isci_setup_interrupts(pdev);
  426. if (err)
  427. goto err_host_alloc;
  428. for_each_isci_host(i, isci_host, pdev)
  429. scsi_scan_host(isci_host->shost);
  430. return 0;
  431. err_host_alloc:
  432. for_each_isci_host(i, isci_host, pdev)
  433. isci_unregister(isci_host);
  434. return err;
  435. }
  436. static void __devexit isci_pci_remove(struct pci_dev *pdev)
  437. {
  438. struct isci_host *ihost;
  439. int i;
  440. for_each_isci_host(i, ihost, pdev) {
  441. isci_unregister(ihost);
  442. isci_host_deinit(ihost);
  443. sci_controller_disable_interrupts(ihost);
  444. }
  445. }
  446. static struct pci_driver isci_pci_driver = {
  447. .name = DRV_NAME,
  448. .id_table = isci_id_table,
  449. .probe = isci_pci_probe,
  450. .remove = __devexit_p(isci_pci_remove),
  451. };
  452. static __init int isci_init(void)
  453. {
  454. int err;
  455. pr_info("%s: Intel(R) C600 SAS Controller Driver - version %s\n",
  456. DRV_NAME, DRV_VERSION);
  457. isci_transport_template = sas_domain_attach_transport(&isci_transport_ops);
  458. if (!isci_transport_template)
  459. return -ENOMEM;
  460. err = pci_register_driver(&isci_pci_driver);
  461. if (err)
  462. sas_release_transport(isci_transport_template);
  463. return err;
  464. }
  465. static __exit void isci_exit(void)
  466. {
  467. pci_unregister_driver(&isci_pci_driver);
  468. sas_release_transport(isci_transport_template);
  469. }
  470. MODULE_LICENSE("Dual BSD/GPL");
  471. MODULE_FIRMWARE(ISCI_FW_NAME);
  472. module_init(isci_init);
  473. module_exit(isci_exit);