1 // SPDX-License-Identifier: GPL-2.0
3 * driver for Microsemi PQI-based storage controllers
4 * Copyright (c) 2019-2020 Microchip Technology Inc. and its subsidiaries
5 * Copyright (c) 2016-2018 Microsemi Corporation
6 * Copyright (c) 2016 PMC-Sierra, Inc.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/pci.h>
15 #include <linux/delay.h>
16 #include <linux/interrupt.h>
17 #include <linux/sched.h>
18 #include <linux/rtc.h>
19 #include <linux/bcd.h>
20 #include <linux/reboot.h>
21 #include <linux/cciss_ioctl.h>
22 #include <linux/blk-mq-pci.h>
23 #include <scsi/scsi_host.h>
24 #include <scsi/scsi_cmnd.h>
25 #include <scsi/scsi_device.h>
26 #include <scsi/scsi_eh.h>
27 #include <scsi/scsi_transport_sas.h>
28 #include <asm/unaligned.h>
30 #include "smartpqi_sis.h"
32 #if !defined(BUILD_TIMESTAMP)
33 #define BUILD_TIMESTAMP
36 #define DRIVER_VERSION "1.2.16-010"
37 #define DRIVER_MAJOR 1
38 #define DRIVER_MINOR 2
39 #define DRIVER_RELEASE 16
40 #define DRIVER_REVISION 10
42 #define DRIVER_NAME "Microsemi PQI Driver (v" \
43 DRIVER_VERSION BUILD_TIMESTAMP ")"
44 #define DRIVER_NAME_SHORT "smartpqi"
46 #define PQI_EXTRA_SGL_MEMORY (12 * sizeof(struct pqi_sg_descriptor))
48 MODULE_AUTHOR("Microsemi");
49 MODULE_DESCRIPTION("Driver for Microsemi Smart Family Controller version "
51 MODULE_SUPPORTED_DEVICE("Microsemi Smart Family Controllers");
52 MODULE_VERSION(DRIVER_VERSION);
53 MODULE_LICENSE("GPL");
55 static void pqi_take_ctrl_offline(struct pqi_ctrl_info *ctrl_info);
56 static void pqi_ctrl_offline_worker(struct work_struct *work);
57 static void pqi_retry_raid_bypass_requests(struct pqi_ctrl_info *ctrl_info);
58 static int pqi_scan_scsi_devices(struct pqi_ctrl_info *ctrl_info);
59 static void pqi_scan_start(struct Scsi_Host *shost);
60 static void pqi_start_io(struct pqi_ctrl_info *ctrl_info,
61 struct pqi_queue_group *queue_group, enum pqi_io_path path,
62 struct pqi_io_request *io_request);
63 static int pqi_submit_raid_request_synchronous(struct pqi_ctrl_info *ctrl_info,
64 struct pqi_iu_header *request, unsigned int flags,
65 struct pqi_raid_error_info *error_info, unsigned long timeout_msecs);
66 static int pqi_aio_submit_io(struct pqi_ctrl_info *ctrl_info,
67 struct scsi_cmnd *scmd, u32 aio_handle, u8 *cdb,
68 unsigned int cdb_length, struct pqi_queue_group *queue_group,
69 struct pqi_encryption_info *encryption_info, bool raid_bypass);
70 static void pqi_ofa_ctrl_quiesce(struct pqi_ctrl_info *ctrl_info);
71 static void pqi_ofa_ctrl_unquiesce(struct pqi_ctrl_info *ctrl_info);
72 static int pqi_ofa_ctrl_restart(struct pqi_ctrl_info *ctrl_info);
73 static void pqi_ofa_setup_host_buffer(struct pqi_ctrl_info *ctrl_info,
75 static void pqi_ofa_free_host_buffer(struct pqi_ctrl_info *ctrl_info);
76 static int pqi_ofa_host_memory_update(struct pqi_ctrl_info *ctrl_info);
77 static int pqi_device_wait_for_pending_io(struct pqi_ctrl_info *ctrl_info,
78 struct pqi_scsi_dev *device, unsigned long timeout_secs);
80 /* for flags argument to pqi_submit_raid_request_synchronous() */
81 #define PQI_SYNC_FLAGS_INTERRUPTABLE 0x1
83 static struct scsi_transport_template *pqi_sas_transport_template;
85 static atomic_t pqi_controller_count = ATOMIC_INIT(0);
87 enum pqi_lockup_action {
93 static enum pqi_lockup_action pqi_lockup_action = NONE;
96 enum pqi_lockup_action action;
98 } pqi_lockup_actions[] = {
113 static unsigned int pqi_supported_event_types[] = {
114 PQI_EVENT_TYPE_HOTPLUG,
115 PQI_EVENT_TYPE_HARDWARE,
116 PQI_EVENT_TYPE_PHYSICAL_DEVICE,
117 PQI_EVENT_TYPE_LOGICAL_DEVICE,
119 PQI_EVENT_TYPE_AIO_STATE_CHANGE,
120 PQI_EVENT_TYPE_AIO_CONFIG_CHANGE,
123 static int pqi_disable_device_id_wildcards;
124 module_param_named(disable_device_id_wildcards,
125 pqi_disable_device_id_wildcards, int, 0644);
126 MODULE_PARM_DESC(disable_device_id_wildcards,
127 "Disable device ID wildcards.");
129 static int pqi_disable_heartbeat;
130 module_param_named(disable_heartbeat,
131 pqi_disable_heartbeat, int, 0644);
132 MODULE_PARM_DESC(disable_heartbeat,
133 "Disable heartbeat.");
135 static int pqi_disable_ctrl_shutdown;
136 module_param_named(disable_ctrl_shutdown,
137 pqi_disable_ctrl_shutdown, int, 0644);
138 MODULE_PARM_DESC(disable_ctrl_shutdown,
139 "Disable controller shutdown when controller locked up.");
141 static char *pqi_lockup_action_param;
142 module_param_named(lockup_action,
143 pqi_lockup_action_param, charp, 0644);
144 MODULE_PARM_DESC(lockup_action, "Action to take when controller locked up.\n"
145 "\t\tSupported: none, reboot, panic\n"
146 "\t\tDefault: none");
148 static int pqi_expose_ld_first;
149 module_param_named(expose_ld_first,
150 pqi_expose_ld_first, int, 0644);
151 MODULE_PARM_DESC(expose_ld_first,
152 "Expose logical drives before physical drives.");
154 static int pqi_hide_vsep;
155 module_param_named(hide_vsep,
156 pqi_hide_vsep, int, 0644);
157 MODULE_PARM_DESC(hide_vsep,
158 "Hide the virtual SEP for direct attached drives.");
160 static char *raid_levels[] = {
170 static char *pqi_raid_level_to_string(u8 raid_level)
172 if (raid_level < ARRAY_SIZE(raid_levels))
173 return raid_levels[raid_level];
175 return "RAID UNKNOWN";
180 #define SA_RAID_1 2 /* also used for RAID 10 */
181 #define SA_RAID_5 3 /* also used for RAID 50 */
183 #define SA_RAID_6 5 /* also used for RAID 60 */
184 #define SA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
185 #define SA_RAID_MAX SA_RAID_ADM
186 #define SA_RAID_UNKNOWN 0xff
188 static inline void pqi_scsi_done(struct scsi_cmnd *scmd)
190 pqi_prep_for_scsi_done(scmd);
191 scmd->scsi_done(scmd);
194 static inline void pqi_disable_write_same(struct scsi_device *sdev)
196 sdev->no_write_same = 1;
199 static inline bool pqi_scsi3addr_equal(u8 *scsi3addr1, u8 *scsi3addr2)
201 return memcmp(scsi3addr1, scsi3addr2, 8) == 0;
204 static inline bool pqi_is_logical_device(struct pqi_scsi_dev *device)
206 return !device->is_physical_device;
209 static inline bool pqi_is_external_raid_addr(u8 *scsi3addr)
211 return scsi3addr[2] != 0;
214 static inline bool pqi_ctrl_offline(struct pqi_ctrl_info *ctrl_info)
216 return !ctrl_info->controller_online;
219 static inline void pqi_check_ctrl_health(struct pqi_ctrl_info *ctrl_info)
221 if (ctrl_info->controller_online)
222 if (!sis_is_firmware_running(ctrl_info))
223 pqi_take_ctrl_offline(ctrl_info);
226 static inline bool pqi_is_hba_lunid(u8 *scsi3addr)
228 return pqi_scsi3addr_equal(scsi3addr, RAID_CTLR_LUNID);
231 static inline enum pqi_ctrl_mode pqi_get_ctrl_mode(
232 struct pqi_ctrl_info *ctrl_info)
234 return sis_read_driver_scratch(ctrl_info);
237 static inline void pqi_save_ctrl_mode(struct pqi_ctrl_info *ctrl_info,
238 enum pqi_ctrl_mode mode)
240 sis_write_driver_scratch(ctrl_info, mode);
243 static inline void pqi_ctrl_block_device_reset(struct pqi_ctrl_info *ctrl_info)
245 ctrl_info->block_device_reset = true;
248 static inline bool pqi_device_reset_blocked(struct pqi_ctrl_info *ctrl_info)
250 return ctrl_info->block_device_reset;
253 static inline bool pqi_ctrl_blocked(struct pqi_ctrl_info *ctrl_info)
255 return ctrl_info->block_requests;
258 static inline void pqi_ctrl_block_requests(struct pqi_ctrl_info *ctrl_info)
260 ctrl_info->block_requests = true;
261 scsi_block_requests(ctrl_info->scsi_host);
264 static inline void pqi_ctrl_unblock_requests(struct pqi_ctrl_info *ctrl_info)
266 ctrl_info->block_requests = false;
267 wake_up_all(&ctrl_info->block_requests_wait);
268 pqi_retry_raid_bypass_requests(ctrl_info);
269 scsi_unblock_requests(ctrl_info->scsi_host);
272 static unsigned long pqi_wait_if_ctrl_blocked(struct pqi_ctrl_info *ctrl_info,
273 unsigned long timeout_msecs)
275 unsigned long remaining_msecs;
277 if (!pqi_ctrl_blocked(ctrl_info))
278 return timeout_msecs;
280 atomic_inc(&ctrl_info->num_blocked_threads);
282 if (timeout_msecs == NO_TIMEOUT) {
283 wait_event(ctrl_info->block_requests_wait,
284 !pqi_ctrl_blocked(ctrl_info));
285 remaining_msecs = timeout_msecs;
287 unsigned long remaining_jiffies;
290 wait_event_timeout(ctrl_info->block_requests_wait,
291 !pqi_ctrl_blocked(ctrl_info),
292 msecs_to_jiffies(timeout_msecs));
293 remaining_msecs = jiffies_to_msecs(remaining_jiffies);
296 atomic_dec(&ctrl_info->num_blocked_threads);
298 return remaining_msecs;
301 static inline void pqi_ctrl_wait_until_quiesced(struct pqi_ctrl_info *ctrl_info)
303 while (atomic_read(&ctrl_info->num_busy_threads) >
304 atomic_read(&ctrl_info->num_blocked_threads))
305 usleep_range(1000, 2000);
308 static inline bool pqi_device_offline(struct pqi_scsi_dev *device)
310 return device->device_offline;
313 static inline void pqi_device_reset_start(struct pqi_scsi_dev *device)
315 device->in_reset = true;
318 static inline void pqi_device_reset_done(struct pqi_scsi_dev *device)
320 device->in_reset = false;
323 static inline bool pqi_device_in_reset(struct pqi_scsi_dev *device)
325 return device->in_reset;
328 static inline void pqi_ctrl_ofa_start(struct pqi_ctrl_info *ctrl_info)
330 ctrl_info->in_ofa = true;
333 static inline void pqi_ctrl_ofa_done(struct pqi_ctrl_info *ctrl_info)
335 ctrl_info->in_ofa = false;
338 static inline bool pqi_ctrl_in_ofa(struct pqi_ctrl_info *ctrl_info)
340 return ctrl_info->in_ofa;
343 static inline void pqi_device_remove_start(struct pqi_scsi_dev *device)
345 device->in_remove = true;
348 static inline bool pqi_device_in_remove(struct pqi_ctrl_info *ctrl_info,
349 struct pqi_scsi_dev *device)
351 return device->in_remove && !ctrl_info->in_shutdown;
354 static inline void pqi_ctrl_shutdown_start(struct pqi_ctrl_info *ctrl_info)
356 ctrl_info->in_shutdown = true;
359 static inline bool pqi_ctrl_in_shutdown(struct pqi_ctrl_info *ctrl_info)
361 return ctrl_info->in_shutdown;
364 static inline void pqi_schedule_rescan_worker_with_delay(
365 struct pqi_ctrl_info *ctrl_info, unsigned long delay)
367 if (pqi_ctrl_offline(ctrl_info))
369 if (pqi_ctrl_in_ofa(ctrl_info))
372 schedule_delayed_work(&ctrl_info->rescan_work, delay);
375 static inline void pqi_schedule_rescan_worker(struct pqi_ctrl_info *ctrl_info)
377 pqi_schedule_rescan_worker_with_delay(ctrl_info, 0);
380 #define PQI_RESCAN_WORK_DELAY (10 * PQI_HZ)
382 static inline void pqi_schedule_rescan_worker_delayed(
383 struct pqi_ctrl_info *ctrl_info)
385 pqi_schedule_rescan_worker_with_delay(ctrl_info, PQI_RESCAN_WORK_DELAY);
388 static inline void pqi_cancel_rescan_worker(struct pqi_ctrl_info *ctrl_info)
390 cancel_delayed_work_sync(&ctrl_info->rescan_work);
393 static inline void pqi_cancel_event_worker(struct pqi_ctrl_info *ctrl_info)
395 cancel_work_sync(&ctrl_info->event_work);
398 static inline u32 pqi_read_heartbeat_counter(struct pqi_ctrl_info *ctrl_info)
400 if (!ctrl_info->heartbeat_counter)
403 return readl(ctrl_info->heartbeat_counter);
406 static inline u8 pqi_read_soft_reset_status(struct pqi_ctrl_info *ctrl_info)
408 if (!ctrl_info->soft_reset_status)
411 return readb(ctrl_info->soft_reset_status);
414 static inline void pqi_clear_soft_reset_status(struct pqi_ctrl_info *ctrl_info,
419 if (!ctrl_info->soft_reset_status)
422 status = pqi_read_soft_reset_status(ctrl_info);
424 writeb(status, ctrl_info->soft_reset_status);
427 static int pqi_map_single(struct pci_dev *pci_dev,
428 struct pqi_sg_descriptor *sg_descriptor, void *buffer,
429 size_t buffer_length, enum dma_data_direction data_direction)
431 dma_addr_t bus_address;
433 if (!buffer || buffer_length == 0 || data_direction == DMA_NONE)
436 bus_address = dma_map_single(&pci_dev->dev, buffer, buffer_length,
438 if (dma_mapping_error(&pci_dev->dev, bus_address))
441 put_unaligned_le64((u64)bus_address, &sg_descriptor->address);
442 put_unaligned_le32(buffer_length, &sg_descriptor->length);
443 put_unaligned_le32(CISS_SG_LAST, &sg_descriptor->flags);
448 static void pqi_pci_unmap(struct pci_dev *pci_dev,
449 struct pqi_sg_descriptor *descriptors, int num_descriptors,
450 enum dma_data_direction data_direction)
454 if (data_direction == DMA_NONE)
457 for (i = 0; i < num_descriptors; i++)
458 dma_unmap_single(&pci_dev->dev,
459 (dma_addr_t)get_unaligned_le64(&descriptors[i].address),
460 get_unaligned_le32(&descriptors[i].length),
464 static int pqi_build_raid_path_request(struct pqi_ctrl_info *ctrl_info,
465 struct pqi_raid_path_request *request, u8 cmd,
466 u8 *scsi3addr, void *buffer, size_t buffer_length,
467 u16 vpd_page, enum dma_data_direction *dir)
470 size_t cdb_length = buffer_length;
472 memset(request, 0, sizeof(*request));
474 request->header.iu_type = PQI_REQUEST_IU_RAID_PATH_IO;
475 put_unaligned_le16(offsetof(struct pqi_raid_path_request,
476 sg_descriptors[1]) - PQI_REQUEST_HEADER_LENGTH,
477 &request->header.iu_length);
478 put_unaligned_le32(buffer_length, &request->buffer_length);
479 memcpy(request->lun_number, scsi3addr, sizeof(request->lun_number));
480 request->task_attribute = SOP_TASK_ATTRIBUTE_SIMPLE;
481 request->additional_cdb_bytes_usage = SOP_ADDITIONAL_CDB_BYTES_0;
487 request->data_direction = SOP_READ_FLAG;
489 if (vpd_page & VPD_PAGE) {
491 cdb[2] = (u8)vpd_page;
493 cdb[4] = (u8)cdb_length;
495 case CISS_REPORT_LOG:
496 case CISS_REPORT_PHYS:
497 request->data_direction = SOP_READ_FLAG;
499 if (cmd == CISS_REPORT_PHYS)
500 cdb[1] = CISS_REPORT_PHYS_FLAG_OTHER;
502 cdb[1] = CISS_REPORT_LOG_FLAG_UNIQUE_LUN_ID;
503 put_unaligned_be32(cdb_length, &cdb[6]);
505 case CISS_GET_RAID_MAP:
506 request->data_direction = SOP_READ_FLAG;
508 cdb[1] = CISS_GET_RAID_MAP;
509 put_unaligned_be32(cdb_length, &cdb[6]);
512 request->data_direction = SOP_WRITE_FLAG;
514 cdb[6] = BMIC_FLUSH_CACHE;
515 put_unaligned_be16(cdb_length, &cdb[7]);
517 case BMIC_SENSE_DIAG_OPTIONS:
520 case BMIC_IDENTIFY_CONTROLLER:
521 case BMIC_IDENTIFY_PHYSICAL_DEVICE:
522 case BMIC_SENSE_SUBSYSTEM_INFORMATION:
523 request->data_direction = SOP_READ_FLAG;
526 put_unaligned_be16(cdb_length, &cdb[7]);
528 case BMIC_SET_DIAG_OPTIONS:
531 case BMIC_WRITE_HOST_WELLNESS:
532 request->data_direction = SOP_WRITE_FLAG;
535 put_unaligned_be16(cdb_length, &cdb[7]);
537 case BMIC_CSMI_PASSTHRU:
538 request->data_direction = SOP_BIDIRECTIONAL;
540 cdb[5] = CSMI_CC_SAS_SMP_PASSTHRU;
542 put_unaligned_be16(cdb_length, &cdb[7]);
545 dev_err(&ctrl_info->pci_dev->dev, "unknown command 0x%c\n", cmd);
549 switch (request->data_direction) {
551 *dir = DMA_FROM_DEVICE;
554 *dir = DMA_TO_DEVICE;
556 case SOP_NO_DIRECTION_FLAG:
560 *dir = DMA_BIDIRECTIONAL;
564 return pqi_map_single(ctrl_info->pci_dev, &request->sg_descriptors[0],
565 buffer, buffer_length, *dir);
568 static inline void pqi_reinit_io_request(struct pqi_io_request *io_request)
570 io_request->scmd = NULL;
571 io_request->status = 0;
572 io_request->error_info = NULL;
573 io_request->raid_bypass = false;
576 static struct pqi_io_request *pqi_alloc_io_request(
577 struct pqi_ctrl_info *ctrl_info)
579 struct pqi_io_request *io_request;
580 u16 i = ctrl_info->next_io_request_slot; /* benignly racy */
583 io_request = &ctrl_info->io_request_pool[i];
584 if (atomic_inc_return(&io_request->refcount) == 1)
586 atomic_dec(&io_request->refcount);
587 i = (i + 1) % ctrl_info->max_io_slots;
591 ctrl_info->next_io_request_slot = (i + 1) % ctrl_info->max_io_slots;
593 pqi_reinit_io_request(io_request);
598 static void pqi_free_io_request(struct pqi_io_request *io_request)
600 atomic_dec(&io_request->refcount);
603 static int pqi_send_scsi_raid_request(struct pqi_ctrl_info *ctrl_info, u8 cmd,
604 u8 *scsi3addr, void *buffer, size_t buffer_length, u16 vpd_page,
605 struct pqi_raid_error_info *error_info, unsigned long timeout_msecs)
608 struct pqi_raid_path_request request;
609 enum dma_data_direction dir;
611 rc = pqi_build_raid_path_request(ctrl_info, &request,
612 cmd, scsi3addr, buffer,
613 buffer_length, vpd_page, &dir);
617 rc = pqi_submit_raid_request_synchronous(ctrl_info, &request.header, 0,
618 error_info, timeout_msecs);
620 pqi_pci_unmap(ctrl_info->pci_dev, request.sg_descriptors, 1, dir);
625 /* helper functions for pqi_send_scsi_raid_request */
627 static inline int pqi_send_ctrl_raid_request(struct pqi_ctrl_info *ctrl_info,
628 u8 cmd, void *buffer, size_t buffer_length)
630 return pqi_send_scsi_raid_request(ctrl_info, cmd, RAID_CTLR_LUNID,
631 buffer, buffer_length, 0, NULL, NO_TIMEOUT);
634 static inline int pqi_send_ctrl_raid_with_error(struct pqi_ctrl_info *ctrl_info,
635 u8 cmd, void *buffer, size_t buffer_length,
636 struct pqi_raid_error_info *error_info)
638 return pqi_send_scsi_raid_request(ctrl_info, cmd, RAID_CTLR_LUNID,
639 buffer, buffer_length, 0, error_info, NO_TIMEOUT);
642 static inline int pqi_identify_controller(struct pqi_ctrl_info *ctrl_info,
643 struct bmic_identify_controller *buffer)
645 return pqi_send_ctrl_raid_request(ctrl_info, BMIC_IDENTIFY_CONTROLLER,
646 buffer, sizeof(*buffer));
649 static inline int pqi_sense_subsystem_info(struct pqi_ctrl_info *ctrl_info,
650 struct bmic_sense_subsystem_info *sense_info)
652 return pqi_send_ctrl_raid_request(ctrl_info,
653 BMIC_SENSE_SUBSYSTEM_INFORMATION, sense_info,
654 sizeof(*sense_info));
657 static inline int pqi_scsi_inquiry(struct pqi_ctrl_info *ctrl_info,
658 u8 *scsi3addr, u16 vpd_page, void *buffer, size_t buffer_length)
660 return pqi_send_scsi_raid_request(ctrl_info, INQUIRY, scsi3addr,
661 buffer, buffer_length, vpd_page, NULL, NO_TIMEOUT);
664 static int pqi_identify_physical_device(struct pqi_ctrl_info *ctrl_info,
665 struct pqi_scsi_dev *device,
666 struct bmic_identify_physical_device *buffer, size_t buffer_length)
669 enum dma_data_direction dir;
670 u16 bmic_device_index;
671 struct pqi_raid_path_request request;
673 rc = pqi_build_raid_path_request(ctrl_info, &request,
674 BMIC_IDENTIFY_PHYSICAL_DEVICE, RAID_CTLR_LUNID, buffer,
675 buffer_length, 0, &dir);
679 bmic_device_index = CISS_GET_DRIVE_NUMBER(device->scsi3addr);
680 request.cdb[2] = (u8)bmic_device_index;
681 request.cdb[9] = (u8)(bmic_device_index >> 8);
683 rc = pqi_submit_raid_request_synchronous(ctrl_info, &request.header,
684 0, NULL, NO_TIMEOUT);
686 pqi_pci_unmap(ctrl_info->pci_dev, request.sg_descriptors, 1, dir);
691 static int pqi_flush_cache(struct pqi_ctrl_info *ctrl_info,
692 enum bmic_flush_cache_shutdown_event shutdown_event)
695 struct bmic_flush_cache *flush_cache;
698 * Don't bother trying to flush the cache if the controller is
701 if (pqi_ctrl_offline(ctrl_info))
704 flush_cache = kzalloc(sizeof(*flush_cache), GFP_KERNEL);
708 flush_cache->shutdown_event = shutdown_event;
710 rc = pqi_send_ctrl_raid_request(ctrl_info, SA_FLUSH_CACHE, flush_cache,
711 sizeof(*flush_cache));
718 int pqi_csmi_smp_passthru(struct pqi_ctrl_info *ctrl_info,
719 struct bmic_csmi_smp_passthru_buffer *buffer, size_t buffer_length,
720 struct pqi_raid_error_info *error_info)
722 return pqi_send_ctrl_raid_with_error(ctrl_info, BMIC_CSMI_PASSTHRU,
723 buffer, buffer_length, error_info);
726 #define PQI_FETCH_PTRAID_DATA (1 << 31)
728 static int pqi_set_diag_rescan(struct pqi_ctrl_info *ctrl_info)
731 struct bmic_diag_options *diag;
733 diag = kzalloc(sizeof(*diag), GFP_KERNEL);
737 rc = pqi_send_ctrl_raid_request(ctrl_info, BMIC_SENSE_DIAG_OPTIONS,
738 diag, sizeof(*diag));
742 diag->options |= cpu_to_le32(PQI_FETCH_PTRAID_DATA);
744 rc = pqi_send_ctrl_raid_request(ctrl_info, BMIC_SET_DIAG_OPTIONS, diag,
753 static inline int pqi_write_host_wellness(struct pqi_ctrl_info *ctrl_info,
754 void *buffer, size_t buffer_length)
756 return pqi_send_ctrl_raid_request(ctrl_info, BMIC_WRITE_HOST_WELLNESS,
757 buffer, buffer_length);
762 struct bmic_host_wellness_driver_version {
764 u8 driver_version_tag[2];
765 __le16 driver_version_length;
766 char driver_version[32];
767 u8 dont_write_tag[2];
773 static int pqi_write_driver_version_to_host_wellness(
774 struct pqi_ctrl_info *ctrl_info)
777 struct bmic_host_wellness_driver_version *buffer;
778 size_t buffer_length;
780 buffer_length = sizeof(*buffer);
782 buffer = kmalloc(buffer_length, GFP_KERNEL);
786 buffer->start_tag[0] = '<';
787 buffer->start_tag[1] = 'H';
788 buffer->start_tag[2] = 'W';
789 buffer->start_tag[3] = '>';
790 buffer->driver_version_tag[0] = 'D';
791 buffer->driver_version_tag[1] = 'V';
792 put_unaligned_le16(sizeof(buffer->driver_version),
793 &buffer->driver_version_length);
794 strncpy(buffer->driver_version, "Linux " DRIVER_VERSION,
795 sizeof(buffer->driver_version) - 1);
796 buffer->driver_version[sizeof(buffer->driver_version) - 1] = '\0';
797 buffer->dont_write_tag[0] = 'D';
798 buffer->dont_write_tag[1] = 'W';
799 buffer->end_tag[0] = 'Z';
800 buffer->end_tag[1] = 'Z';
802 rc = pqi_write_host_wellness(ctrl_info, buffer, buffer_length);
811 struct bmic_host_wellness_time {
816 u8 dont_write_tag[2];
822 static int pqi_write_current_time_to_host_wellness(
823 struct pqi_ctrl_info *ctrl_info)
826 struct bmic_host_wellness_time *buffer;
827 size_t buffer_length;
832 buffer_length = sizeof(*buffer);
834 buffer = kmalloc(buffer_length, GFP_KERNEL);
838 buffer->start_tag[0] = '<';
839 buffer->start_tag[1] = 'H';
840 buffer->start_tag[2] = 'W';
841 buffer->start_tag[3] = '>';
842 buffer->time_tag[0] = 'T';
843 buffer->time_tag[1] = 'D';
844 put_unaligned_le16(sizeof(buffer->time),
845 &buffer->time_length);
847 local_time = ktime_get_real_seconds();
848 time64_to_tm(local_time, -sys_tz.tz_minuteswest * 60, &tm);
849 year = tm.tm_year + 1900;
851 buffer->time[0] = bin2bcd(tm.tm_hour);
852 buffer->time[1] = bin2bcd(tm.tm_min);
853 buffer->time[2] = bin2bcd(tm.tm_sec);
855 buffer->time[4] = bin2bcd(tm.tm_mon + 1);
856 buffer->time[5] = bin2bcd(tm.tm_mday);
857 buffer->time[6] = bin2bcd(year / 100);
858 buffer->time[7] = bin2bcd(year % 100);
860 buffer->dont_write_tag[0] = 'D';
861 buffer->dont_write_tag[1] = 'W';
862 buffer->end_tag[0] = 'Z';
863 buffer->end_tag[1] = 'Z';
865 rc = pqi_write_host_wellness(ctrl_info, buffer, buffer_length);
872 #define PQI_UPDATE_TIME_WORK_INTERVAL (24UL * 60 * 60 * PQI_HZ)
874 static void pqi_update_time_worker(struct work_struct *work)
877 struct pqi_ctrl_info *ctrl_info;
879 ctrl_info = container_of(to_delayed_work(work), struct pqi_ctrl_info,
882 if (pqi_ctrl_offline(ctrl_info))
885 rc = pqi_write_current_time_to_host_wellness(ctrl_info);
887 dev_warn(&ctrl_info->pci_dev->dev,
888 "error updating time on controller\n");
890 schedule_delayed_work(&ctrl_info->update_time_work,
891 PQI_UPDATE_TIME_WORK_INTERVAL);
894 static inline void pqi_schedule_update_time_worker(
895 struct pqi_ctrl_info *ctrl_info)
897 schedule_delayed_work(&ctrl_info->update_time_work, 0);
900 static inline void pqi_cancel_update_time_worker(
901 struct pqi_ctrl_info *ctrl_info)
903 cancel_delayed_work_sync(&ctrl_info->update_time_work);
906 static inline int pqi_report_luns(struct pqi_ctrl_info *ctrl_info, u8 cmd,
907 void *buffer, size_t buffer_length)
909 return pqi_send_ctrl_raid_request(ctrl_info, cmd, buffer,
913 static int pqi_report_phys_logical_luns(struct pqi_ctrl_info *ctrl_info, u8 cmd,
917 size_t lun_list_length;
918 size_t lun_data_length;
919 size_t new_lun_list_length;
920 void *lun_data = NULL;
921 struct report_lun_header *report_lun_header;
923 report_lun_header = kmalloc(sizeof(*report_lun_header), GFP_KERNEL);
924 if (!report_lun_header) {
929 rc = pqi_report_luns(ctrl_info, cmd, report_lun_header,
930 sizeof(*report_lun_header));
934 lun_list_length = get_unaligned_be32(&report_lun_header->list_length);
937 lun_data_length = sizeof(struct report_lun_header) + lun_list_length;
939 lun_data = kmalloc(lun_data_length, GFP_KERNEL);
945 if (lun_list_length == 0) {
946 memcpy(lun_data, report_lun_header, sizeof(*report_lun_header));
950 rc = pqi_report_luns(ctrl_info, cmd, lun_data, lun_data_length);
954 new_lun_list_length = get_unaligned_be32(
955 &((struct report_lun_header *)lun_data)->list_length);
957 if (new_lun_list_length > lun_list_length) {
958 lun_list_length = new_lun_list_length;
964 kfree(report_lun_header);
976 static inline int pqi_report_phys_luns(struct pqi_ctrl_info *ctrl_info,
979 return pqi_report_phys_logical_luns(ctrl_info, CISS_REPORT_PHYS,
983 static inline int pqi_report_logical_luns(struct pqi_ctrl_info *ctrl_info,
986 return pqi_report_phys_logical_luns(ctrl_info, CISS_REPORT_LOG, buffer);
989 static int pqi_get_device_lists(struct pqi_ctrl_info *ctrl_info,
990 struct report_phys_lun_extended **physdev_list,
991 struct report_log_lun_extended **logdev_list)
994 size_t logdev_list_length;
995 size_t logdev_data_length;
996 struct report_log_lun_extended *internal_logdev_list;
997 struct report_log_lun_extended *logdev_data;
998 struct report_lun_header report_lun_header;
1000 rc = pqi_report_phys_luns(ctrl_info, (void **)physdev_list);
1002 dev_err(&ctrl_info->pci_dev->dev,
1003 "report physical LUNs failed\n");
1005 rc = pqi_report_logical_luns(ctrl_info, (void **)logdev_list);
1007 dev_err(&ctrl_info->pci_dev->dev,
1008 "report logical LUNs failed\n");
1011 * Tack the controller itself onto the end of the logical device list.
1014 logdev_data = *logdev_list;
1017 logdev_list_length =
1018 get_unaligned_be32(&logdev_data->header.list_length);
1020 memset(&report_lun_header, 0, sizeof(report_lun_header));
1022 (struct report_log_lun_extended *)&report_lun_header;
1023 logdev_list_length = 0;
1026 logdev_data_length = sizeof(struct report_lun_header) +
1029 internal_logdev_list = kmalloc(logdev_data_length +
1030 sizeof(struct report_log_lun_extended), GFP_KERNEL);
1031 if (!internal_logdev_list) {
1032 kfree(*logdev_list);
1033 *logdev_list = NULL;
1037 memcpy(internal_logdev_list, logdev_data, logdev_data_length);
1038 memset((u8 *)internal_logdev_list + logdev_data_length, 0,
1039 sizeof(struct report_log_lun_extended_entry));
1040 put_unaligned_be32(logdev_list_length +
1041 sizeof(struct report_log_lun_extended_entry),
1042 &internal_logdev_list->header.list_length);
1044 kfree(*logdev_list);
1045 *logdev_list = internal_logdev_list;
1050 static inline void pqi_set_bus_target_lun(struct pqi_scsi_dev *device,
1051 int bus, int target, int lun)
1054 device->target = target;
1058 static void pqi_assign_bus_target_lun(struct pqi_scsi_dev *device)
1066 scsi3addr = device->scsi3addr;
1067 lunid = get_unaligned_le32(scsi3addr);
1069 if (pqi_is_hba_lunid(scsi3addr)) {
1070 /* The specified device is the controller. */
1071 pqi_set_bus_target_lun(device, PQI_HBA_BUS, 0, lunid & 0x3fff);
1072 device->target_lun_valid = true;
1076 if (pqi_is_logical_device(device)) {
1077 if (device->is_external_raid_device) {
1078 bus = PQI_EXTERNAL_RAID_VOLUME_BUS;
1079 target = (lunid >> 16) & 0x3fff;
1082 bus = PQI_RAID_VOLUME_BUS;
1084 lun = lunid & 0x3fff;
1086 pqi_set_bus_target_lun(device, bus, target, lun);
1087 device->target_lun_valid = true;
1092 * Defer target and LUN assignment for non-controller physical devices
1093 * because the SAS transport layer will make these assignments later.
1095 pqi_set_bus_target_lun(device, PQI_PHYSICAL_DEVICE_BUS, 0, 0);
1098 static void pqi_get_raid_level(struct pqi_ctrl_info *ctrl_info,
1099 struct pqi_scsi_dev *device)
1105 raid_level = SA_RAID_UNKNOWN;
1107 buffer = kmalloc(64, GFP_KERNEL);
1109 rc = pqi_scsi_inquiry(ctrl_info, device->scsi3addr,
1110 VPD_PAGE | CISS_VPD_LV_DEVICE_GEOMETRY, buffer, 64);
1112 raid_level = buffer[8];
1113 if (raid_level > SA_RAID_MAX)
1114 raid_level = SA_RAID_UNKNOWN;
1119 device->raid_level = raid_level;
1122 static int pqi_validate_raid_map(struct pqi_ctrl_info *ctrl_info,
1123 struct pqi_scsi_dev *device, struct raid_map *raid_map)
1127 u32 r5or6_blocks_per_row;
1129 raid_map_size = get_unaligned_le32(&raid_map->structure_size);
1131 if (raid_map_size < offsetof(struct raid_map, disk_data)) {
1132 err_msg = "RAID map too small";
1136 if (device->raid_level == SA_RAID_1) {
1137 if (get_unaligned_le16(&raid_map->layout_map_count) != 2) {
1138 err_msg = "invalid RAID-1 map";
1141 } else if (device->raid_level == SA_RAID_ADM) {
1142 if (get_unaligned_le16(&raid_map->layout_map_count) != 3) {
1143 err_msg = "invalid RAID-1(ADM) map";
1146 } else if ((device->raid_level == SA_RAID_5 ||
1147 device->raid_level == SA_RAID_6) &&
1148 get_unaligned_le16(&raid_map->layout_map_count) > 1) {
1150 r5or6_blocks_per_row =
1151 get_unaligned_le16(&raid_map->strip_size) *
1152 get_unaligned_le16(&raid_map->data_disks_per_row);
1153 if (r5or6_blocks_per_row == 0) {
1154 err_msg = "invalid RAID-5 or RAID-6 map";
1162 dev_warn(&ctrl_info->pci_dev->dev,
1163 "logical device %08x%08x %s\n",
1164 *((u32 *)&device->scsi3addr),
1165 *((u32 *)&device->scsi3addr[4]), err_msg);
1170 static int pqi_get_raid_map(struct pqi_ctrl_info *ctrl_info,
1171 struct pqi_scsi_dev *device)
1175 struct raid_map *raid_map;
1177 raid_map = kmalloc(sizeof(*raid_map), GFP_KERNEL);
1181 rc = pqi_send_scsi_raid_request(ctrl_info, CISS_GET_RAID_MAP,
1182 device->scsi3addr, raid_map, sizeof(*raid_map),
1183 0, NULL, NO_TIMEOUT);
1188 raid_map_size = get_unaligned_le32(&raid_map->structure_size);
1190 if (raid_map_size > sizeof(*raid_map)) {
1194 raid_map = kmalloc(raid_map_size, GFP_KERNEL);
1198 rc = pqi_send_scsi_raid_request(ctrl_info, CISS_GET_RAID_MAP,
1199 device->scsi3addr, raid_map, raid_map_size,
1200 0, NULL, NO_TIMEOUT);
1204 if (get_unaligned_le32(&raid_map->structure_size)
1206 dev_warn(&ctrl_info->pci_dev->dev,
1207 "Requested %d bytes, received %d bytes",
1209 get_unaligned_le32(&raid_map->structure_size));
1214 rc = pqi_validate_raid_map(ctrl_info, device, raid_map);
1218 device->raid_map = raid_map;
1228 static void pqi_get_raid_bypass_status(struct pqi_ctrl_info *ctrl_info,
1229 struct pqi_scsi_dev *device)
1235 buffer = kmalloc(64, GFP_KERNEL);
1239 rc = pqi_scsi_inquiry(ctrl_info, device->scsi3addr,
1240 VPD_PAGE | CISS_VPD_LV_BYPASS_STATUS, buffer, 64);
1244 #define RAID_BYPASS_STATUS 4
1245 #define RAID_BYPASS_CONFIGURED 0x1
1246 #define RAID_BYPASS_ENABLED 0x2
1248 bypass_status = buffer[RAID_BYPASS_STATUS];
1249 device->raid_bypass_configured =
1250 (bypass_status & RAID_BYPASS_CONFIGURED) != 0;
1251 if (device->raid_bypass_configured &&
1252 (bypass_status & RAID_BYPASS_ENABLED) &&
1253 pqi_get_raid_map(ctrl_info, device) == 0)
1254 device->raid_bypass_enabled = true;
1261 * Use vendor-specific VPD to determine online/offline status of a volume.
1264 static void pqi_get_volume_status(struct pqi_ctrl_info *ctrl_info,
1265 struct pqi_scsi_dev *device)
1269 u8 volume_status = CISS_LV_STATUS_UNAVAILABLE;
1270 bool volume_offline = true;
1272 struct ciss_vpd_logical_volume_status *vpd;
1274 vpd = kmalloc(sizeof(*vpd), GFP_KERNEL);
1278 rc = pqi_scsi_inquiry(ctrl_info, device->scsi3addr,
1279 VPD_PAGE | CISS_VPD_LV_STATUS, vpd, sizeof(*vpd));
1283 if (vpd->page_code != CISS_VPD_LV_STATUS)
1286 page_length = offsetof(struct ciss_vpd_logical_volume_status,
1287 volume_status) + vpd->page_length;
1288 if (page_length < sizeof(*vpd))
1291 volume_status = vpd->volume_status;
1292 volume_flags = get_unaligned_be32(&vpd->flags);
1293 volume_offline = (volume_flags & CISS_LV_FLAGS_NO_HOST_IO) != 0;
1298 device->volume_status = volume_status;
1299 device->volume_offline = volume_offline;
1302 static int pqi_get_physical_device_info(struct pqi_ctrl_info *ctrl_info,
1303 struct pqi_scsi_dev *device,
1304 struct bmic_identify_physical_device *id_phys)
1308 memset(id_phys, 0, sizeof(*id_phys));
1310 rc = pqi_identify_physical_device(ctrl_info, device,
1311 id_phys, sizeof(*id_phys));
1313 device->queue_depth = PQI_PHYSICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH;
1317 scsi_sanitize_inquiry_string(&id_phys->model[0], 8);
1318 scsi_sanitize_inquiry_string(&id_phys->model[8], 16);
1320 memcpy(device->vendor, &id_phys->model[0], sizeof(device->vendor));
1321 memcpy(device->model, &id_phys->model[8], sizeof(device->model));
1323 device->box_index = id_phys->box_index;
1324 device->phys_box_on_bus = id_phys->phys_box_on_bus;
1325 device->phy_connected_dev_type = id_phys->phy_connected_dev_type[0];
1326 device->queue_depth =
1327 get_unaligned_le16(&id_phys->current_queue_depth_limit);
1328 device->active_path_index = id_phys->active_path_number;
1329 device->path_map = id_phys->redundant_path_present_map;
1330 memcpy(&device->box,
1331 &id_phys->alternate_paths_phys_box_on_port,
1332 sizeof(device->box));
1333 memcpy(&device->phys_connector,
1334 &id_phys->alternate_paths_phys_connector,
1335 sizeof(device->phys_connector));
1336 device->bay = id_phys->phys_bay_in_box;
1341 static int pqi_get_logical_device_info(struct pqi_ctrl_info *ctrl_info,
1342 struct pqi_scsi_dev *device)
1347 buffer = kmalloc(64, GFP_KERNEL);
1351 /* Send an inquiry to the device to see what it is. */
1352 rc = pqi_scsi_inquiry(ctrl_info, device->scsi3addr, 0, buffer, 64);
1356 scsi_sanitize_inquiry_string(&buffer[8], 8);
1357 scsi_sanitize_inquiry_string(&buffer[16], 16);
1359 device->devtype = buffer[0] & 0x1f;
1360 memcpy(device->vendor, &buffer[8], sizeof(device->vendor));
1361 memcpy(device->model, &buffer[16], sizeof(device->model));
1363 if (device->devtype == TYPE_DISK) {
1364 if (device->is_external_raid_device) {
1365 device->raid_level = SA_RAID_UNKNOWN;
1366 device->volume_status = CISS_LV_OK;
1367 device->volume_offline = false;
1369 pqi_get_raid_level(ctrl_info, device);
1370 pqi_get_raid_bypass_status(ctrl_info, device);
1371 pqi_get_volume_status(ctrl_info, device);
1381 static int pqi_get_device_info(struct pqi_ctrl_info *ctrl_info,
1382 struct pqi_scsi_dev *device,
1383 struct bmic_identify_physical_device *id_phys)
1387 if (device->is_expander_smp_device)
1390 if (pqi_is_logical_device(device))
1391 rc = pqi_get_logical_device_info(ctrl_info, device);
1393 rc = pqi_get_physical_device_info(ctrl_info, device, id_phys);
1398 static void pqi_show_volume_status(struct pqi_ctrl_info *ctrl_info,
1399 struct pqi_scsi_dev *device)
1402 static const char unknown_state_str[] =
1403 "Volume is in an unknown state (%u)";
1404 char unknown_state_buffer[sizeof(unknown_state_str) + 10];
1406 switch (device->volume_status) {
1408 status = "Volume online";
1410 case CISS_LV_FAILED:
1411 status = "Volume failed";
1413 case CISS_LV_NOT_CONFIGURED:
1414 status = "Volume not configured";
1416 case CISS_LV_DEGRADED:
1417 status = "Volume degraded";
1419 case CISS_LV_READY_FOR_RECOVERY:
1420 status = "Volume ready for recovery operation";
1422 case CISS_LV_UNDERGOING_RECOVERY:
1423 status = "Volume undergoing recovery";
1425 case CISS_LV_WRONG_PHYSICAL_DRIVE_REPLACED:
1426 status = "Wrong physical drive was replaced";
1428 case CISS_LV_PHYSICAL_DRIVE_CONNECTION_PROBLEM:
1429 status = "A physical drive not properly connected";
1431 case CISS_LV_HARDWARE_OVERHEATING:
1432 status = "Hardware is overheating";
1434 case CISS_LV_HARDWARE_HAS_OVERHEATED:
1435 status = "Hardware has overheated";
1437 case CISS_LV_UNDERGOING_EXPANSION:
1438 status = "Volume undergoing expansion";
1440 case CISS_LV_NOT_AVAILABLE:
1441 status = "Volume waiting for transforming volume";
1443 case CISS_LV_QUEUED_FOR_EXPANSION:
1444 status = "Volume queued for expansion";
1446 case CISS_LV_DISABLED_SCSI_ID_CONFLICT:
1447 status = "Volume disabled due to SCSI ID conflict";
1449 case CISS_LV_EJECTED:
1450 status = "Volume has been ejected";
1452 case CISS_LV_UNDERGOING_ERASE:
1453 status = "Volume undergoing background erase";
1455 case CISS_LV_READY_FOR_PREDICTIVE_SPARE_REBUILD:
1456 status = "Volume ready for predictive spare rebuild";
1458 case CISS_LV_UNDERGOING_RPI:
1459 status = "Volume undergoing rapid parity initialization";
1461 case CISS_LV_PENDING_RPI:
1462 status = "Volume queued for rapid parity initialization";
1464 case CISS_LV_ENCRYPTED_NO_KEY:
1465 status = "Encrypted volume inaccessible - key not present";
1467 case CISS_LV_UNDERGOING_ENCRYPTION:
1468 status = "Volume undergoing encryption process";
1470 case CISS_LV_UNDERGOING_ENCRYPTION_REKEYING:
1471 status = "Volume undergoing encryption re-keying process";
1473 case CISS_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
1474 status = "Volume encrypted but encryption is disabled";
1476 case CISS_LV_PENDING_ENCRYPTION:
1477 status = "Volume pending migration to encrypted state";
1479 case CISS_LV_PENDING_ENCRYPTION_REKEYING:
1480 status = "Volume pending encryption rekeying";
1482 case CISS_LV_NOT_SUPPORTED:
1483 status = "Volume not supported on this controller";
1485 case CISS_LV_STATUS_UNAVAILABLE:
1486 status = "Volume status not available";
1489 snprintf(unknown_state_buffer, sizeof(unknown_state_buffer),
1490 unknown_state_str, device->volume_status);
1491 status = unknown_state_buffer;
1495 dev_info(&ctrl_info->pci_dev->dev,
1496 "scsi %d:%d:%d:%d %s\n",
1497 ctrl_info->scsi_host->host_no,
1498 device->bus, device->target, device->lun, status);
1501 static void pqi_rescan_worker(struct work_struct *work)
1503 struct pqi_ctrl_info *ctrl_info;
1505 ctrl_info = container_of(to_delayed_work(work), struct pqi_ctrl_info,
1508 pqi_scan_scsi_devices(ctrl_info);
1511 static int pqi_add_device(struct pqi_ctrl_info *ctrl_info,
1512 struct pqi_scsi_dev *device)
1516 if (pqi_is_logical_device(device))
1517 rc = scsi_add_device(ctrl_info->scsi_host, device->bus,
1518 device->target, device->lun);
1520 rc = pqi_add_sas_device(ctrl_info->sas_host, device);
1525 #define PQI_PENDING_IO_TIMEOUT_SECS 20
1527 static inline void pqi_remove_device(struct pqi_ctrl_info *ctrl_info,
1528 struct pqi_scsi_dev *device)
1532 pqi_device_remove_start(device);
1534 rc = pqi_device_wait_for_pending_io(ctrl_info, device, PQI_PENDING_IO_TIMEOUT_SECS);
1536 dev_err(&ctrl_info->pci_dev->dev,
1537 "scsi %d:%d:%d:%d removing device with %d outstanding command(s)\n",
1538 ctrl_info->scsi_host->host_no, device->bus,
1539 device->target, device->lun,
1540 atomic_read(&device->scsi_cmds_outstanding));
1542 if (pqi_is_logical_device(device))
1543 scsi_remove_device(device->sdev);
1545 pqi_remove_sas_device(device);
1548 /* Assumes the SCSI device list lock is held. */
1550 static struct pqi_scsi_dev *pqi_find_scsi_dev(struct pqi_ctrl_info *ctrl_info,
1551 int bus, int target, int lun)
1553 struct pqi_scsi_dev *device;
1555 list_for_each_entry(device, &ctrl_info->scsi_device_list, scsi_device_list_entry)
1556 if (device->bus == bus && device->target == target && device->lun == lun)
1562 static inline bool pqi_device_equal(struct pqi_scsi_dev *dev1,
1563 struct pqi_scsi_dev *dev2)
1565 if (dev1->is_physical_device != dev2->is_physical_device)
1568 if (dev1->is_physical_device)
1569 return dev1->wwid == dev2->wwid;
1571 return memcmp(dev1->volume_id, dev2->volume_id,
1572 sizeof(dev1->volume_id)) == 0;
1575 enum pqi_find_result {
1581 static enum pqi_find_result pqi_scsi_find_entry(struct pqi_ctrl_info *ctrl_info,
1582 struct pqi_scsi_dev *device_to_find, struct pqi_scsi_dev **matching_device)
1584 struct pqi_scsi_dev *device;
1586 list_for_each_entry(device, &ctrl_info->scsi_device_list, scsi_device_list_entry) {
1587 if (pqi_scsi3addr_equal(device_to_find->scsi3addr, device->scsi3addr)) {
1588 *matching_device = device;
1589 if (pqi_device_equal(device_to_find, device)) {
1590 if (device_to_find->volume_offline)
1591 return DEVICE_CHANGED;
1594 return DEVICE_CHANGED;
1598 return DEVICE_NOT_FOUND;
1601 static inline const char *pqi_device_type(struct pqi_scsi_dev *device)
1603 if (device->is_expander_smp_device)
1604 return "Enclosure SMP ";
1606 return scsi_device_type(device->devtype);
1609 #define PQI_DEV_INFO_BUFFER_LENGTH 128
1611 static void pqi_dev_info(struct pqi_ctrl_info *ctrl_info,
1612 char *action, struct pqi_scsi_dev *device)
1615 char buffer[PQI_DEV_INFO_BUFFER_LENGTH];
1617 count = snprintf(buffer, PQI_DEV_INFO_BUFFER_LENGTH,
1618 "%d:%d:", ctrl_info->scsi_host->host_no, device->bus);
1620 if (device->target_lun_valid)
1621 count += scnprintf(buffer + count,
1622 PQI_DEV_INFO_BUFFER_LENGTH - count,
1627 count += scnprintf(buffer + count,
1628 PQI_DEV_INFO_BUFFER_LENGTH - count,
1631 if (pqi_is_logical_device(device))
1632 count += scnprintf(buffer + count,
1633 PQI_DEV_INFO_BUFFER_LENGTH - count,
1635 *((u32 *)&device->scsi3addr),
1636 *((u32 *)&device->scsi3addr[4]));
1638 count += scnprintf(buffer + count,
1639 PQI_DEV_INFO_BUFFER_LENGTH - count,
1640 " %016llx", device->sas_address);
1642 count += scnprintf(buffer + count, PQI_DEV_INFO_BUFFER_LENGTH - count,
1644 pqi_device_type(device),
1648 if (pqi_is_logical_device(device)) {
1649 if (device->devtype == TYPE_DISK)
1650 count += scnprintf(buffer + count,
1651 PQI_DEV_INFO_BUFFER_LENGTH - count,
1652 "SSDSmartPathCap%c En%c %-12s",
1653 device->raid_bypass_configured ? '+' : '-',
1654 device->raid_bypass_enabled ? '+' : '-',
1655 pqi_raid_level_to_string(device->raid_level));
1657 count += scnprintf(buffer + count,
1658 PQI_DEV_INFO_BUFFER_LENGTH - count,
1659 "AIO%c", device->aio_enabled ? '+' : '-');
1660 if (device->devtype == TYPE_DISK ||
1661 device->devtype == TYPE_ZBC)
1662 count += scnprintf(buffer + count,
1663 PQI_DEV_INFO_BUFFER_LENGTH - count,
1664 " qd=%-6d", device->queue_depth);
1667 dev_info(&ctrl_info->pci_dev->dev, "%s %s\n", action, buffer);
1670 /* Assumes the SCSI device list lock is held. */
1672 static void pqi_scsi_update_device(struct pqi_scsi_dev *existing_device,
1673 struct pqi_scsi_dev *new_device)
1675 existing_device->devtype = new_device->devtype;
1676 existing_device->device_type = new_device->device_type;
1677 existing_device->bus = new_device->bus;
1678 if (new_device->target_lun_valid) {
1679 existing_device->target = new_device->target;
1680 existing_device->lun = new_device->lun;
1681 existing_device->target_lun_valid = true;
1684 if ((existing_device->volume_status == CISS_LV_QUEUED_FOR_EXPANSION ||
1685 existing_device->volume_status == CISS_LV_UNDERGOING_EXPANSION) &&
1686 new_device->volume_status == CISS_LV_OK)
1687 existing_device->rescan = true;
1689 /* By definition, the scsi3addr and wwid fields are already the same. */
1691 existing_device->is_physical_device = new_device->is_physical_device;
1692 existing_device->is_external_raid_device =
1693 new_device->is_external_raid_device;
1694 existing_device->is_expander_smp_device =
1695 new_device->is_expander_smp_device;
1696 existing_device->aio_enabled = new_device->aio_enabled;
1697 memcpy(existing_device->vendor, new_device->vendor,
1698 sizeof(existing_device->vendor));
1699 memcpy(existing_device->model, new_device->model,
1700 sizeof(existing_device->model));
1701 existing_device->sas_address = new_device->sas_address;
1702 existing_device->raid_level = new_device->raid_level;
1703 existing_device->queue_depth = new_device->queue_depth;
1704 existing_device->aio_handle = new_device->aio_handle;
1705 existing_device->volume_status = new_device->volume_status;
1706 existing_device->active_path_index = new_device->active_path_index;
1707 existing_device->path_map = new_device->path_map;
1708 existing_device->bay = new_device->bay;
1709 existing_device->box_index = new_device->box_index;
1710 existing_device->phys_box_on_bus = new_device->phys_box_on_bus;
1711 existing_device->phy_connected_dev_type =
1712 new_device->phy_connected_dev_type;
1713 memcpy(existing_device->box, new_device->box,
1714 sizeof(existing_device->box));
1715 memcpy(existing_device->phys_connector, new_device->phys_connector,
1716 sizeof(existing_device->phys_connector));
1717 existing_device->offload_to_mirror = 0;
1718 kfree(existing_device->raid_map);
1719 existing_device->raid_map = new_device->raid_map;
1720 existing_device->raid_bypass_configured =
1721 new_device->raid_bypass_configured;
1722 existing_device->raid_bypass_enabled =
1723 new_device->raid_bypass_enabled;
1724 existing_device->device_offline = false;
1726 /* To prevent this from being freed later. */
1727 new_device->raid_map = NULL;
1730 static inline void pqi_free_device(struct pqi_scsi_dev *device)
1733 kfree(device->raid_map);
1739 * Called when exposing a new device to the OS fails in order to re-adjust
1740 * our internal SCSI device list to match the SCSI ML's view.
1743 static inline void pqi_fixup_botched_add(struct pqi_ctrl_info *ctrl_info,
1744 struct pqi_scsi_dev *device)
1746 unsigned long flags;
1748 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
1749 list_del(&device->scsi_device_list_entry);
1750 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
1752 /* Allow the device structure to be freed later. */
1753 device->keep_device = false;
1756 static inline bool pqi_is_device_added(struct pqi_scsi_dev *device)
1758 if (device->is_expander_smp_device)
1759 return device->sas_port != NULL;
1761 return device->sdev != NULL;
1764 static void pqi_update_device_list(struct pqi_ctrl_info *ctrl_info,
1765 struct pqi_scsi_dev *new_device_list[], unsigned int num_new_devices)
1769 unsigned long flags;
1770 enum pqi_find_result find_result;
1771 struct pqi_scsi_dev *device;
1772 struct pqi_scsi_dev *next;
1773 struct pqi_scsi_dev *matching_device;
1774 LIST_HEAD(add_list);
1775 LIST_HEAD(delete_list);
1778 * The idea here is to do as little work as possible while holding the
1779 * spinlock. That's why we go to great pains to defer anything other
1780 * than updating the internal device list until after we release the
1784 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
1786 /* Assume that all devices in the existing list have gone away. */
1787 list_for_each_entry(device, &ctrl_info->scsi_device_list, scsi_device_list_entry)
1788 device->device_gone = true;
1790 for (i = 0; i < num_new_devices; i++) {
1791 device = new_device_list[i];
1793 find_result = pqi_scsi_find_entry(ctrl_info, device,
1796 switch (find_result) {
1799 * The newly found device is already in the existing
1802 device->new_device = false;
1803 matching_device->device_gone = false;
1804 pqi_scsi_update_device(matching_device, device);
1806 case DEVICE_NOT_FOUND:
1808 * The newly found device is NOT in the existing device
1811 device->new_device = true;
1813 case DEVICE_CHANGED:
1815 * The original device has gone away and we need to add
1818 device->new_device = true;
1823 /* Process all devices that have gone away. */
1824 list_for_each_entry_safe(device, next, &ctrl_info->scsi_device_list,
1825 scsi_device_list_entry) {
1826 if (device->device_gone) {
1827 list_del_init(&device->scsi_device_list_entry);
1828 list_add_tail(&device->delete_list_entry, &delete_list);
1832 /* Process all new devices. */
1833 for (i = 0; i < num_new_devices; i++) {
1834 device = new_device_list[i];
1835 if (!device->new_device)
1837 if (device->volume_offline)
1839 list_add_tail(&device->scsi_device_list_entry,
1840 &ctrl_info->scsi_device_list);
1841 list_add_tail(&device->add_list_entry, &add_list);
1842 /* To prevent this device structure from being freed later. */
1843 device->keep_device = true;
1846 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
1848 if (pqi_ctrl_in_ofa(ctrl_info))
1849 pqi_ctrl_ofa_done(ctrl_info);
1851 /* Remove all devices that have gone away. */
1852 list_for_each_entry_safe(device, next, &delete_list, delete_list_entry) {
1853 if (device->volume_offline) {
1854 pqi_dev_info(ctrl_info, "offline", device);
1855 pqi_show_volume_status(ctrl_info, device);
1857 list_del(&device->delete_list_entry);
1858 if (pqi_is_device_added(device)) {
1859 pqi_remove_device(ctrl_info, device);
1861 if (!device->volume_offline)
1862 pqi_dev_info(ctrl_info, "removed", device);
1863 pqi_free_device(device);
1868 * Notify the SCSI ML if the queue depth of any existing device has
1871 list_for_each_entry(device, &ctrl_info->scsi_device_list,
1872 scsi_device_list_entry) {
1874 if (device->queue_depth !=
1875 device->advertised_queue_depth) {
1876 device->advertised_queue_depth = device->queue_depth;
1877 scsi_change_queue_depth(device->sdev,
1878 device->advertised_queue_depth);
1880 if (device->rescan) {
1881 scsi_rescan_device(&device->sdev->sdev_gendev);
1882 device->rescan = false;
1887 /* Expose any new devices. */
1888 list_for_each_entry_safe(device, next, &add_list, add_list_entry) {
1889 if (!pqi_is_device_added(device)) {
1890 rc = pqi_add_device(ctrl_info, device);
1892 pqi_dev_info(ctrl_info, "added", device);
1894 dev_warn(&ctrl_info->pci_dev->dev,
1895 "scsi %d:%d:%d:%d addition failed, device not added\n",
1896 ctrl_info->scsi_host->host_no,
1897 device->bus, device->target,
1899 pqi_fixup_botched_add(ctrl_info, device);
1905 static inline bool pqi_is_supported_device(struct pqi_scsi_dev *device)
1908 * Only support the HBA controller itself as a RAID
1909 * controller. If it's a RAID controller other than
1910 * the HBA itself (an external RAID controller, for
1911 * example), we don't support it.
1913 if (device->device_type == SA_DEVICE_TYPE_CONTROLLER &&
1914 !pqi_is_hba_lunid(device->scsi3addr))
1920 static inline bool pqi_skip_device(u8 *scsi3addr)
1922 /* Ignore all masked devices. */
1923 if (MASKED_DEVICE(scsi3addr))
1929 static inline void pqi_mask_device(u8 *scsi3addr)
1931 scsi3addr[3] |= 0xc0;
1934 static inline bool pqi_is_device_with_sas_address(struct pqi_scsi_dev *device)
1936 switch (device->device_type) {
1937 case SA_DEVICE_TYPE_SAS:
1938 case SA_DEVICE_TYPE_EXPANDER_SMP:
1939 case SA_DEVICE_TYPE_SES:
1946 static inline bool pqi_expose_device(struct pqi_scsi_dev *device)
1948 return !device->is_physical_device ||
1949 !pqi_skip_device(device->scsi3addr);
1952 static int pqi_update_scsi_devices(struct pqi_ctrl_info *ctrl_info)
1956 LIST_HEAD(new_device_list_head);
1957 struct report_phys_lun_extended *physdev_list = NULL;
1958 struct report_log_lun_extended *logdev_list = NULL;
1959 struct report_phys_lun_extended_entry *phys_lun_ext_entry;
1960 struct report_log_lun_extended_entry *log_lun_ext_entry;
1961 struct bmic_identify_physical_device *id_phys = NULL;
1964 struct pqi_scsi_dev **new_device_list = NULL;
1965 struct pqi_scsi_dev *device;
1966 struct pqi_scsi_dev *next;
1967 unsigned int num_new_devices;
1968 unsigned int num_valid_devices;
1969 bool is_physical_device;
1971 unsigned int physical_index;
1972 unsigned int logical_index;
1973 static char *out_of_memory_msg =
1974 "failed to allocate memory, device discovery stopped";
1976 rc = pqi_get_device_lists(ctrl_info, &physdev_list, &logdev_list);
1982 get_unaligned_be32(&physdev_list->header.list_length)
1983 / sizeof(physdev_list->lun_entries[0]);
1989 get_unaligned_be32(&logdev_list->header.list_length)
1990 / sizeof(logdev_list->lun_entries[0]);
1994 if (num_physicals) {
1996 * We need this buffer for calls to pqi_get_physical_disk_info()
1997 * below. We allocate it here instead of inside
1998 * pqi_get_physical_disk_info() because it's a fairly large
2001 id_phys = kmalloc(sizeof(*id_phys), GFP_KERNEL);
2003 dev_warn(&ctrl_info->pci_dev->dev, "%s\n",
2009 if (pqi_hide_vsep) {
2010 for (i = num_physicals - 1; i >= 0; i--) {
2011 phys_lun_ext_entry =
2012 &physdev_list->lun_entries[i];
2013 if (CISS_GET_DRIVE_NUMBER(
2014 phys_lun_ext_entry->lunid) ==
2015 PQI_VSEP_CISS_BTL) {
2017 phys_lun_ext_entry->lunid);
2024 num_new_devices = num_physicals + num_logicals;
2026 new_device_list = kmalloc_array(num_new_devices,
2027 sizeof(*new_device_list),
2029 if (!new_device_list) {
2030 dev_warn(&ctrl_info->pci_dev->dev, "%s\n", out_of_memory_msg);
2035 for (i = 0; i < num_new_devices; i++) {
2036 device = kzalloc(sizeof(*device), GFP_KERNEL);
2038 dev_warn(&ctrl_info->pci_dev->dev, "%s\n",
2043 list_add_tail(&device->new_device_list_entry,
2044 &new_device_list_head);
2048 num_valid_devices = 0;
2052 for (i = 0; i < num_new_devices; i++) {
2054 if ((!pqi_expose_ld_first && i < num_physicals) ||
2055 (pqi_expose_ld_first && i >= num_logicals)) {
2056 is_physical_device = true;
2057 phys_lun_ext_entry =
2058 &physdev_list->lun_entries[physical_index++];
2059 log_lun_ext_entry = NULL;
2060 scsi3addr = phys_lun_ext_entry->lunid;
2062 is_physical_device = false;
2063 phys_lun_ext_entry = NULL;
2065 &logdev_list->lun_entries[logical_index++];
2066 scsi3addr = log_lun_ext_entry->lunid;
2069 if (is_physical_device && pqi_skip_device(scsi3addr))
2073 device = list_next_entry(device, new_device_list_entry);
2075 device = list_first_entry(&new_device_list_head,
2076 struct pqi_scsi_dev, new_device_list_entry);
2078 memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
2079 device->is_physical_device = is_physical_device;
2080 if (is_physical_device) {
2081 device->device_type = phys_lun_ext_entry->device_type;
2082 if (device->device_type == SA_DEVICE_TYPE_EXPANDER_SMP)
2083 device->is_expander_smp_device = true;
2085 device->is_external_raid_device =
2086 pqi_is_external_raid_addr(scsi3addr);
2089 if (!pqi_is_supported_device(device))
2092 /* Gather information about the device. */
2093 rc = pqi_get_device_info(ctrl_info, device, id_phys);
2094 if (rc == -ENOMEM) {
2095 dev_warn(&ctrl_info->pci_dev->dev, "%s\n",
2100 if (device->is_physical_device)
2101 dev_warn(&ctrl_info->pci_dev->dev,
2102 "obtaining device info failed, skipping physical device %016llx\n",
2104 &phys_lun_ext_entry->wwid));
2106 dev_warn(&ctrl_info->pci_dev->dev,
2107 "obtaining device info failed, skipping logical device %08x%08x\n",
2108 *((u32 *)&device->scsi3addr),
2109 *((u32 *)&device->scsi3addr[4]));
2114 pqi_assign_bus_target_lun(device);
2116 if (device->is_physical_device) {
2117 device->wwid = phys_lun_ext_entry->wwid;
2118 if ((phys_lun_ext_entry->device_flags &
2119 CISS_REPORT_PHYS_DEV_FLAG_AIO_ENABLED) &&
2120 phys_lun_ext_entry->aio_handle) {
2121 device->aio_enabled = true;
2122 device->aio_handle =
2123 phys_lun_ext_entry->aio_handle;
2126 memcpy(device->volume_id, log_lun_ext_entry->volume_id,
2127 sizeof(device->volume_id));
2130 if (pqi_is_device_with_sas_address(device))
2131 device->sas_address = get_unaligned_be64(&device->wwid);
2133 new_device_list[num_valid_devices++] = device;
2136 pqi_update_device_list(ctrl_info, new_device_list, num_valid_devices);
2139 list_for_each_entry_safe(device, next, &new_device_list_head,
2140 new_device_list_entry) {
2141 if (device->keep_device)
2143 list_del(&device->new_device_list_entry);
2144 pqi_free_device(device);
2147 kfree(new_device_list);
2148 kfree(physdev_list);
2155 static int pqi_scan_scsi_devices(struct pqi_ctrl_info *ctrl_info)
2159 if (pqi_ctrl_offline(ctrl_info))
2162 if (!mutex_trylock(&ctrl_info->scan_mutex)) {
2163 pqi_schedule_rescan_worker_delayed(ctrl_info);
2166 rc = pqi_update_scsi_devices(ctrl_info);
2168 pqi_schedule_rescan_worker_delayed(ctrl_info);
2169 mutex_unlock(&ctrl_info->scan_mutex);
2175 static void pqi_scan_start(struct Scsi_Host *shost)
2177 struct pqi_ctrl_info *ctrl_info;
2179 ctrl_info = shost_to_hba(shost);
2180 if (pqi_ctrl_in_ofa(ctrl_info))
2183 pqi_scan_scsi_devices(ctrl_info);
2186 /* Returns TRUE if scan is finished. */
2188 static int pqi_scan_finished(struct Scsi_Host *shost,
2189 unsigned long elapsed_time)
2191 struct pqi_ctrl_info *ctrl_info;
2193 ctrl_info = shost_priv(shost);
2195 return !mutex_is_locked(&ctrl_info->scan_mutex);
2198 static void pqi_wait_until_scan_finished(struct pqi_ctrl_info *ctrl_info)
2200 mutex_lock(&ctrl_info->scan_mutex);
2201 mutex_unlock(&ctrl_info->scan_mutex);
2204 static void pqi_wait_until_lun_reset_finished(struct pqi_ctrl_info *ctrl_info)
2206 mutex_lock(&ctrl_info->lun_reset_mutex);
2207 mutex_unlock(&ctrl_info->lun_reset_mutex);
2210 static void pqi_wait_until_ofa_finished(struct pqi_ctrl_info *ctrl_info)
2212 mutex_lock(&ctrl_info->ofa_mutex);
2213 mutex_unlock(&ctrl_info->ofa_mutex);
2216 static inline void pqi_set_encryption_info(
2217 struct pqi_encryption_info *encryption_info, struct raid_map *raid_map,
2220 u32 volume_blk_size;
2223 * Set the encryption tweak values based on logical block address.
2224 * If the block size is 512, the tweak value is equal to the LBA.
2225 * For other block sizes, tweak value is (LBA * block size) / 512.
2227 volume_blk_size = get_unaligned_le32(&raid_map->volume_blk_size);
2228 if (volume_blk_size != 512)
2229 first_block = (first_block * volume_blk_size) / 512;
2231 encryption_info->data_encryption_key_index =
2232 get_unaligned_le16(&raid_map->data_encryption_key_index);
2233 encryption_info->encrypt_tweak_lower = lower_32_bits(first_block);
2234 encryption_info->encrypt_tweak_upper = upper_32_bits(first_block);
2238 * Attempt to perform RAID bypass mapping for a logical volume I/O.
2241 #define PQI_RAID_BYPASS_INELIGIBLE 1
2243 static int pqi_raid_bypass_submit_scsi_cmd(struct pqi_ctrl_info *ctrl_info,
2244 struct pqi_scsi_dev *device, struct scsi_cmnd *scmd,
2245 struct pqi_queue_group *queue_group)
2247 struct raid_map *raid_map;
2248 bool is_write = false;
2256 u32 first_row_offset;
2257 u32 last_row_offset;
2262 u32 r5or6_blocks_per_row;
2263 u64 r5or6_first_row;
2265 u32 r5or6_first_row_offset;
2266 u32 r5or6_last_row_offset;
2267 u32 r5or6_first_column;
2268 u32 r5or6_last_column;
2269 u16 data_disks_per_row;
2270 u32 total_disks_per_row;
2271 u16 layout_map_count;
2283 int offload_to_mirror;
2284 struct pqi_encryption_info *encryption_info_ptr;
2285 struct pqi_encryption_info encryption_info;
2286 #if BITS_PER_LONG == 32
2290 /* Check for valid opcode, get LBA and block count. */
2291 switch (scmd->cmnd[0]) {
2296 first_block = (u64)(((scmd->cmnd[1] & 0x1f) << 16) |
2297 (scmd->cmnd[2] << 8) | scmd->cmnd[3]);
2298 block_cnt = (u32)scmd->cmnd[4];
2306 first_block = (u64)get_unaligned_be32(&scmd->cmnd[2]);
2307 block_cnt = (u32)get_unaligned_be16(&scmd->cmnd[7]);
2313 first_block = (u64)get_unaligned_be32(&scmd->cmnd[2]);
2314 block_cnt = get_unaligned_be32(&scmd->cmnd[6]);
2320 first_block = get_unaligned_be64(&scmd->cmnd[2]);
2321 block_cnt = get_unaligned_be32(&scmd->cmnd[10]);
2324 /* Process via normal I/O path. */
2325 return PQI_RAID_BYPASS_INELIGIBLE;
2328 /* Check for write to non-RAID-0. */
2329 if (is_write && device->raid_level != SA_RAID_0)
2330 return PQI_RAID_BYPASS_INELIGIBLE;
2332 if (unlikely(block_cnt == 0))
2333 return PQI_RAID_BYPASS_INELIGIBLE;
2335 last_block = first_block + block_cnt - 1;
2336 raid_map = device->raid_map;
2338 /* Check for invalid block or wraparound. */
2339 if (last_block >= get_unaligned_le64(&raid_map->volume_blk_cnt) ||
2340 last_block < first_block)
2341 return PQI_RAID_BYPASS_INELIGIBLE;
2343 data_disks_per_row = get_unaligned_le16(&raid_map->data_disks_per_row);
2344 strip_size = get_unaligned_le16(&raid_map->strip_size);
2345 layout_map_count = get_unaligned_le16(&raid_map->layout_map_count);
2347 /* Calculate stripe information for the request. */
2348 blocks_per_row = data_disks_per_row * strip_size;
2349 #if BITS_PER_LONG == 32
2350 tmpdiv = first_block;
2351 do_div(tmpdiv, blocks_per_row);
2353 tmpdiv = last_block;
2354 do_div(tmpdiv, blocks_per_row);
2356 first_row_offset = (u32)(first_block - (first_row * blocks_per_row));
2357 last_row_offset = (u32)(last_block - (last_row * blocks_per_row));
2358 tmpdiv = first_row_offset;
2359 do_div(tmpdiv, strip_size);
2360 first_column = tmpdiv;
2361 tmpdiv = last_row_offset;
2362 do_div(tmpdiv, strip_size);
2363 last_column = tmpdiv;
2365 first_row = first_block / blocks_per_row;
2366 last_row = last_block / blocks_per_row;
2367 first_row_offset = (u32)(first_block - (first_row * blocks_per_row));
2368 last_row_offset = (u32)(last_block - (last_row * blocks_per_row));
2369 first_column = first_row_offset / strip_size;
2370 last_column = last_row_offset / strip_size;
2373 /* If this isn't a single row/column then give to the controller. */
2374 if (first_row != last_row || first_column != last_column)
2375 return PQI_RAID_BYPASS_INELIGIBLE;
2377 /* Proceeding with driver mapping. */
2378 total_disks_per_row = data_disks_per_row +
2379 get_unaligned_le16(&raid_map->metadata_disks_per_row);
2380 map_row = ((u32)(first_row >> raid_map->parity_rotation_shift)) %
2381 get_unaligned_le16(&raid_map->row_cnt);
2382 map_index = (map_row * total_disks_per_row) + first_column;
2385 if (device->raid_level == SA_RAID_1) {
2386 if (device->offload_to_mirror)
2387 map_index += data_disks_per_row;
2388 device->offload_to_mirror = !device->offload_to_mirror;
2389 } else if (device->raid_level == SA_RAID_ADM) {
2392 * Handles N-way mirrors (R1-ADM) and R10 with # of drives
2395 offload_to_mirror = device->offload_to_mirror;
2396 if (offload_to_mirror == 0) {
2397 /* use physical disk in the first mirrored group. */
2398 map_index %= data_disks_per_row;
2402 * Determine mirror group that map_index
2405 current_group = map_index / data_disks_per_row;
2407 if (offload_to_mirror != current_group) {
2409 layout_map_count - 1) {
2411 * Select raid index from
2414 map_index += data_disks_per_row;
2418 * Select raid index from first
2421 map_index %= data_disks_per_row;
2425 } while (offload_to_mirror != current_group);
2428 /* Set mirror group to use next time. */
2430 (offload_to_mirror >= layout_map_count - 1) ?
2431 0 : offload_to_mirror + 1;
2432 device->offload_to_mirror = offload_to_mirror;
2434 * Avoid direct use of device->offload_to_mirror within this
2435 * function since multiple threads might simultaneously
2436 * increment it beyond the range of device->layout_map_count -1.
2438 } else if ((device->raid_level == SA_RAID_5 ||
2439 device->raid_level == SA_RAID_6) && layout_map_count > 1) {
2441 /* Verify first and last block are in same RAID group */
2442 r5or6_blocks_per_row = strip_size * data_disks_per_row;
2443 stripesize = r5or6_blocks_per_row * layout_map_count;
2444 #if BITS_PER_LONG == 32
2445 tmpdiv = first_block;
2446 first_group = do_div(tmpdiv, stripesize);
2447 tmpdiv = first_group;
2448 do_div(tmpdiv, r5or6_blocks_per_row);
2449 first_group = tmpdiv;
2450 tmpdiv = last_block;
2451 last_group = do_div(tmpdiv, stripesize);
2452 tmpdiv = last_group;
2453 do_div(tmpdiv, r5or6_blocks_per_row);
2454 last_group = tmpdiv;
2456 first_group = (first_block % stripesize) / r5or6_blocks_per_row;
2457 last_group = (last_block % stripesize) / r5or6_blocks_per_row;
2459 if (first_group != last_group)
2460 return PQI_RAID_BYPASS_INELIGIBLE;
2462 /* Verify request is in a single row of RAID 5/6 */
2463 #if BITS_PER_LONG == 32
2464 tmpdiv = first_block;
2465 do_div(tmpdiv, stripesize);
2466 first_row = r5or6_first_row = r0_first_row = tmpdiv;
2467 tmpdiv = last_block;
2468 do_div(tmpdiv, stripesize);
2469 r5or6_last_row = r0_last_row = tmpdiv;
2471 first_row = r5or6_first_row = r0_first_row =
2472 first_block / stripesize;
2473 r5or6_last_row = r0_last_row = last_block / stripesize;
2475 if (r5or6_first_row != r5or6_last_row)
2476 return PQI_RAID_BYPASS_INELIGIBLE;
2478 /* Verify request is in a single column */
2479 #if BITS_PER_LONG == 32
2480 tmpdiv = first_block;
2481 first_row_offset = do_div(tmpdiv, stripesize);
2482 tmpdiv = first_row_offset;
2483 first_row_offset = (u32)do_div(tmpdiv, r5or6_blocks_per_row);
2484 r5or6_first_row_offset = first_row_offset;
2485 tmpdiv = last_block;
2486 r5or6_last_row_offset = do_div(tmpdiv, stripesize);
2487 tmpdiv = r5or6_last_row_offset;
2488 r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
2489 tmpdiv = r5or6_first_row_offset;
2490 do_div(tmpdiv, strip_size);
2491 first_column = r5or6_first_column = tmpdiv;
2492 tmpdiv = r5or6_last_row_offset;
2493 do_div(tmpdiv, strip_size);
2494 r5or6_last_column = tmpdiv;
2496 first_row_offset = r5or6_first_row_offset =
2497 (u32)((first_block % stripesize) %
2498 r5or6_blocks_per_row);
2500 r5or6_last_row_offset =
2501 (u32)((last_block % stripesize) %
2502 r5or6_blocks_per_row);
2504 first_column = r5or6_first_row_offset / strip_size;
2505 r5or6_first_column = first_column;
2506 r5or6_last_column = r5or6_last_row_offset / strip_size;
2508 if (r5or6_first_column != r5or6_last_column)
2509 return PQI_RAID_BYPASS_INELIGIBLE;
2511 /* Request is eligible */
2513 ((u32)(first_row >> raid_map->parity_rotation_shift)) %
2514 get_unaligned_le16(&raid_map->row_cnt);
2516 map_index = (first_group *
2517 (get_unaligned_le16(&raid_map->row_cnt) *
2518 total_disks_per_row)) +
2519 (map_row * total_disks_per_row) + first_column;
2522 aio_handle = raid_map->disk_data[map_index].aio_handle;
2523 disk_block = get_unaligned_le64(&raid_map->disk_starting_blk) +
2524 first_row * strip_size +
2525 (first_row_offset - first_column * strip_size);
2526 disk_block_cnt = block_cnt;
2528 /* Handle differing logical/physical block sizes. */
2529 if (raid_map->phys_blk_shift) {
2530 disk_block <<= raid_map->phys_blk_shift;
2531 disk_block_cnt <<= raid_map->phys_blk_shift;
2534 if (unlikely(disk_block_cnt > 0xffff))
2535 return PQI_RAID_BYPASS_INELIGIBLE;
2537 /* Build the new CDB for the physical disk I/O. */
2538 if (disk_block > 0xffffffff) {
2539 cdb[0] = is_write ? WRITE_16 : READ_16;
2541 put_unaligned_be64(disk_block, &cdb[2]);
2542 put_unaligned_be32(disk_block_cnt, &cdb[10]);
2547 cdb[0] = is_write ? WRITE_10 : READ_10;
2549 put_unaligned_be32((u32)disk_block, &cdb[2]);
2551 put_unaligned_be16((u16)disk_block_cnt, &cdb[7]);
2556 if (get_unaligned_le16(&raid_map->flags) &
2557 RAID_MAP_ENCRYPTION_ENABLED) {
2558 pqi_set_encryption_info(&encryption_info, raid_map,
2560 encryption_info_ptr = &encryption_info;
2562 encryption_info_ptr = NULL;
2565 return pqi_aio_submit_io(ctrl_info, scmd, aio_handle,
2566 cdb, cdb_length, queue_group, encryption_info_ptr, true);
2569 #define PQI_STATUS_IDLE 0x0
2571 #define PQI_CREATE_ADMIN_QUEUE_PAIR 1
2572 #define PQI_DELETE_ADMIN_QUEUE_PAIR 2
2574 #define PQI_DEVICE_STATE_POWER_ON_AND_RESET 0x0
2575 #define PQI_DEVICE_STATE_STATUS_AVAILABLE 0x1
2576 #define PQI_DEVICE_STATE_ALL_REGISTERS_READY 0x2
2577 #define PQI_DEVICE_STATE_ADMIN_QUEUE_PAIR_READY 0x3
2578 #define PQI_DEVICE_STATE_ERROR 0x4
2580 #define PQI_MODE_READY_TIMEOUT_SECS 30
2581 #define PQI_MODE_READY_POLL_INTERVAL_MSECS 1
2583 static int pqi_wait_for_pqi_mode_ready(struct pqi_ctrl_info *ctrl_info)
2585 struct pqi_device_registers __iomem *pqi_registers;
2586 unsigned long timeout;
2590 pqi_registers = ctrl_info->pqi_registers;
2591 timeout = (PQI_MODE_READY_TIMEOUT_SECS * PQI_HZ) + jiffies;
2594 signature = readq(&pqi_registers->signature);
2595 if (memcmp(&signature, PQI_DEVICE_SIGNATURE,
2596 sizeof(signature)) == 0)
2598 if (time_after(jiffies, timeout)) {
2599 dev_err(&ctrl_info->pci_dev->dev,
2600 "timed out waiting for PQI signature\n");
2603 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS);
2607 status = readb(&pqi_registers->function_and_status_code);
2608 if (status == PQI_STATUS_IDLE)
2610 if (time_after(jiffies, timeout)) {
2611 dev_err(&ctrl_info->pci_dev->dev,
2612 "timed out waiting for PQI IDLE\n");
2615 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS);
2619 if (readl(&pqi_registers->device_status) ==
2620 PQI_DEVICE_STATE_ALL_REGISTERS_READY)
2622 if (time_after(jiffies, timeout)) {
2623 dev_err(&ctrl_info->pci_dev->dev,
2624 "timed out waiting for PQI all registers ready\n");
2627 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS);
2633 static inline void pqi_aio_path_disabled(struct pqi_io_request *io_request)
2635 struct pqi_scsi_dev *device;
2637 device = io_request->scmd->device->hostdata;
2638 device->raid_bypass_enabled = false;
2639 device->aio_enabled = false;
2642 static inline void pqi_take_device_offline(struct scsi_device *sdev, char *path)
2644 struct pqi_ctrl_info *ctrl_info;
2645 struct pqi_scsi_dev *device;
2647 device = sdev->hostdata;
2648 if (device->device_offline)
2651 device->device_offline = true;
2652 ctrl_info = shost_to_hba(sdev->host);
2653 pqi_schedule_rescan_worker(ctrl_info);
2654 dev_err(&ctrl_info->pci_dev->dev, "re-scanning %s scsi %d:%d:%d:%d\n",
2655 path, ctrl_info->scsi_host->host_no, device->bus,
2656 device->target, device->lun);
2659 static void pqi_process_raid_io_error(struct pqi_io_request *io_request)
2663 struct scsi_cmnd *scmd;
2664 struct pqi_raid_error_info *error_info;
2665 size_t sense_data_length;
2668 struct scsi_sense_hdr sshdr;
2670 scmd = io_request->scmd;
2674 error_info = io_request->error_info;
2675 scsi_status = error_info->status;
2678 switch (error_info->data_out_result) {
2679 case PQI_DATA_IN_OUT_GOOD:
2681 case PQI_DATA_IN_OUT_UNDERFLOW:
2683 get_unaligned_le32(&error_info->data_out_transferred);
2684 residual_count = scsi_bufflen(scmd) - xfer_count;
2685 scsi_set_resid(scmd, residual_count);
2686 if (xfer_count < scmd->underflow)
2687 host_byte = DID_SOFT_ERROR;
2689 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT:
2690 case PQI_DATA_IN_OUT_ABORTED:
2691 host_byte = DID_ABORT;
2693 case PQI_DATA_IN_OUT_TIMEOUT:
2694 host_byte = DID_TIME_OUT;
2696 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW:
2697 case PQI_DATA_IN_OUT_PROTOCOL_ERROR:
2698 case PQI_DATA_IN_OUT_BUFFER_ERROR:
2699 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA:
2700 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE:
2701 case PQI_DATA_IN_OUT_ERROR:
2702 case PQI_DATA_IN_OUT_HARDWARE_ERROR:
2703 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR:
2704 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT:
2705 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED:
2706 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED:
2707 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED:
2708 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST:
2709 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION:
2710 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED:
2711 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ:
2713 host_byte = DID_ERROR;
2717 sense_data_length = get_unaligned_le16(&error_info->sense_data_length);
2718 if (sense_data_length == 0)
2720 get_unaligned_le16(&error_info->response_data_length);
2721 if (sense_data_length) {
2722 if (sense_data_length > sizeof(error_info->data))
2723 sense_data_length = sizeof(error_info->data);
2725 if (scsi_status == SAM_STAT_CHECK_CONDITION &&
2726 scsi_normalize_sense(error_info->data,
2727 sense_data_length, &sshdr) &&
2728 sshdr.sense_key == HARDWARE_ERROR &&
2729 sshdr.asc == 0x3e) {
2730 struct pqi_ctrl_info *ctrl_info = shost_to_hba(scmd->device->host);
2731 struct pqi_scsi_dev *device = scmd->device->hostdata;
2733 switch (sshdr.ascq) {
2734 case 0x1: /* LOGICAL UNIT FAILURE */
2735 if (printk_ratelimit())
2736 scmd_printk(KERN_ERR, scmd, "received 'logical unit failure' from controller for scsi %d:%d:%d:%d\n",
2737 ctrl_info->scsi_host->host_no, device->bus, device->target, device->lun);
2738 pqi_take_device_offline(scmd->device, "RAID");
2739 host_byte = DID_NO_CONNECT;
2742 default: /* See http://www.t10.org/lists/asc-num.htm#ASC_3E */
2743 if (printk_ratelimit())
2744 scmd_printk(KERN_ERR, scmd, "received unhandled error %d from controller for scsi %d:%d:%d:%d\n",
2745 sshdr.ascq, ctrl_info->scsi_host->host_no, device->bus, device->target, device->lun);
2750 if (sense_data_length > SCSI_SENSE_BUFFERSIZE)
2751 sense_data_length = SCSI_SENSE_BUFFERSIZE;
2752 memcpy(scmd->sense_buffer, error_info->data,
2756 scmd->result = scsi_status;
2757 set_host_byte(scmd, host_byte);
2760 static void pqi_process_aio_io_error(struct pqi_io_request *io_request)
2764 struct scsi_cmnd *scmd;
2765 struct pqi_aio_error_info *error_info;
2766 size_t sense_data_length;
2769 bool device_offline;
2771 scmd = io_request->scmd;
2772 error_info = io_request->error_info;
2774 sense_data_length = 0;
2775 device_offline = false;
2777 switch (error_info->service_response) {
2778 case PQI_AIO_SERV_RESPONSE_COMPLETE:
2779 scsi_status = error_info->status;
2781 case PQI_AIO_SERV_RESPONSE_FAILURE:
2782 switch (error_info->status) {
2783 case PQI_AIO_STATUS_IO_ABORTED:
2784 scsi_status = SAM_STAT_TASK_ABORTED;
2786 case PQI_AIO_STATUS_UNDERRUN:
2787 scsi_status = SAM_STAT_GOOD;
2788 residual_count = get_unaligned_le32(
2789 &error_info->residual_count);
2790 scsi_set_resid(scmd, residual_count);
2791 xfer_count = scsi_bufflen(scmd) - residual_count;
2792 if (xfer_count < scmd->underflow)
2793 host_byte = DID_SOFT_ERROR;
2795 case PQI_AIO_STATUS_OVERRUN:
2796 scsi_status = SAM_STAT_GOOD;
2798 case PQI_AIO_STATUS_AIO_PATH_DISABLED:
2799 pqi_aio_path_disabled(io_request);
2800 scsi_status = SAM_STAT_GOOD;
2801 io_request->status = -EAGAIN;
2803 case PQI_AIO_STATUS_NO_PATH_TO_DEVICE:
2804 case PQI_AIO_STATUS_INVALID_DEVICE:
2805 if (!io_request->raid_bypass) {
2806 device_offline = true;
2807 pqi_take_device_offline(scmd->device, "AIO");
2808 host_byte = DID_NO_CONNECT;
2810 scsi_status = SAM_STAT_CHECK_CONDITION;
2812 case PQI_AIO_STATUS_IO_ERROR:
2814 scsi_status = SAM_STAT_CHECK_CONDITION;
2818 case PQI_AIO_SERV_RESPONSE_TMF_COMPLETE:
2819 case PQI_AIO_SERV_RESPONSE_TMF_SUCCEEDED:
2820 scsi_status = SAM_STAT_GOOD;
2822 case PQI_AIO_SERV_RESPONSE_TMF_REJECTED:
2823 case PQI_AIO_SERV_RESPONSE_TMF_INCORRECT_LUN:
2825 scsi_status = SAM_STAT_CHECK_CONDITION;
2829 if (error_info->data_present) {
2831 get_unaligned_le16(&error_info->data_length);
2832 if (sense_data_length) {
2833 if (sense_data_length > sizeof(error_info->data))
2834 sense_data_length = sizeof(error_info->data);
2835 if (sense_data_length > SCSI_SENSE_BUFFERSIZE)
2836 sense_data_length = SCSI_SENSE_BUFFERSIZE;
2837 memcpy(scmd->sense_buffer, error_info->data,
2842 if (device_offline && sense_data_length == 0)
2843 scsi_build_sense_buffer(0, scmd->sense_buffer, HARDWARE_ERROR,
2846 scmd->result = scsi_status;
2847 set_host_byte(scmd, host_byte);
2850 static void pqi_process_io_error(unsigned int iu_type,
2851 struct pqi_io_request *io_request)
2854 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR:
2855 pqi_process_raid_io_error(io_request);
2857 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR:
2858 pqi_process_aio_io_error(io_request);
2863 static int pqi_interpret_task_management_response(
2864 struct pqi_task_management_response *response)
2868 switch (response->response_code) {
2869 case SOP_TMF_COMPLETE:
2870 case SOP_TMF_FUNCTION_SUCCEEDED:
2873 case SOP_TMF_REJECTED:
2884 static inline void pqi_invalid_response(struct pqi_ctrl_info *ctrl_info)
2886 pqi_take_ctrl_offline(ctrl_info);
2889 static int pqi_process_io_intr(struct pqi_ctrl_info *ctrl_info, struct pqi_queue_group *queue_group)
2894 struct pqi_io_request *io_request;
2895 struct pqi_io_response *response;
2899 oq_ci = queue_group->oq_ci_copy;
2902 oq_pi = readl(queue_group->oq_pi);
2903 if (oq_pi >= ctrl_info->num_elements_per_oq) {
2904 pqi_invalid_response(ctrl_info);
2905 dev_err(&ctrl_info->pci_dev->dev,
2906 "I/O interrupt: producer index (%u) out of range (0-%u): consumer index: %u\n",
2907 oq_pi, ctrl_info->num_elements_per_oq - 1, oq_ci);
2914 response = queue_group->oq_element_array +
2915 (oq_ci * PQI_OPERATIONAL_OQ_ELEMENT_LENGTH);
2917 request_id = get_unaligned_le16(&response->request_id);
2918 if (request_id >= ctrl_info->max_io_slots) {
2919 pqi_invalid_response(ctrl_info);
2920 dev_err(&ctrl_info->pci_dev->dev,
2921 "request ID in response (%u) out of range (0-%u): producer index: %u consumer index: %u\n",
2922 request_id, ctrl_info->max_io_slots - 1, oq_pi, oq_ci);
2926 io_request = &ctrl_info->io_request_pool[request_id];
2927 if (atomic_read(&io_request->refcount) == 0) {
2928 pqi_invalid_response(ctrl_info);
2929 dev_err(&ctrl_info->pci_dev->dev,
2930 "request ID in response (%u) does not match an outstanding I/O request: producer index: %u consumer index: %u\n",
2931 request_id, oq_pi, oq_ci);
2935 switch (response->header.iu_type) {
2936 case PQI_RESPONSE_IU_RAID_PATH_IO_SUCCESS:
2937 case PQI_RESPONSE_IU_AIO_PATH_IO_SUCCESS:
2938 if (io_request->scmd)
2939 io_request->scmd->result = 0;
2941 case PQI_RESPONSE_IU_GENERAL_MANAGEMENT:
2943 case PQI_RESPONSE_IU_VENDOR_GENERAL:
2944 io_request->status =
2946 &((struct pqi_vendor_general_response *)
2949 case PQI_RESPONSE_IU_TASK_MANAGEMENT:
2950 io_request->status =
2951 pqi_interpret_task_management_response(
2954 case PQI_RESPONSE_IU_AIO_PATH_DISABLED:
2955 pqi_aio_path_disabled(io_request);
2956 io_request->status = -EAGAIN;
2958 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR:
2959 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR:
2960 io_request->error_info = ctrl_info->error_buffer +
2961 (get_unaligned_le16(&response->error_index) *
2962 PQI_ERROR_BUFFER_ELEMENT_LENGTH);
2963 pqi_process_io_error(response->header.iu_type, io_request);
2966 pqi_invalid_response(ctrl_info);
2967 dev_err(&ctrl_info->pci_dev->dev,
2968 "unexpected IU type: 0x%x: producer index: %u consumer index: %u\n",
2969 response->header.iu_type, oq_pi, oq_ci);
2973 io_request->io_complete_callback(io_request, io_request->context);
2976 * Note that the I/O request structure CANNOT BE TOUCHED after
2977 * returning from the I/O completion callback!
2979 oq_ci = (oq_ci + 1) % ctrl_info->num_elements_per_oq;
2982 if (num_responses) {
2983 queue_group->oq_ci_copy = oq_ci;
2984 writel(oq_ci, queue_group->oq_ci);
2987 return num_responses;
2990 static inline unsigned int pqi_num_elements_free(unsigned int pi,
2991 unsigned int ci, unsigned int elements_in_queue)
2993 unsigned int num_elements_used;
2996 num_elements_used = pi - ci;
2998 num_elements_used = elements_in_queue - ci + pi;
3000 return elements_in_queue - num_elements_used - 1;
3003 static void pqi_send_event_ack(struct pqi_ctrl_info *ctrl_info,
3004 struct pqi_event_acknowledge_request *iu, size_t iu_length)
3008 unsigned long flags;
3010 struct pqi_queue_group *queue_group;
3012 queue_group = &ctrl_info->queue_groups[PQI_DEFAULT_QUEUE_GROUP];
3013 put_unaligned_le16(queue_group->oq_id, &iu->header.response_queue_id);
3016 spin_lock_irqsave(&queue_group->submit_lock[RAID_PATH], flags);
3018 iq_pi = queue_group->iq_pi_copy[RAID_PATH];
3019 iq_ci = readl(queue_group->iq_ci[RAID_PATH]);
3021 if (pqi_num_elements_free(iq_pi, iq_ci,
3022 ctrl_info->num_elements_per_iq))
3025 spin_unlock_irqrestore(
3026 &queue_group->submit_lock[RAID_PATH], flags);
3028 if (pqi_ctrl_offline(ctrl_info))
3032 next_element = queue_group->iq_element_array[RAID_PATH] +
3033 (iq_pi * PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
3035 memcpy(next_element, iu, iu_length);
3037 iq_pi = (iq_pi + 1) % ctrl_info->num_elements_per_iq;
3038 queue_group->iq_pi_copy[RAID_PATH] = iq_pi;
3041 * This write notifies the controller that an IU is available to be
3044 writel(iq_pi, queue_group->iq_pi[RAID_PATH]);
3046 spin_unlock_irqrestore(&queue_group->submit_lock[RAID_PATH], flags);
3049 static void pqi_acknowledge_event(struct pqi_ctrl_info *ctrl_info,
3050 struct pqi_event *event)
3052 struct pqi_event_acknowledge_request request;
3054 memset(&request, 0, sizeof(request));
3056 request.header.iu_type = PQI_REQUEST_IU_ACKNOWLEDGE_VENDOR_EVENT;
3057 put_unaligned_le16(sizeof(request) - PQI_REQUEST_HEADER_LENGTH,
3058 &request.header.iu_length);
3059 request.event_type = event->event_type;
3060 request.event_id = event->event_id;
3061 request.additional_event_id = event->additional_event_id;
3063 pqi_send_event_ack(ctrl_info, &request, sizeof(request));
3066 #define PQI_SOFT_RESET_STATUS_TIMEOUT_SECS 30
3067 #define PQI_SOFT_RESET_STATUS_POLL_INTERVAL_SECS 1
3069 static enum pqi_soft_reset_status pqi_poll_for_soft_reset_status(
3070 struct pqi_ctrl_info *ctrl_info)
3072 unsigned long timeout;
3075 timeout = (PQI_SOFT_RESET_STATUS_TIMEOUT_SECS * PQI_HZ) + jiffies;
3078 status = pqi_read_soft_reset_status(ctrl_info);
3079 if (status & PQI_SOFT_RESET_INITIATE)
3080 return RESET_INITIATE_DRIVER;
3082 if (status & PQI_SOFT_RESET_ABORT)
3085 if (time_after(jiffies, timeout)) {
3086 dev_err(&ctrl_info->pci_dev->dev,
3087 "timed out waiting for soft reset status\n");
3088 return RESET_TIMEDOUT;
3091 if (!sis_is_firmware_running(ctrl_info))
3092 return RESET_NORESPONSE;
3094 ssleep(PQI_SOFT_RESET_STATUS_POLL_INTERVAL_SECS);
3098 static void pqi_process_soft_reset(struct pqi_ctrl_info *ctrl_info,
3099 enum pqi_soft_reset_status reset_status)
3103 switch (reset_status) {
3104 case RESET_INITIATE_DRIVER:
3105 case RESET_TIMEDOUT:
3106 dev_info(&ctrl_info->pci_dev->dev,
3107 "resetting controller %u\n", ctrl_info->ctrl_id);
3108 sis_soft_reset(ctrl_info);
3110 case RESET_INITIATE_FIRMWARE:
3111 rc = pqi_ofa_ctrl_restart(ctrl_info);
3112 pqi_ofa_free_host_buffer(ctrl_info);
3113 dev_info(&ctrl_info->pci_dev->dev,
3114 "Online Firmware Activation for controller %u: %s\n",
3115 ctrl_info->ctrl_id, rc == 0 ? "SUCCESS" : "FAILED");
3118 pqi_ofa_ctrl_unquiesce(ctrl_info);
3119 dev_info(&ctrl_info->pci_dev->dev,
3120 "Online Firmware Activation for controller %u: %s\n",
3121 ctrl_info->ctrl_id, "ABORTED");
3123 case RESET_NORESPONSE:
3124 pqi_ofa_free_host_buffer(ctrl_info);
3125 pqi_take_ctrl_offline(ctrl_info);
3130 static void pqi_ofa_process_event(struct pqi_ctrl_info *ctrl_info,
3131 struct pqi_event *event)
3134 enum pqi_soft_reset_status status;
3136 event_id = get_unaligned_le16(&event->event_id);
3138 mutex_lock(&ctrl_info->ofa_mutex);
3140 if (event_id == PQI_EVENT_OFA_QUIESCE) {
3141 dev_info(&ctrl_info->pci_dev->dev,
3142 "Received Online Firmware Activation quiesce event for controller %u\n",
3143 ctrl_info->ctrl_id);
3144 pqi_ofa_ctrl_quiesce(ctrl_info);
3145 pqi_acknowledge_event(ctrl_info, event);
3146 if (ctrl_info->soft_reset_handshake_supported) {
3147 status = pqi_poll_for_soft_reset_status(ctrl_info);
3148 pqi_process_soft_reset(ctrl_info, status);
3150 pqi_process_soft_reset(ctrl_info,
3151 RESET_INITIATE_FIRMWARE);
3154 } else if (event_id == PQI_EVENT_OFA_MEMORY_ALLOCATION) {
3155 pqi_acknowledge_event(ctrl_info, event);
3156 pqi_ofa_setup_host_buffer(ctrl_info,
3157 le32_to_cpu(event->ofa_bytes_requested));
3158 pqi_ofa_host_memory_update(ctrl_info);
3159 } else if (event_id == PQI_EVENT_OFA_CANCELLED) {
3160 pqi_ofa_free_host_buffer(ctrl_info);
3161 pqi_acknowledge_event(ctrl_info, event);
3162 dev_info(&ctrl_info->pci_dev->dev,
3163 "Online Firmware Activation(%u) cancel reason : %u\n",
3164 ctrl_info->ctrl_id, event->ofa_cancel_reason);
3167 mutex_unlock(&ctrl_info->ofa_mutex);
3170 static void pqi_event_worker(struct work_struct *work)
3173 struct pqi_ctrl_info *ctrl_info;
3174 struct pqi_event *event;
3176 ctrl_info = container_of(work, struct pqi_ctrl_info, event_work);
3178 pqi_ctrl_busy(ctrl_info);
3179 pqi_wait_if_ctrl_blocked(ctrl_info, NO_TIMEOUT);
3180 if (pqi_ctrl_offline(ctrl_info))
3183 pqi_schedule_rescan_worker_delayed(ctrl_info);
3185 event = ctrl_info->events;
3186 for (i = 0; i < PQI_NUM_SUPPORTED_EVENTS; i++) {
3187 if (event->pending) {
3188 event->pending = false;
3189 if (event->event_type == PQI_EVENT_TYPE_OFA) {
3190 pqi_ctrl_unbusy(ctrl_info);
3191 pqi_ofa_process_event(ctrl_info, event);
3194 pqi_acknowledge_event(ctrl_info, event);
3200 pqi_ctrl_unbusy(ctrl_info);
3203 #define PQI_HEARTBEAT_TIMER_INTERVAL (10 * PQI_HZ)
3205 static void pqi_heartbeat_timer_handler(struct timer_list *t)
3208 u32 heartbeat_count;
3209 struct pqi_ctrl_info *ctrl_info = from_timer(ctrl_info, t,
3212 pqi_check_ctrl_health(ctrl_info);
3213 if (pqi_ctrl_offline(ctrl_info))
3216 num_interrupts = atomic_read(&ctrl_info->num_interrupts);
3217 heartbeat_count = pqi_read_heartbeat_counter(ctrl_info);
3219 if (num_interrupts == ctrl_info->previous_num_interrupts) {
3220 if (heartbeat_count == ctrl_info->previous_heartbeat_count) {
3221 dev_err(&ctrl_info->pci_dev->dev,
3222 "no heartbeat detected - last heartbeat count: %u\n",
3224 pqi_take_ctrl_offline(ctrl_info);
3228 ctrl_info->previous_num_interrupts = num_interrupts;
3231 ctrl_info->previous_heartbeat_count = heartbeat_count;
3232 mod_timer(&ctrl_info->heartbeat_timer,
3233 jiffies + PQI_HEARTBEAT_TIMER_INTERVAL);
3236 static void pqi_start_heartbeat_timer(struct pqi_ctrl_info *ctrl_info)
3238 if (!ctrl_info->heartbeat_counter)
3241 ctrl_info->previous_num_interrupts =
3242 atomic_read(&ctrl_info->num_interrupts);
3243 ctrl_info->previous_heartbeat_count =
3244 pqi_read_heartbeat_counter(ctrl_info);
3246 ctrl_info->heartbeat_timer.expires =
3247 jiffies + PQI_HEARTBEAT_TIMER_INTERVAL;
3248 add_timer(&ctrl_info->heartbeat_timer);
3251 static inline void pqi_stop_heartbeat_timer(struct pqi_ctrl_info *ctrl_info)
3253 del_timer_sync(&ctrl_info->heartbeat_timer);
3256 static inline int pqi_event_type_to_event_index(unsigned int event_type)
3260 for (index = 0; index < ARRAY_SIZE(pqi_supported_event_types); index++)
3261 if (event_type == pqi_supported_event_types[index])
3267 static inline bool pqi_is_supported_event(unsigned int event_type)
3269 return pqi_event_type_to_event_index(event_type) != -1;
3272 static void pqi_ofa_capture_event_payload(struct pqi_event *event,
3273 struct pqi_event_response *response)
3277 event_id = get_unaligned_le16(&event->event_id);
3279 if (event->event_type == PQI_EVENT_TYPE_OFA) {
3280 if (event_id == PQI_EVENT_OFA_MEMORY_ALLOCATION) {
3281 event->ofa_bytes_requested =
3282 response->data.ofa_memory_allocation.bytes_requested;
3283 } else if (event_id == PQI_EVENT_OFA_CANCELLED) {
3284 event->ofa_cancel_reason =
3285 response->data.ofa_cancelled.reason;
3290 static int pqi_process_event_intr(struct pqi_ctrl_info *ctrl_info)
3295 struct pqi_event_queue *event_queue;
3296 struct pqi_event_response *response;
3297 struct pqi_event *event;
3300 event_queue = &ctrl_info->event_queue;
3302 oq_ci = event_queue->oq_ci_copy;
3305 oq_pi = readl(event_queue->oq_pi);
3306 if (oq_pi >= PQI_NUM_EVENT_QUEUE_ELEMENTS) {
3307 pqi_invalid_response(ctrl_info);
3308 dev_err(&ctrl_info->pci_dev->dev,
3309 "event interrupt: producer index (%u) out of range (0-%u): consumer index: %u\n",
3310 oq_pi, PQI_NUM_EVENT_QUEUE_ELEMENTS - 1, oq_ci);
3318 response = event_queue->oq_element_array + (oq_ci * PQI_EVENT_OQ_ELEMENT_LENGTH);
3321 pqi_event_type_to_event_index(response->event_type);
3323 if (event_index >= 0 && response->request_acknowledge) {
3324 event = &ctrl_info->events[event_index];
3325 event->pending = true;
3326 event->event_type = response->event_type;
3327 event->event_id = response->event_id;
3328 event->additional_event_id = response->additional_event_id;
3329 if (event->event_type == PQI_EVENT_TYPE_OFA)
3330 pqi_ofa_capture_event_payload(event, response);
3333 oq_ci = (oq_ci + 1) % PQI_NUM_EVENT_QUEUE_ELEMENTS;
3337 event_queue->oq_ci_copy = oq_ci;
3338 writel(oq_ci, event_queue->oq_ci);
3339 schedule_work(&ctrl_info->event_work);
3345 #define PQI_LEGACY_INTX_MASK 0x1
3347 static inline void pqi_configure_legacy_intx(struct pqi_ctrl_info *ctrl_info,
3351 struct pqi_device_registers __iomem *pqi_registers;
3352 volatile void __iomem *register_addr;
3354 pqi_registers = ctrl_info->pqi_registers;
3357 register_addr = &pqi_registers->legacy_intx_mask_clear;
3359 register_addr = &pqi_registers->legacy_intx_mask_set;
3361 intx_mask = readl(register_addr);
3362 intx_mask |= PQI_LEGACY_INTX_MASK;
3363 writel(intx_mask, register_addr);
3366 static void pqi_change_irq_mode(struct pqi_ctrl_info *ctrl_info,
3367 enum pqi_irq_mode new_mode)
3369 switch (ctrl_info->irq_mode) {
3375 pqi_configure_legacy_intx(ctrl_info, true);
3376 sis_enable_intx(ctrl_info);
3385 pqi_configure_legacy_intx(ctrl_info, false);
3386 sis_enable_msix(ctrl_info);
3391 pqi_configure_legacy_intx(ctrl_info, false);
3398 sis_enable_msix(ctrl_info);
3401 pqi_configure_legacy_intx(ctrl_info, true);
3402 sis_enable_intx(ctrl_info);
3410 ctrl_info->irq_mode = new_mode;
3413 #define PQI_LEGACY_INTX_PENDING 0x1
3415 static inline bool pqi_is_valid_irq(struct pqi_ctrl_info *ctrl_info)
3420 switch (ctrl_info->irq_mode) {
3426 readl(&ctrl_info->pqi_registers->legacy_intx_status);
3427 if (intx_status & PQI_LEGACY_INTX_PENDING)
3441 static irqreturn_t pqi_irq_handler(int irq, void *data)
3443 struct pqi_ctrl_info *ctrl_info;
3444 struct pqi_queue_group *queue_group;
3445 int num_io_responses_handled;
3446 int num_events_handled;
3449 ctrl_info = queue_group->ctrl_info;
3451 if (!pqi_is_valid_irq(ctrl_info))
3454 num_io_responses_handled = pqi_process_io_intr(ctrl_info, queue_group);
3455 if (num_io_responses_handled < 0)
3458 if (irq == ctrl_info->event_irq) {
3459 num_events_handled = pqi_process_event_intr(ctrl_info);
3460 if (num_events_handled < 0)
3463 num_events_handled = 0;
3466 if (num_io_responses_handled + num_events_handled > 0)
3467 atomic_inc(&ctrl_info->num_interrupts);
3469 pqi_start_io(ctrl_info, queue_group, RAID_PATH, NULL);
3470 pqi_start_io(ctrl_info, queue_group, AIO_PATH, NULL);
3476 static int pqi_request_irqs(struct pqi_ctrl_info *ctrl_info)
3478 struct pci_dev *pci_dev = ctrl_info->pci_dev;
3482 ctrl_info->event_irq = pci_irq_vector(pci_dev, 0);
3484 for (i = 0; i < ctrl_info->num_msix_vectors_enabled; i++) {
3485 rc = request_irq(pci_irq_vector(pci_dev, i), pqi_irq_handler, 0,
3486 DRIVER_NAME_SHORT, &ctrl_info->queue_groups[i]);
3488 dev_err(&pci_dev->dev,
3489 "irq %u init failed with error %d\n",
3490 pci_irq_vector(pci_dev, i), rc);
3493 ctrl_info->num_msix_vectors_initialized++;
3499 static void pqi_free_irqs(struct pqi_ctrl_info *ctrl_info)
3503 for (i = 0; i < ctrl_info->num_msix_vectors_initialized; i++)
3504 free_irq(pci_irq_vector(ctrl_info->pci_dev, i),
3505 &ctrl_info->queue_groups[i]);
3507 ctrl_info->num_msix_vectors_initialized = 0;
3510 static int pqi_enable_msix_interrupts(struct pqi_ctrl_info *ctrl_info)
3512 int num_vectors_enabled;
3514 num_vectors_enabled = pci_alloc_irq_vectors(ctrl_info->pci_dev,
3515 PQI_MIN_MSIX_VECTORS, ctrl_info->num_queue_groups,
3516 PCI_IRQ_MSIX | PCI_IRQ_AFFINITY);
3517 if (num_vectors_enabled < 0) {
3518 dev_err(&ctrl_info->pci_dev->dev,
3519 "MSI-X init failed with error %d\n",
3520 num_vectors_enabled);
3521 return num_vectors_enabled;
3524 ctrl_info->num_msix_vectors_enabled = num_vectors_enabled;
3525 ctrl_info->irq_mode = IRQ_MODE_MSIX;
3529 static void pqi_disable_msix_interrupts(struct pqi_ctrl_info *ctrl_info)
3531 if (ctrl_info->num_msix_vectors_enabled) {
3532 pci_free_irq_vectors(ctrl_info->pci_dev);
3533 ctrl_info->num_msix_vectors_enabled = 0;
3537 static int pqi_alloc_operational_queues(struct pqi_ctrl_info *ctrl_info)
3540 size_t alloc_length;
3541 size_t element_array_length_per_iq;
3542 size_t element_array_length_per_oq;
3543 void *element_array;
3544 void __iomem *next_queue_index;
3545 void *aligned_pointer;
3546 unsigned int num_inbound_queues;
3547 unsigned int num_outbound_queues;
3548 unsigned int num_queue_indexes;
3549 struct pqi_queue_group *queue_group;
3551 element_array_length_per_iq =
3552 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH *
3553 ctrl_info->num_elements_per_iq;
3554 element_array_length_per_oq =
3555 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH *
3556 ctrl_info->num_elements_per_oq;
3557 num_inbound_queues = ctrl_info->num_queue_groups * 2;
3558 num_outbound_queues = ctrl_info->num_queue_groups;
3559 num_queue_indexes = (ctrl_info->num_queue_groups * 3) + 1;
3561 aligned_pointer = NULL;
3563 for (i = 0; i < num_inbound_queues; i++) {
3564 aligned_pointer = PTR_ALIGN(aligned_pointer,
3565 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3566 aligned_pointer += element_array_length_per_iq;
3569 for (i = 0; i < num_outbound_queues; i++) {
3570 aligned_pointer = PTR_ALIGN(aligned_pointer,
3571 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3572 aligned_pointer += element_array_length_per_oq;
3575 aligned_pointer = PTR_ALIGN(aligned_pointer,
3576 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3577 aligned_pointer += PQI_NUM_EVENT_QUEUE_ELEMENTS *
3578 PQI_EVENT_OQ_ELEMENT_LENGTH;
3580 for (i = 0; i < num_queue_indexes; i++) {
3581 aligned_pointer = PTR_ALIGN(aligned_pointer,
3582 PQI_OPERATIONAL_INDEX_ALIGNMENT);
3583 aligned_pointer += sizeof(pqi_index_t);
3586 alloc_length = (size_t)aligned_pointer +
3587 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT;
3589 alloc_length += PQI_EXTRA_SGL_MEMORY;
3591 ctrl_info->queue_memory_base =
3592 dma_alloc_coherent(&ctrl_info->pci_dev->dev, alloc_length,
3593 &ctrl_info->queue_memory_base_dma_handle,
3596 if (!ctrl_info->queue_memory_base)
3599 ctrl_info->queue_memory_length = alloc_length;
3601 element_array = PTR_ALIGN(ctrl_info->queue_memory_base,
3602 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3604 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
3605 queue_group = &ctrl_info->queue_groups[i];
3606 queue_group->iq_element_array[RAID_PATH] = element_array;
3607 queue_group->iq_element_array_bus_addr[RAID_PATH] =
3608 ctrl_info->queue_memory_base_dma_handle +
3609 (element_array - ctrl_info->queue_memory_base);
3610 element_array += element_array_length_per_iq;
3611 element_array = PTR_ALIGN(element_array,
3612 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3613 queue_group->iq_element_array[AIO_PATH] = element_array;
3614 queue_group->iq_element_array_bus_addr[AIO_PATH] =
3615 ctrl_info->queue_memory_base_dma_handle +
3616 (element_array - ctrl_info->queue_memory_base);
3617 element_array += element_array_length_per_iq;
3618 element_array = PTR_ALIGN(element_array,
3619 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3622 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
3623 queue_group = &ctrl_info->queue_groups[i];
3624 queue_group->oq_element_array = element_array;
3625 queue_group->oq_element_array_bus_addr =
3626 ctrl_info->queue_memory_base_dma_handle +
3627 (element_array - ctrl_info->queue_memory_base);
3628 element_array += element_array_length_per_oq;
3629 element_array = PTR_ALIGN(element_array,
3630 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3633 ctrl_info->event_queue.oq_element_array = element_array;
3634 ctrl_info->event_queue.oq_element_array_bus_addr =
3635 ctrl_info->queue_memory_base_dma_handle +
3636 (element_array - ctrl_info->queue_memory_base);
3637 element_array += PQI_NUM_EVENT_QUEUE_ELEMENTS *
3638 PQI_EVENT_OQ_ELEMENT_LENGTH;
3640 next_queue_index = (void __iomem *)PTR_ALIGN(element_array,
3641 PQI_OPERATIONAL_INDEX_ALIGNMENT);
3643 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
3644 queue_group = &ctrl_info->queue_groups[i];
3645 queue_group->iq_ci[RAID_PATH] = next_queue_index;
3646 queue_group->iq_ci_bus_addr[RAID_PATH] =
3647 ctrl_info->queue_memory_base_dma_handle +
3649 (void __iomem *)ctrl_info->queue_memory_base);
3650 next_queue_index += sizeof(pqi_index_t);
3651 next_queue_index = PTR_ALIGN(next_queue_index,
3652 PQI_OPERATIONAL_INDEX_ALIGNMENT);
3653 queue_group->iq_ci[AIO_PATH] = next_queue_index;
3654 queue_group->iq_ci_bus_addr[AIO_PATH] =
3655 ctrl_info->queue_memory_base_dma_handle +
3657 (void __iomem *)ctrl_info->queue_memory_base);
3658 next_queue_index += sizeof(pqi_index_t);
3659 next_queue_index = PTR_ALIGN(next_queue_index,
3660 PQI_OPERATIONAL_INDEX_ALIGNMENT);
3661 queue_group->oq_pi = next_queue_index;
3662 queue_group->oq_pi_bus_addr =
3663 ctrl_info->queue_memory_base_dma_handle +
3665 (void __iomem *)ctrl_info->queue_memory_base);
3666 next_queue_index += sizeof(pqi_index_t);
3667 next_queue_index = PTR_ALIGN(next_queue_index,
3668 PQI_OPERATIONAL_INDEX_ALIGNMENT);
3671 ctrl_info->event_queue.oq_pi = next_queue_index;
3672 ctrl_info->event_queue.oq_pi_bus_addr =
3673 ctrl_info->queue_memory_base_dma_handle +
3675 (void __iomem *)ctrl_info->queue_memory_base);
3680 static void pqi_init_operational_queues(struct pqi_ctrl_info *ctrl_info)
3683 u16 next_iq_id = PQI_MIN_OPERATIONAL_QUEUE_ID;
3684 u16 next_oq_id = PQI_MIN_OPERATIONAL_QUEUE_ID;
3687 * Initialize the backpointers to the controller structure in
3688 * each operational queue group structure.
3690 for (i = 0; i < ctrl_info->num_queue_groups; i++)
3691 ctrl_info->queue_groups[i].ctrl_info = ctrl_info;
3694 * Assign IDs to all operational queues. Note that the IDs
3695 * assigned to operational IQs are independent of the IDs
3696 * assigned to operational OQs.
3698 ctrl_info->event_queue.oq_id = next_oq_id++;
3699 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
3700 ctrl_info->queue_groups[i].iq_id[RAID_PATH] = next_iq_id++;
3701 ctrl_info->queue_groups[i].iq_id[AIO_PATH] = next_iq_id++;
3702 ctrl_info->queue_groups[i].oq_id = next_oq_id++;
3706 * Assign MSI-X table entry indexes to all queues. Note that the
3707 * interrupt for the event queue is shared with the first queue group.
3709 ctrl_info->event_queue.int_msg_num = 0;
3710 for (i = 0; i < ctrl_info->num_queue_groups; i++)
3711 ctrl_info->queue_groups[i].int_msg_num = i;
3713 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
3714 spin_lock_init(&ctrl_info->queue_groups[i].submit_lock[0]);
3715 spin_lock_init(&ctrl_info->queue_groups[i].submit_lock[1]);
3716 INIT_LIST_HEAD(&ctrl_info->queue_groups[i].request_list[0]);
3717 INIT_LIST_HEAD(&ctrl_info->queue_groups[i].request_list[1]);
3721 static int pqi_alloc_admin_queues(struct pqi_ctrl_info *ctrl_info)
3723 size_t alloc_length;
3724 struct pqi_admin_queues_aligned *admin_queues_aligned;
3725 struct pqi_admin_queues *admin_queues;
3727 alloc_length = sizeof(struct pqi_admin_queues_aligned) +
3728 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT;
3730 ctrl_info->admin_queue_memory_base =
3731 dma_alloc_coherent(&ctrl_info->pci_dev->dev, alloc_length,
3732 &ctrl_info->admin_queue_memory_base_dma_handle,
3735 if (!ctrl_info->admin_queue_memory_base)
3738 ctrl_info->admin_queue_memory_length = alloc_length;
3740 admin_queues = &ctrl_info->admin_queues;
3741 admin_queues_aligned = PTR_ALIGN(ctrl_info->admin_queue_memory_base,
3742 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT);
3743 admin_queues->iq_element_array =
3744 &admin_queues_aligned->iq_element_array;
3745 admin_queues->oq_element_array =
3746 &admin_queues_aligned->oq_element_array;
3747 admin_queues->iq_ci = &admin_queues_aligned->iq_ci;
3748 admin_queues->oq_pi =
3749 (pqi_index_t __iomem *)&admin_queues_aligned->oq_pi;
3751 admin_queues->iq_element_array_bus_addr =
3752 ctrl_info->admin_queue_memory_base_dma_handle +
3753 (admin_queues->iq_element_array -
3754 ctrl_info->admin_queue_memory_base);
3755 admin_queues->oq_element_array_bus_addr =
3756 ctrl_info->admin_queue_memory_base_dma_handle +
3757 (admin_queues->oq_element_array -
3758 ctrl_info->admin_queue_memory_base);
3759 admin_queues->iq_ci_bus_addr =
3760 ctrl_info->admin_queue_memory_base_dma_handle +
3761 ((void *)admin_queues->iq_ci -
3762 ctrl_info->admin_queue_memory_base);
3763 admin_queues->oq_pi_bus_addr =
3764 ctrl_info->admin_queue_memory_base_dma_handle +
3765 ((void __iomem *)admin_queues->oq_pi -
3766 (void __iomem *)ctrl_info->admin_queue_memory_base);
3771 #define PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES PQI_HZ
3772 #define PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS 1
3774 static int pqi_create_admin_queues(struct pqi_ctrl_info *ctrl_info)
3776 struct pqi_device_registers __iomem *pqi_registers;
3777 struct pqi_admin_queues *admin_queues;
3778 unsigned long timeout;
3782 pqi_registers = ctrl_info->pqi_registers;
3783 admin_queues = &ctrl_info->admin_queues;
3785 writeq((u64)admin_queues->iq_element_array_bus_addr,
3786 &pqi_registers->admin_iq_element_array_addr);
3787 writeq((u64)admin_queues->oq_element_array_bus_addr,
3788 &pqi_registers->admin_oq_element_array_addr);
3789 writeq((u64)admin_queues->iq_ci_bus_addr,
3790 &pqi_registers->admin_iq_ci_addr);
3791 writeq((u64)admin_queues->oq_pi_bus_addr,
3792 &pqi_registers->admin_oq_pi_addr);
3794 reg = PQI_ADMIN_IQ_NUM_ELEMENTS |
3795 (PQI_ADMIN_OQ_NUM_ELEMENTS << 8) |
3796 (admin_queues->int_msg_num << 16);
3797 writel(reg, &pqi_registers->admin_iq_num_elements);
3798 writel(PQI_CREATE_ADMIN_QUEUE_PAIR,
3799 &pqi_registers->function_and_status_code);
3801 timeout = PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES + jiffies;
3803 status = readb(&pqi_registers->function_and_status_code);
3804 if (status == PQI_STATUS_IDLE)
3806 if (time_after(jiffies, timeout))
3808 msleep(PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS);
3812 * The offset registers are not initialized to the correct
3813 * offsets until *after* the create admin queue pair command
3814 * completes successfully.
3816 admin_queues->iq_pi = ctrl_info->iomem_base +
3817 PQI_DEVICE_REGISTERS_OFFSET +
3818 readq(&pqi_registers->admin_iq_pi_offset);
3819 admin_queues->oq_ci = ctrl_info->iomem_base +
3820 PQI_DEVICE_REGISTERS_OFFSET +
3821 readq(&pqi_registers->admin_oq_ci_offset);
3826 static void pqi_submit_admin_request(struct pqi_ctrl_info *ctrl_info,
3827 struct pqi_general_admin_request *request)
3829 struct pqi_admin_queues *admin_queues;
3833 admin_queues = &ctrl_info->admin_queues;
3834 iq_pi = admin_queues->iq_pi_copy;
3836 next_element = admin_queues->iq_element_array +
3837 (iq_pi * PQI_ADMIN_IQ_ELEMENT_LENGTH);
3839 memcpy(next_element, request, sizeof(*request));
3841 iq_pi = (iq_pi + 1) % PQI_ADMIN_IQ_NUM_ELEMENTS;
3842 admin_queues->iq_pi_copy = iq_pi;
3845 * This write notifies the controller that an IU is available to be
3848 writel(iq_pi, admin_queues->iq_pi);
3851 #define PQI_ADMIN_REQUEST_TIMEOUT_SECS 60
3853 static int pqi_poll_for_admin_response(struct pqi_ctrl_info *ctrl_info,
3854 struct pqi_general_admin_response *response)
3856 struct pqi_admin_queues *admin_queues;
3859 unsigned long timeout;
3861 admin_queues = &ctrl_info->admin_queues;
3862 oq_ci = admin_queues->oq_ci_copy;
3864 timeout = (PQI_ADMIN_REQUEST_TIMEOUT_SECS * PQI_HZ) + jiffies;
3867 oq_pi = readl(admin_queues->oq_pi);
3870 if (time_after(jiffies, timeout)) {
3871 dev_err(&ctrl_info->pci_dev->dev,
3872 "timed out waiting for admin response\n");
3875 if (!sis_is_firmware_running(ctrl_info))
3877 usleep_range(1000, 2000);
3880 memcpy(response, admin_queues->oq_element_array +
3881 (oq_ci * PQI_ADMIN_OQ_ELEMENT_LENGTH), sizeof(*response));
3883 oq_ci = (oq_ci + 1) % PQI_ADMIN_OQ_NUM_ELEMENTS;
3884 admin_queues->oq_ci_copy = oq_ci;
3885 writel(oq_ci, admin_queues->oq_ci);
3890 static void pqi_start_io(struct pqi_ctrl_info *ctrl_info,
3891 struct pqi_queue_group *queue_group, enum pqi_io_path path,
3892 struct pqi_io_request *io_request)
3894 struct pqi_io_request *next;
3899 unsigned long flags;
3900 unsigned int num_elements_needed;
3901 unsigned int num_elements_to_end_of_queue;
3903 struct pqi_iu_header *request;
3905 spin_lock_irqsave(&queue_group->submit_lock[path], flags);
3908 io_request->queue_group = queue_group;
3909 list_add_tail(&io_request->request_list_entry,
3910 &queue_group->request_list[path]);
3913 iq_pi = queue_group->iq_pi_copy[path];
3915 list_for_each_entry_safe(io_request, next,
3916 &queue_group->request_list[path], request_list_entry) {
3918 request = io_request->iu;
3920 iu_length = get_unaligned_le16(&request->iu_length) +
3921 PQI_REQUEST_HEADER_LENGTH;
3922 num_elements_needed =
3923 DIV_ROUND_UP(iu_length,
3924 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
3926 iq_ci = readl(queue_group->iq_ci[path]);
3928 if (num_elements_needed > pqi_num_elements_free(iq_pi, iq_ci,
3929 ctrl_info->num_elements_per_iq))
3932 put_unaligned_le16(queue_group->oq_id,
3933 &request->response_queue_id);
3935 next_element = queue_group->iq_element_array[path] +
3936 (iq_pi * PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
3938 num_elements_to_end_of_queue =
3939 ctrl_info->num_elements_per_iq - iq_pi;
3941 if (num_elements_needed <= num_elements_to_end_of_queue) {
3942 memcpy(next_element, request, iu_length);
3944 copy_count = num_elements_to_end_of_queue *
3945 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH;
3946 memcpy(next_element, request, copy_count);
3947 memcpy(queue_group->iq_element_array[path],
3948 (u8 *)request + copy_count,
3949 iu_length - copy_count);
3952 iq_pi = (iq_pi + num_elements_needed) %
3953 ctrl_info->num_elements_per_iq;
3955 list_del(&io_request->request_list_entry);
3958 if (iq_pi != queue_group->iq_pi_copy[path]) {
3959 queue_group->iq_pi_copy[path] = iq_pi;
3961 * This write notifies the controller that one or more IUs are
3962 * available to be processed.
3964 writel(iq_pi, queue_group->iq_pi[path]);
3967 spin_unlock_irqrestore(&queue_group->submit_lock[path], flags);
3970 #define PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS 10
3972 static int pqi_wait_for_completion_io(struct pqi_ctrl_info *ctrl_info,
3973 struct completion *wait)
3978 if (wait_for_completion_io_timeout(wait,
3979 PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS * PQI_HZ)) {
3984 pqi_check_ctrl_health(ctrl_info);
3985 if (pqi_ctrl_offline(ctrl_info)) {
3994 static void pqi_raid_synchronous_complete(struct pqi_io_request *io_request,
3997 struct completion *waiting = context;
4002 static int pqi_process_raid_io_error_synchronous(
4003 struct pqi_raid_error_info *error_info)
4007 switch (error_info->data_out_result) {
4008 case PQI_DATA_IN_OUT_GOOD:
4009 if (error_info->status == SAM_STAT_GOOD)
4012 case PQI_DATA_IN_OUT_UNDERFLOW:
4013 if (error_info->status == SAM_STAT_GOOD ||
4014 error_info->status == SAM_STAT_CHECK_CONDITION)
4017 case PQI_DATA_IN_OUT_ABORTED:
4018 rc = PQI_CMD_STATUS_ABORTED;
4025 static int pqi_submit_raid_request_synchronous(struct pqi_ctrl_info *ctrl_info,
4026 struct pqi_iu_header *request, unsigned int flags,
4027 struct pqi_raid_error_info *error_info, unsigned long timeout_msecs)
4030 struct pqi_io_request *io_request;
4031 unsigned long start_jiffies;
4032 unsigned long msecs_blocked;
4034 DECLARE_COMPLETION_ONSTACK(wait);
4037 * Note that specifying PQI_SYNC_FLAGS_INTERRUPTABLE and a timeout value
4038 * are mutually exclusive.
4041 if (flags & PQI_SYNC_FLAGS_INTERRUPTABLE) {
4042 if (down_interruptible(&ctrl_info->sync_request_sem))
4043 return -ERESTARTSYS;
4045 if (timeout_msecs == NO_TIMEOUT) {
4046 down(&ctrl_info->sync_request_sem);
4048 start_jiffies = jiffies;
4049 if (down_timeout(&ctrl_info->sync_request_sem,
4050 msecs_to_jiffies(timeout_msecs)))
4053 jiffies_to_msecs(jiffies - start_jiffies);
4054 if (msecs_blocked >= timeout_msecs) {
4058 timeout_msecs -= msecs_blocked;
4062 pqi_ctrl_busy(ctrl_info);
4063 timeout_msecs = pqi_wait_if_ctrl_blocked(ctrl_info, timeout_msecs);
4064 if (timeout_msecs == 0) {
4065 pqi_ctrl_unbusy(ctrl_info);
4070 if (pqi_ctrl_offline(ctrl_info)) {
4071 pqi_ctrl_unbusy(ctrl_info);
4076 atomic_inc(&ctrl_info->sync_cmds_outstanding);
4078 io_request = pqi_alloc_io_request(ctrl_info);
4080 put_unaligned_le16(io_request->index,
4081 &(((struct pqi_raid_path_request *)request)->request_id));
4083 if (request->iu_type == PQI_REQUEST_IU_RAID_PATH_IO)
4084 ((struct pqi_raid_path_request *)request)->error_index =
4085 ((struct pqi_raid_path_request *)request)->request_id;
4087 iu_length = get_unaligned_le16(&request->iu_length) +
4088 PQI_REQUEST_HEADER_LENGTH;
4089 memcpy(io_request->iu, request, iu_length);
4091 io_request->io_complete_callback = pqi_raid_synchronous_complete;
4092 io_request->context = &wait;
4094 pqi_start_io(ctrl_info,
4095 &ctrl_info->queue_groups[PQI_DEFAULT_QUEUE_GROUP], RAID_PATH,
4098 pqi_ctrl_unbusy(ctrl_info);
4100 if (timeout_msecs == NO_TIMEOUT) {
4101 pqi_wait_for_completion_io(ctrl_info, &wait);
4103 if (!wait_for_completion_io_timeout(&wait,
4104 msecs_to_jiffies(timeout_msecs))) {
4105 dev_warn(&ctrl_info->pci_dev->dev,
4106 "command timed out\n");
4112 if (io_request->error_info)
4113 memcpy(error_info, io_request->error_info,
4114 sizeof(*error_info));
4116 memset(error_info, 0, sizeof(*error_info));
4117 } else if (rc == 0 && io_request->error_info) {
4118 rc = pqi_process_raid_io_error_synchronous(
4119 io_request->error_info);
4122 pqi_free_io_request(io_request);
4124 atomic_dec(&ctrl_info->sync_cmds_outstanding);
4126 up(&ctrl_info->sync_request_sem);
4131 static int pqi_validate_admin_response(
4132 struct pqi_general_admin_response *response, u8 expected_function_code)
4134 if (response->header.iu_type != PQI_RESPONSE_IU_GENERAL_ADMIN)
4137 if (get_unaligned_le16(&response->header.iu_length) !=
4138 PQI_GENERAL_ADMIN_IU_LENGTH)
4141 if (response->function_code != expected_function_code)
4144 if (response->status != PQI_GENERAL_ADMIN_STATUS_SUCCESS)
4150 static int pqi_submit_admin_request_synchronous(
4151 struct pqi_ctrl_info *ctrl_info,
4152 struct pqi_general_admin_request *request,
4153 struct pqi_general_admin_response *response)
4157 pqi_submit_admin_request(ctrl_info, request);
4159 rc = pqi_poll_for_admin_response(ctrl_info, response);
4162 rc = pqi_validate_admin_response(response,
4163 request->function_code);
4168 static int pqi_report_device_capability(struct pqi_ctrl_info *ctrl_info)
4171 struct pqi_general_admin_request request;
4172 struct pqi_general_admin_response response;
4173 struct pqi_device_capability *capability;
4174 struct pqi_iu_layer_descriptor *sop_iu_layer_descriptor;
4176 capability = kmalloc(sizeof(*capability), GFP_KERNEL);
4180 memset(&request, 0, sizeof(request));
4182 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4183 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4184 &request.header.iu_length);
4185 request.function_code =
4186 PQI_GENERAL_ADMIN_FUNCTION_REPORT_DEVICE_CAPABILITY;
4187 put_unaligned_le32(sizeof(*capability),
4188 &request.data.report_device_capability.buffer_length);
4190 rc = pqi_map_single(ctrl_info->pci_dev,
4191 &request.data.report_device_capability.sg_descriptor,
4192 capability, sizeof(*capability),
4197 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4200 pqi_pci_unmap(ctrl_info->pci_dev,
4201 &request.data.report_device_capability.sg_descriptor, 1,
4207 if (response.status != PQI_GENERAL_ADMIN_STATUS_SUCCESS) {
4212 ctrl_info->max_inbound_queues =
4213 get_unaligned_le16(&capability->max_inbound_queues);
4214 ctrl_info->max_elements_per_iq =
4215 get_unaligned_le16(&capability->max_elements_per_iq);
4216 ctrl_info->max_iq_element_length =
4217 get_unaligned_le16(&capability->max_iq_element_length)
4219 ctrl_info->max_outbound_queues =
4220 get_unaligned_le16(&capability->max_outbound_queues);
4221 ctrl_info->max_elements_per_oq =
4222 get_unaligned_le16(&capability->max_elements_per_oq);
4223 ctrl_info->max_oq_element_length =
4224 get_unaligned_le16(&capability->max_oq_element_length)
4227 sop_iu_layer_descriptor =
4228 &capability->iu_layer_descriptors[PQI_PROTOCOL_SOP];
4230 ctrl_info->max_inbound_iu_length_per_firmware =
4232 &sop_iu_layer_descriptor->max_inbound_iu_length);
4233 ctrl_info->inbound_spanning_supported =
4234 sop_iu_layer_descriptor->inbound_spanning_supported;
4235 ctrl_info->outbound_spanning_supported =
4236 sop_iu_layer_descriptor->outbound_spanning_supported;
4244 static int pqi_validate_device_capability(struct pqi_ctrl_info *ctrl_info)
4246 if (ctrl_info->max_iq_element_length <
4247 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH) {
4248 dev_err(&ctrl_info->pci_dev->dev,
4249 "max. inbound queue element length of %d is less than the required length of %d\n",
4250 ctrl_info->max_iq_element_length,
4251 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
4255 if (ctrl_info->max_oq_element_length <
4256 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH) {
4257 dev_err(&ctrl_info->pci_dev->dev,
4258 "max. outbound queue element length of %d is less than the required length of %d\n",
4259 ctrl_info->max_oq_element_length,
4260 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH);
4264 if (ctrl_info->max_inbound_iu_length_per_firmware <
4265 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH) {
4266 dev_err(&ctrl_info->pci_dev->dev,
4267 "max. inbound IU length of %u is less than the min. required length of %d\n",
4268 ctrl_info->max_inbound_iu_length_per_firmware,
4269 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
4273 if (!ctrl_info->inbound_spanning_supported) {
4274 dev_err(&ctrl_info->pci_dev->dev,
4275 "the controller does not support inbound spanning\n");
4279 if (ctrl_info->outbound_spanning_supported) {
4280 dev_err(&ctrl_info->pci_dev->dev,
4281 "the controller supports outbound spanning but this driver does not\n");
4288 static int pqi_create_event_queue(struct pqi_ctrl_info *ctrl_info)
4291 struct pqi_event_queue *event_queue;
4292 struct pqi_general_admin_request request;
4293 struct pqi_general_admin_response response;
4295 event_queue = &ctrl_info->event_queue;
4298 * Create OQ (Outbound Queue - device to host queue) to dedicate
4301 memset(&request, 0, sizeof(request));
4302 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4303 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4304 &request.header.iu_length);
4305 request.function_code = PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ;
4306 put_unaligned_le16(event_queue->oq_id,
4307 &request.data.create_operational_oq.queue_id);
4308 put_unaligned_le64((u64)event_queue->oq_element_array_bus_addr,
4309 &request.data.create_operational_oq.element_array_addr);
4310 put_unaligned_le64((u64)event_queue->oq_pi_bus_addr,
4311 &request.data.create_operational_oq.pi_addr);
4312 put_unaligned_le16(PQI_NUM_EVENT_QUEUE_ELEMENTS,
4313 &request.data.create_operational_oq.num_elements);
4314 put_unaligned_le16(PQI_EVENT_OQ_ELEMENT_LENGTH / 16,
4315 &request.data.create_operational_oq.element_length);
4316 request.data.create_operational_oq.queue_protocol = PQI_PROTOCOL_SOP;
4317 put_unaligned_le16(event_queue->int_msg_num,
4318 &request.data.create_operational_oq.int_msg_num);
4320 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4325 event_queue->oq_ci = ctrl_info->iomem_base +
4326 PQI_DEVICE_REGISTERS_OFFSET +
4328 &response.data.create_operational_oq.oq_ci_offset);
4333 static int pqi_create_queue_group(struct pqi_ctrl_info *ctrl_info,
4334 unsigned int group_number)
4337 struct pqi_queue_group *queue_group;
4338 struct pqi_general_admin_request request;
4339 struct pqi_general_admin_response response;
4341 queue_group = &ctrl_info->queue_groups[group_number];
4344 * Create IQ (Inbound Queue - host to device queue) for
4347 memset(&request, 0, sizeof(request));
4348 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4349 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4350 &request.header.iu_length);
4351 request.function_code = PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ;
4352 put_unaligned_le16(queue_group->iq_id[RAID_PATH],
4353 &request.data.create_operational_iq.queue_id);
4355 (u64)queue_group->iq_element_array_bus_addr[RAID_PATH],
4356 &request.data.create_operational_iq.element_array_addr);
4357 put_unaligned_le64((u64)queue_group->iq_ci_bus_addr[RAID_PATH],
4358 &request.data.create_operational_iq.ci_addr);
4359 put_unaligned_le16(ctrl_info->num_elements_per_iq,
4360 &request.data.create_operational_iq.num_elements);
4361 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH / 16,
4362 &request.data.create_operational_iq.element_length);
4363 request.data.create_operational_iq.queue_protocol = PQI_PROTOCOL_SOP;
4365 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4368 dev_err(&ctrl_info->pci_dev->dev,
4369 "error creating inbound RAID queue\n");
4373 queue_group->iq_pi[RAID_PATH] = ctrl_info->iomem_base +
4374 PQI_DEVICE_REGISTERS_OFFSET +
4376 &response.data.create_operational_iq.iq_pi_offset);
4379 * Create IQ (Inbound Queue - host to device queue) for
4380 * Advanced I/O (AIO) path.
4382 memset(&request, 0, sizeof(request));
4383 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4384 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4385 &request.header.iu_length);
4386 request.function_code = PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ;
4387 put_unaligned_le16(queue_group->iq_id[AIO_PATH],
4388 &request.data.create_operational_iq.queue_id);
4389 put_unaligned_le64((u64)queue_group->
4390 iq_element_array_bus_addr[AIO_PATH],
4391 &request.data.create_operational_iq.element_array_addr);
4392 put_unaligned_le64((u64)queue_group->iq_ci_bus_addr[AIO_PATH],
4393 &request.data.create_operational_iq.ci_addr);
4394 put_unaligned_le16(ctrl_info->num_elements_per_iq,
4395 &request.data.create_operational_iq.num_elements);
4396 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH / 16,
4397 &request.data.create_operational_iq.element_length);
4398 request.data.create_operational_iq.queue_protocol = PQI_PROTOCOL_SOP;
4400 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4403 dev_err(&ctrl_info->pci_dev->dev,
4404 "error creating inbound AIO queue\n");
4408 queue_group->iq_pi[AIO_PATH] = ctrl_info->iomem_base +
4409 PQI_DEVICE_REGISTERS_OFFSET +
4411 &response.data.create_operational_iq.iq_pi_offset);
4414 * Designate the 2nd IQ as the AIO path. By default, all IQs are
4415 * assumed to be for RAID path I/O unless we change the queue's
4418 memset(&request, 0, sizeof(request));
4419 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4420 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4421 &request.header.iu_length);
4422 request.function_code = PQI_GENERAL_ADMIN_FUNCTION_CHANGE_IQ_PROPERTY;
4423 put_unaligned_le16(queue_group->iq_id[AIO_PATH],
4424 &request.data.change_operational_iq_properties.queue_id);
4425 put_unaligned_le32(PQI_IQ_PROPERTY_IS_AIO_QUEUE,
4426 &request.data.change_operational_iq_properties.vendor_specific);
4428 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4431 dev_err(&ctrl_info->pci_dev->dev,
4432 "error changing queue property\n");
4437 * Create OQ (Outbound Queue - device to host queue).
4439 memset(&request, 0, sizeof(request));
4440 request.header.iu_type = PQI_REQUEST_IU_GENERAL_ADMIN;
4441 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH,
4442 &request.header.iu_length);
4443 request.function_code = PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ;
4444 put_unaligned_le16(queue_group->oq_id,
4445 &request.data.create_operational_oq.queue_id);
4446 put_unaligned_le64((u64)queue_group->oq_element_array_bus_addr,
4447 &request.data.create_operational_oq.element_array_addr);
4448 put_unaligned_le64((u64)queue_group->oq_pi_bus_addr,
4449 &request.data.create_operational_oq.pi_addr);
4450 put_unaligned_le16(ctrl_info->num_elements_per_oq,
4451 &request.data.create_operational_oq.num_elements);
4452 put_unaligned_le16(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH / 16,
4453 &request.data.create_operational_oq.element_length);
4454 request.data.create_operational_oq.queue_protocol = PQI_PROTOCOL_SOP;
4455 put_unaligned_le16(queue_group->int_msg_num,
4456 &request.data.create_operational_oq.int_msg_num);
4458 rc = pqi_submit_admin_request_synchronous(ctrl_info, &request,
4461 dev_err(&ctrl_info->pci_dev->dev,
4462 "error creating outbound queue\n");
4466 queue_group->oq_ci = ctrl_info->iomem_base +
4467 PQI_DEVICE_REGISTERS_OFFSET +
4469 &response.data.create_operational_oq.oq_ci_offset);
4474 static int pqi_create_queues(struct pqi_ctrl_info *ctrl_info)
4479 rc = pqi_create_event_queue(ctrl_info);
4481 dev_err(&ctrl_info->pci_dev->dev,
4482 "error creating event queue\n");
4486 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
4487 rc = pqi_create_queue_group(ctrl_info, i);
4489 dev_err(&ctrl_info->pci_dev->dev,
4490 "error creating queue group number %u/%u\n",
4491 i, ctrl_info->num_queue_groups);
4499 #define PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH \
4500 (offsetof(struct pqi_event_config, descriptors) + \
4501 (PQI_MAX_EVENT_DESCRIPTORS * sizeof(struct pqi_event_descriptor)))
4503 static int pqi_configure_events(struct pqi_ctrl_info *ctrl_info,
4508 struct pqi_event_config *event_config;
4509 struct pqi_event_descriptor *event_descriptor;
4510 struct pqi_general_management_request request;
4512 event_config = kmalloc(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH,
4517 memset(&request, 0, sizeof(request));
4519 request.header.iu_type = PQI_REQUEST_IU_REPORT_VENDOR_EVENT_CONFIG;
4520 put_unaligned_le16(offsetof(struct pqi_general_management_request,
4521 data.report_event_configuration.sg_descriptors[1]) -
4522 PQI_REQUEST_HEADER_LENGTH, &request.header.iu_length);
4523 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH,
4524 &request.data.report_event_configuration.buffer_length);
4526 rc = pqi_map_single(ctrl_info->pci_dev,
4527 request.data.report_event_configuration.sg_descriptors,
4528 event_config, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH,
4533 rc = pqi_submit_raid_request_synchronous(ctrl_info, &request.header,
4534 0, NULL, NO_TIMEOUT);
4536 pqi_pci_unmap(ctrl_info->pci_dev,
4537 request.data.report_event_configuration.sg_descriptors, 1,
4543 for (i = 0; i < event_config->num_event_descriptors; i++) {
4544 event_descriptor = &event_config->descriptors[i];
4545 if (enable_events &&
4546 pqi_is_supported_event(event_descriptor->event_type))
4547 put_unaligned_le16(ctrl_info->event_queue.oq_id,
4548 &event_descriptor->oq_id);
4550 put_unaligned_le16(0, &event_descriptor->oq_id);
4553 memset(&request, 0, sizeof(request));
4555 request.header.iu_type = PQI_REQUEST_IU_SET_VENDOR_EVENT_CONFIG;
4556 put_unaligned_le16(offsetof(struct pqi_general_management_request,
4557 data.report_event_configuration.sg_descriptors[1]) -
4558 PQI_REQUEST_HEADER_LENGTH, &request.header.iu_length);
4559 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH,
4560 &request.data.report_event_configuration.buffer_length);
4562 rc = pqi_map_single(ctrl_info->pci_dev,
4563 request.data.report_event_configuration.sg_descriptors,
4564 event_config, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH,
4569 rc = pqi_submit_raid_request_synchronous(ctrl_info, &request.header, 0,
4572 pqi_pci_unmap(ctrl_info->pci_dev,
4573 request.data.report_event_configuration.sg_descriptors, 1,
4577 kfree(event_config);
4582 static inline int pqi_enable_events(struct pqi_ctrl_info *ctrl_info)
4584 return pqi_configure_events(ctrl_info, true);
4587 static inline int pqi_disable_events(struct pqi_ctrl_info *ctrl_info)
4589 return pqi_configure_events(ctrl_info, false);
4592 static void pqi_free_all_io_requests(struct pqi_ctrl_info *ctrl_info)
4596 size_t sg_chain_buffer_length;
4597 struct pqi_io_request *io_request;
4599 if (!ctrl_info->io_request_pool)
4602 dev = &ctrl_info->pci_dev->dev;
4603 sg_chain_buffer_length = ctrl_info->sg_chain_buffer_length;
4604 io_request = ctrl_info->io_request_pool;
4606 for (i = 0; i < ctrl_info->max_io_slots; i++) {
4607 kfree(io_request->iu);
4608 if (!io_request->sg_chain_buffer)
4610 dma_free_coherent(dev, sg_chain_buffer_length,
4611 io_request->sg_chain_buffer,
4612 io_request->sg_chain_buffer_dma_handle);
4616 kfree(ctrl_info->io_request_pool);
4617 ctrl_info->io_request_pool = NULL;
4620 static inline int pqi_alloc_error_buffer(struct pqi_ctrl_info *ctrl_info)
4623 ctrl_info->error_buffer = dma_alloc_coherent(&ctrl_info->pci_dev->dev,
4624 ctrl_info->error_buffer_length,
4625 &ctrl_info->error_buffer_dma_handle,
4627 if (!ctrl_info->error_buffer)
4633 static int pqi_alloc_io_resources(struct pqi_ctrl_info *ctrl_info)
4636 void *sg_chain_buffer;
4637 size_t sg_chain_buffer_length;
4638 dma_addr_t sg_chain_buffer_dma_handle;
4640 struct pqi_io_request *io_request;
4642 ctrl_info->io_request_pool =
4643 kcalloc(ctrl_info->max_io_slots,
4644 sizeof(ctrl_info->io_request_pool[0]), GFP_KERNEL);
4646 if (!ctrl_info->io_request_pool) {
4647 dev_err(&ctrl_info->pci_dev->dev,
4648 "failed to allocate I/O request pool\n");
4652 dev = &ctrl_info->pci_dev->dev;
4653 sg_chain_buffer_length = ctrl_info->sg_chain_buffer_length;
4654 io_request = ctrl_info->io_request_pool;
4656 for (i = 0; i < ctrl_info->max_io_slots; i++) {
4658 kmalloc(ctrl_info->max_inbound_iu_length, GFP_KERNEL);
4660 if (!io_request->iu) {
4661 dev_err(&ctrl_info->pci_dev->dev,
4662 "failed to allocate IU buffers\n");
4666 sg_chain_buffer = dma_alloc_coherent(dev,
4667 sg_chain_buffer_length, &sg_chain_buffer_dma_handle,
4670 if (!sg_chain_buffer) {
4671 dev_err(&ctrl_info->pci_dev->dev,
4672 "failed to allocate PQI scatter-gather chain buffers\n");
4676 io_request->index = i;
4677 io_request->sg_chain_buffer = sg_chain_buffer;
4678 io_request->sg_chain_buffer_dma_handle =
4679 sg_chain_buffer_dma_handle;
4686 pqi_free_all_io_requests(ctrl_info);
4692 * Calculate required resources that are sized based on max. outstanding
4693 * requests and max. transfer size.
4696 static void pqi_calculate_io_resources(struct pqi_ctrl_info *ctrl_info)
4698 u32 max_transfer_size;
4701 ctrl_info->scsi_ml_can_queue =
4702 ctrl_info->max_outstanding_requests - PQI_RESERVED_IO_SLOTS;
4703 ctrl_info->max_io_slots = ctrl_info->max_outstanding_requests;
4705 ctrl_info->error_buffer_length =
4706 ctrl_info->max_io_slots * PQI_ERROR_BUFFER_ELEMENT_LENGTH;
4709 max_transfer_size = min(ctrl_info->max_transfer_size,
4710 PQI_MAX_TRANSFER_SIZE_KDUMP);
4712 max_transfer_size = min(ctrl_info->max_transfer_size,
4713 PQI_MAX_TRANSFER_SIZE);
4715 max_sg_entries = max_transfer_size / PAGE_SIZE;
4717 /* +1 to cover when the buffer is not page-aligned. */
4720 max_sg_entries = min(ctrl_info->max_sg_entries, max_sg_entries);
4722 max_transfer_size = (max_sg_entries - 1) * PAGE_SIZE;
4724 ctrl_info->sg_chain_buffer_length =
4725 (max_sg_entries * sizeof(struct pqi_sg_descriptor)) +
4726 PQI_EXTRA_SGL_MEMORY;
4727 ctrl_info->sg_tablesize = max_sg_entries;
4728 ctrl_info->max_sectors = max_transfer_size / 512;
4731 static void pqi_calculate_queue_resources(struct pqi_ctrl_info *ctrl_info)
4733 int num_queue_groups;
4734 u16 num_elements_per_iq;
4735 u16 num_elements_per_oq;
4737 if (reset_devices) {
4738 num_queue_groups = 1;
4741 int max_queue_groups;
4743 max_queue_groups = min(ctrl_info->max_inbound_queues / 2,
4744 ctrl_info->max_outbound_queues - 1);
4745 max_queue_groups = min(max_queue_groups, PQI_MAX_QUEUE_GROUPS);
4747 num_cpus = num_online_cpus();
4748 num_queue_groups = min(num_cpus, ctrl_info->max_msix_vectors);
4749 num_queue_groups = min(num_queue_groups, max_queue_groups);
4752 ctrl_info->num_queue_groups = num_queue_groups;
4753 ctrl_info->max_hw_queue_index = num_queue_groups - 1;
4756 * Make sure that the max. inbound IU length is an even multiple
4757 * of our inbound element length.
4759 ctrl_info->max_inbound_iu_length =
4760 (ctrl_info->max_inbound_iu_length_per_firmware /
4761 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH) *
4762 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH;
4764 num_elements_per_iq =
4765 (ctrl_info->max_inbound_iu_length /
4766 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
4768 /* Add one because one element in each queue is unusable. */
4769 num_elements_per_iq++;
4771 num_elements_per_iq = min(num_elements_per_iq,
4772 ctrl_info->max_elements_per_iq);
4774 num_elements_per_oq = ((num_elements_per_iq - 1) * 2) + 1;
4775 num_elements_per_oq = min(num_elements_per_oq,
4776 ctrl_info->max_elements_per_oq);
4778 ctrl_info->num_elements_per_iq = num_elements_per_iq;
4779 ctrl_info->num_elements_per_oq = num_elements_per_oq;
4781 ctrl_info->max_sg_per_iu =
4782 ((ctrl_info->max_inbound_iu_length -
4783 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH) /
4784 sizeof(struct pqi_sg_descriptor)) +
4785 PQI_MAX_EMBEDDED_SG_DESCRIPTORS;
4788 static inline void pqi_set_sg_descriptor(
4789 struct pqi_sg_descriptor *sg_descriptor, struct scatterlist *sg)
4791 u64 address = (u64)sg_dma_address(sg);
4792 unsigned int length = sg_dma_len(sg);
4794 put_unaligned_le64(address, &sg_descriptor->address);
4795 put_unaligned_le32(length, &sg_descriptor->length);
4796 put_unaligned_le32(0, &sg_descriptor->flags);
4799 static int pqi_build_raid_sg_list(struct pqi_ctrl_info *ctrl_info,
4800 struct pqi_raid_path_request *request, struct scsi_cmnd *scmd,
4801 struct pqi_io_request *io_request)
4807 unsigned int num_sg_in_iu;
4808 unsigned int max_sg_per_iu;
4809 struct scatterlist *sg;
4810 struct pqi_sg_descriptor *sg_descriptor;
4812 sg_count = scsi_dma_map(scmd);
4816 iu_length = offsetof(struct pqi_raid_path_request, sg_descriptors) -
4817 PQI_REQUEST_HEADER_LENGTH;
4822 sg = scsi_sglist(scmd);
4823 sg_descriptor = request->sg_descriptors;
4824 max_sg_per_iu = ctrl_info->max_sg_per_iu - 1;
4830 pqi_set_sg_descriptor(sg_descriptor, sg);
4837 if (i == max_sg_per_iu) {
4839 (u64)io_request->sg_chain_buffer_dma_handle,
4840 &sg_descriptor->address);
4841 put_unaligned_le32((sg_count - num_sg_in_iu)
4842 * sizeof(*sg_descriptor),
4843 &sg_descriptor->length);
4844 put_unaligned_le32(CISS_SG_CHAIN,
4845 &sg_descriptor->flags);
4848 sg_descriptor = io_request->sg_chain_buffer;
4853 put_unaligned_le32(CISS_SG_LAST, &sg_descriptor->flags);
4854 request->partial = chained;
4855 iu_length += num_sg_in_iu * sizeof(*sg_descriptor);
4858 put_unaligned_le16(iu_length, &request->header.iu_length);
4863 static int pqi_build_aio_sg_list(struct pqi_ctrl_info *ctrl_info,
4864 struct pqi_aio_path_request *request, struct scsi_cmnd *scmd,
4865 struct pqi_io_request *io_request)
4871 unsigned int num_sg_in_iu;
4872 unsigned int max_sg_per_iu;
4873 struct scatterlist *sg;
4874 struct pqi_sg_descriptor *sg_descriptor;
4876 sg_count = scsi_dma_map(scmd);
4880 iu_length = offsetof(struct pqi_aio_path_request, sg_descriptors) -
4881 PQI_REQUEST_HEADER_LENGTH;
4887 sg = scsi_sglist(scmd);
4888 sg_descriptor = request->sg_descriptors;
4889 max_sg_per_iu = ctrl_info->max_sg_per_iu - 1;
4894 pqi_set_sg_descriptor(sg_descriptor, sg);
4901 if (i == max_sg_per_iu) {
4903 (u64)io_request->sg_chain_buffer_dma_handle,
4904 &sg_descriptor->address);
4905 put_unaligned_le32((sg_count - num_sg_in_iu)
4906 * sizeof(*sg_descriptor),
4907 &sg_descriptor->length);
4908 put_unaligned_le32(CISS_SG_CHAIN,
4909 &sg_descriptor->flags);
4912 sg_descriptor = io_request->sg_chain_buffer;
4917 put_unaligned_le32(CISS_SG_LAST, &sg_descriptor->flags);
4918 request->partial = chained;
4919 iu_length += num_sg_in_iu * sizeof(*sg_descriptor);
4922 put_unaligned_le16(iu_length, &request->header.iu_length);
4923 request->num_sg_descriptors = num_sg_in_iu;
4928 static void pqi_raid_io_complete(struct pqi_io_request *io_request,
4931 struct scsi_cmnd *scmd;
4933 scmd = io_request->scmd;
4934 pqi_free_io_request(io_request);
4935 scsi_dma_unmap(scmd);
4936 pqi_scsi_done(scmd);
4939 static int pqi_raid_submit_scsi_cmd_with_io_request(
4940 struct pqi_ctrl_info *ctrl_info, struct pqi_io_request *io_request,
4941 struct pqi_scsi_dev *device, struct scsi_cmnd *scmd,
4942 struct pqi_queue_group *queue_group)
4946 struct pqi_raid_path_request *request;
4948 io_request->io_complete_callback = pqi_raid_io_complete;
4949 io_request->scmd = scmd;
4951 request = io_request->iu;
4953 offsetof(struct pqi_raid_path_request, sg_descriptors));
4955 request->header.iu_type = PQI_REQUEST_IU_RAID_PATH_IO;
4956 put_unaligned_le32(scsi_bufflen(scmd), &request->buffer_length);
4957 request->task_attribute = SOP_TASK_ATTRIBUTE_SIMPLE;
4958 put_unaligned_le16(io_request->index, &request->request_id);
4959 request->error_index = request->request_id;
4960 memcpy(request->lun_number, device->scsi3addr,
4961 sizeof(request->lun_number));
4963 cdb_length = min_t(size_t, scmd->cmd_len, sizeof(request->cdb));
4964 memcpy(request->cdb, scmd->cmnd, cdb_length);
4966 switch (cdb_length) {
4971 /* No bytes in the Additional CDB bytes field */
4972 request->additional_cdb_bytes_usage =
4973 SOP_ADDITIONAL_CDB_BYTES_0;
4976 /* 4 bytes in the Additional cdb field */
4977 request->additional_cdb_bytes_usage =
4978 SOP_ADDITIONAL_CDB_BYTES_4;
4981 /* 8 bytes in the Additional cdb field */
4982 request->additional_cdb_bytes_usage =
4983 SOP_ADDITIONAL_CDB_BYTES_8;
4986 /* 12 bytes in the Additional cdb field */
4987 request->additional_cdb_bytes_usage =
4988 SOP_ADDITIONAL_CDB_BYTES_12;
4992 /* 16 bytes in the Additional cdb field */
4993 request->additional_cdb_bytes_usage =
4994 SOP_ADDITIONAL_CDB_BYTES_16;
4998 switch (scmd->sc_data_direction) {
5000 request->data_direction = SOP_READ_FLAG;
5002 case DMA_FROM_DEVICE:
5003 request->data_direction = SOP_WRITE_FLAG;
5006 request->data_direction = SOP_NO_DIRECTION_FLAG;
5008 case DMA_BIDIRECTIONAL:
5009 request->data_direction = SOP_BIDIRECTIONAL;
5012 dev_err(&ctrl_info->pci_dev->dev,
5013 "unknown data direction: %d\n",
5014 scmd->sc_data_direction);
5018 rc = pqi_build_raid_sg_list(ctrl_info, request, scmd, io_request);
5020 pqi_free_io_request(io_request);
5021 return SCSI_MLQUEUE_HOST_BUSY;
5024 pqi_start_io(ctrl_info, queue_group, RAID_PATH, io_request);
5029 static inline int pqi_raid_submit_scsi_cmd(struct pqi_ctrl_info *ctrl_info,
5030 struct pqi_scsi_dev *device, struct scsi_cmnd *scmd,
5031 struct pqi_queue_group *queue_group)
5033 struct pqi_io_request *io_request;
5035 io_request = pqi_alloc_io_request(ctrl_info);
5037 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info, io_request,
5038 device, scmd, queue_group);
5041 static inline void pqi_schedule_bypass_retry(struct pqi_ctrl_info *ctrl_info)
5043 if (!pqi_ctrl_blocked(ctrl_info))
5044 schedule_work(&ctrl_info->raid_bypass_retry_work);
5047 static bool pqi_raid_bypass_retry_needed(struct pqi_io_request *io_request)
5049 struct scsi_cmnd *scmd;
5050 struct pqi_scsi_dev *device;
5051 struct pqi_ctrl_info *ctrl_info;
5053 if (!io_request->raid_bypass)
5056 scmd = io_request->scmd;
5057 if ((scmd->result & 0xff) == SAM_STAT_GOOD)
5059 if (host_byte(scmd->result) == DID_NO_CONNECT)
5062 device = scmd->device->hostdata;
5063 if (pqi_device_offline(device))
5066 ctrl_info = shost_to_hba(scmd->device->host);
5067 if (pqi_ctrl_offline(ctrl_info))
5073 static inline void pqi_add_to_raid_bypass_retry_list(
5074 struct pqi_ctrl_info *ctrl_info,
5075 struct pqi_io_request *io_request, bool at_head)
5077 unsigned long flags;
5079 spin_lock_irqsave(&ctrl_info->raid_bypass_retry_list_lock, flags);
5081 list_add(&io_request->request_list_entry,
5082 &ctrl_info->raid_bypass_retry_list);
5084 list_add_tail(&io_request->request_list_entry,
5085 &ctrl_info->raid_bypass_retry_list);
5086 spin_unlock_irqrestore(&ctrl_info->raid_bypass_retry_list_lock, flags);
5089 static void pqi_queued_raid_bypass_complete(struct pqi_io_request *io_request,
5092 struct scsi_cmnd *scmd;
5094 scmd = io_request->scmd;
5095 pqi_free_io_request(io_request);
5096 pqi_scsi_done(scmd);
5099 static void pqi_queue_raid_bypass_retry(struct pqi_io_request *io_request)
5101 struct scsi_cmnd *scmd;
5102 struct pqi_ctrl_info *ctrl_info;
5104 io_request->io_complete_callback = pqi_queued_raid_bypass_complete;
5105 scmd = io_request->scmd;
5107 ctrl_info = shost_to_hba(scmd->device->host);
5109 pqi_add_to_raid_bypass_retry_list(ctrl_info, io_request, false);
5110 pqi_schedule_bypass_retry(ctrl_info);
5113 static int pqi_retry_raid_bypass(struct pqi_io_request *io_request)
5115 struct scsi_cmnd *scmd;
5116 struct pqi_scsi_dev *device;
5117 struct pqi_ctrl_info *ctrl_info;
5118 struct pqi_queue_group *queue_group;
5120 scmd = io_request->scmd;
5121 device = scmd->device->hostdata;
5122 if (pqi_device_in_reset(device)) {
5123 pqi_free_io_request(io_request);
5124 set_host_byte(scmd, DID_RESET);
5125 pqi_scsi_done(scmd);
5129 ctrl_info = shost_to_hba(scmd->device->host);
5130 queue_group = io_request->queue_group;
5132 pqi_reinit_io_request(io_request);
5134 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info, io_request,
5135 device, scmd, queue_group);
5138 static inline struct pqi_io_request *pqi_next_queued_raid_bypass_request(
5139 struct pqi_ctrl_info *ctrl_info)
5141 unsigned long flags;
5142 struct pqi_io_request *io_request;
5144 spin_lock_irqsave(&ctrl_info->raid_bypass_retry_list_lock, flags);
5145 io_request = list_first_entry_or_null(
5146 &ctrl_info->raid_bypass_retry_list,
5147 struct pqi_io_request, request_list_entry);
5149 list_del(&io_request->request_list_entry);
5150 spin_unlock_irqrestore(&ctrl_info->raid_bypass_retry_list_lock, flags);
5155 static void pqi_retry_raid_bypass_requests(struct pqi_ctrl_info *ctrl_info)
5158 struct pqi_io_request *io_request;
5160 pqi_ctrl_busy(ctrl_info);
5163 if (pqi_ctrl_blocked(ctrl_info))
5165 io_request = pqi_next_queued_raid_bypass_request(ctrl_info);
5168 rc = pqi_retry_raid_bypass(io_request);
5170 pqi_add_to_raid_bypass_retry_list(ctrl_info, io_request,
5172 pqi_schedule_bypass_retry(ctrl_info);
5177 pqi_ctrl_unbusy(ctrl_info);
5180 static void pqi_raid_bypass_retry_worker(struct work_struct *work)
5182 struct pqi_ctrl_info *ctrl_info;
5184 ctrl_info = container_of(work, struct pqi_ctrl_info,
5185 raid_bypass_retry_work);
5186 pqi_retry_raid_bypass_requests(ctrl_info);
5189 static void pqi_clear_all_queued_raid_bypass_retries(
5190 struct pqi_ctrl_info *ctrl_info)
5192 unsigned long flags;
5194 spin_lock_irqsave(&ctrl_info->raid_bypass_retry_list_lock, flags);
5195 INIT_LIST_HEAD(&ctrl_info->raid_bypass_retry_list);
5196 spin_unlock_irqrestore(&ctrl_info->raid_bypass_retry_list_lock, flags);
5199 static void pqi_aio_io_complete(struct pqi_io_request *io_request,
5202 struct scsi_cmnd *scmd;
5204 scmd = io_request->scmd;
5205 scsi_dma_unmap(scmd);
5206 if (io_request->status == -EAGAIN)
5207 set_host_byte(scmd, DID_IMM_RETRY);
5208 else if (pqi_raid_bypass_retry_needed(io_request)) {
5209 pqi_queue_raid_bypass_retry(io_request);
5212 pqi_free_io_request(io_request);
5213 pqi_scsi_done(scmd);
5216 static inline int pqi_aio_submit_scsi_cmd(struct pqi_ctrl_info *ctrl_info,
5217 struct pqi_scsi_dev *device, struct scsi_cmnd *scmd,
5218 struct pqi_queue_group *queue_group)
5220 return pqi_aio_submit_io(ctrl_info, scmd, device->aio_handle,
5221 scmd->cmnd, scmd->cmd_len, queue_group, NULL, false);
5224 static int pqi_aio_submit_io(struct pqi_ctrl_info *ctrl_info,
5225 struct scsi_cmnd *scmd, u32 aio_handle, u8 *cdb,
5226 unsigned int cdb_length, struct pqi_queue_group *queue_group,
5227 struct pqi_encryption_info *encryption_info, bool raid_bypass)
5230 struct pqi_io_request *io_request;
5231 struct pqi_aio_path_request *request;
5233 io_request = pqi_alloc_io_request(ctrl_info);
5234 io_request->io_complete_callback = pqi_aio_io_complete;
5235 io_request->scmd = scmd;
5236 io_request->raid_bypass = raid_bypass;
5238 request = io_request->iu;
5240 offsetof(struct pqi_raid_path_request, sg_descriptors));
5242 request->header.iu_type = PQI_REQUEST_IU_AIO_PATH_IO;
5243 put_unaligned_le32(aio_handle, &request->nexus_id);
5244 put_unaligned_le32(scsi_bufflen(scmd), &request->buffer_length);
5245 request->task_attribute = SOP_TASK_ATTRIBUTE_SIMPLE;
5246 put_unaligned_le16(io_request->index, &request->request_id);
5247 request->error_index = request->request_id;
5248 if (cdb_length > sizeof(request->cdb))
5249 cdb_length = sizeof(request->cdb);
5250 request->cdb_length = cdb_length;
5251 memcpy(request->cdb, cdb, cdb_length);
5253 switch (scmd->sc_data_direction) {
5255 request->data_direction = SOP_READ_FLAG;
5257 case DMA_FROM_DEVICE:
5258 request->data_direction = SOP_WRITE_FLAG;
5261 request->data_direction = SOP_NO_DIRECTION_FLAG;
5263 case DMA_BIDIRECTIONAL:
5264 request->data_direction = SOP_BIDIRECTIONAL;
5267 dev_err(&ctrl_info->pci_dev->dev,
5268 "unknown data direction: %d\n",
5269 scmd->sc_data_direction);
5273 if (encryption_info) {
5274 request->encryption_enable = true;
5275 put_unaligned_le16(encryption_info->data_encryption_key_index,
5276 &request->data_encryption_key_index);
5277 put_unaligned_le32(encryption_info->encrypt_tweak_lower,
5278 &request->encrypt_tweak_lower);
5279 put_unaligned_le32(encryption_info->encrypt_tweak_upper,
5280 &request->encrypt_tweak_upper);
5283 rc = pqi_build_aio_sg_list(ctrl_info, request, scmd, io_request);
5285 pqi_free_io_request(io_request);
5286 return SCSI_MLQUEUE_HOST_BUSY;
5289 pqi_start_io(ctrl_info, queue_group, AIO_PATH, io_request);
5294 static inline u16 pqi_get_hw_queue(struct pqi_ctrl_info *ctrl_info,
5295 struct scsi_cmnd *scmd)
5299 hw_queue = blk_mq_unique_tag_to_hwq(blk_mq_unique_tag(scmd->request));
5300 if (hw_queue > ctrl_info->max_hw_queue_index)
5307 * This function gets called just before we hand the completed SCSI request
5311 void pqi_prep_for_scsi_done(struct scsi_cmnd *scmd)
5313 struct pqi_scsi_dev *device;
5315 if (!scmd->device) {
5316 set_host_byte(scmd, DID_NO_CONNECT);
5320 device = scmd->device->hostdata;
5322 set_host_byte(scmd, DID_NO_CONNECT);
5326 atomic_dec(&device->scsi_cmds_outstanding);
5329 static int pqi_scsi_queue_command(struct Scsi_Host *shost,
5330 struct scsi_cmnd *scmd)
5333 struct pqi_ctrl_info *ctrl_info;
5334 struct pqi_scsi_dev *device;
5336 struct pqi_queue_group *queue_group;
5339 device = scmd->device->hostdata;
5340 ctrl_info = shost_to_hba(shost);
5343 set_host_byte(scmd, DID_NO_CONNECT);
5344 pqi_scsi_done(scmd);
5348 atomic_inc(&device->scsi_cmds_outstanding);
5350 if (pqi_ctrl_offline(ctrl_info) || pqi_device_in_remove(ctrl_info,
5352 set_host_byte(scmd, DID_NO_CONNECT);
5353 pqi_scsi_done(scmd);
5357 pqi_ctrl_busy(ctrl_info);
5358 if (pqi_ctrl_blocked(ctrl_info) || pqi_device_in_reset(device) ||
5359 pqi_ctrl_in_ofa(ctrl_info) || pqi_ctrl_in_shutdown(ctrl_info)) {
5360 rc = SCSI_MLQUEUE_HOST_BUSY;
5365 * This is necessary because the SML doesn't zero out this field during
5370 hw_queue = pqi_get_hw_queue(ctrl_info, scmd);
5371 queue_group = &ctrl_info->queue_groups[hw_queue];
5373 if (pqi_is_logical_device(device)) {
5374 raid_bypassed = false;
5375 if (device->raid_bypass_enabled &&
5376 !blk_rq_is_passthrough(scmd->request)) {
5377 rc = pqi_raid_bypass_submit_scsi_cmd(ctrl_info, device,
5379 if (rc == 0 || rc == SCSI_MLQUEUE_HOST_BUSY) {
5380 raid_bypassed = true;
5381 atomic_inc(&device->raid_bypass_cnt);
5385 rc = pqi_raid_submit_scsi_cmd(ctrl_info, device, scmd, queue_group);
5387 if (device->aio_enabled)
5388 rc = pqi_aio_submit_scsi_cmd(ctrl_info, device, scmd, queue_group);
5390 rc = pqi_raid_submit_scsi_cmd(ctrl_info, device, scmd, queue_group);
5394 pqi_ctrl_unbusy(ctrl_info);
5396 atomic_dec(&device->scsi_cmds_outstanding);
5401 static int pqi_wait_until_queued_io_drained(struct pqi_ctrl_info *ctrl_info,
5402 struct pqi_queue_group *queue_group)
5405 unsigned long flags;
5408 for (path = 0; path < 2; path++) {
5411 &queue_group->submit_lock[path], flags);
5413 list_empty(&queue_group->request_list[path]);
5414 spin_unlock_irqrestore(
5415 &queue_group->submit_lock[path], flags);
5418 pqi_check_ctrl_health(ctrl_info);
5419 if (pqi_ctrl_offline(ctrl_info))
5421 usleep_range(1000, 2000);
5428 static int pqi_wait_until_inbound_queues_empty(struct pqi_ctrl_info *ctrl_info)
5433 struct pqi_queue_group *queue_group;
5437 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
5438 queue_group = &ctrl_info->queue_groups[i];
5440 rc = pqi_wait_until_queued_io_drained(ctrl_info, queue_group);
5444 for (path = 0; path < 2; path++) {
5445 iq_pi = queue_group->iq_pi_copy[path];
5448 iq_ci = readl(queue_group->iq_ci[path]);
5451 pqi_check_ctrl_health(ctrl_info);
5452 if (pqi_ctrl_offline(ctrl_info))
5454 usleep_range(1000, 2000);
5462 static void pqi_fail_io_queued_for_device(struct pqi_ctrl_info *ctrl_info,
5463 struct pqi_scsi_dev *device)
5467 struct pqi_queue_group *queue_group;
5468 unsigned long flags;
5469 struct pqi_io_request *io_request;
5470 struct pqi_io_request *next;
5471 struct scsi_cmnd *scmd;
5472 struct pqi_scsi_dev *scsi_device;
5474 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
5475 queue_group = &ctrl_info->queue_groups[i];
5477 for (path = 0; path < 2; path++) {
5479 &queue_group->submit_lock[path], flags);
5481 list_for_each_entry_safe(io_request, next,
5482 &queue_group->request_list[path],
5483 request_list_entry) {
5484 scmd = io_request->scmd;
5488 scsi_device = scmd->device->hostdata;
5489 if (scsi_device != device)
5492 list_del(&io_request->request_list_entry);
5493 set_host_byte(scmd, DID_RESET);
5494 pqi_scsi_done(scmd);
5497 spin_unlock_irqrestore(
5498 &queue_group->submit_lock[path], flags);
5503 static void pqi_fail_io_queued_for_all_devices(struct pqi_ctrl_info *ctrl_info)
5507 struct pqi_queue_group *queue_group;
5508 unsigned long flags;
5509 struct pqi_io_request *io_request;
5510 struct pqi_io_request *next;
5511 struct scsi_cmnd *scmd;
5513 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
5514 queue_group = &ctrl_info->queue_groups[i];
5516 for (path = 0; path < 2; path++) {
5517 spin_lock_irqsave(&queue_group->submit_lock[path],
5520 list_for_each_entry_safe(io_request, next,
5521 &queue_group->request_list[path],
5522 request_list_entry) {
5524 scmd = io_request->scmd;
5528 list_del(&io_request->request_list_entry);
5529 set_host_byte(scmd, DID_RESET);
5530 pqi_scsi_done(scmd);
5533 spin_unlock_irqrestore(
5534 &queue_group->submit_lock[path], flags);
5539 static int pqi_device_wait_for_pending_io(struct pqi_ctrl_info *ctrl_info,
5540 struct pqi_scsi_dev *device, unsigned long timeout_secs)
5542 unsigned long timeout;
5544 timeout = (timeout_secs * PQI_HZ) + jiffies;
5546 while (atomic_read(&device->scsi_cmds_outstanding)) {
5547 pqi_check_ctrl_health(ctrl_info);
5548 if (pqi_ctrl_offline(ctrl_info))
5550 if (timeout_secs != NO_TIMEOUT) {
5551 if (time_after(jiffies, timeout)) {
5552 dev_err(&ctrl_info->pci_dev->dev,
5553 "timed out waiting for pending IO\n");
5557 usleep_range(1000, 2000);
5563 static int pqi_ctrl_wait_for_pending_io(struct pqi_ctrl_info *ctrl_info,
5564 unsigned long timeout_secs)
5567 unsigned long flags;
5568 unsigned long timeout;
5569 struct pqi_scsi_dev *device;
5571 timeout = (timeout_secs * PQI_HZ) + jiffies;
5575 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
5576 list_for_each_entry(device, &ctrl_info->scsi_device_list,
5577 scsi_device_list_entry) {
5578 if (atomic_read(&device->scsi_cmds_outstanding)) {
5583 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock,
5589 pqi_check_ctrl_health(ctrl_info);
5590 if (pqi_ctrl_offline(ctrl_info))
5593 if (timeout_secs != NO_TIMEOUT) {
5594 if (time_after(jiffies, timeout)) {
5595 dev_err(&ctrl_info->pci_dev->dev,
5596 "timed out waiting for pending IO\n");
5600 usleep_range(1000, 2000);
5606 static int pqi_ctrl_wait_for_pending_sync_cmds(struct pqi_ctrl_info *ctrl_info)
5608 while (atomic_read(&ctrl_info->sync_cmds_outstanding)) {
5609 pqi_check_ctrl_health(ctrl_info);
5610 if (pqi_ctrl_offline(ctrl_info))
5612 usleep_range(1000, 2000);
5618 static void pqi_lun_reset_complete(struct pqi_io_request *io_request,
5621 struct completion *waiting = context;
5626 #define PQI_LUN_RESET_TIMEOUT_SECS 30
5627 #define PQI_LUN_RESET_POLL_COMPLETION_SECS 10
5629 static int pqi_wait_for_lun_reset_completion(struct pqi_ctrl_info *ctrl_info,
5630 struct pqi_scsi_dev *device, struct completion *wait)
5635 if (wait_for_completion_io_timeout(wait,
5636 PQI_LUN_RESET_POLL_COMPLETION_SECS * PQI_HZ)) {
5641 pqi_check_ctrl_health(ctrl_info);
5642 if (pqi_ctrl_offline(ctrl_info)) {
5651 static int pqi_lun_reset(struct pqi_ctrl_info *ctrl_info,
5652 struct pqi_scsi_dev *device)
5655 struct pqi_io_request *io_request;
5656 DECLARE_COMPLETION_ONSTACK(wait);
5657 struct pqi_task_management_request *request;
5659 io_request = pqi_alloc_io_request(ctrl_info);
5660 io_request->io_complete_callback = pqi_lun_reset_complete;
5661 io_request->context = &wait;
5663 request = io_request->iu;
5664 memset(request, 0, sizeof(*request));
5666 request->header.iu_type = PQI_REQUEST_IU_TASK_MANAGEMENT;
5667 put_unaligned_le16(sizeof(*request) - PQI_REQUEST_HEADER_LENGTH,
5668 &request->header.iu_length);
5669 put_unaligned_le16(io_request->index, &request->request_id);
5670 memcpy(request->lun_number, device->scsi3addr,
5671 sizeof(request->lun_number));
5672 request->task_management_function = SOP_TASK_MANAGEMENT_LUN_RESET;
5673 if (ctrl_info->tmf_iu_timeout_supported)
5674 put_unaligned_le16(PQI_LUN_RESET_TIMEOUT_SECS,
5677 pqi_start_io(ctrl_info,
5678 &ctrl_info->queue_groups[PQI_DEFAULT_QUEUE_GROUP], RAID_PATH,
5681 rc = pqi_wait_for_lun_reset_completion(ctrl_info, device, &wait);
5683 rc = io_request->status;
5685 pqi_free_io_request(io_request);
5690 /* Performs a reset at the LUN level. */
5692 #define PQI_LUN_RESET_RETRIES 3
5693 #define PQI_LUN_RESET_RETRY_INTERVAL_MSECS 10000
5694 #define PQI_LUN_RESET_PENDING_IO_TIMEOUT_SECS 120
5696 static int _pqi_device_reset(struct pqi_ctrl_info *ctrl_info,
5697 struct pqi_scsi_dev *device)
5700 unsigned int retries;
5701 unsigned long timeout_secs;
5703 for (retries = 0;;) {
5704 rc = pqi_lun_reset(ctrl_info, device);
5705 if (rc == 0 || ++retries > PQI_LUN_RESET_RETRIES)
5707 msleep(PQI_LUN_RESET_RETRY_INTERVAL_MSECS);
5710 timeout_secs = rc ? PQI_LUN_RESET_PENDING_IO_TIMEOUT_SECS : NO_TIMEOUT;
5712 rc |= pqi_device_wait_for_pending_io(ctrl_info, device, timeout_secs);
5714 return rc == 0 ? SUCCESS : FAILED;
5717 static int pqi_device_reset(struct pqi_ctrl_info *ctrl_info,
5718 struct pqi_scsi_dev *device)
5722 mutex_lock(&ctrl_info->lun_reset_mutex);
5724 pqi_ctrl_block_requests(ctrl_info);
5725 pqi_ctrl_wait_until_quiesced(ctrl_info);
5726 pqi_fail_io_queued_for_device(ctrl_info, device);
5727 rc = pqi_wait_until_inbound_queues_empty(ctrl_info);
5728 pqi_device_reset_start(device);
5729 pqi_ctrl_unblock_requests(ctrl_info);
5734 rc = _pqi_device_reset(ctrl_info, device);
5736 pqi_device_reset_done(device);
5738 mutex_unlock(&ctrl_info->lun_reset_mutex);
5743 static int pqi_eh_device_reset_handler(struct scsi_cmnd *scmd)
5746 struct Scsi_Host *shost;
5747 struct pqi_ctrl_info *ctrl_info;
5748 struct pqi_scsi_dev *device;
5750 shost = scmd->device->host;
5751 ctrl_info = shost_to_hba(shost);
5752 device = scmd->device->hostdata;
5754 dev_err(&ctrl_info->pci_dev->dev,
5755 "resetting scsi %d:%d:%d:%d\n",
5756 shost->host_no, device->bus, device->target, device->lun);
5758 pqi_check_ctrl_health(ctrl_info);
5759 if (pqi_ctrl_offline(ctrl_info) ||
5760 pqi_device_reset_blocked(ctrl_info)) {
5765 pqi_wait_until_ofa_finished(ctrl_info);
5767 atomic_inc(&ctrl_info->sync_cmds_outstanding);
5768 rc = pqi_device_reset(ctrl_info, device);
5769 atomic_dec(&ctrl_info->sync_cmds_outstanding);
5772 dev_err(&ctrl_info->pci_dev->dev,
5773 "reset of scsi %d:%d:%d:%d: %s\n",
5774 shost->host_no, device->bus, device->target, device->lun,
5775 rc == SUCCESS ? "SUCCESS" : "FAILED");
5780 static int pqi_slave_alloc(struct scsi_device *sdev)
5782 struct pqi_scsi_dev *device;
5783 unsigned long flags;
5784 struct pqi_ctrl_info *ctrl_info;
5785 struct scsi_target *starget;
5786 struct sas_rphy *rphy;
5788 ctrl_info = shost_to_hba(sdev->host);
5790 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
5792 if (sdev_channel(sdev) == PQI_PHYSICAL_DEVICE_BUS) {
5793 starget = scsi_target(sdev);
5794 rphy = target_to_rphy(starget);
5795 device = pqi_find_device_by_sas_rphy(ctrl_info, rphy);
5797 device->target = sdev_id(sdev);
5798 device->lun = sdev->lun;
5799 device->target_lun_valid = true;
5802 device = pqi_find_scsi_dev(ctrl_info, sdev_channel(sdev),
5803 sdev_id(sdev), sdev->lun);
5807 sdev->hostdata = device;
5808 device->sdev = sdev;
5809 if (device->queue_depth) {
5810 device->advertised_queue_depth = device->queue_depth;
5811 scsi_change_queue_depth(sdev,
5812 device->advertised_queue_depth);
5814 if (pqi_is_logical_device(device))
5815 pqi_disable_write_same(sdev);
5817 sdev->allow_restart = 1;
5820 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
5825 static int pqi_map_queues(struct Scsi_Host *shost)
5827 struct pqi_ctrl_info *ctrl_info = shost_to_hba(shost);
5829 return blk_mq_pci_map_queues(&shost->tag_set.map[HCTX_TYPE_DEFAULT],
5830 ctrl_info->pci_dev, 0);
5833 static int pqi_slave_configure(struct scsi_device *sdev)
5835 struct pqi_scsi_dev *device;
5837 device = sdev->hostdata;
5838 device->devtype = sdev->type;
5843 static void pqi_slave_destroy(struct scsi_device *sdev)
5845 unsigned long flags;
5846 struct pqi_scsi_dev *device;
5847 struct pqi_ctrl_info *ctrl_info;
5849 ctrl_info = shost_to_hba(sdev->host);
5851 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
5853 device = sdev->hostdata;
5855 sdev->hostdata = NULL;
5856 if (!list_empty(&device->scsi_device_list_entry))
5857 list_del(&device->scsi_device_list_entry);
5860 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
5863 pqi_dev_info(ctrl_info, "removed", device);
5864 pqi_free_device(device);
5868 static int pqi_getpciinfo_ioctl(struct pqi_ctrl_info *ctrl_info, void __user *arg)
5870 struct pci_dev *pci_dev;
5871 u32 subsystem_vendor;
5872 u32 subsystem_device;
5873 cciss_pci_info_struct pciinfo;
5878 pci_dev = ctrl_info->pci_dev;
5880 pciinfo.domain = pci_domain_nr(pci_dev->bus);
5881 pciinfo.bus = pci_dev->bus->number;
5882 pciinfo.dev_fn = pci_dev->devfn;
5883 subsystem_vendor = pci_dev->subsystem_vendor;
5884 subsystem_device = pci_dev->subsystem_device;
5885 pciinfo.board_id = ((subsystem_device << 16) & 0xffff0000) | subsystem_vendor;
5887 if (copy_to_user(arg, &pciinfo, sizeof(pciinfo)))
5893 static int pqi_getdrivver_ioctl(void __user *arg)
5900 version = (DRIVER_MAJOR << 28) | (DRIVER_MINOR << 24) |
5901 (DRIVER_RELEASE << 16) | DRIVER_REVISION;
5903 if (copy_to_user(arg, &version, sizeof(version)))
5909 struct ciss_error_info {
5912 size_t sense_data_length;
5915 static void pqi_error_info_to_ciss(struct pqi_raid_error_info *pqi_error_info,
5916 struct ciss_error_info *ciss_error_info)
5918 int ciss_cmd_status;
5919 size_t sense_data_length;
5921 switch (pqi_error_info->data_out_result) {
5922 case PQI_DATA_IN_OUT_GOOD:
5923 ciss_cmd_status = CISS_CMD_STATUS_SUCCESS;
5925 case PQI_DATA_IN_OUT_UNDERFLOW:
5926 ciss_cmd_status = CISS_CMD_STATUS_DATA_UNDERRUN;
5928 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW:
5929 ciss_cmd_status = CISS_CMD_STATUS_DATA_OVERRUN;
5931 case PQI_DATA_IN_OUT_PROTOCOL_ERROR:
5932 case PQI_DATA_IN_OUT_BUFFER_ERROR:
5933 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA:
5934 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE:
5935 case PQI_DATA_IN_OUT_ERROR:
5936 ciss_cmd_status = CISS_CMD_STATUS_PROTOCOL_ERROR;
5938 case PQI_DATA_IN_OUT_HARDWARE_ERROR:
5939 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR:
5940 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT:
5941 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED:
5942 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED:
5943 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED:
5944 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST:
5945 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION:
5946 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED:
5947 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ:
5948 ciss_cmd_status = CISS_CMD_STATUS_HARDWARE_ERROR;
5950 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT:
5951 ciss_cmd_status = CISS_CMD_STATUS_UNSOLICITED_ABORT;
5953 case PQI_DATA_IN_OUT_ABORTED:
5954 ciss_cmd_status = CISS_CMD_STATUS_ABORTED;
5956 case PQI_DATA_IN_OUT_TIMEOUT:
5957 ciss_cmd_status = CISS_CMD_STATUS_TIMEOUT;
5960 ciss_cmd_status = CISS_CMD_STATUS_TARGET_STATUS;
5965 get_unaligned_le16(&pqi_error_info->sense_data_length);
5966 if (sense_data_length == 0)
5968 get_unaligned_le16(&pqi_error_info->response_data_length);
5969 if (sense_data_length)
5970 if (sense_data_length > sizeof(pqi_error_info->data))
5971 sense_data_length = sizeof(pqi_error_info->data);
5973 ciss_error_info->scsi_status = pqi_error_info->status;
5974 ciss_error_info->command_status = ciss_cmd_status;
5975 ciss_error_info->sense_data_length = sense_data_length;
5978 static int pqi_passthru_ioctl(struct pqi_ctrl_info *ctrl_info, void __user *arg)
5981 char *kernel_buffer = NULL;
5983 size_t sense_data_length;
5984 IOCTL_Command_struct iocommand;
5985 struct pqi_raid_path_request request;
5986 struct pqi_raid_error_info pqi_error_info;
5987 struct ciss_error_info ciss_error_info;
5989 if (pqi_ctrl_offline(ctrl_info))
5993 if (!capable(CAP_SYS_RAWIO))
5995 if (copy_from_user(&iocommand, arg, sizeof(iocommand)))
5997 if (iocommand.buf_size < 1 &&
5998 iocommand.Request.Type.Direction != XFER_NONE)
6000 if (iocommand.Request.CDBLen > sizeof(request.cdb))
6002 if (iocommand.Request.Type.Type != TYPE_CMD)
6005 switch (iocommand.Request.Type.Direction) {
6009 case XFER_READ | XFER_WRITE:
6015 if (iocommand.buf_size > 0) {
6016 kernel_buffer = kmalloc(iocommand.buf_size, GFP_KERNEL);
6019 if (iocommand.Request.Type.Direction & XFER_WRITE) {
6020 if (copy_from_user(kernel_buffer, iocommand.buf,
6021 iocommand.buf_size)) {
6026 memset(kernel_buffer, 0, iocommand.buf_size);
6030 memset(&request, 0, sizeof(request));
6032 request.header.iu_type = PQI_REQUEST_IU_RAID_PATH_IO;
6033 iu_length = offsetof(struct pqi_raid_path_request, sg_descriptors) -
6034 PQI_REQUEST_HEADER_LENGTH;
6035 memcpy(request.lun_number, iocommand.LUN_info.LunAddrBytes,
6036 sizeof(request.lun_number));
6037 memcpy(request.cdb, iocommand.Request.CDB, iocommand.Request.CDBLen);
6038 request.additional_cdb_bytes_usage = SOP_ADDITIONAL_CDB_BYTES_0;
6040 switch (iocommand.Request.Type.Direction) {
6042 request.data_direction = SOP_NO_DIRECTION_FLAG;
6045 request.data_direction = SOP_WRITE_FLAG;
6048 request.data_direction = SOP_READ_FLAG;
6050 case XFER_READ | XFER_WRITE:
6051 request.data_direction = SOP_BIDIRECTIONAL;
6055 request.task_attribute = SOP_TASK_ATTRIBUTE_SIMPLE;
6057 if (iocommand.buf_size > 0) {
6058 put_unaligned_le32(iocommand.buf_size, &request.buffer_length);
6060 rc = pqi_map_single(ctrl_info->pci_dev,
6061 &request.sg_descriptors[0], kernel_buffer,
6062 iocommand.buf_size, DMA_BIDIRECTIONAL);
6066 iu_length += sizeof(request.sg_descriptors[0]);
6069 put_unaligned_le16(iu_length, &request.header.iu_length);
6071 if (ctrl_info->raid_iu_timeout_supported)
6072 put_unaligned_le32(iocommand.Request.Timeout, &request.timeout);
6074 rc = pqi_submit_raid_request_synchronous(ctrl_info, &request.header,
6075 PQI_SYNC_FLAGS_INTERRUPTABLE, &pqi_error_info, NO_TIMEOUT);
6077 if (iocommand.buf_size > 0)
6078 pqi_pci_unmap(ctrl_info->pci_dev, request.sg_descriptors, 1,
6081 memset(&iocommand.error_info, 0, sizeof(iocommand.error_info));
6084 pqi_error_info_to_ciss(&pqi_error_info, &ciss_error_info);
6085 iocommand.error_info.ScsiStatus = ciss_error_info.scsi_status;
6086 iocommand.error_info.CommandStatus =
6087 ciss_error_info.command_status;
6088 sense_data_length = ciss_error_info.sense_data_length;
6089 if (sense_data_length) {
6090 if (sense_data_length >
6091 sizeof(iocommand.error_info.SenseInfo))
6093 sizeof(iocommand.error_info.SenseInfo);
6094 memcpy(iocommand.error_info.SenseInfo,
6095 pqi_error_info.data, sense_data_length);
6096 iocommand.error_info.SenseLen = sense_data_length;
6100 if (copy_to_user(arg, &iocommand, sizeof(iocommand))) {
6105 if (rc == 0 && iocommand.buf_size > 0 &&
6106 (iocommand.Request.Type.Direction & XFER_READ)) {
6107 if (copy_to_user(iocommand.buf, kernel_buffer,
6108 iocommand.buf_size)) {
6114 kfree(kernel_buffer);
6119 static int pqi_ioctl(struct scsi_device *sdev, unsigned int cmd,
6123 struct pqi_ctrl_info *ctrl_info;
6125 ctrl_info = shost_to_hba(sdev->host);
6127 if (pqi_ctrl_in_ofa(ctrl_info) || pqi_ctrl_in_shutdown(ctrl_info))
6131 case CCISS_DEREGDISK:
6132 case CCISS_REGNEWDISK:
6134 rc = pqi_scan_scsi_devices(ctrl_info);
6136 case CCISS_GETPCIINFO:
6137 rc = pqi_getpciinfo_ioctl(ctrl_info, arg);
6139 case CCISS_GETDRIVVER:
6140 rc = pqi_getdrivver_ioctl(arg);
6142 case CCISS_PASSTHRU:
6143 rc = pqi_passthru_ioctl(ctrl_info, arg);
6153 static ssize_t pqi_firmware_version_show(struct device *dev,
6154 struct device_attribute *attr, char *buffer)
6156 struct Scsi_Host *shost;
6157 struct pqi_ctrl_info *ctrl_info;
6159 shost = class_to_shost(dev);
6160 ctrl_info = shost_to_hba(shost);
6162 return snprintf(buffer, PAGE_SIZE, "%s\n", ctrl_info->firmware_version);
6165 static ssize_t pqi_driver_version_show(struct device *dev,
6166 struct device_attribute *attr, char *buffer)
6168 return snprintf(buffer, PAGE_SIZE, "%s\n",
6169 DRIVER_VERSION BUILD_TIMESTAMP);
6172 static ssize_t pqi_serial_number_show(struct device *dev,
6173 struct device_attribute *attr, char *buffer)
6175 struct Scsi_Host *shost;
6176 struct pqi_ctrl_info *ctrl_info;
6178 shost = class_to_shost(dev);
6179 ctrl_info = shost_to_hba(shost);
6181 return snprintf(buffer, PAGE_SIZE, "%s\n", ctrl_info->serial_number);
6184 static ssize_t pqi_model_show(struct device *dev,
6185 struct device_attribute *attr, char *buffer)
6187 struct Scsi_Host *shost;
6188 struct pqi_ctrl_info *ctrl_info;
6190 shost = class_to_shost(dev);
6191 ctrl_info = shost_to_hba(shost);
6193 return snprintf(buffer, PAGE_SIZE, "%s\n", ctrl_info->model);
6196 static ssize_t pqi_vendor_show(struct device *dev,
6197 struct device_attribute *attr, char *buffer)
6199 struct Scsi_Host *shost;
6200 struct pqi_ctrl_info *ctrl_info;
6202 shost = class_to_shost(dev);
6203 ctrl_info = shost_to_hba(shost);
6205 return snprintf(buffer, PAGE_SIZE, "%s\n", ctrl_info->vendor);
6208 static ssize_t pqi_host_rescan_store(struct device *dev,
6209 struct device_attribute *attr, const char *buffer, size_t count)
6211 struct Scsi_Host *shost = class_to_shost(dev);
6213 pqi_scan_start(shost);
6218 static ssize_t pqi_lockup_action_show(struct device *dev,
6219 struct device_attribute *attr, char *buffer)
6224 for (i = 0; i < ARRAY_SIZE(pqi_lockup_actions); i++) {
6225 if (pqi_lockup_actions[i].action == pqi_lockup_action)
6226 count += scnprintf(buffer + count, PAGE_SIZE - count,
6227 "[%s] ", pqi_lockup_actions[i].name);
6229 count += scnprintf(buffer + count, PAGE_SIZE - count,
6230 "%s ", pqi_lockup_actions[i].name);
6233 count += scnprintf(buffer + count, PAGE_SIZE - count, "\n");
6238 static ssize_t pqi_lockup_action_store(struct device *dev,
6239 struct device_attribute *attr, const char *buffer, size_t count)
6243 char action_name_buffer[32];
6245 strlcpy(action_name_buffer, buffer, sizeof(action_name_buffer));
6246 action_name = strstrip(action_name_buffer);
6248 for (i = 0; i < ARRAY_SIZE(pqi_lockup_actions); i++) {
6249 if (strcmp(action_name, pqi_lockup_actions[i].name) == 0) {
6250 pqi_lockup_action = pqi_lockup_actions[i].action;
6258 static DEVICE_ATTR(driver_version, 0444, pqi_driver_version_show, NULL);
6259 static DEVICE_ATTR(firmware_version, 0444, pqi_firmware_version_show, NULL);
6260 static DEVICE_ATTR(model, 0444, pqi_model_show, NULL);
6261 static DEVICE_ATTR(serial_number, 0444, pqi_serial_number_show, NULL);
6262 static DEVICE_ATTR(vendor, 0444, pqi_vendor_show, NULL);
6263 static DEVICE_ATTR(rescan, 0200, NULL, pqi_host_rescan_store);
6264 static DEVICE_ATTR(lockup_action, 0644,
6265 pqi_lockup_action_show, pqi_lockup_action_store);
6267 static struct device_attribute *pqi_shost_attrs[] = {
6268 &dev_attr_driver_version,
6269 &dev_attr_firmware_version,
6271 &dev_attr_serial_number,
6274 &dev_attr_lockup_action,
6278 static ssize_t pqi_unique_id_show(struct device *dev,
6279 struct device_attribute *attr, char *buffer)
6281 struct pqi_ctrl_info *ctrl_info;
6282 struct scsi_device *sdev;
6283 struct pqi_scsi_dev *device;
6284 unsigned long flags;
6287 sdev = to_scsi_device(dev);
6288 ctrl_info = shost_to_hba(sdev->host);
6290 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6292 device = sdev->hostdata;
6294 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6298 if (device->is_physical_device) {
6299 memset(unique_id, 0, 8);
6300 memcpy(unique_id + 8, &device->wwid, sizeof(device->wwid));
6302 memcpy(unique_id, device->volume_id, sizeof(device->volume_id));
6305 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6307 return snprintf(buffer, PAGE_SIZE,
6308 "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X\n",
6309 unique_id[0], unique_id[1], unique_id[2], unique_id[3],
6310 unique_id[4], unique_id[5], unique_id[6], unique_id[7],
6311 unique_id[8], unique_id[9], unique_id[10], unique_id[11],
6312 unique_id[12], unique_id[13], unique_id[14], unique_id[15]);
6315 static ssize_t pqi_lunid_show(struct device *dev,
6316 struct device_attribute *attr, char *buffer)
6318 struct pqi_ctrl_info *ctrl_info;
6319 struct scsi_device *sdev;
6320 struct pqi_scsi_dev *device;
6321 unsigned long flags;
6324 sdev = to_scsi_device(dev);
6325 ctrl_info = shost_to_hba(sdev->host);
6327 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6329 device = sdev->hostdata;
6331 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6335 memcpy(lunid, device->scsi3addr, sizeof(lunid));
6337 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6339 return snprintf(buffer, PAGE_SIZE, "0x%8phN\n", lunid);
6344 static ssize_t pqi_path_info_show(struct device *dev,
6345 struct device_attribute *attr, char *buf)
6347 struct pqi_ctrl_info *ctrl_info;
6348 struct scsi_device *sdev;
6349 struct pqi_scsi_dev *device;
6350 unsigned long flags;
6357 u8 phys_connector[2];
6359 sdev = to_scsi_device(dev);
6360 ctrl_info = shost_to_hba(sdev->host);
6362 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6364 device = sdev->hostdata;
6366 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6371 for (i = 0; i < MAX_PATHS; i++) {
6372 path_map_index = 1 << i;
6373 if (i == device->active_path_index)
6375 else if (device->path_map & path_map_index)
6376 active = "Inactive";
6380 output_len += scnprintf(buf + output_len,
6381 PAGE_SIZE - output_len,
6382 "[%d:%d:%d:%d] %20.20s ",
6383 ctrl_info->scsi_host->host_no,
6384 device->bus, device->target,
6386 scsi_device_type(device->devtype));
6388 if (device->devtype == TYPE_RAID ||
6389 pqi_is_logical_device(device))
6392 memcpy(&phys_connector, &device->phys_connector[i],
6393 sizeof(phys_connector));
6394 if (phys_connector[0] < '0')
6395 phys_connector[0] = '0';
6396 if (phys_connector[1] < '0')
6397 phys_connector[1] = '0';
6399 output_len += scnprintf(buf + output_len,
6400 PAGE_SIZE - output_len,
6401 "PORT: %.2s ", phys_connector);
6403 box = device->box[i];
6404 if (box != 0 && box != 0xFF)
6405 output_len += scnprintf(buf + output_len,
6406 PAGE_SIZE - output_len,
6409 if ((device->devtype == TYPE_DISK ||
6410 device->devtype == TYPE_ZBC) &&
6411 pqi_expose_device(device))
6412 output_len += scnprintf(buf + output_len,
6413 PAGE_SIZE - output_len,
6417 output_len += scnprintf(buf + output_len,
6418 PAGE_SIZE - output_len,
6422 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6427 static ssize_t pqi_sas_address_show(struct device *dev,
6428 struct device_attribute *attr, char *buffer)
6430 struct pqi_ctrl_info *ctrl_info;
6431 struct scsi_device *sdev;
6432 struct pqi_scsi_dev *device;
6433 unsigned long flags;
6436 sdev = to_scsi_device(dev);
6437 ctrl_info = shost_to_hba(sdev->host);
6439 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6441 device = sdev->hostdata;
6442 if (!device || !pqi_is_device_with_sas_address(device)) {
6443 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6447 sas_address = device->sas_address;
6449 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6451 return snprintf(buffer, PAGE_SIZE, "0x%016llx\n", sas_address);
6454 static ssize_t pqi_ssd_smart_path_enabled_show(struct device *dev,
6455 struct device_attribute *attr, char *buffer)
6457 struct pqi_ctrl_info *ctrl_info;
6458 struct scsi_device *sdev;
6459 struct pqi_scsi_dev *device;
6460 unsigned long flags;
6462 sdev = to_scsi_device(dev);
6463 ctrl_info = shost_to_hba(sdev->host);
6465 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6467 device = sdev->hostdata;
6469 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6473 buffer[0] = device->raid_bypass_enabled ? '1' : '0';
6477 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6482 static ssize_t pqi_raid_level_show(struct device *dev,
6483 struct device_attribute *attr, char *buffer)
6485 struct pqi_ctrl_info *ctrl_info;
6486 struct scsi_device *sdev;
6487 struct pqi_scsi_dev *device;
6488 unsigned long flags;
6491 sdev = to_scsi_device(dev);
6492 ctrl_info = shost_to_hba(sdev->host);
6494 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6496 device = sdev->hostdata;
6498 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6502 if (pqi_is_logical_device(device))
6503 raid_level = pqi_raid_level_to_string(device->raid_level);
6507 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6509 return snprintf(buffer, PAGE_SIZE, "%s\n", raid_level);
6512 static ssize_t pqi_raid_bypass_cnt_show(struct device *dev,
6513 struct device_attribute *attr, char *buffer)
6515 struct pqi_ctrl_info *ctrl_info;
6516 struct scsi_device *sdev;
6517 struct pqi_scsi_dev *device;
6518 unsigned long flags;
6519 int raid_bypass_cnt;
6521 sdev = to_scsi_device(dev);
6522 ctrl_info = shost_to_hba(sdev->host);
6524 spin_lock_irqsave(&ctrl_info->scsi_device_list_lock, flags);
6526 device = sdev->hostdata;
6528 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6532 raid_bypass_cnt = atomic_read(&device->raid_bypass_cnt);
6534 spin_unlock_irqrestore(&ctrl_info->scsi_device_list_lock, flags);
6536 return snprintf(buffer, PAGE_SIZE, "0x%x\n", raid_bypass_cnt);
6539 static DEVICE_ATTR(lunid, 0444, pqi_lunid_show, NULL);
6540 static DEVICE_ATTR(unique_id, 0444, pqi_unique_id_show, NULL);
6541 static DEVICE_ATTR(path_info, 0444, pqi_path_info_show, NULL);
6542 static DEVICE_ATTR(sas_address, 0444, pqi_sas_address_show, NULL);
6543 static DEVICE_ATTR(ssd_smart_path_enabled, 0444, pqi_ssd_smart_path_enabled_show, NULL);
6544 static DEVICE_ATTR(raid_level, 0444, pqi_raid_level_show, NULL);
6545 static DEVICE_ATTR(raid_bypass_cnt, 0444, pqi_raid_bypass_cnt_show, NULL);
6547 static struct device_attribute *pqi_sdev_attrs[] = {
6549 &dev_attr_unique_id,
6550 &dev_attr_path_info,
6551 &dev_attr_sas_address,
6552 &dev_attr_ssd_smart_path_enabled,
6553 &dev_attr_raid_level,
6554 &dev_attr_raid_bypass_cnt,
6558 static struct scsi_host_template pqi_driver_template = {
6559 .module = THIS_MODULE,
6560 .name = DRIVER_NAME_SHORT,
6561 .proc_name = DRIVER_NAME_SHORT,
6562 .queuecommand = pqi_scsi_queue_command,
6563 .scan_start = pqi_scan_start,
6564 .scan_finished = pqi_scan_finished,
6566 .eh_device_reset_handler = pqi_eh_device_reset_handler,
6568 .slave_alloc = pqi_slave_alloc,
6569 .slave_configure = pqi_slave_configure,
6570 .slave_destroy = pqi_slave_destroy,
6571 .map_queues = pqi_map_queues,
6572 .sdev_attrs = pqi_sdev_attrs,
6573 .shost_attrs = pqi_shost_attrs,
6576 static int pqi_register_scsi(struct pqi_ctrl_info *ctrl_info)
6579 struct Scsi_Host *shost;
6581 shost = scsi_host_alloc(&pqi_driver_template, sizeof(ctrl_info));
6583 dev_err(&ctrl_info->pci_dev->dev,
6584 "scsi_host_alloc failed for controller %u\n",
6585 ctrl_info->ctrl_id);
6590 shost->n_io_port = 0;
6591 shost->this_id = -1;
6592 shost->max_channel = PQI_MAX_BUS;
6593 shost->max_cmd_len = MAX_COMMAND_SIZE;
6594 shost->max_lun = ~0;
6596 shost->max_sectors = ctrl_info->max_sectors;
6597 shost->can_queue = ctrl_info->scsi_ml_can_queue;
6598 shost->cmd_per_lun = shost->can_queue;
6599 shost->sg_tablesize = ctrl_info->sg_tablesize;
6600 shost->transportt = pqi_sas_transport_template;
6601 shost->irq = pci_irq_vector(ctrl_info->pci_dev, 0);
6602 shost->unique_id = shost->irq;
6603 shost->nr_hw_queues = ctrl_info->num_queue_groups;
6604 shost->hostdata[0] = (unsigned long)ctrl_info;
6606 rc = scsi_add_host(shost, &ctrl_info->pci_dev->dev);
6608 dev_err(&ctrl_info->pci_dev->dev,
6609 "scsi_add_host failed for controller %u\n",
6610 ctrl_info->ctrl_id);
6614 rc = pqi_add_sas_host(shost, ctrl_info);
6616 dev_err(&ctrl_info->pci_dev->dev,
6617 "add SAS host failed for controller %u\n",
6618 ctrl_info->ctrl_id);
6622 ctrl_info->scsi_host = shost;
6627 scsi_remove_host(shost);
6629 scsi_host_put(shost);
6634 static void pqi_unregister_scsi(struct pqi_ctrl_info *ctrl_info)
6636 struct Scsi_Host *shost;
6638 pqi_delete_sas_host(ctrl_info);
6640 shost = ctrl_info->scsi_host;
6644 scsi_remove_host(shost);
6645 scsi_host_put(shost);
6648 static int pqi_wait_for_pqi_reset_completion(struct pqi_ctrl_info *ctrl_info)
6651 struct pqi_device_registers __iomem *pqi_registers;
6652 unsigned long timeout;
6653 unsigned int timeout_msecs;
6654 union pqi_reset_register reset_reg;
6656 pqi_registers = ctrl_info->pqi_registers;
6657 timeout_msecs = readw(&pqi_registers->max_reset_timeout) * 100;
6658 timeout = msecs_to_jiffies(timeout_msecs) + jiffies;
6661 msleep(PQI_RESET_POLL_INTERVAL_MSECS);
6662 reset_reg.all_bits = readl(&pqi_registers->device_reset);
6663 if (reset_reg.bits.reset_action == PQI_RESET_ACTION_COMPLETED)
6665 pqi_check_ctrl_health(ctrl_info);
6666 if (pqi_ctrl_offline(ctrl_info)) {
6670 if (time_after(jiffies, timeout)) {
6679 static int pqi_reset(struct pqi_ctrl_info *ctrl_info)
6682 union pqi_reset_register reset_reg;
6684 if (ctrl_info->pqi_reset_quiesce_supported) {
6685 rc = sis_pqi_reset_quiesce(ctrl_info);
6687 dev_err(&ctrl_info->pci_dev->dev,
6688 "PQI reset failed during quiesce with error %d\n",
6694 reset_reg.all_bits = 0;
6695 reset_reg.bits.reset_type = PQI_RESET_TYPE_HARD_RESET;
6696 reset_reg.bits.reset_action = PQI_RESET_ACTION_RESET;
6698 writel(reset_reg.all_bits, &ctrl_info->pqi_registers->device_reset);
6700 rc = pqi_wait_for_pqi_reset_completion(ctrl_info);
6702 dev_err(&ctrl_info->pci_dev->dev,
6703 "PQI reset failed with error %d\n", rc);
6708 static int pqi_get_ctrl_serial_number(struct pqi_ctrl_info *ctrl_info)
6711 struct bmic_sense_subsystem_info *sense_info;
6713 sense_info = kzalloc(sizeof(*sense_info), GFP_KERNEL);
6717 rc = pqi_sense_subsystem_info(ctrl_info, sense_info);
6721 memcpy(ctrl_info->serial_number, sense_info->ctrl_serial_number,
6722 sizeof(sense_info->ctrl_serial_number));
6723 ctrl_info->serial_number[sizeof(sense_info->ctrl_serial_number)] = '\0';
6731 static int pqi_get_ctrl_product_details(struct pqi_ctrl_info *ctrl_info)
6734 struct bmic_identify_controller *identify;
6736 identify = kmalloc(sizeof(*identify), GFP_KERNEL);
6740 rc = pqi_identify_controller(ctrl_info, identify);
6744 memcpy(ctrl_info->firmware_version, identify->firmware_version,
6745 sizeof(identify->firmware_version));
6746 ctrl_info->firmware_version[sizeof(identify->firmware_version)] = '\0';
6747 snprintf(ctrl_info->firmware_version +
6748 strlen(ctrl_info->firmware_version),
6749 sizeof(ctrl_info->firmware_version),
6750 "-%u", get_unaligned_le16(&identify->firmware_build_number));
6752 memcpy(ctrl_info->model, identify->product_id,
6753 sizeof(identify->product_id));
6754 ctrl_info->model[sizeof(identify->product_id)] = '\0';
6756 memcpy(ctrl_info->vendor, identify->vendor_id,
6757 sizeof(identify->vendor_id));
6758 ctrl_info->vendor[sizeof(identify->vendor_id)] = '\0';
6766 struct pqi_config_table_section_info {
6767 struct pqi_ctrl_info *ctrl_info;
6770 void __iomem *section_iomem_addr;
6773 static inline bool pqi_is_firmware_feature_supported(
6774 struct pqi_config_table_firmware_features *firmware_features,
6775 unsigned int bit_position)
6777 unsigned int byte_index;
6779 byte_index = bit_position / BITS_PER_BYTE;
6781 if (byte_index >= le16_to_cpu(firmware_features->num_elements))
6784 return firmware_features->features_supported[byte_index] &
6785 (1 << (bit_position % BITS_PER_BYTE)) ? true : false;
6788 static inline bool pqi_is_firmware_feature_enabled(
6789 struct pqi_config_table_firmware_features *firmware_features,
6790 void __iomem *firmware_features_iomem_addr,
6791 unsigned int bit_position)
6793 unsigned int byte_index;
6794 u8 __iomem *features_enabled_iomem_addr;
6796 byte_index = (bit_position / BITS_PER_BYTE) +
6797 (le16_to_cpu(firmware_features->num_elements) * 2);
6799 features_enabled_iomem_addr = firmware_features_iomem_addr +
6800 offsetof(struct pqi_config_table_firmware_features,
6801 features_supported) + byte_index;
6803 return *((__force u8 *)features_enabled_iomem_addr) &
6804 (1 << (bit_position % BITS_PER_BYTE)) ? true : false;
6807 static inline void pqi_request_firmware_feature(
6808 struct pqi_config_table_firmware_features *firmware_features,
6809 unsigned int bit_position)
6811 unsigned int byte_index;
6813 byte_index = (bit_position / BITS_PER_BYTE) +
6814 le16_to_cpu(firmware_features->num_elements);
6816 firmware_features->features_supported[byte_index] |=
6817 (1 << (bit_position % BITS_PER_BYTE));
6820 static int pqi_config_table_update(struct pqi_ctrl_info *ctrl_info,
6821 u16 first_section, u16 last_section)
6823 struct pqi_vendor_general_request request;
6825 memset(&request, 0, sizeof(request));
6827 request.header.iu_type = PQI_REQUEST_IU_VENDOR_GENERAL;
6828 put_unaligned_le16(sizeof(request) - PQI_REQUEST_HEADER_LENGTH,
6829 &request.header.iu_length);
6830 put_unaligned_le16(PQI_VENDOR_GENERAL_CONFIG_TABLE_UPDATE,
6831 &request.function_code);
6832 put_unaligned_le16(first_section,
6833 &request.data.config_table_update.first_section);
6834 put_unaligned_le16(last_section,
6835 &request.data.config_table_update.last_section);
6837 return pqi_submit_raid_request_synchronous(ctrl_info, &request.header,
6838 0, NULL, NO_TIMEOUT);
6841 static int pqi_enable_firmware_features(struct pqi_ctrl_info *ctrl_info,
6842 struct pqi_config_table_firmware_features *firmware_features,
6843 void __iomem *firmware_features_iomem_addr)
6845 void *features_requested;
6846 void __iomem *features_requested_iomem_addr;
6848 features_requested = firmware_features->features_supported +
6849 le16_to_cpu(firmware_features->num_elements);
6851 features_requested_iomem_addr = firmware_features_iomem_addr +
6852 (features_requested - (void *)firmware_features);
6854 memcpy_toio(features_requested_iomem_addr, features_requested,
6855 le16_to_cpu(firmware_features->num_elements));
6857 return pqi_config_table_update(ctrl_info,
6858 PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES,
6859 PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES);
6862 struct pqi_firmware_feature {
6864 unsigned int feature_bit;
6867 void (*feature_status)(struct pqi_ctrl_info *ctrl_info,
6868 struct pqi_firmware_feature *firmware_feature);
6871 static void pqi_firmware_feature_status(struct pqi_ctrl_info *ctrl_info,
6872 struct pqi_firmware_feature *firmware_feature)
6874 if (!firmware_feature->supported) {
6875 dev_info(&ctrl_info->pci_dev->dev, "%s not supported by controller\n",
6876 firmware_feature->feature_name);
6880 if (firmware_feature->enabled) {
6881 dev_info(&ctrl_info->pci_dev->dev,
6882 "%s enabled\n", firmware_feature->feature_name);
6886 dev_err(&ctrl_info->pci_dev->dev, "failed to enable %s\n",
6887 firmware_feature->feature_name);
6890 static void pqi_ctrl_update_feature_flags(struct pqi_ctrl_info *ctrl_info,
6891 struct pqi_firmware_feature *firmware_feature)
6893 switch (firmware_feature->feature_bit) {
6894 case PQI_FIRMWARE_FEATURE_SOFT_RESET_HANDSHAKE:
6895 ctrl_info->soft_reset_handshake_supported =
6896 firmware_feature->enabled;
6898 case PQI_FIRMWARE_FEATURE_RAID_IU_TIMEOUT:
6899 ctrl_info->raid_iu_timeout_supported =
6900 firmware_feature->enabled;
6902 case PQI_FIRMWARE_FEATURE_TMF_IU_TIMEOUT:
6903 ctrl_info->tmf_iu_timeout_supported =
6904 firmware_feature->enabled;
6908 pqi_firmware_feature_status(ctrl_info, firmware_feature);
6911 static inline void pqi_firmware_feature_update(struct pqi_ctrl_info *ctrl_info,
6912 struct pqi_firmware_feature *firmware_feature)
6914 if (firmware_feature->feature_status)
6915 firmware_feature->feature_status(ctrl_info, firmware_feature);
6918 static DEFINE_MUTEX(pqi_firmware_features_mutex);
6920 static struct pqi_firmware_feature pqi_firmware_features[] = {
6922 .feature_name = "Online Firmware Activation",
6923 .feature_bit = PQI_FIRMWARE_FEATURE_OFA,
6924 .feature_status = pqi_firmware_feature_status,
6927 .feature_name = "Serial Management Protocol",
6928 .feature_bit = PQI_FIRMWARE_FEATURE_SMP,
6929 .feature_status = pqi_firmware_feature_status,
6932 .feature_name = "New Soft Reset Handshake",
6933 .feature_bit = PQI_FIRMWARE_FEATURE_SOFT_RESET_HANDSHAKE,
6934 .feature_status = pqi_ctrl_update_feature_flags,
6937 .feature_name = "RAID IU Timeout",
6938 .feature_bit = PQI_FIRMWARE_FEATURE_RAID_IU_TIMEOUT,
6939 .feature_status = pqi_ctrl_update_feature_flags,
6942 .feature_name = "TMF IU Timeout",
6943 .feature_bit = PQI_FIRMWARE_FEATURE_TMF_IU_TIMEOUT,
6944 .feature_status = pqi_ctrl_update_feature_flags,
6948 static void pqi_process_firmware_features(
6949 struct pqi_config_table_section_info *section_info)
6952 struct pqi_ctrl_info *ctrl_info;
6953 struct pqi_config_table_firmware_features *firmware_features;
6954 void __iomem *firmware_features_iomem_addr;
6956 unsigned int num_features_supported;
6958 ctrl_info = section_info->ctrl_info;
6959 firmware_features = section_info->section;
6960 firmware_features_iomem_addr = section_info->section_iomem_addr;
6962 for (i = 0, num_features_supported = 0;
6963 i < ARRAY_SIZE(pqi_firmware_features); i++) {
6964 if (pqi_is_firmware_feature_supported(firmware_features,
6965 pqi_firmware_features[i].feature_bit)) {
6966 pqi_firmware_features[i].supported = true;
6967 num_features_supported++;
6969 pqi_firmware_feature_update(ctrl_info,
6970 &pqi_firmware_features[i]);
6974 if (num_features_supported == 0)
6977 for (i = 0; i < ARRAY_SIZE(pqi_firmware_features); i++) {
6978 if (!pqi_firmware_features[i].supported)
6980 pqi_request_firmware_feature(firmware_features,
6981 pqi_firmware_features[i].feature_bit);
6984 rc = pqi_enable_firmware_features(ctrl_info, firmware_features,
6985 firmware_features_iomem_addr);
6987 dev_err(&ctrl_info->pci_dev->dev,
6988 "failed to enable firmware features in PQI configuration table\n");
6989 for (i = 0; i < ARRAY_SIZE(pqi_firmware_features); i++) {
6990 if (!pqi_firmware_features[i].supported)
6992 pqi_firmware_feature_update(ctrl_info,
6993 &pqi_firmware_features[i]);
6998 for (i = 0; i < ARRAY_SIZE(pqi_firmware_features); i++) {
6999 if (!pqi_firmware_features[i].supported)
7001 if (pqi_is_firmware_feature_enabled(firmware_features,
7002 firmware_features_iomem_addr,
7003 pqi_firmware_features[i].feature_bit)) {
7004 pqi_firmware_features[i].enabled = true;
7006 pqi_firmware_feature_update(ctrl_info,
7007 &pqi_firmware_features[i]);
7011 static void pqi_init_firmware_features(void)
7015 for (i = 0; i < ARRAY_SIZE(pqi_firmware_features); i++) {
7016 pqi_firmware_features[i].supported = false;
7017 pqi_firmware_features[i].enabled = false;
7021 static void pqi_process_firmware_features_section(
7022 struct pqi_config_table_section_info *section_info)
7024 mutex_lock(&pqi_firmware_features_mutex);
7025 pqi_init_firmware_features();
7026 pqi_process_firmware_features(section_info);
7027 mutex_unlock(&pqi_firmware_features_mutex);
7030 static int pqi_process_config_table(struct pqi_ctrl_info *ctrl_info)
7034 void __iomem *table_iomem_addr;
7035 struct pqi_config_table *config_table;
7036 struct pqi_config_table_section_header *section;
7037 struct pqi_config_table_section_info section_info;
7039 table_length = ctrl_info->config_table_length;
7040 if (table_length == 0)
7043 config_table = kmalloc(table_length, GFP_KERNEL);
7044 if (!config_table) {
7045 dev_err(&ctrl_info->pci_dev->dev,
7046 "failed to allocate memory for PQI configuration table\n");
7051 * Copy the config table contents from I/O memory space into the
7054 table_iomem_addr = ctrl_info->iomem_base +
7055 ctrl_info->config_table_offset;
7056 memcpy_fromio(config_table, table_iomem_addr, table_length);
7058 section_info.ctrl_info = ctrl_info;
7060 get_unaligned_le32(&config_table->first_section_offset);
7062 while (section_offset) {
7063 section = (void *)config_table + section_offset;
7065 section_info.section = section;
7066 section_info.section_offset = section_offset;
7067 section_info.section_iomem_addr =
7068 table_iomem_addr + section_offset;
7070 switch (get_unaligned_le16(§ion->section_id)) {
7071 case PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES:
7072 pqi_process_firmware_features_section(§ion_info);
7074 case PQI_CONFIG_TABLE_SECTION_HEARTBEAT:
7075 if (pqi_disable_heartbeat)
7076 dev_warn(&ctrl_info->pci_dev->dev,
7077 "heartbeat disabled by module parameter\n");
7079 ctrl_info->heartbeat_counter =
7083 struct pqi_config_table_heartbeat,
7086 case PQI_CONFIG_TABLE_SECTION_SOFT_RESET:
7087 ctrl_info->soft_reset_status =
7090 offsetof(struct pqi_config_table_soft_reset,
7096 get_unaligned_le16(§ion->next_section_offset);
7099 kfree(config_table);
7104 /* Switches the controller from PQI mode back into SIS mode. */
7106 static int pqi_revert_to_sis_mode(struct pqi_ctrl_info *ctrl_info)
7110 pqi_change_irq_mode(ctrl_info, IRQ_MODE_NONE);
7111 rc = pqi_reset(ctrl_info);
7114 rc = sis_reenable_sis_mode(ctrl_info);
7116 dev_err(&ctrl_info->pci_dev->dev,
7117 "re-enabling SIS mode failed with error %d\n", rc);
7120 pqi_save_ctrl_mode(ctrl_info, SIS_MODE);
7126 * If the controller isn't already in SIS mode, this function forces it into
7130 static int pqi_force_sis_mode(struct pqi_ctrl_info *ctrl_info)
7132 if (!sis_is_firmware_running(ctrl_info))
7135 if (pqi_get_ctrl_mode(ctrl_info) == SIS_MODE)
7138 if (sis_is_kernel_up(ctrl_info)) {
7139 pqi_save_ctrl_mode(ctrl_info, SIS_MODE);
7143 return pqi_revert_to_sis_mode(ctrl_info);
7146 #define PQI_POST_RESET_DELAY_B4_MSGU_READY 5000
7148 static int pqi_ctrl_init(struct pqi_ctrl_info *ctrl_info)
7152 if (reset_devices) {
7153 sis_soft_reset(ctrl_info);
7154 msleep(PQI_POST_RESET_DELAY_B4_MSGU_READY);
7156 rc = pqi_force_sis_mode(ctrl_info);
7162 * Wait until the controller is ready to start accepting SIS
7165 rc = sis_wait_for_ctrl_ready(ctrl_info);
7170 * Get the controller properties. This allows us to determine
7171 * whether or not it supports PQI mode.
7173 rc = sis_get_ctrl_properties(ctrl_info);
7175 dev_err(&ctrl_info->pci_dev->dev,
7176 "error obtaining controller properties\n");
7180 rc = sis_get_pqi_capabilities(ctrl_info);
7182 dev_err(&ctrl_info->pci_dev->dev,
7183 "error obtaining controller capabilities\n");
7187 if (reset_devices) {
7188 if (ctrl_info->max_outstanding_requests >
7189 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP)
7190 ctrl_info->max_outstanding_requests =
7191 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP;
7193 if (ctrl_info->max_outstanding_requests >
7194 PQI_MAX_OUTSTANDING_REQUESTS)
7195 ctrl_info->max_outstanding_requests =
7196 PQI_MAX_OUTSTANDING_REQUESTS;
7199 pqi_calculate_io_resources(ctrl_info);
7201 rc = pqi_alloc_error_buffer(ctrl_info);
7203 dev_err(&ctrl_info->pci_dev->dev,
7204 "failed to allocate PQI error buffer\n");
7209 * If the function we are about to call succeeds, the
7210 * controller will transition from legacy SIS mode
7213 rc = sis_init_base_struct_addr(ctrl_info);
7215 dev_err(&ctrl_info->pci_dev->dev,
7216 "error initializing PQI mode\n");
7220 /* Wait for the controller to complete the SIS -> PQI transition. */
7221 rc = pqi_wait_for_pqi_mode_ready(ctrl_info);
7223 dev_err(&ctrl_info->pci_dev->dev,
7224 "transition to PQI mode failed\n");
7228 /* From here on, we are running in PQI mode. */
7229 ctrl_info->pqi_mode_enabled = true;
7230 pqi_save_ctrl_mode(ctrl_info, PQI_MODE);
7232 rc = pqi_alloc_admin_queues(ctrl_info);
7234 dev_err(&ctrl_info->pci_dev->dev,
7235 "failed to allocate admin queues\n");
7239 rc = pqi_create_admin_queues(ctrl_info);
7241 dev_err(&ctrl_info->pci_dev->dev,
7242 "error creating admin queues\n");
7246 rc = pqi_report_device_capability(ctrl_info);
7248 dev_err(&ctrl_info->pci_dev->dev,
7249 "obtaining device capability failed\n");
7253 rc = pqi_validate_device_capability(ctrl_info);
7257 pqi_calculate_queue_resources(ctrl_info);
7259 rc = pqi_enable_msix_interrupts(ctrl_info);
7263 if (ctrl_info->num_msix_vectors_enabled < ctrl_info->num_queue_groups) {
7264 ctrl_info->max_msix_vectors =
7265 ctrl_info->num_msix_vectors_enabled;
7266 pqi_calculate_queue_resources(ctrl_info);
7269 rc = pqi_alloc_io_resources(ctrl_info);
7273 rc = pqi_alloc_operational_queues(ctrl_info);
7275 dev_err(&ctrl_info->pci_dev->dev,
7276 "failed to allocate operational queues\n");
7280 pqi_init_operational_queues(ctrl_info);
7282 rc = pqi_request_irqs(ctrl_info);
7286 rc = pqi_create_queues(ctrl_info);
7290 pqi_change_irq_mode(ctrl_info, IRQ_MODE_MSIX);
7292 ctrl_info->controller_online = true;
7294 rc = pqi_process_config_table(ctrl_info);
7298 pqi_start_heartbeat_timer(ctrl_info);
7300 rc = pqi_enable_events(ctrl_info);
7302 dev_err(&ctrl_info->pci_dev->dev,
7303 "error enabling events\n");
7307 /* Register with the SCSI subsystem. */
7308 rc = pqi_register_scsi(ctrl_info);
7312 rc = pqi_get_ctrl_product_details(ctrl_info);
7314 dev_err(&ctrl_info->pci_dev->dev,
7315 "error obtaining product details\n");
7319 rc = pqi_get_ctrl_serial_number(ctrl_info);
7321 dev_err(&ctrl_info->pci_dev->dev,
7322 "error obtaining ctrl serial number\n");
7326 rc = pqi_set_diag_rescan(ctrl_info);
7328 dev_err(&ctrl_info->pci_dev->dev,
7329 "error enabling multi-lun rescan\n");
7333 rc = pqi_write_driver_version_to_host_wellness(ctrl_info);
7335 dev_err(&ctrl_info->pci_dev->dev,
7336 "error updating host wellness\n");
7340 pqi_schedule_update_time_worker(ctrl_info);
7342 pqi_scan_scsi_devices(ctrl_info);
7347 static void pqi_reinit_queues(struct pqi_ctrl_info *ctrl_info)
7350 struct pqi_admin_queues *admin_queues;
7351 struct pqi_event_queue *event_queue;
7353 admin_queues = &ctrl_info->admin_queues;
7354 admin_queues->iq_pi_copy = 0;
7355 admin_queues->oq_ci_copy = 0;
7356 writel(0, admin_queues->oq_pi);
7358 for (i = 0; i < ctrl_info->num_queue_groups; i++) {
7359 ctrl_info->queue_groups[i].iq_pi_copy[RAID_PATH] = 0;
7360 ctrl_info->queue_groups[i].iq_pi_copy[AIO_PATH] = 0;
7361 ctrl_info->queue_groups[i].oq_ci_copy = 0;
7363 writel(0, ctrl_info->queue_groups[i].iq_ci[RAID_PATH]);
7364 writel(0, ctrl_info->queue_groups[i].iq_ci[AIO_PATH]);
7365 writel(0, ctrl_info->queue_groups[i].oq_pi);
7368 event_queue = &ctrl_info->event_queue;
7369 writel(0, event_queue->oq_pi);
7370 event_queue->oq_ci_copy = 0;
7373 static int pqi_ctrl_init_resume(struct pqi_ctrl_info *ctrl_info)
7377 rc = pqi_force_sis_mode(ctrl_info);
7382 * Wait until the controller is ready to start accepting SIS
7385 rc = sis_wait_for_ctrl_ready_resume(ctrl_info);
7390 * Get the controller properties. This allows us to determine
7391 * whether or not it supports PQI mode.
7393 rc = sis_get_ctrl_properties(ctrl_info);
7395 dev_err(&ctrl_info->pci_dev->dev,
7396 "error obtaining controller properties\n");
7400 rc = sis_get_pqi_capabilities(ctrl_info);
7402 dev_err(&ctrl_info->pci_dev->dev,
7403 "error obtaining controller capabilities\n");
7408 * If the function we are about to call succeeds, the
7409 * controller will transition from legacy SIS mode
7412 rc = sis_init_base_struct_addr(ctrl_info);
7414 dev_err(&ctrl_info->pci_dev->dev,
7415 "error initializing PQI mode\n");
7419 /* Wait for the controller to complete the SIS -> PQI transition. */
7420 rc = pqi_wait_for_pqi_mode_ready(ctrl_info);
7422 dev_err(&ctrl_info->pci_dev->dev,
7423 "transition to PQI mode failed\n");
7427 /* From here on, we are running in PQI mode. */
7428 ctrl_info->pqi_mode_enabled = true;
7429 pqi_save_ctrl_mode(ctrl_info, PQI_MODE);
7431 pqi_reinit_queues(ctrl_info);
7433 rc = pqi_create_admin_queues(ctrl_info);
7435 dev_err(&ctrl_info->pci_dev->dev,
7436 "error creating admin queues\n");
7440 rc = pqi_create_queues(ctrl_info);
7444 pqi_change_irq_mode(ctrl_info, IRQ_MODE_MSIX);
7446 ctrl_info->controller_online = true;
7447 pqi_ctrl_unblock_requests(ctrl_info);
7449 rc = pqi_process_config_table(ctrl_info);
7453 pqi_start_heartbeat_timer(ctrl_info);
7455 rc = pqi_enable_events(ctrl_info);
7457 dev_err(&ctrl_info->pci_dev->dev,
7458 "error enabling events\n");
7462 rc = pqi_get_ctrl_product_details(ctrl_info);
7464 dev_err(&ctrl_info->pci_dev->dev,
7465 "error obtaining product details\n");
7469 rc = pqi_set_diag_rescan(ctrl_info);
7471 dev_err(&ctrl_info->pci_dev->dev,
7472 "error enabling multi-lun rescan\n");
7476 rc = pqi_write_driver_version_to_host_wellness(ctrl_info);
7478 dev_err(&ctrl_info->pci_dev->dev,
7479 "error updating host wellness\n");
7483 pqi_schedule_update_time_worker(ctrl_info);
7485 pqi_scan_scsi_devices(ctrl_info);
7490 static inline int pqi_set_pcie_completion_timeout(struct pci_dev *pci_dev,
7495 rc = pcie_capability_clear_and_set_word(pci_dev, PCI_EXP_DEVCTL2,
7496 PCI_EXP_DEVCTL2_COMP_TIMEOUT, timeout);
7498 return pcibios_err_to_errno(rc);
7501 static int pqi_pci_init(struct pqi_ctrl_info *ctrl_info)
7506 rc = pci_enable_device(ctrl_info->pci_dev);
7508 dev_err(&ctrl_info->pci_dev->dev,
7509 "failed to enable PCI device\n");
7513 if (sizeof(dma_addr_t) > 4)
7514 mask = DMA_BIT_MASK(64);
7516 mask = DMA_BIT_MASK(32);
7518 rc = dma_set_mask_and_coherent(&ctrl_info->pci_dev->dev, mask);
7520 dev_err(&ctrl_info->pci_dev->dev, "failed to set DMA mask\n");
7521 goto disable_device;
7524 rc = pci_request_regions(ctrl_info->pci_dev, DRIVER_NAME_SHORT);
7526 dev_err(&ctrl_info->pci_dev->dev,
7527 "failed to obtain PCI resources\n");
7528 goto disable_device;
7531 ctrl_info->iomem_base = ioremap(pci_resource_start(
7532 ctrl_info->pci_dev, 0),
7533 sizeof(struct pqi_ctrl_registers));
7534 if (!ctrl_info->iomem_base) {
7535 dev_err(&ctrl_info->pci_dev->dev,
7536 "failed to map memory for controller registers\n");
7538 goto release_regions;
7541 #define PCI_EXP_COMP_TIMEOUT_65_TO_210_MS 0x6
7543 /* Increase the PCIe completion timeout. */
7544 rc = pqi_set_pcie_completion_timeout(ctrl_info->pci_dev,
7545 PCI_EXP_COMP_TIMEOUT_65_TO_210_MS);
7547 dev_err(&ctrl_info->pci_dev->dev,
7548 "failed to set PCIe completion timeout\n");
7549 goto release_regions;
7552 /* Enable bus mastering. */
7553 pci_set_master(ctrl_info->pci_dev);
7555 ctrl_info->registers = ctrl_info->iomem_base;
7556 ctrl_info->pqi_registers = &ctrl_info->registers->pqi_registers;
7558 pci_set_drvdata(ctrl_info->pci_dev, ctrl_info);
7563 pci_release_regions(ctrl_info->pci_dev);
7565 pci_disable_device(ctrl_info->pci_dev);
7570 static void pqi_cleanup_pci_init(struct pqi_ctrl_info *ctrl_info)
7572 iounmap(ctrl_info->iomem_base);
7573 pci_release_regions(ctrl_info->pci_dev);
7574 if (pci_is_enabled(ctrl_info->pci_dev))
7575 pci_disable_device(ctrl_info->pci_dev);
7576 pci_set_drvdata(ctrl_info->pci_dev, NULL);
7579 static struct pqi_ctrl_info *pqi_alloc_ctrl_info(int numa_node)
7581 struct pqi_ctrl_info *ctrl_info;
7583 ctrl_info = kzalloc_node(sizeof(struct pqi_ctrl_info),
7584 GFP_KERNEL, numa_node);
7588 mutex_init(&ctrl_info->scan_mutex);
7589 mutex_init(&ctrl_info->lun_reset_mutex);
7590 mutex_init(&ctrl_info->ofa_mutex);
7592 INIT_LIST_HEAD(&ctrl_info->scsi_device_list);
7593 spin_lock_init(&ctrl_info->scsi_device_list_lock);
7595 INIT_WORK(&ctrl_info->event_work, pqi_event_worker);
7596 atomic_set(&ctrl_info->num_interrupts, 0);
7597 atomic_set(&ctrl_info->sync_cmds_outstanding, 0);
7599 INIT_DELAYED_WORK(&ctrl_info->rescan_work, pqi_rescan_worker);
7600 INIT_DELAYED_WORK(&ctrl_info->update_time_work, pqi_update_time_worker);
7602 timer_setup(&ctrl_info->heartbeat_timer, pqi_heartbeat_timer_handler, 0);
7603 INIT_WORK(&ctrl_info->ctrl_offline_work, pqi_ctrl_offline_worker);
7605 sema_init(&ctrl_info->sync_request_sem,
7606 PQI_RESERVED_IO_SLOTS_SYNCHRONOUS_REQUESTS);
7607 init_waitqueue_head(&ctrl_info->block_requests_wait);
7609 INIT_LIST_HEAD(&ctrl_info->raid_bypass_retry_list);
7610 spin_lock_init(&ctrl_info->raid_bypass_retry_list_lock);
7611 INIT_WORK(&ctrl_info->raid_bypass_retry_work,
7612 pqi_raid_bypass_retry_worker);
7614 ctrl_info->ctrl_id = atomic_inc_return(&pqi_controller_count) - 1;
7615 ctrl_info->irq_mode = IRQ_MODE_NONE;
7616 ctrl_info->max_msix_vectors = PQI_MAX_MSIX_VECTORS;
7621 static inline void pqi_free_ctrl_info(struct pqi_ctrl_info *ctrl_info)
7626 static void pqi_free_interrupts(struct pqi_ctrl_info *ctrl_info)
7628 pqi_free_irqs(ctrl_info);
7629 pqi_disable_msix_interrupts(ctrl_info);
7632 static void pqi_free_ctrl_resources(struct pqi_ctrl_info *ctrl_info)
7634 pqi_stop_heartbeat_timer(ctrl_info);
7635 pqi_free_interrupts(ctrl_info);
7636 if (ctrl_info->queue_memory_base)
7637 dma_free_coherent(&ctrl_info->pci_dev->dev,
7638 ctrl_info->queue_memory_length,
7639 ctrl_info->queue_memory_base,
7640 ctrl_info->queue_memory_base_dma_handle);
7641 if (ctrl_info->admin_queue_memory_base)
7642 dma_free_coherent(&ctrl_info->pci_dev->dev,
7643 ctrl_info->admin_queue_memory_length,
7644 ctrl_info->admin_queue_memory_base,
7645 ctrl_info->admin_queue_memory_base_dma_handle);
7646 pqi_free_all_io_requests(ctrl_info);
7647 if (ctrl_info->error_buffer)
7648 dma_free_coherent(&ctrl_info->pci_dev->dev,
7649 ctrl_info->error_buffer_length,
7650 ctrl_info->error_buffer,
7651 ctrl_info->error_buffer_dma_handle);
7652 if (ctrl_info->iomem_base)
7653 pqi_cleanup_pci_init(ctrl_info);
7654 pqi_free_ctrl_info(ctrl_info);
7657 static void pqi_remove_ctrl(struct pqi_ctrl_info *ctrl_info)
7659 pqi_cancel_rescan_worker(ctrl_info);
7660 pqi_cancel_update_time_worker(ctrl_info);
7661 pqi_unregister_scsi(ctrl_info);
7662 if (ctrl_info->pqi_mode_enabled)
7663 pqi_revert_to_sis_mode(ctrl_info);
7664 pqi_free_ctrl_resources(ctrl_info);
7667 static void pqi_ofa_ctrl_quiesce(struct pqi_ctrl_info *ctrl_info)
7669 pqi_cancel_update_time_worker(ctrl_info);
7670 pqi_cancel_rescan_worker(ctrl_info);
7671 pqi_wait_until_lun_reset_finished(ctrl_info);
7672 pqi_wait_until_scan_finished(ctrl_info);
7673 pqi_ctrl_ofa_start(ctrl_info);
7674 pqi_ctrl_block_requests(ctrl_info);
7675 pqi_ctrl_wait_until_quiesced(ctrl_info);
7676 pqi_ctrl_wait_for_pending_io(ctrl_info, PQI_PENDING_IO_TIMEOUT_SECS);
7677 pqi_fail_io_queued_for_all_devices(ctrl_info);
7678 pqi_wait_until_inbound_queues_empty(ctrl_info);
7679 pqi_stop_heartbeat_timer(ctrl_info);
7680 ctrl_info->pqi_mode_enabled = false;
7681 pqi_save_ctrl_mode(ctrl_info, SIS_MODE);
7684 static void pqi_ofa_ctrl_unquiesce(struct pqi_ctrl_info *ctrl_info)
7686 pqi_ofa_free_host_buffer(ctrl_info);
7687 ctrl_info->pqi_mode_enabled = true;
7688 pqi_save_ctrl_mode(ctrl_info, PQI_MODE);
7689 ctrl_info->controller_online = true;
7690 pqi_ctrl_unblock_requests(ctrl_info);
7691 pqi_start_heartbeat_timer(ctrl_info);
7692 pqi_schedule_update_time_worker(ctrl_info);
7693 pqi_clear_soft_reset_status(ctrl_info,
7694 PQI_SOFT_RESET_ABORT);
7695 pqi_scan_scsi_devices(ctrl_info);
7698 static int pqi_ofa_alloc_mem(struct pqi_ctrl_info *ctrl_info,
7699 u32 total_size, u32 chunk_size)
7704 struct pqi_sg_descriptor *mem_descriptor = NULL;
7706 struct pqi_ofa_memory *ofap;
7708 dev = &ctrl_info->pci_dev->dev;
7710 sg_count = (total_size + chunk_size - 1);
7711 sg_count /= chunk_size;
7713 ofap = ctrl_info->pqi_ofa_mem_virt_addr;
7715 if (sg_count*chunk_size < total_size)
7718 ctrl_info->pqi_ofa_chunk_virt_addr =
7719 kcalloc(sg_count, sizeof(void *), GFP_KERNEL);
7720 if (!ctrl_info->pqi_ofa_chunk_virt_addr)
7723 for (size = 0, i = 0; size < total_size; size += chunk_size, i++) {
7724 dma_addr_t dma_handle;
7726 ctrl_info->pqi_ofa_chunk_virt_addr[i] =
7727 dma_alloc_coherent(dev, chunk_size, &dma_handle,
7730 if (!ctrl_info->pqi_ofa_chunk_virt_addr[i])
7733 mem_descriptor = &ofap->sg_descriptor[i];
7734 put_unaligned_le64 ((u64) dma_handle, &mem_descriptor->address);
7735 put_unaligned_le32 (chunk_size, &mem_descriptor->length);
7738 if (!size || size < total_size)
7739 goto out_free_chunks;
7741 put_unaligned_le32(CISS_SG_LAST, &mem_descriptor->flags);
7742 put_unaligned_le16(sg_count, &ofap->num_memory_descriptors);
7743 put_unaligned_le32(size, &ofap->bytes_allocated);
7749 mem_descriptor = &ofap->sg_descriptor[i];
7750 dma_free_coherent(dev, chunk_size,
7751 ctrl_info->pqi_ofa_chunk_virt_addr[i],
7752 get_unaligned_le64(&mem_descriptor->address));
7754 kfree(ctrl_info->pqi_ofa_chunk_virt_addr);
7757 put_unaligned_le32 (0, &ofap->bytes_allocated);
7761 static int pqi_ofa_alloc_host_buffer(struct pqi_ctrl_info *ctrl_info)
7767 total_size = le32_to_cpu(
7768 ctrl_info->pqi_ofa_mem_virt_addr->bytes_allocated);
7769 min_chunk_size = total_size / PQI_OFA_MAX_SG_DESCRIPTORS;
7771 for (chunk_sz = total_size; chunk_sz >= min_chunk_size; chunk_sz /= 2)
7772 if (!pqi_ofa_alloc_mem(ctrl_info, total_size, chunk_sz))
7778 static void pqi_ofa_setup_host_buffer(struct pqi_ctrl_info *ctrl_info,
7779 u32 bytes_requested)
7781 struct pqi_ofa_memory *pqi_ofa_memory;
7784 dev = &ctrl_info->pci_dev->dev;
7785 pqi_ofa_memory = dma_alloc_coherent(dev,
7786 PQI_OFA_MEMORY_DESCRIPTOR_LENGTH,
7787 &ctrl_info->pqi_ofa_mem_dma_handle,
7790 if (!pqi_ofa_memory)
7793 put_unaligned_le16(PQI_OFA_VERSION, &pqi_ofa_memory->version);
7794 memcpy(&pqi_ofa_memory->signature, PQI_OFA_SIGNATURE,
7795 sizeof(pqi_ofa_memory->signature));
7796 pqi_ofa_memory->bytes_allocated = cpu_to_le32(bytes_requested);
7798 ctrl_info->pqi_ofa_mem_virt_addr = pqi_ofa_memory;
7800 if (pqi_ofa_alloc_host_buffer(ctrl_info) < 0) {
7801 dev_err(dev, "Failed to allocate host buffer of size = %u",
7808 static void pqi_ofa_free_host_buffer(struct pqi_ctrl_info *ctrl_info)
7811 struct pqi_sg_descriptor *mem_descriptor;
7812 struct pqi_ofa_memory *ofap;
7814 ofap = ctrl_info->pqi_ofa_mem_virt_addr;
7819 if (!ofap->bytes_allocated)
7822 mem_descriptor = ofap->sg_descriptor;
7824 for (i = 0; i < get_unaligned_le16(&ofap->num_memory_descriptors);
7826 dma_free_coherent(&ctrl_info->pci_dev->dev,
7827 get_unaligned_le32(&mem_descriptor[i].length),
7828 ctrl_info->pqi_ofa_chunk_virt_addr[i],
7829 get_unaligned_le64(&mem_descriptor[i].address));
7831 kfree(ctrl_info->pqi_ofa_chunk_virt_addr);
7834 dma_free_coherent(&ctrl_info->pci_dev->dev,
7835 PQI_OFA_MEMORY_DESCRIPTOR_LENGTH, ofap,
7836 ctrl_info->pqi_ofa_mem_dma_handle);
7837 ctrl_info->pqi_ofa_mem_virt_addr = NULL;
7840 static int pqi_ofa_host_memory_update(struct pqi_ctrl_info *ctrl_info)
7842 struct pqi_vendor_general_request request;
7844 struct pqi_ofa_memory *ofap;
7846 memset(&request, 0, sizeof(request));
7848 ofap = ctrl_info->pqi_ofa_mem_virt_addr;
7850 request.header.iu_type = PQI_REQUEST_IU_VENDOR_GENERAL;
7851 put_unaligned_le16(sizeof(request) - PQI_REQUEST_HEADER_LENGTH,
7852 &request.header.iu_length);
7853 put_unaligned_le16(PQI_VENDOR_GENERAL_HOST_MEMORY_UPDATE,
7854 &request.function_code);
7857 size = offsetof(struct pqi_ofa_memory, sg_descriptor) +
7858 get_unaligned_le16(&ofap->num_memory_descriptors) *
7859 sizeof(struct pqi_sg_descriptor);
7861 put_unaligned_le64((u64)ctrl_info->pqi_ofa_mem_dma_handle,
7862 &request.data.ofa_memory_allocation.buffer_address);
7863 put_unaligned_le32(size,
7864 &request.data.ofa_memory_allocation.buffer_length);
7868 return pqi_submit_raid_request_synchronous(ctrl_info, &request.header,
7869 0, NULL, NO_TIMEOUT);
7872 static int pqi_ofa_ctrl_restart(struct pqi_ctrl_info *ctrl_info)
7874 msleep(PQI_POST_RESET_DELAY_B4_MSGU_READY);
7875 return pqi_ctrl_init_resume(ctrl_info);
7878 static void pqi_perform_lockup_action(void)
7880 switch (pqi_lockup_action) {
7882 panic("FATAL: Smart Family Controller lockup detected");
7885 emergency_restart();
7893 static struct pqi_raid_error_info pqi_ctrl_offline_raid_error_info = {
7894 .data_out_result = PQI_DATA_IN_OUT_HARDWARE_ERROR,
7895 .status = SAM_STAT_CHECK_CONDITION,
7898 static void pqi_fail_all_outstanding_requests(struct pqi_ctrl_info *ctrl_info)
7901 struct pqi_io_request *io_request;
7902 struct scsi_cmnd *scmd;
7904 for (i = 0; i < ctrl_info->max_io_slots; i++) {
7905 io_request = &ctrl_info->io_request_pool[i];
7906 if (atomic_read(&io_request->refcount) == 0)
7909 scmd = io_request->scmd;
7911 set_host_byte(scmd, DID_NO_CONNECT);
7913 io_request->status = -ENXIO;
7914 io_request->error_info =
7915 &pqi_ctrl_offline_raid_error_info;
7918 io_request->io_complete_callback(io_request,
7919 io_request->context);
7923 static void pqi_take_ctrl_offline_deferred(struct pqi_ctrl_info *ctrl_info)
7925 pqi_perform_lockup_action();
7926 pqi_stop_heartbeat_timer(ctrl_info);
7927 pqi_free_interrupts(ctrl_info);
7928 pqi_cancel_rescan_worker(ctrl_info);
7929 pqi_cancel_update_time_worker(ctrl_info);
7930 pqi_ctrl_wait_until_quiesced(ctrl_info);
7931 pqi_fail_all_outstanding_requests(ctrl_info);
7932 pqi_clear_all_queued_raid_bypass_retries(ctrl_info);
7933 pqi_ctrl_unblock_requests(ctrl_info);
7936 static void pqi_ctrl_offline_worker(struct work_struct *work)
7938 struct pqi_ctrl_info *ctrl_info;
7940 ctrl_info = container_of(work, struct pqi_ctrl_info, ctrl_offline_work);
7941 pqi_take_ctrl_offline_deferred(ctrl_info);
7944 static void pqi_take_ctrl_offline(struct pqi_ctrl_info *ctrl_info)
7946 if (!ctrl_info->controller_online)
7949 ctrl_info->controller_online = false;
7950 ctrl_info->pqi_mode_enabled = false;
7951 pqi_ctrl_block_requests(ctrl_info);
7952 if (!pqi_disable_ctrl_shutdown)
7953 sis_shutdown_ctrl(ctrl_info);
7954 pci_disable_device(ctrl_info->pci_dev);
7955 dev_err(&ctrl_info->pci_dev->dev, "controller offline\n");
7956 schedule_work(&ctrl_info->ctrl_offline_work);
7959 static void pqi_print_ctrl_info(struct pci_dev *pci_dev,
7960 const struct pci_device_id *id)
7962 char *ctrl_description;
7964 if (id->driver_data)
7965 ctrl_description = (char *)id->driver_data;
7967 ctrl_description = "Microsemi Smart Family Controller";
7969 dev_info(&pci_dev->dev, "%s found\n", ctrl_description);
7972 static int pqi_pci_probe(struct pci_dev *pci_dev,
7973 const struct pci_device_id *id)
7977 struct pqi_ctrl_info *ctrl_info;
7979 pqi_print_ctrl_info(pci_dev, id);
7981 if (pqi_disable_device_id_wildcards &&
7982 id->subvendor == PCI_ANY_ID &&
7983 id->subdevice == PCI_ANY_ID) {
7984 dev_warn(&pci_dev->dev,
7985 "controller not probed because device ID wildcards are disabled\n");
7989 if (id->subvendor == PCI_ANY_ID || id->subdevice == PCI_ANY_ID)
7990 dev_warn(&pci_dev->dev,
7991 "controller device ID matched using wildcards\n");
7993 node = dev_to_node(&pci_dev->dev);
7994 if (node == NUMA_NO_NODE) {
7995 cp_node = cpu_to_node(0);
7996 if (cp_node == NUMA_NO_NODE)
7998 set_dev_node(&pci_dev->dev, cp_node);
8001 ctrl_info = pqi_alloc_ctrl_info(node);
8003 dev_err(&pci_dev->dev,
8004 "failed to allocate controller info block\n");
8008 ctrl_info->pci_dev = pci_dev;
8010 rc = pqi_pci_init(ctrl_info);
8014 rc = pqi_ctrl_init(ctrl_info);
8021 pqi_remove_ctrl(ctrl_info);
8026 static void pqi_pci_remove(struct pci_dev *pci_dev)
8028 struct pqi_ctrl_info *ctrl_info;
8030 ctrl_info = pci_get_drvdata(pci_dev);
8034 ctrl_info->in_shutdown = true;
8036 pqi_remove_ctrl(ctrl_info);
8039 static void pqi_crash_if_pending_command(struct pqi_ctrl_info *ctrl_info)
8042 struct pqi_io_request *io_request;
8043 struct scsi_cmnd *scmd;
8045 for (i = 0; i < ctrl_info->max_io_slots; i++) {
8046 io_request = &ctrl_info->io_request_pool[i];
8047 if (atomic_read(&io_request->refcount) == 0)
8049 scmd = io_request->scmd;
8050 WARN_ON(scmd != NULL); /* IO command from SML */
8051 WARN_ON(scmd == NULL); /* Non-IO cmd or driver initiated*/
8055 static void pqi_shutdown(struct pci_dev *pci_dev)
8058 struct pqi_ctrl_info *ctrl_info;
8060 ctrl_info = pci_get_drvdata(pci_dev);
8062 dev_err(&pci_dev->dev,
8063 "cache could not be flushed\n");
8067 pqi_disable_events(ctrl_info);
8068 pqi_wait_until_ofa_finished(ctrl_info);
8069 pqi_cancel_update_time_worker(ctrl_info);
8070 pqi_cancel_rescan_worker(ctrl_info);
8071 pqi_cancel_event_worker(ctrl_info);
8073 pqi_ctrl_shutdown_start(ctrl_info);
8074 pqi_ctrl_wait_until_quiesced(ctrl_info);
8076 rc = pqi_ctrl_wait_for_pending_io(ctrl_info, NO_TIMEOUT);
8078 dev_err(&pci_dev->dev,
8079 "wait for pending I/O failed\n");
8083 pqi_ctrl_block_device_reset(ctrl_info);
8084 pqi_wait_until_lun_reset_finished(ctrl_info);
8087 * Write all data in the controller's battery-backed cache to
8090 rc = pqi_flush_cache(ctrl_info, SHUTDOWN);
8092 dev_err(&pci_dev->dev,
8093 "unable to flush controller cache\n");
8095 pqi_ctrl_block_requests(ctrl_info);
8097 rc = pqi_ctrl_wait_for_pending_sync_cmds(ctrl_info);
8099 dev_err(&pci_dev->dev,
8100 "wait for pending sync cmds failed\n");
8104 pqi_crash_if_pending_command(ctrl_info);
8105 pqi_reset(ctrl_info);
8108 static void pqi_process_lockup_action_param(void)
8112 if (!pqi_lockup_action_param)
8115 for (i = 0; i < ARRAY_SIZE(pqi_lockup_actions); i++) {
8116 if (strcmp(pqi_lockup_action_param,
8117 pqi_lockup_actions[i].name) == 0) {
8118 pqi_lockup_action = pqi_lockup_actions[i].action;
8123 pr_warn("%s: invalid lockup action setting \"%s\" - supported settings: none, reboot, panic\n",
8124 DRIVER_NAME_SHORT, pqi_lockup_action_param);
8127 static void pqi_process_module_params(void)
8129 pqi_process_lockup_action_param();
8132 static __maybe_unused int pqi_suspend(struct pci_dev *pci_dev, pm_message_t state)
8134 struct pqi_ctrl_info *ctrl_info;
8136 ctrl_info = pci_get_drvdata(pci_dev);
8138 pqi_disable_events(ctrl_info);
8139 pqi_cancel_update_time_worker(ctrl_info);
8140 pqi_cancel_rescan_worker(ctrl_info);
8141 pqi_wait_until_scan_finished(ctrl_info);
8142 pqi_wait_until_lun_reset_finished(ctrl_info);
8143 pqi_wait_until_ofa_finished(ctrl_info);
8144 pqi_flush_cache(ctrl_info, SUSPEND);
8145 pqi_ctrl_block_requests(ctrl_info);
8146 pqi_ctrl_wait_until_quiesced(ctrl_info);
8147 pqi_wait_until_inbound_queues_empty(ctrl_info);
8148 pqi_ctrl_wait_for_pending_io(ctrl_info, NO_TIMEOUT);
8149 pqi_stop_heartbeat_timer(ctrl_info);
8151 if (state.event == PM_EVENT_FREEZE)
8154 pci_save_state(pci_dev);
8155 pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state));
8157 ctrl_info->controller_online = false;
8158 ctrl_info->pqi_mode_enabled = false;
8163 static __maybe_unused int pqi_resume(struct pci_dev *pci_dev)
8166 struct pqi_ctrl_info *ctrl_info;
8168 ctrl_info = pci_get_drvdata(pci_dev);
8170 if (pci_dev->current_state != PCI_D0) {
8171 ctrl_info->max_hw_queue_index = 0;
8172 pqi_free_interrupts(ctrl_info);
8173 pqi_change_irq_mode(ctrl_info, IRQ_MODE_INTX);
8174 rc = request_irq(pci_irq_vector(pci_dev, 0), pqi_irq_handler,
8175 IRQF_SHARED, DRIVER_NAME_SHORT,
8176 &ctrl_info->queue_groups[0]);
8178 dev_err(&ctrl_info->pci_dev->dev,
8179 "irq %u init failed with error %d\n",
8183 pqi_start_heartbeat_timer(ctrl_info);
8184 pqi_ctrl_unblock_requests(ctrl_info);
8188 pci_set_power_state(pci_dev, PCI_D0);
8189 pci_restore_state(pci_dev);
8191 return pqi_ctrl_init_resume(ctrl_info);
8194 /* Define the PCI IDs for the controllers that we support. */
8195 static const struct pci_device_id pqi_pci_id_table[] = {
8197 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8201 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8205 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8209 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8213 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8217 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8221 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8225 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8229 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8233 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8237 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8241 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8245 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8249 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8253 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8257 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8261 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8265 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8269 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8273 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8277 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8281 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8285 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8289 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8293 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8297 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8301 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8305 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8309 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8313 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8317 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8321 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8322 PCI_VENDOR_ID_ADAPTEC2, 0x0110)
8325 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8326 PCI_VENDOR_ID_ADAPTEC2, 0x0608)
8329 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8330 PCI_VENDOR_ID_ADAPTEC2, 0x0800)
8333 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8334 PCI_VENDOR_ID_ADAPTEC2, 0x0801)
8337 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8338 PCI_VENDOR_ID_ADAPTEC2, 0x0802)
8341 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8342 PCI_VENDOR_ID_ADAPTEC2, 0x0803)
8345 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8346 PCI_VENDOR_ID_ADAPTEC2, 0x0804)
8349 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8350 PCI_VENDOR_ID_ADAPTEC2, 0x0805)
8353 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8354 PCI_VENDOR_ID_ADAPTEC2, 0x0806)
8357 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8358 PCI_VENDOR_ID_ADAPTEC2, 0x0807)
8361 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8362 PCI_VENDOR_ID_ADAPTEC2, 0x0808)
8365 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8366 PCI_VENDOR_ID_ADAPTEC2, 0x0809)
8369 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8370 PCI_VENDOR_ID_ADAPTEC2, 0x080a)
8373 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8374 PCI_VENDOR_ID_ADAPTEC2, 0x0900)
8377 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8378 PCI_VENDOR_ID_ADAPTEC2, 0x0901)
8381 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8382 PCI_VENDOR_ID_ADAPTEC2, 0x0902)
8385 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8386 PCI_VENDOR_ID_ADAPTEC2, 0x0903)
8389 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8390 PCI_VENDOR_ID_ADAPTEC2, 0x0904)
8393 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8394 PCI_VENDOR_ID_ADAPTEC2, 0x0905)
8397 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8398 PCI_VENDOR_ID_ADAPTEC2, 0x0906)
8401 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8402 PCI_VENDOR_ID_ADAPTEC2, 0x0907)
8405 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8406 PCI_VENDOR_ID_ADAPTEC2, 0x0908)
8409 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8410 PCI_VENDOR_ID_ADAPTEC2, 0x090a)
8413 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8414 PCI_VENDOR_ID_ADAPTEC2, 0x1200)
8417 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8418 PCI_VENDOR_ID_ADAPTEC2, 0x1201)
8421 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8422 PCI_VENDOR_ID_ADAPTEC2, 0x1202)
8425 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8426 PCI_VENDOR_ID_ADAPTEC2, 0x1280)
8429 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8430 PCI_VENDOR_ID_ADAPTEC2, 0x1281)
8433 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8434 PCI_VENDOR_ID_ADAPTEC2, 0x1282)
8437 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8438 PCI_VENDOR_ID_ADAPTEC2, 0x1300)
8441 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8442 PCI_VENDOR_ID_ADAPTEC2, 0x1301)
8445 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8446 PCI_VENDOR_ID_ADAPTEC2, 0x1302)
8449 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8450 PCI_VENDOR_ID_ADAPTEC2, 0x1303)
8453 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8454 PCI_VENDOR_ID_ADAPTEC2, 0x1380)
8457 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8458 PCI_VENDOR_ID_ADVANTECH, 0x8312)
8461 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8462 PCI_VENDOR_ID_DELL, 0x1fe0)
8465 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8466 PCI_VENDOR_ID_HP, 0x0600)
8469 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8470 PCI_VENDOR_ID_HP, 0x0601)
8473 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8474 PCI_VENDOR_ID_HP, 0x0602)
8477 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8478 PCI_VENDOR_ID_HP, 0x0603)
8481 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8482 PCI_VENDOR_ID_HP, 0x0609)
8485 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8486 PCI_VENDOR_ID_HP, 0x0650)
8489 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8490 PCI_VENDOR_ID_HP, 0x0651)
8493 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8494 PCI_VENDOR_ID_HP, 0x0652)
8497 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8498 PCI_VENDOR_ID_HP, 0x0653)
8501 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8502 PCI_VENDOR_ID_HP, 0x0654)
8505 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8506 PCI_VENDOR_ID_HP, 0x0655)
8509 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8510 PCI_VENDOR_ID_HP, 0x0700)
8513 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8514 PCI_VENDOR_ID_HP, 0x0701)
8517 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8518 PCI_VENDOR_ID_HP, 0x1001)
8521 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8522 PCI_VENDOR_ID_HP, 0x1100)
8525 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8526 PCI_VENDOR_ID_HP, 0x1101)
8529 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8533 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8537 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8541 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8545 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8546 PCI_VENDOR_ID_GIGABYTE, 0x1000)
8549 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2, 0x028f,
8550 PCI_ANY_ID, PCI_ANY_ID)
8555 MODULE_DEVICE_TABLE(pci, pqi_pci_id_table);
8557 static struct pci_driver pqi_pci_driver = {
8558 .name = DRIVER_NAME_SHORT,
8559 .id_table = pqi_pci_id_table,
8560 .probe = pqi_pci_probe,
8561 .remove = pqi_pci_remove,
8562 .shutdown = pqi_shutdown,
8563 #if defined(CONFIG_PM)
8564 .suspend = pqi_suspend,
8565 .resume = pqi_resume,
8569 static int __init pqi_init(void)
8573 pr_info(DRIVER_NAME "\n");
8575 pqi_sas_transport_template = sas_attach_transport(&pqi_sas_transport_functions);
8576 if (!pqi_sas_transport_template)
8579 pqi_process_module_params();
8581 rc = pci_register_driver(&pqi_pci_driver);
8583 sas_release_transport(pqi_sas_transport_template);
8588 static void __exit pqi_cleanup(void)
8590 pci_unregister_driver(&pqi_pci_driver);
8591 sas_release_transport(pqi_sas_transport_template);
8594 module_init(pqi_init);
8595 module_exit(pqi_cleanup);
8597 static void __attribute__((unused)) verify_structures(void)
8599 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8600 sis_host_to_ctrl_doorbell) != 0x20);
8601 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8602 sis_interrupt_mask) != 0x34);
8603 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8604 sis_ctrl_to_host_doorbell) != 0x9c);
8605 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8606 sis_ctrl_to_host_doorbell_clear) != 0xa0);
8607 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8608 sis_driver_scratch) != 0xb0);
8609 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8610 sis_firmware_status) != 0xbc);
8611 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8612 sis_mailbox) != 0x1000);
8613 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers,
8614 pqi_registers) != 0x4000);
8616 BUILD_BUG_ON(offsetof(struct pqi_iu_header,
8618 BUILD_BUG_ON(offsetof(struct pqi_iu_header,
8620 BUILD_BUG_ON(offsetof(struct pqi_iu_header,
8621 response_queue_id) != 0x4);
8622 BUILD_BUG_ON(offsetof(struct pqi_iu_header,
8624 BUILD_BUG_ON(sizeof(struct pqi_iu_header) != 0x8);
8626 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8628 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8629 service_response) != 0x1);
8630 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8631 data_present) != 0x2);
8632 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8634 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8635 residual_count) != 0x4);
8636 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8637 data_length) != 0x8);
8638 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8640 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info,
8642 BUILD_BUG_ON(sizeof(struct pqi_aio_error_info) != 0x10c);
8644 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8645 data_in_result) != 0x0);
8646 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8647 data_out_result) != 0x1);
8648 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8650 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8652 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8653 status_qualifier) != 0x6);
8654 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8655 sense_data_length) != 0x8);
8656 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8657 response_data_length) != 0xa);
8658 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8659 data_in_transferred) != 0xc);
8660 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8661 data_out_transferred) != 0x10);
8662 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info,
8664 BUILD_BUG_ON(sizeof(struct pqi_raid_error_info) != 0x114);
8666 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8668 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8669 function_and_status_code) != 0x8);
8670 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8671 max_admin_iq_elements) != 0x10);
8672 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8673 max_admin_oq_elements) != 0x11);
8674 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8675 admin_iq_element_length) != 0x12);
8676 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8677 admin_oq_element_length) != 0x13);
8678 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8679 max_reset_timeout) != 0x14);
8680 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8681 legacy_intx_status) != 0x18);
8682 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8683 legacy_intx_mask_set) != 0x1c);
8684 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8685 legacy_intx_mask_clear) != 0x20);
8686 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8687 device_status) != 0x40);
8688 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8689 admin_iq_pi_offset) != 0x48);
8690 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8691 admin_oq_ci_offset) != 0x50);
8692 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8693 admin_iq_element_array_addr) != 0x58);
8694 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8695 admin_oq_element_array_addr) != 0x60);
8696 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8697 admin_iq_ci_addr) != 0x68);
8698 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8699 admin_oq_pi_addr) != 0x70);
8700 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8701 admin_iq_num_elements) != 0x78);
8702 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8703 admin_oq_num_elements) != 0x79);
8704 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8705 admin_queue_int_msg_num) != 0x7a);
8706 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8707 device_error) != 0x80);
8708 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8709 error_details) != 0x88);
8710 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8711 device_reset) != 0x90);
8712 BUILD_BUG_ON(offsetof(struct pqi_device_registers,
8713 power_action) != 0x94);
8714 BUILD_BUG_ON(sizeof(struct pqi_device_registers) != 0x100);
8716 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8717 header.iu_type) != 0);
8718 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8719 header.iu_length) != 2);
8720 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8721 header.work_area) != 6);
8722 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8724 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8725 function_code) != 10);
8726 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8727 data.report_device_capability.buffer_length) != 44);
8728 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8729 data.report_device_capability.sg_descriptor) != 48);
8730 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8731 data.create_operational_iq.queue_id) != 12);
8732 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8733 data.create_operational_iq.element_array_addr) != 16);
8734 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8735 data.create_operational_iq.ci_addr) != 24);
8736 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8737 data.create_operational_iq.num_elements) != 32);
8738 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8739 data.create_operational_iq.element_length) != 34);
8740 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8741 data.create_operational_iq.queue_protocol) != 36);
8742 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8743 data.create_operational_oq.queue_id) != 12);
8744 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8745 data.create_operational_oq.element_array_addr) != 16);
8746 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8747 data.create_operational_oq.pi_addr) != 24);
8748 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8749 data.create_operational_oq.num_elements) != 32);
8750 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8751 data.create_operational_oq.element_length) != 34);
8752 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8753 data.create_operational_oq.queue_protocol) != 36);
8754 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8755 data.create_operational_oq.int_msg_num) != 40);
8756 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8757 data.create_operational_oq.coalescing_count) != 42);
8758 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8759 data.create_operational_oq.min_coalescing_time) != 44);
8760 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8761 data.create_operational_oq.max_coalescing_time) != 48);
8762 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request,
8763 data.delete_operational_queue.queue_id) != 12);
8764 BUILD_BUG_ON(sizeof(struct pqi_general_admin_request) != 64);
8765 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request,
8766 data.create_operational_iq) != 64 - 11);
8767 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request,
8768 data.create_operational_oq) != 64 - 11);
8769 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request,
8770 data.delete_operational_queue) != 64 - 11);
8772 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8773 header.iu_type) != 0);
8774 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8775 header.iu_length) != 2);
8776 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8777 header.work_area) != 6);
8778 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8780 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8781 function_code) != 10);
8782 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8784 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8785 data.create_operational_iq.status_descriptor) != 12);
8786 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8787 data.create_operational_iq.iq_pi_offset) != 16);
8788 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8789 data.create_operational_oq.status_descriptor) != 12);
8790 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response,
8791 data.create_operational_oq.oq_ci_offset) != 16);
8792 BUILD_BUG_ON(sizeof(struct pqi_general_admin_response) != 64);
8794 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8795 header.iu_type) != 0);
8796 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8797 header.iu_length) != 2);
8798 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8799 header.response_queue_id) != 4);
8800 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8801 header.work_area) != 6);
8802 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8804 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8806 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8807 buffer_length) != 12);
8808 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8810 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8811 protocol_specific) != 24);
8812 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8813 error_index) != 27);
8814 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8816 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8818 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request,
8819 sg_descriptors) != 64);
8820 BUILD_BUG_ON(sizeof(struct pqi_raid_path_request) !=
8821 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
8823 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8824 header.iu_type) != 0);
8825 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8826 header.iu_length) != 2);
8827 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8828 header.response_queue_id) != 4);
8829 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8830 header.work_area) != 6);
8831 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8833 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8835 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8836 buffer_length) != 16);
8837 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8838 data_encryption_key_index) != 22);
8839 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8840 encrypt_tweak_lower) != 24);
8841 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8842 encrypt_tweak_upper) != 28);
8843 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8845 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8846 error_index) != 48);
8847 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8848 num_sg_descriptors) != 50);
8849 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8851 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8853 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request,
8854 sg_descriptors) != 64);
8855 BUILD_BUG_ON(sizeof(struct pqi_aio_path_request) !=
8856 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH);
8858 BUILD_BUG_ON(offsetof(struct pqi_io_response,
8859 header.iu_type) != 0);
8860 BUILD_BUG_ON(offsetof(struct pqi_io_response,
8861 header.iu_length) != 2);
8862 BUILD_BUG_ON(offsetof(struct pqi_io_response,
8864 BUILD_BUG_ON(offsetof(struct pqi_io_response,
8865 error_index) != 10);
8867 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8868 header.iu_type) != 0);
8869 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8870 header.iu_length) != 2);
8871 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8872 header.response_queue_id) != 4);
8873 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8875 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8876 data.report_event_configuration.buffer_length) != 12);
8877 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8878 data.report_event_configuration.sg_descriptors) != 16);
8879 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8880 data.set_event_configuration.global_event_oq_id) != 10);
8881 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8882 data.set_event_configuration.buffer_length) != 12);
8883 BUILD_BUG_ON(offsetof(struct pqi_general_management_request,
8884 data.set_event_configuration.sg_descriptors) != 16);
8886 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor,
8887 max_inbound_iu_length) != 6);
8888 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor,
8889 max_outbound_iu_length) != 14);
8890 BUILD_BUG_ON(sizeof(struct pqi_iu_layer_descriptor) != 16);
8892 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8894 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8895 iq_arbitration_priority_support_bitmask) != 8);
8896 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8897 maximum_aw_a) != 9);
8898 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8899 maximum_aw_b) != 10);
8900 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8901 maximum_aw_c) != 11);
8902 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8903 max_inbound_queues) != 16);
8904 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8905 max_elements_per_iq) != 18);
8906 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8907 max_iq_element_length) != 24);
8908 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8909 min_iq_element_length) != 26);
8910 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8911 max_outbound_queues) != 30);
8912 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8913 max_elements_per_oq) != 32);
8914 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8915 intr_coalescing_time_granularity) != 34);
8916 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8917 max_oq_element_length) != 36);
8918 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8919 min_oq_element_length) != 38);
8920 BUILD_BUG_ON(offsetof(struct pqi_device_capability,
8921 iu_layer_descriptors) != 64);
8922 BUILD_BUG_ON(sizeof(struct pqi_device_capability) != 576);
8924 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor,
8926 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor,
8928 BUILD_BUG_ON(sizeof(struct pqi_event_descriptor) != 4);
8930 BUILD_BUG_ON(offsetof(struct pqi_event_config,
8931 num_event_descriptors) != 2);
8932 BUILD_BUG_ON(offsetof(struct pqi_event_config,
8935 BUILD_BUG_ON(PQI_NUM_SUPPORTED_EVENTS !=
8936 ARRAY_SIZE(pqi_supported_event_types));
8938 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8939 header.iu_type) != 0);
8940 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8941 header.iu_length) != 2);
8942 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8944 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8946 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8947 additional_event_id) != 12);
8948 BUILD_BUG_ON(offsetof(struct pqi_event_response,
8950 BUILD_BUG_ON(sizeof(struct pqi_event_response) != 32);
8952 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request,
8953 header.iu_type) != 0);
8954 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request,
8955 header.iu_length) != 2);
8956 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request,
8958 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request,
8960 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request,
8961 additional_event_id) != 12);
8962 BUILD_BUG_ON(sizeof(struct pqi_event_acknowledge_request) != 16);
8964 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8965 header.iu_type) != 0);
8966 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8967 header.iu_length) != 2);
8968 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8970 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8972 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8974 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8976 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8977 protocol_specific) != 24);
8978 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8979 outbound_queue_id_to_manage) != 26);
8980 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8981 request_id_to_manage) != 28);
8982 BUILD_BUG_ON(offsetof(struct pqi_task_management_request,
8983 task_management_function) != 30);
8984 BUILD_BUG_ON(sizeof(struct pqi_task_management_request) != 32);
8986 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8987 header.iu_type) != 0);
8988 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8989 header.iu_length) != 2);
8990 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8992 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8994 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8995 additional_response_info) != 12);
8996 BUILD_BUG_ON(offsetof(struct pqi_task_management_response,
8997 response_code) != 15);
8998 BUILD_BUG_ON(sizeof(struct pqi_task_management_response) != 16);
9000 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9001 configured_logical_drive_count) != 0);
9002 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9003 configuration_signature) != 1);
9004 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9005 firmware_version) != 5);
9006 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9007 extended_logical_unit_count) != 154);
9008 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9009 firmware_build_number) != 190);
9010 BUILD_BUG_ON(offsetof(struct bmic_identify_controller,
9011 controller_mode) != 292);
9013 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9014 phys_bay_in_box) != 115);
9015 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9016 device_type) != 120);
9017 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9018 redundant_path_present_map) != 1736);
9019 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9020 active_path_number) != 1738);
9021 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9022 alternate_paths_phys_connector) != 1739);
9023 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9024 alternate_paths_phys_box_on_port) != 1755);
9025 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device,
9026 current_queue_depth_limit) != 1796);
9027 BUILD_BUG_ON(sizeof(struct bmic_identify_physical_device) != 2560);
9029 BUILD_BUG_ON(PQI_ADMIN_IQ_NUM_ELEMENTS > 255);
9030 BUILD_BUG_ON(PQI_ADMIN_OQ_NUM_ELEMENTS > 255);
9031 BUILD_BUG_ON(PQI_ADMIN_IQ_ELEMENT_LENGTH %
9032 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT != 0);
9033 BUILD_BUG_ON(PQI_ADMIN_OQ_ELEMENT_LENGTH %
9034 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT != 0);
9035 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH > 1048560);
9036 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH %
9037 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT != 0);
9038 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH > 1048560);
9039 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH %
9040 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT != 0);
9042 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS >= PQI_MAX_OUTSTANDING_REQUESTS);
9043 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS >=
9044 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP);