init.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  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 "host.h"
  63. #include "isci.h"
  64. #include "task.h"
  65. #include "probe_roms.h"
  66. #define MAJ 1
  67. #define MIN 2
  68. #define BUILD 0
  69. #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
  70. __stringify(BUILD)
  71. MODULE_VERSION(DRV_VERSION);
  72. static struct scsi_transport_template *isci_transport_template;
  73. static const struct pci_device_id isci_id_table[] = {
  74. { PCI_VDEVICE(INTEL, 0x1D61),},
  75. { PCI_VDEVICE(INTEL, 0x1D63),},
  76. { PCI_VDEVICE(INTEL, 0x1D65),},
  77. { PCI_VDEVICE(INTEL, 0x1D67),},
  78. { PCI_VDEVICE(INTEL, 0x1D69),},
  79. { PCI_VDEVICE(INTEL, 0x1D6B),},
  80. { PCI_VDEVICE(INTEL, 0x1D60),},
  81. { PCI_VDEVICE(INTEL, 0x1D62),},
  82. { PCI_VDEVICE(INTEL, 0x1D64),},
  83. { PCI_VDEVICE(INTEL, 0x1D66),},
  84. { PCI_VDEVICE(INTEL, 0x1D68),},
  85. { PCI_VDEVICE(INTEL, 0x1D6A),},
  86. {}
  87. };
  88. MODULE_DEVICE_TABLE(pci, isci_id_table);
  89. /* linux isci specific settings */
  90. unsigned char no_outbound_task_to = 2;
  91. module_param(no_outbound_task_to, byte, 0);
  92. MODULE_PARM_DESC(no_outbound_task_to, "No Outbound Task Timeout (1us incr)");
  93. u16 ssp_max_occ_to = 20;
  94. module_param(ssp_max_occ_to, ushort, 0);
  95. MODULE_PARM_DESC(ssp_max_occ_to, "SSP Max occupancy timeout (100us incr)");
  96. u16 stp_max_occ_to = 5;
  97. module_param(stp_max_occ_to, ushort, 0);
  98. MODULE_PARM_DESC(stp_max_occ_to, "STP Max occupancy timeout (100us incr)");
  99. u16 ssp_inactive_to = 5;
  100. module_param(ssp_inactive_to, ushort, 0);
  101. MODULE_PARM_DESC(ssp_inactive_to, "SSP inactivity timeout (100us incr)");
  102. u16 stp_inactive_to = 5;
  103. module_param(stp_inactive_to, ushort, 0);
  104. MODULE_PARM_DESC(stp_inactive_to, "STP inactivity timeout (100us incr)");
  105. unsigned char phy_gen = SCIC_SDS_PARM_GEN2_SPEED;
  106. module_param(phy_gen, byte, 0);
  107. MODULE_PARM_DESC(phy_gen, "PHY generation (1: 1.5Gbps 2: 3.0Gbps 3: 6.0Gbps)");
  108. unsigned char max_concurr_spinup;
  109. module_param(max_concurr_spinup, byte, 0);
  110. MODULE_PARM_DESC(max_concurr_spinup, "Max concurrent device spinup");
  111. uint cable_selection_override = CABLE_OVERRIDE_DISABLED;
  112. module_param(cable_selection_override, uint, 0);
  113. MODULE_PARM_DESC(cable_selection_override,
  114. "This field indicates length of the SAS/SATA cable between "
  115. "host and device. If any bits > 15 are set (default) "
  116. "indicates \"use platform defaults\"");
  117. static ssize_t isci_show_id(struct device *dev, struct device_attribute *attr, char *buf)
  118. {
  119. struct Scsi_Host *shost = container_of(dev, typeof(*shost), shost_dev);
  120. struct sas_ha_struct *sas_ha = SHOST_TO_SAS_HA(shost);
  121. struct isci_host *ihost = container_of(sas_ha, typeof(*ihost), sas_ha);
  122. return snprintf(buf, PAGE_SIZE, "%d\n", ihost->id);
  123. }
  124. static DEVICE_ATTR(isci_id, S_IRUGO, isci_show_id, NULL);
  125. struct device_attribute *isci_host_attrs[] = {
  126. &dev_attr_isci_id,
  127. NULL
  128. };
  129. static struct scsi_host_template isci_sht = {
  130. .module = THIS_MODULE,
  131. .name = DRV_NAME,
  132. .proc_name = DRV_NAME,
  133. .queuecommand = sas_queuecommand,
  134. .target_alloc = sas_target_alloc,
  135. .slave_configure = sas_slave_configure,
  136. .scan_finished = isci_host_scan_finished,
  137. .scan_start = isci_host_start,
  138. .change_queue_depth = sas_change_queue_depth,
  139. .bios_param = sas_bios_param,
  140. .can_queue = ISCI_CAN_QUEUE_VAL,
  141. .this_id = -1,
  142. .sg_tablesize = SG_ALL,
  143. .max_sectors = SCSI_DEFAULT_MAX_SECTORS,
  144. .use_clustering = ENABLE_CLUSTERING,
  145. .eh_abort_handler = sas_eh_abort_handler,
  146. .eh_device_reset_handler = sas_eh_device_reset_handler,
  147. .eh_bus_reset_handler = sas_eh_bus_reset_handler,
  148. .target_destroy = sas_target_destroy,
  149. .ioctl = sas_ioctl,
  150. .shost_attrs = isci_host_attrs,
  151. .track_queue_depth = 1,
  152. };
  153. static struct sas_domain_function_template isci_transport_ops = {
  154. /* The class calls these to notify the LLDD of an event. */
  155. .lldd_port_formed = isci_port_formed,
  156. .lldd_port_deformed = isci_port_deformed,
  157. /* The class calls these when a device is found or gone. */
  158. .lldd_dev_found = isci_remote_device_found,
  159. .lldd_dev_gone = isci_remote_device_gone,
  160. .lldd_execute_task = isci_task_execute_task,
  161. /* Task Management Functions. Must be called from process context. */
  162. .lldd_abort_task = isci_task_abort_task,
  163. .lldd_abort_task_set = isci_task_abort_task_set,
  164. .lldd_clear_aca = isci_task_clear_aca,
  165. .lldd_clear_task_set = isci_task_clear_task_set,
  166. .lldd_I_T_nexus_reset = isci_task_I_T_nexus_reset,
  167. .lldd_lu_reset = isci_task_lu_reset,
  168. .lldd_query_task = isci_task_query_task,
  169. /* ata recovery called from ata-eh */
  170. .lldd_ata_check_ready = isci_ata_check_ready,
  171. /* Port and Adapter management */
  172. .lldd_clear_nexus_port = isci_task_clear_nexus_port,
  173. .lldd_clear_nexus_ha = isci_task_clear_nexus_ha,
  174. /* Phy management */
  175. .lldd_control_phy = isci_phy_control,
  176. /* GPIO support */
  177. .lldd_write_gpio = isci_gpio_write,
  178. };
  179. /******************************************************************************
  180. * P R O T E C T E D M E T H O D S
  181. ******************************************************************************/
  182. /**
  183. * isci_register_sas_ha() - This method initializes various lldd
  184. * specific members of the sas_ha struct and calls the libsas
  185. * sas_register_ha() function.
  186. * @isci_host: This parameter specifies the lldd specific wrapper for the
  187. * libsas sas_ha struct.
  188. *
  189. * This method returns an error code indicating success or failure. The user
  190. * should check for possible memory allocation error return otherwise, a zero
  191. * indicates success.
  192. */
  193. static int isci_register_sas_ha(struct isci_host *isci_host)
  194. {
  195. int i;
  196. struct sas_ha_struct *sas_ha = &(isci_host->sas_ha);
  197. struct asd_sas_phy **sas_phys;
  198. struct asd_sas_port **sas_ports;
  199. sas_phys = devm_kzalloc(&isci_host->pdev->dev,
  200. SCI_MAX_PHYS * sizeof(void *),
  201. GFP_KERNEL);
  202. if (!sas_phys)
  203. return -ENOMEM;
  204. sas_ports = devm_kzalloc(&isci_host->pdev->dev,
  205. SCI_MAX_PORTS * sizeof(void *),
  206. GFP_KERNEL);
  207. if (!sas_ports)
  208. return -ENOMEM;
  209. sas_ha->sas_ha_name = DRV_NAME;
  210. sas_ha->lldd_module = THIS_MODULE;
  211. sas_ha->sas_addr = &isci_host->phys[0].sas_addr[0];
  212. for (i = 0; i < SCI_MAX_PHYS; i++) {
  213. sas_phys[i] = &isci_host->phys[i].sas_phy;
  214. sas_ports[i] = &isci_host->sas_ports[i];
  215. }
  216. sas_ha->sas_phy = sas_phys;
  217. sas_ha->sas_port = sas_ports;
  218. sas_ha->num_phys = SCI_MAX_PHYS;
  219. sas_ha->strict_wide_ports = 1;
  220. sas_register_ha(sas_ha);
  221. return 0;
  222. }
  223. static void isci_unregister(struct isci_host *isci_host)
  224. {
  225. struct Scsi_Host *shost;
  226. if (!isci_host)
  227. return;
  228. shost = to_shost(isci_host);
  229. scsi_remove_host(shost);
  230. sas_unregister_ha(&isci_host->sas_ha);
  231. sas_remove_host(shost);
  232. scsi_host_put(shost);
  233. }
  234. static int isci_pci_init(struct pci_dev *pdev)
  235. {
  236. int err, bar_num, bar_mask = 0;
  237. void __iomem * const *iomap;
  238. err = pcim_enable_device(pdev);
  239. if (err) {
  240. dev_err(&pdev->dev,
  241. "failed enable PCI device %s!\n",
  242. pci_name(pdev));
  243. return err;
  244. }
  245. for (bar_num = 0; bar_num < SCI_PCI_BAR_COUNT; bar_num++)
  246. bar_mask |= 1 << (bar_num * 2);
  247. err = pcim_iomap_regions(pdev, bar_mask, DRV_NAME);
  248. if (err)
  249. return err;
  250. iomap = pcim_iomap_table(pdev);
  251. if (!iomap)
  252. return -ENOMEM;
  253. pci_set_master(pdev);
  254. err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
  255. if (err) {
  256. err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
  257. if (err)
  258. return err;
  259. }
  260. err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
  261. if (err) {
  262. err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
  263. if (err)
  264. return err;
  265. }
  266. return 0;
  267. }
  268. static int num_controllers(struct pci_dev *pdev)
  269. {
  270. /* bar size alone can tell us if we are running with a dual controller
  271. * part, no need to trust revision ids that might be under broken firmware
  272. * control
  273. */
  274. resource_size_t scu_bar_size = pci_resource_len(pdev, SCI_SCU_BAR*2);
  275. resource_size_t smu_bar_size = pci_resource_len(pdev, SCI_SMU_BAR*2);
  276. if (scu_bar_size >= SCI_SCU_BAR_SIZE*SCI_MAX_CONTROLLERS &&
  277. smu_bar_size >= SCI_SMU_BAR_SIZE*SCI_MAX_CONTROLLERS)
  278. return SCI_MAX_CONTROLLERS;
  279. else
  280. return 1;
  281. }
  282. static int isci_setup_interrupts(struct pci_dev *pdev)
  283. {
  284. int err, i, num_msix;
  285. struct isci_host *ihost;
  286. struct isci_pci_info *pci_info = to_pci_info(pdev);
  287. /*
  288. * Determine the number of vectors associated with this
  289. * PCI function.
  290. */
  291. num_msix = num_controllers(pdev) * SCI_NUM_MSI_X_INT;
  292. for (i = 0; i < num_msix; i++)
  293. pci_info->msix_entries[i].entry = i;
  294. err = pci_enable_msix_exact(pdev, pci_info->msix_entries, num_msix);
  295. if (err)
  296. goto intx;
  297. for (i = 0; i < num_msix; i++) {
  298. int id = i / SCI_NUM_MSI_X_INT;
  299. struct msix_entry *msix = &pci_info->msix_entries[i];
  300. irq_handler_t isr;
  301. ihost = pci_info->hosts[id];
  302. /* odd numbered vectors are error interrupts */
  303. if (i & 1)
  304. isr = isci_error_isr;
  305. else
  306. isr = isci_msix_isr;
  307. err = devm_request_irq(&pdev->dev, msix->vector, isr, 0,
  308. DRV_NAME"-msix", ihost);
  309. if (!err)
  310. continue;
  311. dev_info(&pdev->dev, "msix setup failed falling back to intx\n");
  312. while (i--) {
  313. id = i / SCI_NUM_MSI_X_INT;
  314. ihost = pci_info->hosts[id];
  315. msix = &pci_info->msix_entries[i];
  316. devm_free_irq(&pdev->dev, msix->vector, ihost);
  317. }
  318. pci_disable_msix(pdev);
  319. goto intx;
  320. }
  321. return 0;
  322. intx:
  323. for_each_isci_host(i, ihost, pdev) {
  324. err = devm_request_irq(&pdev->dev, pdev->irq, isci_intx_isr,
  325. IRQF_SHARED, DRV_NAME"-intx", ihost);
  326. if (err)
  327. break;
  328. }
  329. return err;
  330. }
  331. static void isci_user_parameters_get(struct sci_user_parameters *u)
  332. {
  333. int i;
  334. for (i = 0; i < SCI_MAX_PHYS; i++) {
  335. struct sci_phy_user_params *u_phy = &u->phys[i];
  336. u_phy->max_speed_generation = phy_gen;
  337. /* we are not exporting these for now */
  338. u_phy->align_insertion_frequency = 0x7f;
  339. u_phy->in_connection_align_insertion_frequency = 0xff;
  340. u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
  341. }
  342. u->stp_inactivity_timeout = stp_inactive_to;
  343. u->ssp_inactivity_timeout = ssp_inactive_to;
  344. u->stp_max_occupancy_timeout = stp_max_occ_to;
  345. u->ssp_max_occupancy_timeout = ssp_max_occ_to;
  346. u->no_outbound_task_timeout = no_outbound_task_to;
  347. u->max_concurr_spinup = max_concurr_spinup;
  348. }
  349. static enum sci_status sci_user_parameters_set(struct isci_host *ihost,
  350. struct sci_user_parameters *sci_parms)
  351. {
  352. u16 index;
  353. /*
  354. * Validate the user parameters. If they are not legal, then
  355. * return a failure.
  356. */
  357. for (index = 0; index < SCI_MAX_PHYS; index++) {
  358. struct sci_phy_user_params *u;
  359. u = &sci_parms->phys[index];
  360. if (!((u->max_speed_generation <= SCIC_SDS_PARM_MAX_SPEED) &&
  361. (u->max_speed_generation > SCIC_SDS_PARM_NO_SPEED)))
  362. return SCI_FAILURE_INVALID_PARAMETER_VALUE;
  363. if (u->in_connection_align_insertion_frequency < 3)
  364. return SCI_FAILURE_INVALID_PARAMETER_VALUE;
  365. if ((u->in_connection_align_insertion_frequency < 3) ||
  366. (u->align_insertion_frequency == 0) ||
  367. (u->notify_enable_spin_up_insertion_frequency == 0))
  368. return SCI_FAILURE_INVALID_PARAMETER_VALUE;
  369. }
  370. if ((sci_parms->stp_inactivity_timeout == 0) ||
  371. (sci_parms->ssp_inactivity_timeout == 0) ||
  372. (sci_parms->stp_max_occupancy_timeout == 0) ||
  373. (sci_parms->ssp_max_occupancy_timeout == 0) ||
  374. (sci_parms->no_outbound_task_timeout == 0))
  375. return SCI_FAILURE_INVALID_PARAMETER_VALUE;
  376. memcpy(&ihost->user_parameters, sci_parms, sizeof(*sci_parms));
  377. return SCI_SUCCESS;
  378. }
  379. static void sci_oem_defaults(struct isci_host *ihost)
  380. {
  381. /* these defaults are overridden by the platform / firmware */
  382. struct sci_user_parameters *user = &ihost->user_parameters;
  383. struct sci_oem_params *oem = &ihost->oem_parameters;
  384. int i;
  385. /* Default to APC mode. */
  386. oem->controller.mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
  387. /* Default to APC mode. */
  388. oem->controller.max_concurr_spin_up = 1;
  389. /* Default to no SSC operation. */
  390. oem->controller.do_enable_ssc = false;
  391. /* Default to short cables on all phys. */
  392. oem->controller.cable_selection_mask = 0;
  393. /* Initialize all of the port parameter information to narrow ports. */
  394. for (i = 0; i < SCI_MAX_PORTS; i++)
  395. oem->ports[i].phy_mask = 0;
  396. /* Initialize all of the phy parameter information. */
  397. for (i = 0; i < SCI_MAX_PHYS; i++) {
  398. /* Default to 3G (i.e. Gen 2). */
  399. user->phys[i].max_speed_generation = SCIC_SDS_PARM_GEN2_SPEED;
  400. /* the frequencies cannot be 0 */
  401. user->phys[i].align_insertion_frequency = 0x7f;
  402. user->phys[i].in_connection_align_insertion_frequency = 0xff;
  403. user->phys[i].notify_enable_spin_up_insertion_frequency = 0x33;
  404. /* Previous Vitesse based expanders had a arbitration issue that
  405. * is worked around by having the upper 32-bits of SAS address
  406. * with a value greater then the Vitesse company identifier.
  407. * Hence, usage of 0x5FCFFFFF.
  408. */
  409. oem->phys[i].sas_address.low = 0x1 + ihost->id;
  410. oem->phys[i].sas_address.high = 0x5FCFFFFF;
  411. }
  412. user->stp_inactivity_timeout = 5;
  413. user->ssp_inactivity_timeout = 5;
  414. user->stp_max_occupancy_timeout = 5;
  415. user->ssp_max_occupancy_timeout = 20;
  416. user->no_outbound_task_timeout = 2;
  417. }
  418. static struct isci_host *isci_host_alloc(struct pci_dev *pdev, int id)
  419. {
  420. struct isci_orom *orom = to_pci_info(pdev)->orom;
  421. struct sci_user_parameters sci_user_params;
  422. u8 oem_version = ISCI_ROM_VER_1_0;
  423. struct isci_host *ihost;
  424. struct Scsi_Host *shost;
  425. int err, i;
  426. ihost = devm_kzalloc(&pdev->dev, sizeof(*ihost), GFP_KERNEL);
  427. if (!ihost)
  428. return NULL;
  429. ihost->pdev = pdev;
  430. ihost->id = id;
  431. spin_lock_init(&ihost->scic_lock);
  432. init_waitqueue_head(&ihost->eventq);
  433. ihost->sas_ha.dev = &ihost->pdev->dev;
  434. ihost->sas_ha.lldd_ha = ihost;
  435. tasklet_init(&ihost->completion_tasklet,
  436. isci_host_completion_routine, (unsigned long)ihost);
  437. /* validate module parameters */
  438. /* TODO: kill struct sci_user_parameters and reference directly */
  439. sci_oem_defaults(ihost);
  440. isci_user_parameters_get(&sci_user_params);
  441. if (sci_user_parameters_set(ihost, &sci_user_params)) {
  442. dev_warn(&pdev->dev,
  443. "%s: sci_user_parameters_set failed\n", __func__);
  444. return NULL;
  445. }
  446. /* sanity check platform (or 'firmware') oem parameters */
  447. if (orom) {
  448. if (id < 0 || id >= SCI_MAX_CONTROLLERS || id > orom->hdr.num_elements) {
  449. dev_warn(&pdev->dev, "parsing firmware oem parameters failed\n");
  450. return NULL;
  451. }
  452. ihost->oem_parameters = orom->ctrl[id];
  453. oem_version = orom->hdr.version;
  454. }
  455. /* validate oem parameters (platform, firmware, or built-in defaults) */
  456. if (sci_oem_parameters_validate(&ihost->oem_parameters, oem_version)) {
  457. dev_warn(&pdev->dev, "oem parameter validation failed\n");
  458. return NULL;
  459. }
  460. for (i = 0; i < SCI_MAX_PORTS; i++) {
  461. struct isci_port *iport = &ihost->ports[i];
  462. INIT_LIST_HEAD(&iport->remote_dev_list);
  463. iport->isci_host = ihost;
  464. }
  465. for (i = 0; i < SCI_MAX_PHYS; i++)
  466. isci_phy_init(&ihost->phys[i], ihost, i);
  467. for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
  468. struct isci_remote_device *idev = &ihost->devices[i];
  469. INIT_LIST_HEAD(&idev->node);
  470. }
  471. shost = scsi_host_alloc(&isci_sht, sizeof(void *));
  472. if (!shost)
  473. return NULL;
  474. dev_info(&pdev->dev, "%sSCU controller %d: phy 3-0 cables: "
  475. "{%s, %s, %s, %s}\n",
  476. (is_cable_select_overridden() ? "* " : ""), ihost->id,
  477. lookup_cable_names(decode_cable_selection(ihost, 3)),
  478. lookup_cable_names(decode_cable_selection(ihost, 2)),
  479. lookup_cable_names(decode_cable_selection(ihost, 1)),
  480. lookup_cable_names(decode_cable_selection(ihost, 0)));
  481. err = isci_host_init(ihost);
  482. if (err)
  483. goto err_shost;
  484. SHOST_TO_SAS_HA(shost) = &ihost->sas_ha;
  485. ihost->sas_ha.core.shost = shost;
  486. shost->transportt = isci_transport_template;
  487. shost->max_id = ~0;
  488. shost->max_lun = ~0;
  489. shost->max_cmd_len = MAX_COMMAND_SIZE;
  490. /* turn on DIF support */
  491. scsi_host_set_prot(shost,
  492. SHOST_DIF_TYPE1_PROTECTION |
  493. SHOST_DIF_TYPE2_PROTECTION |
  494. SHOST_DIF_TYPE3_PROTECTION);
  495. scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
  496. err = scsi_add_host(shost, &pdev->dev);
  497. if (err)
  498. goto err_shost;
  499. err = isci_register_sas_ha(ihost);
  500. if (err)
  501. goto err_shost_remove;
  502. return ihost;
  503. err_shost_remove:
  504. scsi_remove_host(shost);
  505. err_shost:
  506. scsi_host_put(shost);
  507. return NULL;
  508. }
  509. static int isci_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
  510. {
  511. struct isci_pci_info *pci_info;
  512. int err, i;
  513. struct isci_host *isci_host;
  514. const struct firmware *fw = NULL;
  515. struct isci_orom *orom = NULL;
  516. char *source = "(platform)";
  517. dev_info(&pdev->dev, "driver configured for rev: %d silicon\n",
  518. pdev->revision);
  519. pci_info = devm_kzalloc(&pdev->dev, sizeof(*pci_info), GFP_KERNEL);
  520. if (!pci_info)
  521. return -ENOMEM;
  522. pci_set_drvdata(pdev, pci_info);
  523. if (efi_enabled(EFI_RUNTIME_SERVICES))
  524. orom = isci_get_efi_var(pdev);
  525. if (!orom)
  526. orom = isci_request_oprom(pdev);
  527. for (i = 0; orom && i < num_controllers(pdev); i++) {
  528. if (sci_oem_parameters_validate(&orom->ctrl[i],
  529. orom->hdr.version)) {
  530. dev_warn(&pdev->dev,
  531. "[%d]: invalid oem parameters detected, falling back to firmware\n", i);
  532. orom = NULL;
  533. break;
  534. }
  535. }
  536. if (!orom) {
  537. source = "(firmware)";
  538. orom = isci_request_firmware(pdev, fw);
  539. if (!orom) {
  540. /* TODO convert this to WARN_TAINT_ONCE once the
  541. * orom/efi parameter support is widely available
  542. */
  543. dev_warn(&pdev->dev,
  544. "Loading user firmware failed, using default "
  545. "values\n");
  546. dev_warn(&pdev->dev,
  547. "Default OEM configuration being used: 4 "
  548. "narrow ports, and default SAS Addresses\n");
  549. }
  550. }
  551. if (orom)
  552. dev_info(&pdev->dev,
  553. "OEM SAS parameters (version: %u.%u) loaded %s\n",
  554. (orom->hdr.version & 0xf0) >> 4,
  555. (orom->hdr.version & 0xf), source);
  556. pci_info->orom = orom;
  557. err = isci_pci_init(pdev);
  558. if (err)
  559. return err;
  560. for (i = 0; i < num_controllers(pdev); i++) {
  561. struct isci_host *h = isci_host_alloc(pdev, i);
  562. if (!h) {
  563. err = -ENOMEM;
  564. goto err_host_alloc;
  565. }
  566. pci_info->hosts[i] = h;
  567. }
  568. err = isci_setup_interrupts(pdev);
  569. if (err)
  570. goto err_host_alloc;
  571. for_each_isci_host(i, isci_host, pdev)
  572. scsi_scan_host(to_shost(isci_host));
  573. return 0;
  574. err_host_alloc:
  575. for_each_isci_host(i, isci_host, pdev)
  576. isci_unregister(isci_host);
  577. return err;
  578. }
  579. static void isci_pci_remove(struct pci_dev *pdev)
  580. {
  581. struct isci_host *ihost;
  582. int i;
  583. for_each_isci_host(i, ihost, pdev) {
  584. wait_for_start(ihost);
  585. isci_unregister(ihost);
  586. isci_host_deinit(ihost);
  587. }
  588. }
  589. #ifdef CONFIG_PM_SLEEP
  590. static int isci_suspend(struct device *dev)
  591. {
  592. struct pci_dev *pdev = to_pci_dev(dev);
  593. struct isci_host *ihost;
  594. int i;
  595. for_each_isci_host(i, ihost, pdev) {
  596. sas_suspend_ha(&ihost->sas_ha);
  597. isci_host_deinit(ihost);
  598. }
  599. pci_save_state(pdev);
  600. pci_disable_device(pdev);
  601. pci_set_power_state(pdev, PCI_D3hot);
  602. return 0;
  603. }
  604. static int isci_resume(struct device *dev)
  605. {
  606. struct pci_dev *pdev = to_pci_dev(dev);
  607. struct isci_host *ihost;
  608. int rc, i;
  609. pci_set_power_state(pdev, PCI_D0);
  610. pci_restore_state(pdev);
  611. rc = pcim_enable_device(pdev);
  612. if (rc) {
  613. dev_err(&pdev->dev,
  614. "enabling device failure after resume(%d)\n", rc);
  615. return rc;
  616. }
  617. pci_set_master(pdev);
  618. for_each_isci_host(i, ihost, pdev) {
  619. sas_prep_resume_ha(&ihost->sas_ha);
  620. isci_host_init(ihost);
  621. isci_host_start(ihost->sas_ha.core.shost);
  622. wait_for_start(ihost);
  623. sas_resume_ha(&ihost->sas_ha);
  624. }
  625. return 0;
  626. }
  627. #endif
  628. static SIMPLE_DEV_PM_OPS(isci_pm_ops, isci_suspend, isci_resume);
  629. static struct pci_driver isci_pci_driver = {
  630. .name = DRV_NAME,
  631. .id_table = isci_id_table,
  632. .probe = isci_pci_probe,
  633. .remove = isci_pci_remove,
  634. .driver.pm = &isci_pm_ops,
  635. };
  636. static __init int isci_init(void)
  637. {
  638. int err;
  639. pr_info("%s: Intel(R) C600 SAS Controller Driver - version %s\n",
  640. DRV_NAME, DRV_VERSION);
  641. isci_transport_template = sas_domain_attach_transport(&isci_transport_ops);
  642. if (!isci_transport_template)
  643. return -ENOMEM;
  644. err = pci_register_driver(&isci_pci_driver);
  645. if (err)
  646. sas_release_transport(isci_transport_template);
  647. return err;
  648. }
  649. static __exit void isci_exit(void)
  650. {
  651. pci_unregister_driver(&isci_pci_driver);
  652. sas_release_transport(isci_transport_template);
  653. }
  654. MODULE_LICENSE("Dual BSD/GPL");
  655. MODULE_FIRMWARE(ISCI_FW_NAME);
  656. module_init(isci_init);
  657. module_exit(isci_exit);