1 // SPDX-License-Identifier: GPL-2.0
3 * driver for Microsemi PQI-based storage controllers
4 * Copyright (c) 2019 Microchip Technology Inc. and its subsidiaries
5 * Copyright (c) 2016-2018 Microsemi Corporation
6 * Copyright (c) 2016 PMC-Sierra, Inc.
8 * Questions/Comments/Bugfixes to storagedev@microchip.com
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.10-025"
37 #define DRIVER_MAJOR 1
38 #define DRIVER_MINOR 2
39 #define DRIVER_RELEASE 10
40 #define DRIVER_REVISION 25
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",
550 switch (request
->data_direction
) {
552 *dir
= DMA_FROM_DEVICE
;
555 *dir
= DMA_TO_DEVICE
;
557 case SOP_NO_DIRECTION_FLAG
:
561 *dir
= DMA_BIDIRECTIONAL
;
565 return pqi_map_single(ctrl_info
->pci_dev
, &request
->sg_descriptors
[0],
566 buffer
, buffer_length
, *dir
);
569 static inline void pqi_reinit_io_request(struct pqi_io_request
*io_request
)
571 io_request
->scmd
= NULL
;
572 io_request
->status
= 0;
573 io_request
->error_info
= NULL
;
574 io_request
->raid_bypass
= false;
577 static struct pqi_io_request
*pqi_alloc_io_request(
578 struct pqi_ctrl_info
*ctrl_info
)
580 struct pqi_io_request
*io_request
;
581 u16 i
= ctrl_info
->next_io_request_slot
; /* benignly racy */
584 io_request
= &ctrl_info
->io_request_pool
[i
];
585 if (atomic_inc_return(&io_request
->refcount
) == 1)
587 atomic_dec(&io_request
->refcount
);
588 i
= (i
+ 1) % ctrl_info
->max_io_slots
;
592 ctrl_info
->next_io_request_slot
= (i
+ 1) % ctrl_info
->max_io_slots
;
594 pqi_reinit_io_request(io_request
);
599 static void pqi_free_io_request(struct pqi_io_request
*io_request
)
601 atomic_dec(&io_request
->refcount
);
604 static int pqi_send_scsi_raid_request(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
605 u8
*scsi3addr
, void *buffer
, size_t buffer_length
, u16 vpd_page
,
606 struct pqi_raid_error_info
*error_info
, unsigned long timeout_msecs
)
609 struct pqi_raid_path_request request
;
610 enum dma_data_direction dir
;
612 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
613 cmd
, scsi3addr
, buffer
,
614 buffer_length
, vpd_page
, &dir
);
618 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
619 error_info
, timeout_msecs
);
621 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1, dir
);
626 /* helper functions for pqi_send_scsi_raid_request */
628 static inline int pqi_send_ctrl_raid_request(struct pqi_ctrl_info
*ctrl_info
,
629 u8 cmd
, void *buffer
, size_t buffer_length
)
631 return pqi_send_scsi_raid_request(ctrl_info
, cmd
, RAID_CTLR_LUNID
,
632 buffer
, buffer_length
, 0, NULL
, NO_TIMEOUT
);
635 static inline int pqi_send_ctrl_raid_with_error(struct pqi_ctrl_info
*ctrl_info
,
636 u8 cmd
, void *buffer
, size_t buffer_length
,
637 struct pqi_raid_error_info
*error_info
)
639 return pqi_send_scsi_raid_request(ctrl_info
, cmd
, RAID_CTLR_LUNID
,
640 buffer
, buffer_length
, 0, error_info
, NO_TIMEOUT
);
643 static inline int pqi_identify_controller(struct pqi_ctrl_info
*ctrl_info
,
644 struct bmic_identify_controller
*buffer
)
646 return pqi_send_ctrl_raid_request(ctrl_info
, BMIC_IDENTIFY_CONTROLLER
,
647 buffer
, sizeof(*buffer
));
650 static inline int pqi_sense_subsystem_info(struct pqi_ctrl_info
*ctrl_info
,
651 struct bmic_sense_subsystem_info
*sense_info
)
653 return pqi_send_ctrl_raid_request(ctrl_info
,
654 BMIC_SENSE_SUBSYSTEM_INFORMATION
, sense_info
,
655 sizeof(*sense_info
));
658 static inline int pqi_scsi_inquiry(struct pqi_ctrl_info
*ctrl_info
,
659 u8
*scsi3addr
, u16 vpd_page
, void *buffer
, size_t buffer_length
)
661 return pqi_send_scsi_raid_request(ctrl_info
, INQUIRY
, scsi3addr
,
662 buffer
, buffer_length
, vpd_page
, NULL
, NO_TIMEOUT
);
665 static int pqi_identify_physical_device(struct pqi_ctrl_info
*ctrl_info
,
666 struct pqi_scsi_dev
*device
,
667 struct bmic_identify_physical_device
*buffer
, size_t buffer_length
)
670 enum dma_data_direction dir
;
671 u16 bmic_device_index
;
672 struct pqi_raid_path_request request
;
674 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
675 BMIC_IDENTIFY_PHYSICAL_DEVICE
, RAID_CTLR_LUNID
, buffer
,
676 buffer_length
, 0, &dir
);
680 bmic_device_index
= CISS_GET_DRIVE_NUMBER(device
->scsi3addr
);
681 request
.cdb
[2] = (u8
)bmic_device_index
;
682 request
.cdb
[9] = (u8
)(bmic_device_index
>> 8);
684 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
685 0, NULL
, NO_TIMEOUT
);
687 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1, dir
);
692 static int pqi_flush_cache(struct pqi_ctrl_info
*ctrl_info
,
693 enum bmic_flush_cache_shutdown_event shutdown_event
)
696 struct bmic_flush_cache
*flush_cache
;
699 * Don't bother trying to flush the cache if the controller is
702 if (pqi_ctrl_offline(ctrl_info
))
705 flush_cache
= kzalloc(sizeof(*flush_cache
), GFP_KERNEL
);
709 flush_cache
->shutdown_event
= shutdown_event
;
711 rc
= pqi_send_ctrl_raid_request(ctrl_info
, SA_FLUSH_CACHE
, flush_cache
,
712 sizeof(*flush_cache
));
719 int pqi_csmi_smp_passthru(struct pqi_ctrl_info
*ctrl_info
,
720 struct bmic_csmi_smp_passthru_buffer
*buffer
, size_t buffer_length
,
721 struct pqi_raid_error_info
*error_info
)
723 return pqi_send_ctrl_raid_with_error(ctrl_info
, BMIC_CSMI_PASSTHRU
,
724 buffer
, buffer_length
, error_info
);
727 #define PQI_FETCH_PTRAID_DATA (1 << 31)
729 static int pqi_set_diag_rescan(struct pqi_ctrl_info
*ctrl_info
)
732 struct bmic_diag_options
*diag
;
734 diag
= kzalloc(sizeof(*diag
), GFP_KERNEL
);
738 rc
= pqi_send_ctrl_raid_request(ctrl_info
, BMIC_SENSE_DIAG_OPTIONS
,
739 diag
, sizeof(*diag
));
743 diag
->options
|= cpu_to_le32(PQI_FETCH_PTRAID_DATA
);
745 rc
= pqi_send_ctrl_raid_request(ctrl_info
, BMIC_SET_DIAG_OPTIONS
, diag
,
754 static inline int pqi_write_host_wellness(struct pqi_ctrl_info
*ctrl_info
,
755 void *buffer
, size_t buffer_length
)
757 return pqi_send_ctrl_raid_request(ctrl_info
, BMIC_WRITE_HOST_WELLNESS
,
758 buffer
, buffer_length
);
763 struct bmic_host_wellness_driver_version
{
765 u8 driver_version_tag
[2];
766 __le16 driver_version_length
;
767 char driver_version
[32];
768 u8 dont_write_tag
[2];
774 static int pqi_write_driver_version_to_host_wellness(
775 struct pqi_ctrl_info
*ctrl_info
)
778 struct bmic_host_wellness_driver_version
*buffer
;
779 size_t buffer_length
;
781 buffer_length
= sizeof(*buffer
);
783 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
787 buffer
->start_tag
[0] = '<';
788 buffer
->start_tag
[1] = 'H';
789 buffer
->start_tag
[2] = 'W';
790 buffer
->start_tag
[3] = '>';
791 buffer
->driver_version_tag
[0] = 'D';
792 buffer
->driver_version_tag
[1] = 'V';
793 put_unaligned_le16(sizeof(buffer
->driver_version
),
794 &buffer
->driver_version_length
);
795 strncpy(buffer
->driver_version
, "Linux " DRIVER_VERSION
,
796 sizeof(buffer
->driver_version
) - 1);
797 buffer
->driver_version
[sizeof(buffer
->driver_version
) - 1] = '\0';
798 buffer
->dont_write_tag
[0] = 'D';
799 buffer
->dont_write_tag
[1] = 'W';
800 buffer
->end_tag
[0] = 'Z';
801 buffer
->end_tag
[1] = 'Z';
803 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
812 struct bmic_host_wellness_time
{
817 u8 dont_write_tag
[2];
823 static int pqi_write_current_time_to_host_wellness(
824 struct pqi_ctrl_info
*ctrl_info
)
827 struct bmic_host_wellness_time
*buffer
;
828 size_t buffer_length
;
833 buffer_length
= sizeof(*buffer
);
835 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
839 buffer
->start_tag
[0] = '<';
840 buffer
->start_tag
[1] = 'H';
841 buffer
->start_tag
[2] = 'W';
842 buffer
->start_tag
[3] = '>';
843 buffer
->time_tag
[0] = 'T';
844 buffer
->time_tag
[1] = 'D';
845 put_unaligned_le16(sizeof(buffer
->time
),
846 &buffer
->time_length
);
848 local_time
= ktime_get_real_seconds();
849 time64_to_tm(local_time
, -sys_tz
.tz_minuteswest
* 60, &tm
);
850 year
= tm
.tm_year
+ 1900;
852 buffer
->time
[0] = bin2bcd(tm
.tm_hour
);
853 buffer
->time
[1] = bin2bcd(tm
.tm_min
);
854 buffer
->time
[2] = bin2bcd(tm
.tm_sec
);
856 buffer
->time
[4] = bin2bcd(tm
.tm_mon
+ 1);
857 buffer
->time
[5] = bin2bcd(tm
.tm_mday
);
858 buffer
->time
[6] = bin2bcd(year
/ 100);
859 buffer
->time
[7] = bin2bcd(year
% 100);
861 buffer
->dont_write_tag
[0] = 'D';
862 buffer
->dont_write_tag
[1] = 'W';
863 buffer
->end_tag
[0] = 'Z';
864 buffer
->end_tag
[1] = 'Z';
866 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
873 #define PQI_UPDATE_TIME_WORK_INTERVAL (24UL * 60 * 60 * PQI_HZ)
875 static void pqi_update_time_worker(struct work_struct
*work
)
878 struct pqi_ctrl_info
*ctrl_info
;
880 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
883 if (pqi_ctrl_offline(ctrl_info
))
886 rc
= pqi_write_current_time_to_host_wellness(ctrl_info
);
888 dev_warn(&ctrl_info
->pci_dev
->dev
,
889 "error updating time on controller\n");
891 schedule_delayed_work(&ctrl_info
->update_time_work
,
892 PQI_UPDATE_TIME_WORK_INTERVAL
);
895 static inline void pqi_schedule_update_time_worker(
896 struct pqi_ctrl_info
*ctrl_info
)
898 schedule_delayed_work(&ctrl_info
->update_time_work
, 0);
901 static inline void pqi_cancel_update_time_worker(
902 struct pqi_ctrl_info
*ctrl_info
)
904 cancel_delayed_work_sync(&ctrl_info
->update_time_work
);
907 static inline int pqi_report_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
908 void *buffer
, size_t buffer_length
)
910 return pqi_send_ctrl_raid_request(ctrl_info
, cmd
, buffer
,
914 static int pqi_report_phys_logical_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
918 size_t lun_list_length
;
919 size_t lun_data_length
;
920 size_t new_lun_list_length
;
921 void *lun_data
= NULL
;
922 struct report_lun_header
*report_lun_header
;
924 report_lun_header
= kmalloc(sizeof(*report_lun_header
), GFP_KERNEL
);
925 if (!report_lun_header
) {
930 rc
= pqi_report_luns(ctrl_info
, cmd
, report_lun_header
,
931 sizeof(*report_lun_header
));
935 lun_list_length
= get_unaligned_be32(&report_lun_header
->list_length
);
938 lun_data_length
= sizeof(struct report_lun_header
) + lun_list_length
;
940 lun_data
= kmalloc(lun_data_length
, GFP_KERNEL
);
946 if (lun_list_length
== 0) {
947 memcpy(lun_data
, report_lun_header
, sizeof(*report_lun_header
));
951 rc
= pqi_report_luns(ctrl_info
, cmd
, lun_data
, lun_data_length
);
955 new_lun_list_length
= get_unaligned_be32(
956 &((struct report_lun_header
*)lun_data
)->list_length
);
958 if (new_lun_list_length
> lun_list_length
) {
959 lun_list_length
= new_lun_list_length
;
965 kfree(report_lun_header
);
977 static inline int pqi_report_phys_luns(struct pqi_ctrl_info
*ctrl_info
,
980 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_PHYS
,
984 static inline int pqi_report_logical_luns(struct pqi_ctrl_info
*ctrl_info
,
987 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_LOG
, buffer
);
990 static int pqi_get_device_lists(struct pqi_ctrl_info
*ctrl_info
,
991 struct report_phys_lun_extended
**physdev_list
,
992 struct report_log_lun_extended
**logdev_list
)
995 size_t logdev_list_length
;
996 size_t logdev_data_length
;
997 struct report_log_lun_extended
*internal_logdev_list
;
998 struct report_log_lun_extended
*logdev_data
;
999 struct report_lun_header report_lun_header
;
1001 rc
= pqi_report_phys_luns(ctrl_info
, (void **)physdev_list
);
1003 dev_err(&ctrl_info
->pci_dev
->dev
,
1004 "report physical LUNs failed\n");
1006 rc
= pqi_report_logical_luns(ctrl_info
, (void **)logdev_list
);
1008 dev_err(&ctrl_info
->pci_dev
->dev
,
1009 "report logical LUNs failed\n");
1012 * Tack the controller itself onto the end of the logical device list.
1015 logdev_data
= *logdev_list
;
1018 logdev_list_length
=
1019 get_unaligned_be32(&logdev_data
->header
.list_length
);
1021 memset(&report_lun_header
, 0, sizeof(report_lun_header
));
1023 (struct report_log_lun_extended
*)&report_lun_header
;
1024 logdev_list_length
= 0;
1027 logdev_data_length
= sizeof(struct report_lun_header
) +
1030 internal_logdev_list
= kmalloc(logdev_data_length
+
1031 sizeof(struct report_log_lun_extended
), GFP_KERNEL
);
1032 if (!internal_logdev_list
) {
1033 kfree(*logdev_list
);
1034 *logdev_list
= NULL
;
1038 memcpy(internal_logdev_list
, logdev_data
, logdev_data_length
);
1039 memset((u8
*)internal_logdev_list
+ logdev_data_length
, 0,
1040 sizeof(struct report_log_lun_extended_entry
));
1041 put_unaligned_be32(logdev_list_length
+
1042 sizeof(struct report_log_lun_extended_entry
),
1043 &internal_logdev_list
->header
.list_length
);
1045 kfree(*logdev_list
);
1046 *logdev_list
= internal_logdev_list
;
1051 static inline void pqi_set_bus_target_lun(struct pqi_scsi_dev
*device
,
1052 int bus
, int target
, int lun
)
1055 device
->target
= target
;
1059 static void pqi_assign_bus_target_lun(struct pqi_scsi_dev
*device
)
1067 scsi3addr
= device
->scsi3addr
;
1068 lunid
= get_unaligned_le32(scsi3addr
);
1070 if (pqi_is_hba_lunid(scsi3addr
)) {
1071 /* The specified device is the controller. */
1072 pqi_set_bus_target_lun(device
, PQI_HBA_BUS
, 0, lunid
& 0x3fff);
1073 device
->target_lun_valid
= true;
1077 if (pqi_is_logical_device(device
)) {
1078 if (device
->is_external_raid_device
) {
1079 bus
= PQI_EXTERNAL_RAID_VOLUME_BUS
;
1080 target
= (lunid
>> 16) & 0x3fff;
1083 bus
= PQI_RAID_VOLUME_BUS
;
1085 lun
= lunid
& 0x3fff;
1087 pqi_set_bus_target_lun(device
, bus
, target
, lun
);
1088 device
->target_lun_valid
= true;
1093 * Defer target and LUN assignment for non-controller physical devices
1094 * because the SAS transport layer will make these assignments later.
1096 pqi_set_bus_target_lun(device
, PQI_PHYSICAL_DEVICE_BUS
, 0, 0);
1099 static void pqi_get_raid_level(struct pqi_ctrl_info
*ctrl_info
,
1100 struct pqi_scsi_dev
*device
)
1106 raid_level
= SA_RAID_UNKNOWN
;
1108 buffer
= kmalloc(64, GFP_KERNEL
);
1110 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1111 VPD_PAGE
| CISS_VPD_LV_DEVICE_GEOMETRY
, buffer
, 64);
1113 raid_level
= buffer
[8];
1114 if (raid_level
> SA_RAID_MAX
)
1115 raid_level
= SA_RAID_UNKNOWN
;
1120 device
->raid_level
= raid_level
;
1123 static int pqi_validate_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1124 struct pqi_scsi_dev
*device
, struct raid_map
*raid_map
)
1128 u32 r5or6_blocks_per_row
;
1130 raid_map_size
= get_unaligned_le32(&raid_map
->structure_size
);
1132 if (raid_map_size
< offsetof(struct raid_map
, disk_data
)) {
1133 err_msg
= "RAID map too small";
1137 if (device
->raid_level
== SA_RAID_1
) {
1138 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 2) {
1139 err_msg
= "invalid RAID-1 map";
1142 } else if (device
->raid_level
== SA_RAID_ADM
) {
1143 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 3) {
1144 err_msg
= "invalid RAID-1(ADM) map";
1147 } else if ((device
->raid_level
== SA_RAID_5
||
1148 device
->raid_level
== SA_RAID_6
) &&
1149 get_unaligned_le16(&raid_map
->layout_map_count
) > 1) {
1151 r5or6_blocks_per_row
=
1152 get_unaligned_le16(&raid_map
->strip_size
) *
1153 get_unaligned_le16(&raid_map
->data_disks_per_row
);
1154 if (r5or6_blocks_per_row
== 0) {
1155 err_msg
= "invalid RAID-5 or RAID-6 map";
1163 dev_warn(&ctrl_info
->pci_dev
->dev
,
1164 "logical device %08x%08x %s\n",
1165 *((u32
*)&device
->scsi3addr
),
1166 *((u32
*)&device
->scsi3addr
[4]), err_msg
);
1171 static int pqi_get_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1172 struct pqi_scsi_dev
*device
)
1176 struct raid_map
*raid_map
;
1178 raid_map
= kmalloc(sizeof(*raid_map
), GFP_KERNEL
);
1182 rc
= pqi_send_scsi_raid_request(ctrl_info
, CISS_GET_RAID_MAP
,
1183 device
->scsi3addr
, raid_map
, sizeof(*raid_map
),
1184 0, NULL
, NO_TIMEOUT
);
1189 raid_map_size
= get_unaligned_le32(&raid_map
->structure_size
);
1191 if (raid_map_size
> sizeof(*raid_map
)) {
1195 raid_map
= kmalloc(raid_map_size
, GFP_KERNEL
);
1199 rc
= pqi_send_scsi_raid_request(ctrl_info
, CISS_GET_RAID_MAP
,
1200 device
->scsi3addr
, raid_map
, raid_map_size
,
1201 0, NULL
, NO_TIMEOUT
);
1205 if (get_unaligned_le32(&raid_map
->structure_size
)
1207 dev_warn(&ctrl_info
->pci_dev
->dev
,
1208 "Requested %d bytes, received %d bytes",
1210 get_unaligned_le32(&raid_map
->structure_size
));
1215 rc
= pqi_validate_raid_map(ctrl_info
, device
, raid_map
);
1219 device
->raid_map
= raid_map
;
1229 static void pqi_get_raid_bypass_status(struct pqi_ctrl_info
*ctrl_info
,
1230 struct pqi_scsi_dev
*device
)
1236 buffer
= kmalloc(64, GFP_KERNEL
);
1240 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1241 VPD_PAGE
| CISS_VPD_LV_BYPASS_STATUS
, buffer
, 64);
1245 #define RAID_BYPASS_STATUS 4
1246 #define RAID_BYPASS_CONFIGURED 0x1
1247 #define RAID_BYPASS_ENABLED 0x2
1249 bypass_status
= buffer
[RAID_BYPASS_STATUS
];
1250 device
->raid_bypass_configured
=
1251 (bypass_status
& RAID_BYPASS_CONFIGURED
) != 0;
1252 if (device
->raid_bypass_configured
&&
1253 (bypass_status
& RAID_BYPASS_ENABLED
) &&
1254 pqi_get_raid_map(ctrl_info
, device
) == 0)
1255 device
->raid_bypass_enabled
= true;
1262 * Use vendor-specific VPD to determine online/offline status of a volume.
1265 static void pqi_get_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1266 struct pqi_scsi_dev
*device
)
1270 u8 volume_status
= CISS_LV_STATUS_UNAVAILABLE
;
1271 bool volume_offline
= true;
1273 struct ciss_vpd_logical_volume_status
*vpd
;
1275 vpd
= kmalloc(sizeof(*vpd
), GFP_KERNEL
);
1279 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1280 VPD_PAGE
| CISS_VPD_LV_STATUS
, vpd
, sizeof(*vpd
));
1284 if (vpd
->page_code
!= CISS_VPD_LV_STATUS
)
1287 page_length
= offsetof(struct ciss_vpd_logical_volume_status
,
1288 volume_status
) + vpd
->page_length
;
1289 if (page_length
< sizeof(*vpd
))
1292 volume_status
= vpd
->volume_status
;
1293 volume_flags
= get_unaligned_be32(&vpd
->flags
);
1294 volume_offline
= (volume_flags
& CISS_LV_FLAGS_NO_HOST_IO
) != 0;
1299 device
->volume_status
= volume_status
;
1300 device
->volume_offline
= volume_offline
;
1303 #define PQI_INQUIRY_PAGE0_RETRIES 3
1305 static int pqi_get_device_info(struct pqi_ctrl_info
*ctrl_info
,
1306 struct pqi_scsi_dev
*device
)
1310 unsigned int retries
;
1312 if (device
->is_expander_smp_device
)
1315 buffer
= kmalloc(64, GFP_KERNEL
);
1319 /* Send an inquiry to the device to see what it is. */
1320 for (retries
= 0;;) {
1321 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
, 0,
1325 if (pqi_is_logical_device(device
) ||
1326 rc
!= PQI_CMD_STATUS_ABORTED
||
1327 ++retries
> PQI_INQUIRY_PAGE0_RETRIES
)
1331 scsi_sanitize_inquiry_string(&buffer
[8], 8);
1332 scsi_sanitize_inquiry_string(&buffer
[16], 16);
1334 device
->devtype
= buffer
[0] & 0x1f;
1335 memcpy(device
->vendor
, &buffer
[8], sizeof(device
->vendor
));
1336 memcpy(device
->model
, &buffer
[16], sizeof(device
->model
));
1338 if (pqi_is_logical_device(device
) && device
->devtype
== TYPE_DISK
) {
1339 if (device
->is_external_raid_device
) {
1340 device
->raid_level
= SA_RAID_UNKNOWN
;
1341 device
->volume_status
= CISS_LV_OK
;
1342 device
->volume_offline
= false;
1344 pqi_get_raid_level(ctrl_info
, device
);
1345 pqi_get_raid_bypass_status(ctrl_info
, device
);
1346 pqi_get_volume_status(ctrl_info
, device
);
1356 static void pqi_get_physical_disk_info(struct pqi_ctrl_info
*ctrl_info
,
1357 struct pqi_scsi_dev
*device
,
1358 struct bmic_identify_physical_device
*id_phys
)
1362 memset(id_phys
, 0, sizeof(*id_phys
));
1364 rc
= pqi_identify_physical_device(ctrl_info
, device
,
1365 id_phys
, sizeof(*id_phys
));
1367 device
->queue_depth
= PQI_PHYSICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH
;
1371 device
->box_index
= id_phys
->box_index
;
1372 device
->phys_box_on_bus
= id_phys
->phys_box_on_bus
;
1373 device
->phy_connected_dev_type
= id_phys
->phy_connected_dev_type
[0];
1374 device
->queue_depth
=
1375 get_unaligned_le16(&id_phys
->current_queue_depth_limit
);
1376 device
->device_type
= id_phys
->device_type
;
1377 device
->active_path_index
= id_phys
->active_path_number
;
1378 device
->path_map
= id_phys
->redundant_path_present_map
;
1379 memcpy(&device
->box
,
1380 &id_phys
->alternate_paths_phys_box_on_port
,
1381 sizeof(device
->box
));
1382 memcpy(&device
->phys_connector
,
1383 &id_phys
->alternate_paths_phys_connector
,
1384 sizeof(device
->phys_connector
));
1385 device
->bay
= id_phys
->phys_bay_in_box
;
1388 static void pqi_show_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1389 struct pqi_scsi_dev
*device
)
1392 static const char unknown_state_str
[] =
1393 "Volume is in an unknown state (%u)";
1394 char unknown_state_buffer
[sizeof(unknown_state_str
) + 10];
1396 switch (device
->volume_status
) {
1398 status
= "Volume online";
1400 case CISS_LV_FAILED
:
1401 status
= "Volume failed";
1403 case CISS_LV_NOT_CONFIGURED
:
1404 status
= "Volume not configured";
1406 case CISS_LV_DEGRADED
:
1407 status
= "Volume degraded";
1409 case CISS_LV_READY_FOR_RECOVERY
:
1410 status
= "Volume ready for recovery operation";
1412 case CISS_LV_UNDERGOING_RECOVERY
:
1413 status
= "Volume undergoing recovery";
1415 case CISS_LV_WRONG_PHYSICAL_DRIVE_REPLACED
:
1416 status
= "Wrong physical drive was replaced";
1418 case CISS_LV_PHYSICAL_DRIVE_CONNECTION_PROBLEM
:
1419 status
= "A physical drive not properly connected";
1421 case CISS_LV_HARDWARE_OVERHEATING
:
1422 status
= "Hardware is overheating";
1424 case CISS_LV_HARDWARE_HAS_OVERHEATED
:
1425 status
= "Hardware has overheated";
1427 case CISS_LV_UNDERGOING_EXPANSION
:
1428 status
= "Volume undergoing expansion";
1430 case CISS_LV_NOT_AVAILABLE
:
1431 status
= "Volume waiting for transforming volume";
1433 case CISS_LV_QUEUED_FOR_EXPANSION
:
1434 status
= "Volume queued for expansion";
1436 case CISS_LV_DISABLED_SCSI_ID_CONFLICT
:
1437 status
= "Volume disabled due to SCSI ID conflict";
1439 case CISS_LV_EJECTED
:
1440 status
= "Volume has been ejected";
1442 case CISS_LV_UNDERGOING_ERASE
:
1443 status
= "Volume undergoing background erase";
1445 case CISS_LV_READY_FOR_PREDICTIVE_SPARE_REBUILD
:
1446 status
= "Volume ready for predictive spare rebuild";
1448 case CISS_LV_UNDERGOING_RPI
:
1449 status
= "Volume undergoing rapid parity initialization";
1451 case CISS_LV_PENDING_RPI
:
1452 status
= "Volume queued for rapid parity initialization";
1454 case CISS_LV_ENCRYPTED_NO_KEY
:
1455 status
= "Encrypted volume inaccessible - key not present";
1457 case CISS_LV_UNDERGOING_ENCRYPTION
:
1458 status
= "Volume undergoing encryption process";
1460 case CISS_LV_UNDERGOING_ENCRYPTION_REKEYING
:
1461 status
= "Volume undergoing encryption re-keying process";
1463 case CISS_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER
:
1464 status
= "Volume encrypted but encryption is disabled";
1466 case CISS_LV_PENDING_ENCRYPTION
:
1467 status
= "Volume pending migration to encrypted state";
1469 case CISS_LV_PENDING_ENCRYPTION_REKEYING
:
1470 status
= "Volume pending encryption rekeying";
1472 case CISS_LV_NOT_SUPPORTED
:
1473 status
= "Volume not supported on this controller";
1475 case CISS_LV_STATUS_UNAVAILABLE
:
1476 status
= "Volume status not available";
1479 snprintf(unknown_state_buffer
, sizeof(unknown_state_buffer
),
1480 unknown_state_str
, device
->volume_status
);
1481 status
= unknown_state_buffer
;
1485 dev_info(&ctrl_info
->pci_dev
->dev
,
1486 "scsi %d:%d:%d:%d %s\n",
1487 ctrl_info
->scsi_host
->host_no
,
1488 device
->bus
, device
->target
, device
->lun
, status
);
1491 static void pqi_rescan_worker(struct work_struct
*work
)
1493 struct pqi_ctrl_info
*ctrl_info
;
1495 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
1498 pqi_scan_scsi_devices(ctrl_info
);
1501 static int pqi_add_device(struct pqi_ctrl_info
*ctrl_info
,
1502 struct pqi_scsi_dev
*device
)
1506 if (pqi_is_logical_device(device
))
1507 rc
= scsi_add_device(ctrl_info
->scsi_host
, device
->bus
,
1508 device
->target
, device
->lun
);
1510 rc
= pqi_add_sas_device(ctrl_info
->sas_host
, device
);
1515 #define PQI_PENDING_IO_TIMEOUT_SECS 20
1517 static inline void pqi_remove_device(struct pqi_ctrl_info
*ctrl_info
,
1518 struct pqi_scsi_dev
*device
)
1522 pqi_device_remove_start(device
);
1524 rc
= pqi_device_wait_for_pending_io(ctrl_info
, device
,
1525 PQI_PENDING_IO_TIMEOUT_SECS
);
1527 dev_err(&ctrl_info
->pci_dev
->dev
,
1528 "scsi %d:%d:%d:%d removing device with %d outstanding commands\n",
1529 ctrl_info
->scsi_host
->host_no
, device
->bus
,
1530 device
->target
, device
->lun
,
1531 atomic_read(&device
->scsi_cmds_outstanding
));
1533 if (pqi_is_logical_device(device
))
1534 scsi_remove_device(device
->sdev
);
1536 pqi_remove_sas_device(device
);
1539 /* Assumes the SCSI device list lock is held. */
1541 static struct pqi_scsi_dev
*pqi_find_scsi_dev(struct pqi_ctrl_info
*ctrl_info
,
1542 int bus
, int target
, int lun
)
1544 struct pqi_scsi_dev
*device
;
1546 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1547 scsi_device_list_entry
)
1548 if (device
->bus
== bus
&& device
->target
== target
&&
1555 static inline bool pqi_device_equal(struct pqi_scsi_dev
*dev1
,
1556 struct pqi_scsi_dev
*dev2
)
1558 if (dev1
->is_physical_device
!= dev2
->is_physical_device
)
1561 if (dev1
->is_physical_device
)
1562 return dev1
->wwid
== dev2
->wwid
;
1564 return memcmp(dev1
->volume_id
, dev2
->volume_id
,
1565 sizeof(dev1
->volume_id
)) == 0;
1568 enum pqi_find_result
{
1574 static enum pqi_find_result
pqi_scsi_find_entry(struct pqi_ctrl_info
*ctrl_info
,
1575 struct pqi_scsi_dev
*device_to_find
,
1576 struct pqi_scsi_dev
**matching_device
)
1578 struct pqi_scsi_dev
*device
;
1580 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1581 scsi_device_list_entry
) {
1582 if (pqi_scsi3addr_equal(device_to_find
->scsi3addr
,
1583 device
->scsi3addr
)) {
1584 *matching_device
= device
;
1585 if (pqi_device_equal(device_to_find
, device
)) {
1586 if (device_to_find
->volume_offline
)
1587 return DEVICE_CHANGED
;
1590 return DEVICE_CHANGED
;
1594 return DEVICE_NOT_FOUND
;
1597 static inline const char *pqi_device_type(struct pqi_scsi_dev
*device
)
1599 if (device
->is_expander_smp_device
)
1600 return "Enclosure SMP ";
1602 return scsi_device_type(device
->devtype
);
1605 #define PQI_DEV_INFO_BUFFER_LENGTH 128
1607 static void pqi_dev_info(struct pqi_ctrl_info
*ctrl_info
,
1608 char *action
, struct pqi_scsi_dev
*device
)
1611 char buffer
[PQI_DEV_INFO_BUFFER_LENGTH
];
1613 count
= snprintf(buffer
, PQI_DEV_INFO_BUFFER_LENGTH
,
1614 "%d:%d:", ctrl_info
->scsi_host
->host_no
, device
->bus
);
1616 if (device
->target_lun_valid
)
1617 count
+= snprintf(buffer
+ count
,
1618 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1623 count
+= snprintf(buffer
+ count
,
1624 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1627 if (pqi_is_logical_device(device
))
1628 count
+= snprintf(buffer
+ count
,
1629 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1631 *((u32
*)&device
->scsi3addr
),
1632 *((u32
*)&device
->scsi3addr
[4]));
1634 count
+= snprintf(buffer
+ count
,
1635 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1636 " %016llx", device
->sas_address
);
1638 count
+= snprintf(buffer
+ count
, PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1640 pqi_device_type(device
),
1644 if (pqi_is_logical_device(device
)) {
1645 if (device
->devtype
== TYPE_DISK
)
1646 count
+= snprintf(buffer
+ count
,
1647 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1648 "SSDSmartPathCap%c En%c %-12s",
1649 device
->raid_bypass_configured
? '+' : '-',
1650 device
->raid_bypass_enabled
? '+' : '-',
1651 pqi_raid_level_to_string(device
->raid_level
));
1653 count
+= snprintf(buffer
+ count
,
1654 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1655 "AIO%c", device
->aio_enabled
? '+' : '-');
1656 if (device
->devtype
== TYPE_DISK
||
1657 device
->devtype
== TYPE_ZBC
)
1658 count
+= snprintf(buffer
+ count
,
1659 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1660 " qd=%-6d", device
->queue_depth
);
1663 dev_info(&ctrl_info
->pci_dev
->dev
, "%s %s\n", action
, buffer
);
1666 /* Assumes the SCSI device list lock is held. */
1668 static void pqi_scsi_update_device(struct pqi_scsi_dev
*existing_device
,
1669 struct pqi_scsi_dev
*new_device
)
1671 existing_device
->devtype
= new_device
->devtype
;
1672 existing_device
->device_type
= new_device
->device_type
;
1673 existing_device
->bus
= new_device
->bus
;
1674 if (new_device
->target_lun_valid
) {
1675 existing_device
->target
= new_device
->target
;
1676 existing_device
->lun
= new_device
->lun
;
1677 existing_device
->target_lun_valid
= true;
1680 /* By definition, the scsi3addr and wwid fields are already the same. */
1682 existing_device
->is_physical_device
= new_device
->is_physical_device
;
1683 existing_device
->is_external_raid_device
=
1684 new_device
->is_external_raid_device
;
1685 existing_device
->is_expander_smp_device
=
1686 new_device
->is_expander_smp_device
;
1687 existing_device
->aio_enabled
= new_device
->aio_enabled
;
1688 memcpy(existing_device
->vendor
, new_device
->vendor
,
1689 sizeof(existing_device
->vendor
));
1690 memcpy(existing_device
->model
, new_device
->model
,
1691 sizeof(existing_device
->model
));
1692 existing_device
->sas_address
= new_device
->sas_address
;
1693 existing_device
->raid_level
= new_device
->raid_level
;
1694 existing_device
->queue_depth
= new_device
->queue_depth
;
1695 existing_device
->aio_handle
= new_device
->aio_handle
;
1696 existing_device
->volume_status
= new_device
->volume_status
;
1697 existing_device
->active_path_index
= new_device
->active_path_index
;
1698 existing_device
->path_map
= new_device
->path_map
;
1699 existing_device
->bay
= new_device
->bay
;
1700 existing_device
->box_index
= new_device
->box_index
;
1701 existing_device
->phys_box_on_bus
= new_device
->phys_box_on_bus
;
1702 existing_device
->phy_connected_dev_type
=
1703 new_device
->phy_connected_dev_type
;
1704 memcpy(existing_device
->box
, new_device
->box
,
1705 sizeof(existing_device
->box
));
1706 memcpy(existing_device
->phys_connector
, new_device
->phys_connector
,
1707 sizeof(existing_device
->phys_connector
));
1708 existing_device
->offload_to_mirror
= 0;
1709 kfree(existing_device
->raid_map
);
1710 existing_device
->raid_map
= new_device
->raid_map
;
1711 existing_device
->raid_bypass_configured
=
1712 new_device
->raid_bypass_configured
;
1713 existing_device
->raid_bypass_enabled
=
1714 new_device
->raid_bypass_enabled
;
1715 existing_device
->device_offline
= false;
1717 /* To prevent this from being freed later. */
1718 new_device
->raid_map
= NULL
;
1721 static inline void pqi_free_device(struct pqi_scsi_dev
*device
)
1724 kfree(device
->raid_map
);
1730 * Called when exposing a new device to the OS fails in order to re-adjust
1731 * our internal SCSI device list to match the SCSI ML's view.
1734 static inline void pqi_fixup_botched_add(struct pqi_ctrl_info
*ctrl_info
,
1735 struct pqi_scsi_dev
*device
)
1737 unsigned long flags
;
1739 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1740 list_del(&device
->scsi_device_list_entry
);
1741 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1743 /* Allow the device structure to be freed later. */
1744 device
->keep_device
= false;
1747 static inline bool pqi_is_device_added(struct pqi_scsi_dev
*device
)
1749 if (device
->is_expander_smp_device
)
1750 return device
->sas_port
!= NULL
;
1752 return device
->sdev
!= NULL
;
1755 static void pqi_update_device_list(struct pqi_ctrl_info
*ctrl_info
,
1756 struct pqi_scsi_dev
*new_device_list
[], unsigned int num_new_devices
)
1760 unsigned long flags
;
1761 enum pqi_find_result find_result
;
1762 struct pqi_scsi_dev
*device
;
1763 struct pqi_scsi_dev
*next
;
1764 struct pqi_scsi_dev
*matching_device
;
1765 LIST_HEAD(add_list
);
1766 LIST_HEAD(delete_list
);
1769 * The idea here is to do as little work as possible while holding the
1770 * spinlock. That's why we go to great pains to defer anything other
1771 * than updating the internal device list until after we release the
1775 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1777 /* Assume that all devices in the existing list have gone away. */
1778 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1779 scsi_device_list_entry
)
1780 device
->device_gone
= true;
1782 for (i
= 0; i
< num_new_devices
; i
++) {
1783 device
= new_device_list
[i
];
1785 find_result
= pqi_scsi_find_entry(ctrl_info
, device
,
1788 switch (find_result
) {
1791 * The newly found device is already in the existing
1794 device
->new_device
= false;
1795 matching_device
->device_gone
= false;
1796 pqi_scsi_update_device(matching_device
, device
);
1798 case DEVICE_NOT_FOUND
:
1800 * The newly found device is NOT in the existing device
1803 device
->new_device
= true;
1805 case DEVICE_CHANGED
:
1807 * The original device has gone away and we need to add
1810 device
->new_device
= true;
1815 /* Process all devices that have gone away. */
1816 list_for_each_entry_safe(device
, next
, &ctrl_info
->scsi_device_list
,
1817 scsi_device_list_entry
) {
1818 if (device
->device_gone
) {
1819 list_del(&device
->scsi_device_list_entry
);
1820 list_add_tail(&device
->delete_list_entry
, &delete_list
);
1824 /* Process all new devices. */
1825 for (i
= 0; i
< num_new_devices
; i
++) {
1826 device
= new_device_list
[i
];
1827 if (!device
->new_device
)
1829 if (device
->volume_offline
)
1831 list_add_tail(&device
->scsi_device_list_entry
,
1832 &ctrl_info
->scsi_device_list
);
1833 list_add_tail(&device
->add_list_entry
, &add_list
);
1834 /* To prevent this device structure from being freed later. */
1835 device
->keep_device
= true;
1838 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1840 if (pqi_ctrl_in_ofa(ctrl_info
))
1841 pqi_ctrl_ofa_done(ctrl_info
);
1843 /* Remove all devices that have gone away. */
1844 list_for_each_entry_safe(device
, next
, &delete_list
,
1845 delete_list_entry
) {
1846 if (device
->volume_offline
) {
1847 pqi_dev_info(ctrl_info
, "offline", device
);
1848 pqi_show_volume_status(ctrl_info
, device
);
1850 pqi_dev_info(ctrl_info
, "removed", device
);
1852 if (pqi_is_device_added(device
))
1853 pqi_remove_device(ctrl_info
, device
);
1854 list_del(&device
->delete_list_entry
);
1855 pqi_free_device(device
);
1859 * Notify the SCSI ML if the queue depth of any existing device has
1862 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1863 scsi_device_list_entry
) {
1864 if (device
->sdev
&& device
->queue_depth
!=
1865 device
->advertised_queue_depth
) {
1866 device
->advertised_queue_depth
= device
->queue_depth
;
1867 scsi_change_queue_depth(device
->sdev
,
1868 device
->advertised_queue_depth
);
1872 /* Expose any new devices. */
1873 list_for_each_entry_safe(device
, next
, &add_list
, add_list_entry
) {
1874 if (!pqi_is_device_added(device
)) {
1875 pqi_dev_info(ctrl_info
, "added", device
);
1876 rc
= pqi_add_device(ctrl_info
, device
);
1878 dev_warn(&ctrl_info
->pci_dev
->dev
,
1879 "scsi %d:%d:%d:%d addition failed, device not added\n",
1880 ctrl_info
->scsi_host
->host_no
,
1881 device
->bus
, device
->target
,
1883 pqi_fixup_botched_add(ctrl_info
, device
);
1889 static bool pqi_is_supported_device(struct pqi_scsi_dev
*device
)
1893 if (device
->is_expander_smp_device
)
1896 is_supported
= false;
1898 switch (device
->devtype
) {
1902 case TYPE_MEDIUM_CHANGER
:
1903 case TYPE_ENCLOSURE
:
1904 is_supported
= true;
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 (pqi_is_hba_lunid(device
->scsi3addr
))
1914 is_supported
= true;
1918 return is_supported
;
1921 static inline bool pqi_skip_device(u8
*scsi3addr
)
1923 /* Ignore all masked devices. */
1924 if (MASKED_DEVICE(scsi3addr
))
1930 static inline void pqi_mask_device(u8
*scsi3addr
)
1932 scsi3addr
[3] |= 0xc0;
1935 static inline bool pqi_is_device_with_sas_address(struct pqi_scsi_dev
*device
)
1937 if (!device
->is_physical_device
)
1940 if (device
->is_expander_smp_device
)
1943 switch (device
->devtype
) {
1946 case TYPE_ENCLOSURE
:
1953 static inline bool pqi_expose_device(struct pqi_scsi_dev
*device
)
1955 return !device
->is_physical_device
||
1956 !pqi_skip_device(device
->scsi3addr
);
1959 static int pqi_update_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1963 LIST_HEAD(new_device_list_head
);
1964 struct report_phys_lun_extended
*physdev_list
= NULL
;
1965 struct report_log_lun_extended
*logdev_list
= NULL
;
1966 struct report_phys_lun_extended_entry
*phys_lun_ext_entry
;
1967 struct report_log_lun_extended_entry
*log_lun_ext_entry
;
1968 struct bmic_identify_physical_device
*id_phys
= NULL
;
1971 struct pqi_scsi_dev
**new_device_list
= NULL
;
1972 struct pqi_scsi_dev
*device
;
1973 struct pqi_scsi_dev
*next
;
1974 unsigned int num_new_devices
;
1975 unsigned int num_valid_devices
;
1976 bool is_physical_device
;
1978 unsigned int physical_index
;
1979 unsigned int logical_index
;
1980 static char *out_of_memory_msg
=
1981 "failed to allocate memory, device discovery stopped";
1983 rc
= pqi_get_device_lists(ctrl_info
, &physdev_list
, &logdev_list
);
1989 get_unaligned_be32(&physdev_list
->header
.list_length
)
1990 / sizeof(physdev_list
->lun_entries
[0]);
1996 get_unaligned_be32(&logdev_list
->header
.list_length
)
1997 / sizeof(logdev_list
->lun_entries
[0]);
2001 if (num_physicals
) {
2003 * We need this buffer for calls to pqi_get_physical_disk_info()
2004 * below. We allocate it here instead of inside
2005 * pqi_get_physical_disk_info() because it's a fairly large
2008 id_phys
= kmalloc(sizeof(*id_phys
), GFP_KERNEL
);
2010 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
2016 if (pqi_hide_vsep
) {
2017 for (i
= num_physicals
- 1; i
>= 0; i
--) {
2018 phys_lun_ext_entry
=
2019 &physdev_list
->lun_entries
[i
];
2020 if (CISS_GET_DRIVE_NUMBER(
2021 phys_lun_ext_entry
->lunid
) ==
2022 PQI_VSEP_CISS_BTL
) {
2024 phys_lun_ext_entry
->lunid
);
2031 num_new_devices
= num_physicals
+ num_logicals
;
2033 new_device_list
= kmalloc_array(num_new_devices
,
2034 sizeof(*new_device_list
),
2036 if (!new_device_list
) {
2037 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n", out_of_memory_msg
);
2042 for (i
= 0; i
< num_new_devices
; i
++) {
2043 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
2045 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
2050 list_add_tail(&device
->new_device_list_entry
,
2051 &new_device_list_head
);
2055 num_valid_devices
= 0;
2059 for (i
= 0; i
< num_new_devices
; i
++) {
2061 if ((!pqi_expose_ld_first
&& i
< num_physicals
) ||
2062 (pqi_expose_ld_first
&& i
>= num_logicals
)) {
2063 is_physical_device
= true;
2064 phys_lun_ext_entry
=
2065 &physdev_list
->lun_entries
[physical_index
++];
2066 log_lun_ext_entry
= NULL
;
2067 scsi3addr
= phys_lun_ext_entry
->lunid
;
2069 is_physical_device
= false;
2070 phys_lun_ext_entry
= NULL
;
2072 &logdev_list
->lun_entries
[logical_index
++];
2073 scsi3addr
= log_lun_ext_entry
->lunid
;
2076 if (is_physical_device
&& pqi_skip_device(scsi3addr
))
2080 device
= list_next_entry(device
, new_device_list_entry
);
2082 device
= list_first_entry(&new_device_list_head
,
2083 struct pqi_scsi_dev
, new_device_list_entry
);
2085 memcpy(device
->scsi3addr
, scsi3addr
, sizeof(device
->scsi3addr
));
2086 device
->is_physical_device
= is_physical_device
;
2087 if (is_physical_device
) {
2088 if (phys_lun_ext_entry
->device_type
==
2089 SA_DEVICE_TYPE_EXPANDER_SMP
)
2090 device
->is_expander_smp_device
= true;
2092 device
->is_external_raid_device
=
2093 pqi_is_external_raid_addr(scsi3addr
);
2096 /* Gather information about the device. */
2097 rc
= pqi_get_device_info(ctrl_info
, device
);
2098 if (rc
== -ENOMEM
) {
2099 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
2104 if (device
->is_physical_device
)
2105 dev_warn(&ctrl_info
->pci_dev
->dev
,
2106 "obtaining device info failed, skipping physical device %016llx\n",
2108 &phys_lun_ext_entry
->wwid
));
2110 dev_warn(&ctrl_info
->pci_dev
->dev
,
2111 "obtaining device info failed, skipping logical device %08x%08x\n",
2112 *((u32
*)&device
->scsi3addr
),
2113 *((u32
*)&device
->scsi3addr
[4]));
2118 if (!pqi_is_supported_device(device
))
2121 pqi_assign_bus_target_lun(device
);
2123 if (device
->is_physical_device
) {
2124 device
->wwid
= phys_lun_ext_entry
->wwid
;
2125 if ((phys_lun_ext_entry
->device_flags
&
2126 CISS_REPORT_PHYS_DEV_FLAG_AIO_ENABLED
) &&
2127 phys_lun_ext_entry
->aio_handle
) {
2128 device
->aio_enabled
= true;
2129 device
->aio_handle
=
2130 phys_lun_ext_entry
->aio_handle
;
2132 pqi_get_physical_disk_info(ctrl_info
, device
, id_phys
);
2134 memcpy(device
->volume_id
, log_lun_ext_entry
->volume_id
,
2135 sizeof(device
->volume_id
));
2138 if (pqi_is_device_with_sas_address(device
))
2139 device
->sas_address
= get_unaligned_be64(&device
->wwid
);
2141 new_device_list
[num_valid_devices
++] = device
;
2144 pqi_update_device_list(ctrl_info
, new_device_list
, num_valid_devices
);
2147 list_for_each_entry_safe(device
, next
, &new_device_list_head
,
2148 new_device_list_entry
) {
2149 if (device
->keep_device
)
2151 list_del(&device
->new_device_list_entry
);
2152 pqi_free_device(device
);
2155 kfree(new_device_list
);
2156 kfree(physdev_list
);
2163 static void pqi_remove_all_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
2165 unsigned long flags
;
2166 struct pqi_scsi_dev
*device
;
2169 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
2171 device
= list_first_entry_or_null(&ctrl_info
->scsi_device_list
,
2172 struct pqi_scsi_dev
, scsi_device_list_entry
);
2174 list_del(&device
->scsi_device_list_entry
);
2176 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
2182 if (pqi_is_device_added(device
))
2183 pqi_remove_device(ctrl_info
, device
);
2184 pqi_free_device(device
);
2188 static int pqi_scan_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
2192 if (pqi_ctrl_offline(ctrl_info
))
2195 if (!mutex_trylock(&ctrl_info
->scan_mutex
)) {
2196 pqi_schedule_rescan_worker_delayed(ctrl_info
);
2199 rc
= pqi_update_scsi_devices(ctrl_info
);
2201 pqi_schedule_rescan_worker_delayed(ctrl_info
);
2202 mutex_unlock(&ctrl_info
->scan_mutex
);
2208 static void pqi_scan_start(struct Scsi_Host
*shost
)
2210 struct pqi_ctrl_info
*ctrl_info
;
2212 ctrl_info
= shost_to_hba(shost
);
2213 if (pqi_ctrl_in_ofa(ctrl_info
))
2216 pqi_scan_scsi_devices(ctrl_info
);
2219 /* Returns TRUE if scan is finished. */
2221 static int pqi_scan_finished(struct Scsi_Host
*shost
,
2222 unsigned long elapsed_time
)
2224 struct pqi_ctrl_info
*ctrl_info
;
2226 ctrl_info
= shost_priv(shost
);
2228 return !mutex_is_locked(&ctrl_info
->scan_mutex
);
2231 static void pqi_wait_until_scan_finished(struct pqi_ctrl_info
*ctrl_info
)
2233 mutex_lock(&ctrl_info
->scan_mutex
);
2234 mutex_unlock(&ctrl_info
->scan_mutex
);
2237 static void pqi_wait_until_lun_reset_finished(struct pqi_ctrl_info
*ctrl_info
)
2239 mutex_lock(&ctrl_info
->lun_reset_mutex
);
2240 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
2243 static void pqi_wait_until_ofa_finished(struct pqi_ctrl_info
*ctrl_info
)
2245 mutex_lock(&ctrl_info
->ofa_mutex
);
2246 mutex_unlock(&ctrl_info
->ofa_mutex
);
2249 static inline void pqi_set_encryption_info(
2250 struct pqi_encryption_info
*encryption_info
, struct raid_map
*raid_map
,
2253 u32 volume_blk_size
;
2256 * Set the encryption tweak values based on logical block address.
2257 * If the block size is 512, the tweak value is equal to the LBA.
2258 * For other block sizes, tweak value is (LBA * block size) / 512.
2260 volume_blk_size
= get_unaligned_le32(&raid_map
->volume_blk_size
);
2261 if (volume_blk_size
!= 512)
2262 first_block
= (first_block
* volume_blk_size
) / 512;
2264 encryption_info
->data_encryption_key_index
=
2265 get_unaligned_le16(&raid_map
->data_encryption_key_index
);
2266 encryption_info
->encrypt_tweak_lower
= lower_32_bits(first_block
);
2267 encryption_info
->encrypt_tweak_upper
= upper_32_bits(first_block
);
2271 * Attempt to perform RAID bypass mapping for a logical volume I/O.
2274 #define PQI_RAID_BYPASS_INELIGIBLE 1
2276 static int pqi_raid_bypass_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
2277 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
2278 struct pqi_queue_group
*queue_group
)
2280 struct raid_map
*raid_map
;
2281 bool is_write
= false;
2289 u32 first_row_offset
;
2290 u32 last_row_offset
;
2295 u32 r5or6_blocks_per_row
;
2296 u64 r5or6_first_row
;
2298 u32 r5or6_first_row_offset
;
2299 u32 r5or6_last_row_offset
;
2300 u32 r5or6_first_column
;
2301 u32 r5or6_last_column
;
2302 u16 data_disks_per_row
;
2303 u32 total_disks_per_row
;
2304 u16 layout_map_count
;
2316 int offload_to_mirror
;
2317 struct pqi_encryption_info
*encryption_info_ptr
;
2318 struct pqi_encryption_info encryption_info
;
2319 #if BITS_PER_LONG == 32
2323 /* Check for valid opcode, get LBA and block count. */
2324 switch (scmd
->cmnd
[0]) {
2329 first_block
= (u64
)(((scmd
->cmnd
[1] & 0x1f) << 16) |
2330 (scmd
->cmnd
[2] << 8) | scmd
->cmnd
[3]);
2331 block_cnt
= (u32
)scmd
->cmnd
[4];
2339 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2340 block_cnt
= (u32
)get_unaligned_be16(&scmd
->cmnd
[7]);
2346 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2347 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[6]);
2353 first_block
= get_unaligned_be64(&scmd
->cmnd
[2]);
2354 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[10]);
2357 /* Process via normal I/O path. */
2358 return PQI_RAID_BYPASS_INELIGIBLE
;
2361 /* Check for write to non-RAID-0. */
2362 if (is_write
&& device
->raid_level
!= SA_RAID_0
)
2363 return PQI_RAID_BYPASS_INELIGIBLE
;
2365 if (unlikely(block_cnt
== 0))
2366 return PQI_RAID_BYPASS_INELIGIBLE
;
2368 last_block
= first_block
+ block_cnt
- 1;
2369 raid_map
= device
->raid_map
;
2371 /* Check for invalid block or wraparound. */
2372 if (last_block
>= get_unaligned_le64(&raid_map
->volume_blk_cnt
) ||
2373 last_block
< first_block
)
2374 return PQI_RAID_BYPASS_INELIGIBLE
;
2376 data_disks_per_row
= get_unaligned_le16(&raid_map
->data_disks_per_row
);
2377 strip_size
= get_unaligned_le16(&raid_map
->strip_size
);
2378 layout_map_count
= get_unaligned_le16(&raid_map
->layout_map_count
);
2380 /* Calculate stripe information for the request. */
2381 blocks_per_row
= data_disks_per_row
* strip_size
;
2382 #if BITS_PER_LONG == 32
2383 tmpdiv
= first_block
;
2384 do_div(tmpdiv
, blocks_per_row
);
2386 tmpdiv
= last_block
;
2387 do_div(tmpdiv
, blocks_per_row
);
2389 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2390 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2391 tmpdiv
= first_row_offset
;
2392 do_div(tmpdiv
, strip_size
);
2393 first_column
= tmpdiv
;
2394 tmpdiv
= last_row_offset
;
2395 do_div(tmpdiv
, strip_size
);
2396 last_column
= tmpdiv
;
2398 first_row
= first_block
/ blocks_per_row
;
2399 last_row
= last_block
/ blocks_per_row
;
2400 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2401 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2402 first_column
= first_row_offset
/ strip_size
;
2403 last_column
= last_row_offset
/ strip_size
;
2406 /* If this isn't a single row/column then give to the controller. */
2407 if (first_row
!= last_row
|| first_column
!= last_column
)
2408 return PQI_RAID_BYPASS_INELIGIBLE
;
2410 /* Proceeding with driver mapping. */
2411 total_disks_per_row
= data_disks_per_row
+
2412 get_unaligned_le16(&raid_map
->metadata_disks_per_row
);
2413 map_row
= ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2414 get_unaligned_le16(&raid_map
->row_cnt
);
2415 map_index
= (map_row
* total_disks_per_row
) + first_column
;
2418 if (device
->raid_level
== SA_RAID_1
) {
2419 if (device
->offload_to_mirror
)
2420 map_index
+= data_disks_per_row
;
2421 device
->offload_to_mirror
= !device
->offload_to_mirror
;
2422 } else if (device
->raid_level
== SA_RAID_ADM
) {
2425 * Handles N-way mirrors (R1-ADM) and R10 with # of drives
2428 offload_to_mirror
= device
->offload_to_mirror
;
2429 if (offload_to_mirror
== 0) {
2430 /* use physical disk in the first mirrored group. */
2431 map_index
%= data_disks_per_row
;
2435 * Determine mirror group that map_index
2438 current_group
= map_index
/ data_disks_per_row
;
2440 if (offload_to_mirror
!= current_group
) {
2442 layout_map_count
- 1) {
2444 * Select raid index from
2447 map_index
+= data_disks_per_row
;
2451 * Select raid index from first
2454 map_index
%= data_disks_per_row
;
2458 } while (offload_to_mirror
!= current_group
);
2461 /* Set mirror group to use next time. */
2463 (offload_to_mirror
>= layout_map_count
- 1) ?
2464 0 : offload_to_mirror
+ 1;
2465 WARN_ON(offload_to_mirror
>= layout_map_count
);
2466 device
->offload_to_mirror
= offload_to_mirror
;
2468 * Avoid direct use of device->offload_to_mirror within this
2469 * function since multiple threads might simultaneously
2470 * increment it beyond the range of device->layout_map_count -1.
2472 } else if ((device
->raid_level
== SA_RAID_5
||
2473 device
->raid_level
== SA_RAID_6
) && layout_map_count
> 1) {
2475 /* Verify first and last block are in same RAID group */
2476 r5or6_blocks_per_row
= strip_size
* data_disks_per_row
;
2477 stripesize
= r5or6_blocks_per_row
* layout_map_count
;
2478 #if BITS_PER_LONG == 32
2479 tmpdiv
= first_block
;
2480 first_group
= do_div(tmpdiv
, stripesize
);
2481 tmpdiv
= first_group
;
2482 do_div(tmpdiv
, r5or6_blocks_per_row
);
2483 first_group
= tmpdiv
;
2484 tmpdiv
= last_block
;
2485 last_group
= do_div(tmpdiv
, stripesize
);
2486 tmpdiv
= last_group
;
2487 do_div(tmpdiv
, r5or6_blocks_per_row
);
2488 last_group
= tmpdiv
;
2490 first_group
= (first_block
% stripesize
) / r5or6_blocks_per_row
;
2491 last_group
= (last_block
% stripesize
) / r5or6_blocks_per_row
;
2493 if (first_group
!= last_group
)
2494 return PQI_RAID_BYPASS_INELIGIBLE
;
2496 /* Verify request is in a single row of RAID 5/6 */
2497 #if BITS_PER_LONG == 32
2498 tmpdiv
= first_block
;
2499 do_div(tmpdiv
, stripesize
);
2500 first_row
= r5or6_first_row
= r0_first_row
= tmpdiv
;
2501 tmpdiv
= last_block
;
2502 do_div(tmpdiv
, stripesize
);
2503 r5or6_last_row
= r0_last_row
= tmpdiv
;
2505 first_row
= r5or6_first_row
= r0_first_row
=
2506 first_block
/ stripesize
;
2507 r5or6_last_row
= r0_last_row
= last_block
/ stripesize
;
2509 if (r5or6_first_row
!= r5or6_last_row
)
2510 return PQI_RAID_BYPASS_INELIGIBLE
;
2512 /* Verify request is in a single column */
2513 #if BITS_PER_LONG == 32
2514 tmpdiv
= first_block
;
2515 first_row_offset
= do_div(tmpdiv
, stripesize
);
2516 tmpdiv
= first_row_offset
;
2517 first_row_offset
= (u32
)do_div(tmpdiv
, r5or6_blocks_per_row
);
2518 r5or6_first_row_offset
= first_row_offset
;
2519 tmpdiv
= last_block
;
2520 r5or6_last_row_offset
= do_div(tmpdiv
, stripesize
);
2521 tmpdiv
= r5or6_last_row_offset
;
2522 r5or6_last_row_offset
= do_div(tmpdiv
, r5or6_blocks_per_row
);
2523 tmpdiv
= r5or6_first_row_offset
;
2524 do_div(tmpdiv
, strip_size
);
2525 first_column
= r5or6_first_column
= tmpdiv
;
2526 tmpdiv
= r5or6_last_row_offset
;
2527 do_div(tmpdiv
, strip_size
);
2528 r5or6_last_column
= tmpdiv
;
2530 first_row_offset
= r5or6_first_row_offset
=
2531 (u32
)((first_block
% stripesize
) %
2532 r5or6_blocks_per_row
);
2534 r5or6_last_row_offset
=
2535 (u32
)((last_block
% stripesize
) %
2536 r5or6_blocks_per_row
);
2538 first_column
= r5or6_first_row_offset
/ strip_size
;
2539 r5or6_first_column
= first_column
;
2540 r5or6_last_column
= r5or6_last_row_offset
/ strip_size
;
2542 if (r5or6_first_column
!= r5or6_last_column
)
2543 return PQI_RAID_BYPASS_INELIGIBLE
;
2545 /* Request is eligible */
2547 ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2548 get_unaligned_le16(&raid_map
->row_cnt
);
2550 map_index
= (first_group
*
2551 (get_unaligned_le16(&raid_map
->row_cnt
) *
2552 total_disks_per_row
)) +
2553 (map_row
* total_disks_per_row
) + first_column
;
2556 aio_handle
= raid_map
->disk_data
[map_index
].aio_handle
;
2557 disk_block
= get_unaligned_le64(&raid_map
->disk_starting_blk
) +
2558 first_row
* strip_size
+
2559 (first_row_offset
- first_column
* strip_size
);
2560 disk_block_cnt
= block_cnt
;
2562 /* Handle differing logical/physical block sizes. */
2563 if (raid_map
->phys_blk_shift
) {
2564 disk_block
<<= raid_map
->phys_blk_shift
;
2565 disk_block_cnt
<<= raid_map
->phys_blk_shift
;
2568 if (unlikely(disk_block_cnt
> 0xffff))
2569 return PQI_RAID_BYPASS_INELIGIBLE
;
2571 /* Build the new CDB for the physical disk I/O. */
2572 if (disk_block
> 0xffffffff) {
2573 cdb
[0] = is_write
? WRITE_16
: READ_16
;
2575 put_unaligned_be64(disk_block
, &cdb
[2]);
2576 put_unaligned_be32(disk_block_cnt
, &cdb
[10]);
2581 cdb
[0] = is_write
? WRITE_10
: READ_10
;
2583 put_unaligned_be32((u32
)disk_block
, &cdb
[2]);
2585 put_unaligned_be16((u16
)disk_block_cnt
, &cdb
[7]);
2590 if (get_unaligned_le16(&raid_map
->flags
) &
2591 RAID_MAP_ENCRYPTION_ENABLED
) {
2592 pqi_set_encryption_info(&encryption_info
, raid_map
,
2594 encryption_info_ptr
= &encryption_info
;
2596 encryption_info_ptr
= NULL
;
2599 return pqi_aio_submit_io(ctrl_info
, scmd
, aio_handle
,
2600 cdb
, cdb_length
, queue_group
, encryption_info_ptr
, true);
2603 #define PQI_STATUS_IDLE 0x0
2605 #define PQI_CREATE_ADMIN_QUEUE_PAIR 1
2606 #define PQI_DELETE_ADMIN_QUEUE_PAIR 2
2608 #define PQI_DEVICE_STATE_POWER_ON_AND_RESET 0x0
2609 #define PQI_DEVICE_STATE_STATUS_AVAILABLE 0x1
2610 #define PQI_DEVICE_STATE_ALL_REGISTERS_READY 0x2
2611 #define PQI_DEVICE_STATE_ADMIN_QUEUE_PAIR_READY 0x3
2612 #define PQI_DEVICE_STATE_ERROR 0x4
2614 #define PQI_MODE_READY_TIMEOUT_SECS 30
2615 #define PQI_MODE_READY_POLL_INTERVAL_MSECS 1
2617 static int pqi_wait_for_pqi_mode_ready(struct pqi_ctrl_info
*ctrl_info
)
2619 struct pqi_device_registers __iomem
*pqi_registers
;
2620 unsigned long timeout
;
2624 pqi_registers
= ctrl_info
->pqi_registers
;
2625 timeout
= (PQI_MODE_READY_TIMEOUT_SECS
* PQI_HZ
) + jiffies
;
2628 signature
= readq(&pqi_registers
->signature
);
2629 if (memcmp(&signature
, PQI_DEVICE_SIGNATURE
,
2630 sizeof(signature
)) == 0)
2632 if (time_after(jiffies
, timeout
)) {
2633 dev_err(&ctrl_info
->pci_dev
->dev
,
2634 "timed out waiting for PQI signature\n");
2637 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2641 status
= readb(&pqi_registers
->function_and_status_code
);
2642 if (status
== PQI_STATUS_IDLE
)
2644 if (time_after(jiffies
, timeout
)) {
2645 dev_err(&ctrl_info
->pci_dev
->dev
,
2646 "timed out waiting for PQI IDLE\n");
2649 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2653 if (readl(&pqi_registers
->device_status
) ==
2654 PQI_DEVICE_STATE_ALL_REGISTERS_READY
)
2656 if (time_after(jiffies
, timeout
)) {
2657 dev_err(&ctrl_info
->pci_dev
->dev
,
2658 "timed out waiting for PQI all registers ready\n");
2661 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2667 static inline void pqi_aio_path_disabled(struct pqi_io_request
*io_request
)
2669 struct pqi_scsi_dev
*device
;
2671 device
= io_request
->scmd
->device
->hostdata
;
2672 device
->raid_bypass_enabled
= false;
2673 device
->aio_enabled
= false;
2676 static inline void pqi_take_device_offline(struct scsi_device
*sdev
, char *path
)
2678 struct pqi_ctrl_info
*ctrl_info
;
2679 struct pqi_scsi_dev
*device
;
2681 device
= sdev
->hostdata
;
2682 if (device
->device_offline
)
2685 device
->device_offline
= true;
2686 ctrl_info
= shost_to_hba(sdev
->host
);
2687 pqi_schedule_rescan_worker(ctrl_info
);
2688 dev_err(&ctrl_info
->pci_dev
->dev
, "re-scanning %s scsi %d:%d:%d:%d\n",
2689 path
, ctrl_info
->scsi_host
->host_no
, device
->bus
,
2690 device
->target
, device
->lun
);
2693 static void pqi_process_raid_io_error(struct pqi_io_request
*io_request
)
2697 struct scsi_cmnd
*scmd
;
2698 struct pqi_raid_error_info
*error_info
;
2699 size_t sense_data_length
;
2702 struct scsi_sense_hdr sshdr
;
2704 scmd
= io_request
->scmd
;
2708 error_info
= io_request
->error_info
;
2709 scsi_status
= error_info
->status
;
2712 switch (error_info
->data_out_result
) {
2713 case PQI_DATA_IN_OUT_GOOD
:
2715 case PQI_DATA_IN_OUT_UNDERFLOW
:
2717 get_unaligned_le32(&error_info
->data_out_transferred
);
2718 residual_count
= scsi_bufflen(scmd
) - xfer_count
;
2719 scsi_set_resid(scmd
, residual_count
);
2720 if (xfer_count
< scmd
->underflow
)
2721 host_byte
= DID_SOFT_ERROR
;
2723 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
2724 case PQI_DATA_IN_OUT_ABORTED
:
2725 host_byte
= DID_ABORT
;
2727 case PQI_DATA_IN_OUT_TIMEOUT
:
2728 host_byte
= DID_TIME_OUT
;
2730 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
2731 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
2732 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
2733 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
2734 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
2735 case PQI_DATA_IN_OUT_ERROR
:
2736 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
2737 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
2738 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
2739 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
2740 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
2741 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
2742 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
2743 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
2744 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
2745 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
2747 host_byte
= DID_ERROR
;
2751 sense_data_length
= get_unaligned_le16(&error_info
->sense_data_length
);
2752 if (sense_data_length
== 0)
2754 get_unaligned_le16(&error_info
->response_data_length
);
2755 if (sense_data_length
) {
2756 if (sense_data_length
> sizeof(error_info
->data
))
2757 sense_data_length
= sizeof(error_info
->data
);
2759 if (scsi_status
== SAM_STAT_CHECK_CONDITION
&&
2760 scsi_normalize_sense(error_info
->data
,
2761 sense_data_length
, &sshdr
) &&
2762 sshdr
.sense_key
== HARDWARE_ERROR
&&
2763 sshdr
.asc
== 0x3e) {
2764 struct pqi_ctrl_info
*ctrl_info
= shost_to_hba(scmd
->device
->host
);
2765 struct pqi_scsi_dev
*device
= scmd
->device
->hostdata
;
2767 switch (sshdr
.ascq
) {
2768 case 0x1: /* LOGICAL UNIT FAILURE */
2769 if (printk_ratelimit())
2770 scmd_printk(KERN_ERR
, scmd
, "received 'logical unit failure' from controller for scsi %d:%d:%d:%d\n",
2771 ctrl_info
->scsi_host
->host_no
, device
->bus
, device
->target
, device
->lun
);
2772 pqi_take_device_offline(scmd
->device
, "RAID");
2773 host_byte
= DID_NO_CONNECT
;
2776 default: /* See http://www.t10.org/lists/asc-num.htm#ASC_3E */
2777 if (printk_ratelimit())
2778 scmd_printk(KERN_ERR
, scmd
, "received unhandled error %d from controller for scsi %d:%d:%d:%d\n",
2779 sshdr
.ascq
, ctrl_info
->scsi_host
->host_no
, device
->bus
, device
->target
, device
->lun
);
2784 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2785 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2786 memcpy(scmd
->sense_buffer
, error_info
->data
,
2790 scmd
->result
= scsi_status
;
2791 set_host_byte(scmd
, host_byte
);
2794 static void pqi_process_aio_io_error(struct pqi_io_request
*io_request
)
2798 struct scsi_cmnd
*scmd
;
2799 struct pqi_aio_error_info
*error_info
;
2800 size_t sense_data_length
;
2803 bool device_offline
;
2805 scmd
= io_request
->scmd
;
2806 error_info
= io_request
->error_info
;
2808 sense_data_length
= 0;
2809 device_offline
= false;
2811 switch (error_info
->service_response
) {
2812 case PQI_AIO_SERV_RESPONSE_COMPLETE
:
2813 scsi_status
= error_info
->status
;
2815 case PQI_AIO_SERV_RESPONSE_FAILURE
:
2816 switch (error_info
->status
) {
2817 case PQI_AIO_STATUS_IO_ABORTED
:
2818 scsi_status
= SAM_STAT_TASK_ABORTED
;
2820 case PQI_AIO_STATUS_UNDERRUN
:
2821 scsi_status
= SAM_STAT_GOOD
;
2822 residual_count
= get_unaligned_le32(
2823 &error_info
->residual_count
);
2824 scsi_set_resid(scmd
, residual_count
);
2825 xfer_count
= scsi_bufflen(scmd
) - residual_count
;
2826 if (xfer_count
< scmd
->underflow
)
2827 host_byte
= DID_SOFT_ERROR
;
2829 case PQI_AIO_STATUS_OVERRUN
:
2830 scsi_status
= SAM_STAT_GOOD
;
2832 case PQI_AIO_STATUS_AIO_PATH_DISABLED
:
2833 pqi_aio_path_disabled(io_request
);
2834 scsi_status
= SAM_STAT_GOOD
;
2835 io_request
->status
= -EAGAIN
;
2837 case PQI_AIO_STATUS_NO_PATH_TO_DEVICE
:
2838 case PQI_AIO_STATUS_INVALID_DEVICE
:
2839 if (!io_request
->raid_bypass
) {
2840 device_offline
= true;
2841 pqi_take_device_offline(scmd
->device
, "AIO");
2842 host_byte
= DID_NO_CONNECT
;
2844 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2846 case PQI_AIO_STATUS_IO_ERROR
:
2848 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2852 case PQI_AIO_SERV_RESPONSE_TMF_COMPLETE
:
2853 case PQI_AIO_SERV_RESPONSE_TMF_SUCCEEDED
:
2854 scsi_status
= SAM_STAT_GOOD
;
2856 case PQI_AIO_SERV_RESPONSE_TMF_REJECTED
:
2857 case PQI_AIO_SERV_RESPONSE_TMF_INCORRECT_LUN
:
2859 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2863 if (error_info
->data_present
) {
2865 get_unaligned_le16(&error_info
->data_length
);
2866 if (sense_data_length
) {
2867 if (sense_data_length
> sizeof(error_info
->data
))
2868 sense_data_length
= sizeof(error_info
->data
);
2869 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2870 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2871 memcpy(scmd
->sense_buffer
, error_info
->data
,
2876 if (device_offline
&& sense_data_length
== 0)
2877 scsi_build_sense_buffer(0, scmd
->sense_buffer
, HARDWARE_ERROR
,
2880 scmd
->result
= scsi_status
;
2881 set_host_byte(scmd
, host_byte
);
2884 static void pqi_process_io_error(unsigned int iu_type
,
2885 struct pqi_io_request
*io_request
)
2888 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2889 pqi_process_raid_io_error(io_request
);
2891 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2892 pqi_process_aio_io_error(io_request
);
2897 static int pqi_interpret_task_management_response(
2898 struct pqi_task_management_response
*response
)
2902 switch (response
->response_code
) {
2903 case SOP_TMF_COMPLETE
:
2904 case SOP_TMF_FUNCTION_SUCCEEDED
:
2907 case SOP_TMF_REJECTED
:
2918 static unsigned int pqi_process_io_intr(struct pqi_ctrl_info
*ctrl_info
,
2919 struct pqi_queue_group
*queue_group
)
2921 unsigned int num_responses
;
2924 struct pqi_io_request
*io_request
;
2925 struct pqi_io_response
*response
;
2929 oq_ci
= queue_group
->oq_ci_copy
;
2932 oq_pi
= readl(queue_group
->oq_pi
);
2937 response
= queue_group
->oq_element_array
+
2938 (oq_ci
* PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
);
2940 request_id
= get_unaligned_le16(&response
->request_id
);
2941 WARN_ON(request_id
>= ctrl_info
->max_io_slots
);
2943 io_request
= &ctrl_info
->io_request_pool
[request_id
];
2944 WARN_ON(atomic_read(&io_request
->refcount
) == 0);
2946 switch (response
->header
.iu_type
) {
2947 case PQI_RESPONSE_IU_RAID_PATH_IO_SUCCESS
:
2948 case PQI_RESPONSE_IU_AIO_PATH_IO_SUCCESS
:
2949 if (io_request
->scmd
)
2950 io_request
->scmd
->result
= 0;
2952 case PQI_RESPONSE_IU_GENERAL_MANAGEMENT
:
2954 case PQI_RESPONSE_IU_VENDOR_GENERAL
:
2955 io_request
->status
=
2957 &((struct pqi_vendor_general_response
*)
2960 case PQI_RESPONSE_IU_TASK_MANAGEMENT
:
2961 io_request
->status
=
2962 pqi_interpret_task_management_response(
2965 case PQI_RESPONSE_IU_AIO_PATH_DISABLED
:
2966 pqi_aio_path_disabled(io_request
);
2967 io_request
->status
= -EAGAIN
;
2969 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2970 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2971 io_request
->error_info
= ctrl_info
->error_buffer
+
2972 (get_unaligned_le16(&response
->error_index
) *
2973 PQI_ERROR_BUFFER_ELEMENT_LENGTH
);
2974 pqi_process_io_error(response
->header
.iu_type
,
2978 dev_err(&ctrl_info
->pci_dev
->dev
,
2979 "unexpected IU type: 0x%x\n",
2980 response
->header
.iu_type
);
2984 io_request
->io_complete_callback(io_request
,
2985 io_request
->context
);
2988 * Note that the I/O request structure CANNOT BE TOUCHED after
2989 * returning from the I/O completion callback!
2992 oq_ci
= (oq_ci
+ 1) % ctrl_info
->num_elements_per_oq
;
2995 if (num_responses
) {
2996 queue_group
->oq_ci_copy
= oq_ci
;
2997 writel(oq_ci
, queue_group
->oq_ci
);
3000 return num_responses
;
3003 static inline unsigned int pqi_num_elements_free(unsigned int pi
,
3004 unsigned int ci
, unsigned int elements_in_queue
)
3006 unsigned int num_elements_used
;
3009 num_elements_used
= pi
- ci
;
3011 num_elements_used
= elements_in_queue
- ci
+ pi
;
3013 return elements_in_queue
- num_elements_used
- 1;
3016 static void pqi_send_event_ack(struct pqi_ctrl_info
*ctrl_info
,
3017 struct pqi_event_acknowledge_request
*iu
, size_t iu_length
)
3021 unsigned long flags
;
3023 struct pqi_queue_group
*queue_group
;
3025 queue_group
= &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
];
3026 put_unaligned_le16(queue_group
->oq_id
, &iu
->header
.response_queue_id
);
3029 spin_lock_irqsave(&queue_group
->submit_lock
[RAID_PATH
], flags
);
3031 iq_pi
= queue_group
->iq_pi_copy
[RAID_PATH
];
3032 iq_ci
= readl(queue_group
->iq_ci
[RAID_PATH
]);
3034 if (pqi_num_elements_free(iq_pi
, iq_ci
,
3035 ctrl_info
->num_elements_per_iq
))
3038 spin_unlock_irqrestore(
3039 &queue_group
->submit_lock
[RAID_PATH
], flags
);
3041 if (pqi_ctrl_offline(ctrl_info
))
3045 next_element
= queue_group
->iq_element_array
[RAID_PATH
] +
3046 (iq_pi
* PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3048 memcpy(next_element
, iu
, iu_length
);
3050 iq_pi
= (iq_pi
+ 1) % ctrl_info
->num_elements_per_iq
;
3051 queue_group
->iq_pi_copy
[RAID_PATH
] = iq_pi
;
3054 * This write notifies the controller that an IU is available to be
3057 writel(iq_pi
, queue_group
->iq_pi
[RAID_PATH
]);
3059 spin_unlock_irqrestore(&queue_group
->submit_lock
[RAID_PATH
], flags
);
3062 static void pqi_acknowledge_event(struct pqi_ctrl_info
*ctrl_info
,
3063 struct pqi_event
*event
)
3065 struct pqi_event_acknowledge_request request
;
3067 memset(&request
, 0, sizeof(request
));
3069 request
.header
.iu_type
= PQI_REQUEST_IU_ACKNOWLEDGE_VENDOR_EVENT
;
3070 put_unaligned_le16(sizeof(request
) - PQI_REQUEST_HEADER_LENGTH
,
3071 &request
.header
.iu_length
);
3072 request
.event_type
= event
->event_type
;
3073 request
.event_id
= event
->event_id
;
3074 request
.additional_event_id
= event
->additional_event_id
;
3076 pqi_send_event_ack(ctrl_info
, &request
, sizeof(request
));
3079 #define PQI_SOFT_RESET_STATUS_TIMEOUT_SECS 30
3080 #define PQI_SOFT_RESET_STATUS_POLL_INTERVAL_SECS 1
3082 static enum pqi_soft_reset_status
pqi_poll_for_soft_reset_status(
3083 struct pqi_ctrl_info
*ctrl_info
)
3085 unsigned long timeout
;
3088 timeout
= (PQI_SOFT_RESET_STATUS_TIMEOUT_SECS
* PQI_HZ
) + jiffies
;
3091 status
= pqi_read_soft_reset_status(ctrl_info
);
3092 if (status
& PQI_SOFT_RESET_INITIATE
)
3093 return RESET_INITIATE_DRIVER
;
3095 if (status
& PQI_SOFT_RESET_ABORT
)
3098 if (time_after(jiffies
, timeout
)) {
3099 dev_err(&ctrl_info
->pci_dev
->dev
,
3100 "timed out waiting for soft reset status\n");
3101 return RESET_TIMEDOUT
;
3104 if (!sis_is_firmware_running(ctrl_info
))
3105 return RESET_NORESPONSE
;
3107 ssleep(PQI_SOFT_RESET_STATUS_POLL_INTERVAL_SECS
);
3111 static void pqi_process_soft_reset(struct pqi_ctrl_info
*ctrl_info
,
3112 enum pqi_soft_reset_status reset_status
)
3116 switch (reset_status
) {
3117 case RESET_INITIATE_DRIVER
:
3119 case RESET_TIMEDOUT
:
3120 dev_info(&ctrl_info
->pci_dev
->dev
,
3121 "resetting controller %u\n", ctrl_info
->ctrl_id
);
3122 sis_soft_reset(ctrl_info
);
3124 case RESET_INITIATE_FIRMWARE
:
3125 rc
= pqi_ofa_ctrl_restart(ctrl_info
);
3126 pqi_ofa_free_host_buffer(ctrl_info
);
3127 dev_info(&ctrl_info
->pci_dev
->dev
,
3128 "Online Firmware Activation for controller %u: %s\n",
3129 ctrl_info
->ctrl_id
, rc
== 0 ? "SUCCESS" : "FAILED");
3132 pqi_ofa_ctrl_unquiesce(ctrl_info
);
3133 dev_info(&ctrl_info
->pci_dev
->dev
,
3134 "Online Firmware Activation for controller %u: %s\n",
3135 ctrl_info
->ctrl_id
, "ABORTED");
3137 case RESET_NORESPONSE
:
3138 pqi_ofa_free_host_buffer(ctrl_info
);
3139 pqi_take_ctrl_offline(ctrl_info
);
3144 static void pqi_ofa_process_event(struct pqi_ctrl_info
*ctrl_info
,
3145 struct pqi_event
*event
)
3148 enum pqi_soft_reset_status status
;
3150 event_id
= get_unaligned_le16(&event
->event_id
);
3152 mutex_lock(&ctrl_info
->ofa_mutex
);
3154 if (event_id
== PQI_EVENT_OFA_QUIESCE
) {
3155 dev_info(&ctrl_info
->pci_dev
->dev
,
3156 "Received Online Firmware Activation quiesce event for controller %u\n",
3157 ctrl_info
->ctrl_id
);
3158 pqi_ofa_ctrl_quiesce(ctrl_info
);
3159 pqi_acknowledge_event(ctrl_info
, event
);
3160 if (ctrl_info
->soft_reset_handshake_supported
) {
3161 status
= pqi_poll_for_soft_reset_status(ctrl_info
);
3162 pqi_process_soft_reset(ctrl_info
, status
);
3164 pqi_process_soft_reset(ctrl_info
,
3165 RESET_INITIATE_FIRMWARE
);
3168 } else if (event_id
== PQI_EVENT_OFA_MEMORY_ALLOCATION
) {
3169 pqi_acknowledge_event(ctrl_info
, event
);
3170 pqi_ofa_setup_host_buffer(ctrl_info
,
3171 le32_to_cpu(event
->ofa_bytes_requested
));
3172 pqi_ofa_host_memory_update(ctrl_info
);
3173 } else if (event_id
== PQI_EVENT_OFA_CANCELLED
) {
3174 pqi_ofa_free_host_buffer(ctrl_info
);
3175 pqi_acknowledge_event(ctrl_info
, event
);
3176 dev_info(&ctrl_info
->pci_dev
->dev
,
3177 "Online Firmware Activation(%u) cancel reason : %u\n",
3178 ctrl_info
->ctrl_id
, event
->ofa_cancel_reason
);
3181 mutex_unlock(&ctrl_info
->ofa_mutex
);
3184 static void pqi_event_worker(struct work_struct
*work
)
3187 struct pqi_ctrl_info
*ctrl_info
;
3188 struct pqi_event
*event
;
3190 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, event_work
);
3192 pqi_ctrl_busy(ctrl_info
);
3193 pqi_wait_if_ctrl_blocked(ctrl_info
, NO_TIMEOUT
);
3194 if (pqi_ctrl_offline(ctrl_info
))
3197 pqi_schedule_rescan_worker_delayed(ctrl_info
);
3199 event
= ctrl_info
->events
;
3200 for (i
= 0; i
< PQI_NUM_SUPPORTED_EVENTS
; i
++) {
3201 if (event
->pending
) {
3202 event
->pending
= false;
3203 if (event
->event_type
== PQI_EVENT_TYPE_OFA
) {
3204 pqi_ctrl_unbusy(ctrl_info
);
3205 pqi_ofa_process_event(ctrl_info
, event
);
3208 pqi_acknowledge_event(ctrl_info
, event
);
3214 pqi_ctrl_unbusy(ctrl_info
);
3217 #define PQI_HEARTBEAT_TIMER_INTERVAL (10 * PQI_HZ)
3219 static void pqi_heartbeat_timer_handler(struct timer_list
*t
)
3222 u32 heartbeat_count
;
3223 struct pqi_ctrl_info
*ctrl_info
= from_timer(ctrl_info
, t
,
3226 pqi_check_ctrl_health(ctrl_info
);
3227 if (pqi_ctrl_offline(ctrl_info
))
3230 num_interrupts
= atomic_read(&ctrl_info
->num_interrupts
);
3231 heartbeat_count
= pqi_read_heartbeat_counter(ctrl_info
);
3233 if (num_interrupts
== ctrl_info
->previous_num_interrupts
) {
3234 if (heartbeat_count
== ctrl_info
->previous_heartbeat_count
) {
3235 dev_err(&ctrl_info
->pci_dev
->dev
,
3236 "no heartbeat detected - last heartbeat count: %u\n",
3238 pqi_take_ctrl_offline(ctrl_info
);
3242 ctrl_info
->previous_num_interrupts
= num_interrupts
;
3245 ctrl_info
->previous_heartbeat_count
= heartbeat_count
;
3246 mod_timer(&ctrl_info
->heartbeat_timer
,
3247 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
);
3250 static void pqi_start_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
3252 if (!ctrl_info
->heartbeat_counter
)
3255 ctrl_info
->previous_num_interrupts
=
3256 atomic_read(&ctrl_info
->num_interrupts
);
3257 ctrl_info
->previous_heartbeat_count
=
3258 pqi_read_heartbeat_counter(ctrl_info
);
3260 ctrl_info
->heartbeat_timer
.expires
=
3261 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
;
3262 add_timer(&ctrl_info
->heartbeat_timer
);
3265 static inline void pqi_stop_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
3267 del_timer_sync(&ctrl_info
->heartbeat_timer
);
3270 static inline int pqi_event_type_to_event_index(unsigned int event_type
)
3274 for (index
= 0; index
< ARRAY_SIZE(pqi_supported_event_types
); index
++)
3275 if (event_type
== pqi_supported_event_types
[index
])
3281 static inline bool pqi_is_supported_event(unsigned int event_type
)
3283 return pqi_event_type_to_event_index(event_type
) != -1;
3286 static void pqi_ofa_capture_event_payload(struct pqi_event
*event
,
3287 struct pqi_event_response
*response
)
3291 event_id
= get_unaligned_le16(&event
->event_id
);
3293 if (event
->event_type
== PQI_EVENT_TYPE_OFA
) {
3294 if (event_id
== PQI_EVENT_OFA_MEMORY_ALLOCATION
) {
3295 event
->ofa_bytes_requested
=
3296 response
->data
.ofa_memory_allocation
.bytes_requested
;
3297 } else if (event_id
== PQI_EVENT_OFA_CANCELLED
) {
3298 event
->ofa_cancel_reason
=
3299 response
->data
.ofa_cancelled
.reason
;
3304 static unsigned int pqi_process_event_intr(struct pqi_ctrl_info
*ctrl_info
)
3306 unsigned int num_events
;
3309 struct pqi_event_queue
*event_queue
;
3310 struct pqi_event_response
*response
;
3311 struct pqi_event
*event
;
3314 event_queue
= &ctrl_info
->event_queue
;
3316 oq_ci
= event_queue
->oq_ci_copy
;
3319 oq_pi
= readl(event_queue
->oq_pi
);
3324 response
= event_queue
->oq_element_array
+
3325 (oq_ci
* PQI_EVENT_OQ_ELEMENT_LENGTH
);
3328 pqi_event_type_to_event_index(response
->event_type
);
3330 if (event_index
>= 0) {
3331 if (response
->request_acknowlege
) {
3332 event
= &ctrl_info
->events
[event_index
];
3333 event
->pending
= true;
3334 event
->event_type
= response
->event_type
;
3335 event
->event_id
= response
->event_id
;
3336 event
->additional_event_id
=
3337 response
->additional_event_id
;
3338 pqi_ofa_capture_event_payload(event
, response
);
3342 oq_ci
= (oq_ci
+ 1) % PQI_NUM_EVENT_QUEUE_ELEMENTS
;
3346 event_queue
->oq_ci_copy
= oq_ci
;
3347 writel(oq_ci
, event_queue
->oq_ci
);
3348 schedule_work(&ctrl_info
->event_work
);
3354 #define PQI_LEGACY_INTX_MASK 0x1
3356 static inline void pqi_configure_legacy_intx(struct pqi_ctrl_info
*ctrl_info
,
3360 struct pqi_device_registers __iomem
*pqi_registers
;
3361 volatile void __iomem
*register_addr
;
3363 pqi_registers
= ctrl_info
->pqi_registers
;
3366 register_addr
= &pqi_registers
->legacy_intx_mask_clear
;
3368 register_addr
= &pqi_registers
->legacy_intx_mask_set
;
3370 intx_mask
= readl(register_addr
);
3371 intx_mask
|= PQI_LEGACY_INTX_MASK
;
3372 writel(intx_mask
, register_addr
);
3375 static void pqi_change_irq_mode(struct pqi_ctrl_info
*ctrl_info
,
3376 enum pqi_irq_mode new_mode
)
3378 switch (ctrl_info
->irq_mode
) {
3384 pqi_configure_legacy_intx(ctrl_info
, true);
3385 sis_enable_intx(ctrl_info
);
3394 pqi_configure_legacy_intx(ctrl_info
, false);
3395 sis_enable_msix(ctrl_info
);
3400 pqi_configure_legacy_intx(ctrl_info
, false);
3407 sis_enable_msix(ctrl_info
);
3410 pqi_configure_legacy_intx(ctrl_info
, true);
3411 sis_enable_intx(ctrl_info
);
3419 ctrl_info
->irq_mode
= new_mode
;
3422 #define PQI_LEGACY_INTX_PENDING 0x1
3424 static inline bool pqi_is_valid_irq(struct pqi_ctrl_info
*ctrl_info
)
3429 switch (ctrl_info
->irq_mode
) {
3435 readl(&ctrl_info
->pqi_registers
->legacy_intx_status
);
3436 if (intx_status
& PQI_LEGACY_INTX_PENDING
)
3450 static irqreturn_t
pqi_irq_handler(int irq
, void *data
)
3452 struct pqi_ctrl_info
*ctrl_info
;
3453 struct pqi_queue_group
*queue_group
;
3454 unsigned int num_responses_handled
;
3457 ctrl_info
= queue_group
->ctrl_info
;
3459 if (!pqi_is_valid_irq(ctrl_info
))
3462 num_responses_handled
= pqi_process_io_intr(ctrl_info
, queue_group
);
3464 if (irq
== ctrl_info
->event_irq
)
3465 num_responses_handled
+= pqi_process_event_intr(ctrl_info
);
3467 if (num_responses_handled
)
3468 atomic_inc(&ctrl_info
->num_interrupts
);
3470 pqi_start_io(ctrl_info
, queue_group
, RAID_PATH
, NULL
);
3471 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;
5383 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5386 if (device
->aio_enabled
)
5387 rc
= pqi_aio_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5390 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5395 pqi_ctrl_unbusy(ctrl_info
);
5397 atomic_dec(&device
->scsi_cmds_outstanding
);
5402 static int pqi_wait_until_queued_io_drained(struct pqi_ctrl_info
*ctrl_info
,
5403 struct pqi_queue_group
*queue_group
)
5406 unsigned long flags
;
5409 for (path
= 0; path
< 2; path
++) {
5412 &queue_group
->submit_lock
[path
], flags
);
5414 list_empty(&queue_group
->request_list
[path
]);
5415 spin_unlock_irqrestore(
5416 &queue_group
->submit_lock
[path
], flags
);
5419 pqi_check_ctrl_health(ctrl_info
);
5420 if (pqi_ctrl_offline(ctrl_info
))
5422 usleep_range(1000, 2000);
5429 static int pqi_wait_until_inbound_queues_empty(struct pqi_ctrl_info
*ctrl_info
)
5434 struct pqi_queue_group
*queue_group
;
5438 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5439 queue_group
= &ctrl_info
->queue_groups
[i
];
5441 rc
= pqi_wait_until_queued_io_drained(ctrl_info
, queue_group
);
5445 for (path
= 0; path
< 2; path
++) {
5446 iq_pi
= queue_group
->iq_pi_copy
[path
];
5449 iq_ci
= readl(queue_group
->iq_ci
[path
]);
5452 pqi_check_ctrl_health(ctrl_info
);
5453 if (pqi_ctrl_offline(ctrl_info
))
5455 usleep_range(1000, 2000);
5463 static void pqi_fail_io_queued_for_device(struct pqi_ctrl_info
*ctrl_info
,
5464 struct pqi_scsi_dev
*device
)
5468 struct pqi_queue_group
*queue_group
;
5469 unsigned long flags
;
5470 struct pqi_io_request
*io_request
;
5471 struct pqi_io_request
*next
;
5472 struct scsi_cmnd
*scmd
;
5473 struct pqi_scsi_dev
*scsi_device
;
5475 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5476 queue_group
= &ctrl_info
->queue_groups
[i
];
5478 for (path
= 0; path
< 2; path
++) {
5480 &queue_group
->submit_lock
[path
], flags
);
5482 list_for_each_entry_safe(io_request
, next
,
5483 &queue_group
->request_list
[path
],
5484 request_list_entry
) {
5485 scmd
= io_request
->scmd
;
5489 scsi_device
= scmd
->device
->hostdata
;
5490 if (scsi_device
!= device
)
5493 list_del(&io_request
->request_list_entry
);
5494 set_host_byte(scmd
, DID_RESET
);
5495 pqi_scsi_done(scmd
);
5498 spin_unlock_irqrestore(
5499 &queue_group
->submit_lock
[path
], flags
);
5504 static void pqi_fail_io_queued_for_all_devices(struct pqi_ctrl_info
*ctrl_info
)
5508 struct pqi_queue_group
*queue_group
;
5509 unsigned long flags
;
5510 struct pqi_io_request
*io_request
;
5511 struct pqi_io_request
*next
;
5512 struct scsi_cmnd
*scmd
;
5514 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5515 queue_group
= &ctrl_info
->queue_groups
[i
];
5517 for (path
= 0; path
< 2; path
++) {
5518 spin_lock_irqsave(&queue_group
->submit_lock
[path
],
5521 list_for_each_entry_safe(io_request
, next
,
5522 &queue_group
->request_list
[path
],
5523 request_list_entry
) {
5525 scmd
= io_request
->scmd
;
5529 list_del(&io_request
->request_list_entry
);
5530 set_host_byte(scmd
, DID_RESET
);
5531 pqi_scsi_done(scmd
);
5534 spin_unlock_irqrestore(
5535 &queue_group
->submit_lock
[path
], flags
);
5540 static int pqi_device_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
,
5541 struct pqi_scsi_dev
*device
, unsigned long timeout_secs
)
5543 unsigned long timeout
;
5545 timeout
= (timeout_secs
* PQI_HZ
) + jiffies
;
5547 while (atomic_read(&device
->scsi_cmds_outstanding
)) {
5548 pqi_check_ctrl_health(ctrl_info
);
5549 if (pqi_ctrl_offline(ctrl_info
))
5551 if (timeout_secs
!= NO_TIMEOUT
) {
5552 if (time_after(jiffies
, timeout
)) {
5553 dev_err(&ctrl_info
->pci_dev
->dev
,
5554 "timed out waiting for pending IO\n");
5558 usleep_range(1000, 2000);
5564 static int pqi_ctrl_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
,
5565 unsigned long timeout_secs
)
5568 unsigned long flags
;
5569 unsigned long timeout
;
5570 struct pqi_scsi_dev
*device
;
5572 timeout
= (timeout_secs
* PQI_HZ
) + jiffies
;
5576 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5577 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
5578 scsi_device_list_entry
) {
5579 if (atomic_read(&device
->scsi_cmds_outstanding
)) {
5584 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
5590 pqi_check_ctrl_health(ctrl_info
);
5591 if (pqi_ctrl_offline(ctrl_info
))
5594 if (timeout_secs
!= NO_TIMEOUT
) {
5595 if (time_after(jiffies
, timeout
)) {
5596 dev_err(&ctrl_info
->pci_dev
->dev
,
5597 "timed out waiting for pending IO\n");
5601 usleep_range(1000, 2000);
5607 static int pqi_ctrl_wait_for_pending_sync_cmds(struct pqi_ctrl_info
*ctrl_info
)
5609 while (atomic_read(&ctrl_info
->sync_cmds_outstanding
)) {
5610 pqi_check_ctrl_health(ctrl_info
);
5611 if (pqi_ctrl_offline(ctrl_info
))
5613 usleep_range(1000, 2000);
5619 static void pqi_lun_reset_complete(struct pqi_io_request
*io_request
,
5622 struct completion
*waiting
= context
;
5627 #define PQI_LUN_RESET_TIMEOUT_SECS 30
5628 #define PQI_LUN_RESET_POLL_COMPLETION_SECS 10
5630 static int pqi_wait_for_lun_reset_completion(struct pqi_ctrl_info
*ctrl_info
,
5631 struct pqi_scsi_dev
*device
, struct completion
*wait
)
5636 if (wait_for_completion_io_timeout(wait
,
5637 PQI_LUN_RESET_POLL_COMPLETION_SECS
* PQI_HZ
)) {
5642 pqi_check_ctrl_health(ctrl_info
);
5643 if (pqi_ctrl_offline(ctrl_info
)) {
5652 static int pqi_lun_reset(struct pqi_ctrl_info
*ctrl_info
,
5653 struct pqi_scsi_dev
*device
)
5656 struct pqi_io_request
*io_request
;
5657 DECLARE_COMPLETION_ONSTACK(wait
);
5658 struct pqi_task_management_request
*request
;
5660 io_request
= pqi_alloc_io_request(ctrl_info
);
5661 io_request
->io_complete_callback
= pqi_lun_reset_complete
;
5662 io_request
->context
= &wait
;
5664 request
= io_request
->iu
;
5665 memset(request
, 0, sizeof(*request
));
5667 request
->header
.iu_type
= PQI_REQUEST_IU_TASK_MANAGEMENT
;
5668 put_unaligned_le16(sizeof(*request
) - PQI_REQUEST_HEADER_LENGTH
,
5669 &request
->header
.iu_length
);
5670 put_unaligned_le16(io_request
->index
, &request
->request_id
);
5671 memcpy(request
->lun_number
, device
->scsi3addr
,
5672 sizeof(request
->lun_number
));
5673 request
->task_management_function
= SOP_TASK_MANAGEMENT_LUN_RESET
;
5674 if (ctrl_info
->tmf_iu_timeout_supported
)
5675 put_unaligned_le16(PQI_LUN_RESET_TIMEOUT_SECS
,
5678 pqi_start_io(ctrl_info
,
5679 &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
], RAID_PATH
,
5682 rc
= pqi_wait_for_lun_reset_completion(ctrl_info
, device
, &wait
);
5684 rc
= io_request
->status
;
5686 pqi_free_io_request(io_request
);
5691 /* Performs a reset at the LUN level. */
5693 #define PQI_LUN_RESET_RETRIES 3
5694 #define PQI_LUN_RESET_RETRY_INTERVAL_MSECS 10000
5695 #define PQI_LUN_RESET_PENDING_IO_TIMEOUT_SECS 120
5697 static int _pqi_device_reset(struct pqi_ctrl_info
*ctrl_info
,
5698 struct pqi_scsi_dev
*device
)
5701 unsigned int retries
;
5702 unsigned long timeout_secs
;
5704 for (retries
= 0;;) {
5705 rc
= pqi_lun_reset(ctrl_info
, device
);
5706 if (rc
== 0 || ++retries
> PQI_LUN_RESET_RETRIES
)
5708 msleep(PQI_LUN_RESET_RETRY_INTERVAL_MSECS
);
5711 timeout_secs
= rc
? PQI_LUN_RESET_PENDING_IO_TIMEOUT_SECS
: NO_TIMEOUT
;
5713 rc
|= pqi_device_wait_for_pending_io(ctrl_info
, device
, timeout_secs
);
5715 return rc
== 0 ? SUCCESS
: FAILED
;
5718 static int pqi_device_reset(struct pqi_ctrl_info
*ctrl_info
,
5719 struct pqi_scsi_dev
*device
)
5723 mutex_lock(&ctrl_info
->lun_reset_mutex
);
5725 pqi_ctrl_block_requests(ctrl_info
);
5726 pqi_ctrl_wait_until_quiesced(ctrl_info
);
5727 pqi_fail_io_queued_for_device(ctrl_info
, device
);
5728 rc
= pqi_wait_until_inbound_queues_empty(ctrl_info
);
5729 pqi_device_reset_start(device
);
5730 pqi_ctrl_unblock_requests(ctrl_info
);
5735 rc
= _pqi_device_reset(ctrl_info
, device
);
5737 pqi_device_reset_done(device
);
5739 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
5744 static int pqi_eh_device_reset_handler(struct scsi_cmnd
*scmd
)
5747 struct Scsi_Host
*shost
;
5748 struct pqi_ctrl_info
*ctrl_info
;
5749 struct pqi_scsi_dev
*device
;
5751 shost
= scmd
->device
->host
;
5752 ctrl_info
= shost_to_hba(shost
);
5753 device
= scmd
->device
->hostdata
;
5755 dev_err(&ctrl_info
->pci_dev
->dev
,
5756 "resetting scsi %d:%d:%d:%d\n",
5757 shost
->host_no
, device
->bus
, device
->target
, device
->lun
);
5759 pqi_check_ctrl_health(ctrl_info
);
5760 if (pqi_ctrl_offline(ctrl_info
) ||
5761 pqi_device_reset_blocked(ctrl_info
)) {
5766 pqi_wait_until_ofa_finished(ctrl_info
);
5768 atomic_inc(&ctrl_info
->sync_cmds_outstanding
);
5769 rc
= pqi_device_reset(ctrl_info
, device
);
5770 atomic_dec(&ctrl_info
->sync_cmds_outstanding
);
5773 dev_err(&ctrl_info
->pci_dev
->dev
,
5774 "reset of scsi %d:%d:%d:%d: %s\n",
5775 shost
->host_no
, device
->bus
, device
->target
, device
->lun
,
5776 rc
== SUCCESS
? "SUCCESS" : "FAILED");
5781 static int pqi_slave_alloc(struct scsi_device
*sdev
)
5783 struct pqi_scsi_dev
*device
;
5784 unsigned long flags
;
5785 struct pqi_ctrl_info
*ctrl_info
;
5786 struct scsi_target
*starget
;
5787 struct sas_rphy
*rphy
;
5789 ctrl_info
= shost_to_hba(sdev
->host
);
5791 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5793 if (sdev_channel(sdev
) == PQI_PHYSICAL_DEVICE_BUS
) {
5794 starget
= scsi_target(sdev
);
5795 rphy
= target_to_rphy(starget
);
5796 device
= pqi_find_device_by_sas_rphy(ctrl_info
, rphy
);
5798 device
->target
= sdev_id(sdev
);
5799 device
->lun
= sdev
->lun
;
5800 device
->target_lun_valid
= true;
5803 device
= pqi_find_scsi_dev(ctrl_info
, sdev_channel(sdev
),
5804 sdev_id(sdev
), sdev
->lun
);
5808 sdev
->hostdata
= device
;
5809 device
->sdev
= sdev
;
5810 if (device
->queue_depth
) {
5811 device
->advertised_queue_depth
= device
->queue_depth
;
5812 scsi_change_queue_depth(sdev
,
5813 device
->advertised_queue_depth
);
5815 if (pqi_is_logical_device(device
))
5816 pqi_disable_write_same(sdev
);
5818 sdev
->allow_restart
= 1;
5821 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5826 static int pqi_map_queues(struct Scsi_Host
*shost
)
5828 struct pqi_ctrl_info
*ctrl_info
= shost_to_hba(shost
);
5830 return blk_mq_pci_map_queues(&shost
->tag_set
.map
[HCTX_TYPE_DEFAULT
],
5831 ctrl_info
->pci_dev
, 0);
5834 static int pqi_getpciinfo_ioctl(struct pqi_ctrl_info
*ctrl_info
,
5837 struct pci_dev
*pci_dev
;
5838 u32 subsystem_vendor
;
5839 u32 subsystem_device
;
5840 cciss_pci_info_struct pciinfo
;
5845 pci_dev
= ctrl_info
->pci_dev
;
5847 pciinfo
.domain
= pci_domain_nr(pci_dev
->bus
);
5848 pciinfo
.bus
= pci_dev
->bus
->number
;
5849 pciinfo
.dev_fn
= pci_dev
->devfn
;
5850 subsystem_vendor
= pci_dev
->subsystem_vendor
;
5851 subsystem_device
= pci_dev
->subsystem_device
;
5852 pciinfo
.board_id
= ((subsystem_device
<< 16) & 0xffff0000) |
5855 if (copy_to_user(arg
, &pciinfo
, sizeof(pciinfo
)))
5861 static int pqi_getdrivver_ioctl(void __user
*arg
)
5868 version
= (DRIVER_MAJOR
<< 28) | (DRIVER_MINOR
<< 24) |
5869 (DRIVER_RELEASE
<< 16) | DRIVER_REVISION
;
5871 if (copy_to_user(arg
, &version
, sizeof(version
)))
5877 struct ciss_error_info
{
5880 size_t sense_data_length
;
5883 static void pqi_error_info_to_ciss(struct pqi_raid_error_info
*pqi_error_info
,
5884 struct ciss_error_info
*ciss_error_info
)
5886 int ciss_cmd_status
;
5887 size_t sense_data_length
;
5889 switch (pqi_error_info
->data_out_result
) {
5890 case PQI_DATA_IN_OUT_GOOD
:
5891 ciss_cmd_status
= CISS_CMD_STATUS_SUCCESS
;
5893 case PQI_DATA_IN_OUT_UNDERFLOW
:
5894 ciss_cmd_status
= CISS_CMD_STATUS_DATA_UNDERRUN
;
5896 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
5897 ciss_cmd_status
= CISS_CMD_STATUS_DATA_OVERRUN
;
5899 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
5900 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
5901 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
5902 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
5903 case PQI_DATA_IN_OUT_ERROR
:
5904 ciss_cmd_status
= CISS_CMD_STATUS_PROTOCOL_ERROR
;
5906 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
5907 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
5908 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
5909 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
5910 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
5911 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
5912 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
5913 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
5914 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
5915 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
5916 ciss_cmd_status
= CISS_CMD_STATUS_HARDWARE_ERROR
;
5918 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
5919 ciss_cmd_status
= CISS_CMD_STATUS_UNSOLICITED_ABORT
;
5921 case PQI_DATA_IN_OUT_ABORTED
:
5922 ciss_cmd_status
= CISS_CMD_STATUS_ABORTED
;
5924 case PQI_DATA_IN_OUT_TIMEOUT
:
5925 ciss_cmd_status
= CISS_CMD_STATUS_TIMEOUT
;
5928 ciss_cmd_status
= CISS_CMD_STATUS_TARGET_STATUS
;
5933 get_unaligned_le16(&pqi_error_info
->sense_data_length
);
5934 if (sense_data_length
== 0)
5936 get_unaligned_le16(&pqi_error_info
->response_data_length
);
5937 if (sense_data_length
)
5938 if (sense_data_length
> sizeof(pqi_error_info
->data
))
5939 sense_data_length
= sizeof(pqi_error_info
->data
);
5941 ciss_error_info
->scsi_status
= pqi_error_info
->status
;
5942 ciss_error_info
->command_status
= ciss_cmd_status
;
5943 ciss_error_info
->sense_data_length
= sense_data_length
;
5946 static int pqi_passthru_ioctl(struct pqi_ctrl_info
*ctrl_info
, void __user
*arg
)
5949 char *kernel_buffer
= NULL
;
5951 size_t sense_data_length
;
5952 IOCTL_Command_struct iocommand
;
5953 struct pqi_raid_path_request request
;
5954 struct pqi_raid_error_info pqi_error_info
;
5955 struct ciss_error_info ciss_error_info
;
5957 if (pqi_ctrl_offline(ctrl_info
))
5961 if (!capable(CAP_SYS_RAWIO
))
5963 if (copy_from_user(&iocommand
, arg
, sizeof(iocommand
)))
5965 if (iocommand
.buf_size
< 1 &&
5966 iocommand
.Request
.Type
.Direction
!= XFER_NONE
)
5968 if (iocommand
.Request
.CDBLen
> sizeof(request
.cdb
))
5970 if (iocommand
.Request
.Type
.Type
!= TYPE_CMD
)
5973 switch (iocommand
.Request
.Type
.Direction
) {
5977 case XFER_READ
| XFER_WRITE
:
5983 if (iocommand
.buf_size
> 0) {
5984 kernel_buffer
= kmalloc(iocommand
.buf_size
, GFP_KERNEL
);
5987 if (iocommand
.Request
.Type
.Direction
& XFER_WRITE
) {
5988 if (copy_from_user(kernel_buffer
, iocommand
.buf
,
5989 iocommand
.buf_size
)) {
5994 memset(kernel_buffer
, 0, iocommand
.buf_size
);
5998 memset(&request
, 0, sizeof(request
));
6000 request
.header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
6001 iu_length
= offsetof(struct pqi_raid_path_request
, sg_descriptors
) -
6002 PQI_REQUEST_HEADER_LENGTH
;
6003 memcpy(request
.lun_number
, iocommand
.LUN_info
.LunAddrBytes
,
6004 sizeof(request
.lun_number
));
6005 memcpy(request
.cdb
, iocommand
.Request
.CDB
, iocommand
.Request
.CDBLen
);
6006 request
.additional_cdb_bytes_usage
= SOP_ADDITIONAL_CDB_BYTES_0
;
6008 switch (iocommand
.Request
.Type
.Direction
) {
6010 request
.data_direction
= SOP_NO_DIRECTION_FLAG
;
6013 request
.data_direction
= SOP_WRITE_FLAG
;
6016 request
.data_direction
= SOP_READ_FLAG
;
6018 case XFER_READ
| XFER_WRITE
:
6019 request
.data_direction
= SOP_BIDIRECTIONAL
;
6023 request
.task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
6025 if (iocommand
.buf_size
> 0) {
6026 put_unaligned_le32(iocommand
.buf_size
, &request
.buffer_length
);
6028 rc
= pqi_map_single(ctrl_info
->pci_dev
,
6029 &request
.sg_descriptors
[0], kernel_buffer
,
6030 iocommand
.buf_size
, DMA_BIDIRECTIONAL
);
6034 iu_length
+= sizeof(request
.sg_descriptors
[0]);
6037 put_unaligned_le16(iu_length
, &request
.header
.iu_length
);
6039 if (ctrl_info
->raid_iu_timeout_supported
)
6040 put_unaligned_le32(iocommand
.Request
.Timeout
, &request
.timeout
);
6042 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
6043 PQI_SYNC_FLAGS_INTERRUPTABLE
, &pqi_error_info
, NO_TIMEOUT
);
6045 if (iocommand
.buf_size
> 0)
6046 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
6049 memset(&iocommand
.error_info
, 0, sizeof(iocommand
.error_info
));
6052 pqi_error_info_to_ciss(&pqi_error_info
, &ciss_error_info
);
6053 iocommand
.error_info
.ScsiStatus
= ciss_error_info
.scsi_status
;
6054 iocommand
.error_info
.CommandStatus
=
6055 ciss_error_info
.command_status
;
6056 sense_data_length
= ciss_error_info
.sense_data_length
;
6057 if (sense_data_length
) {
6058 if (sense_data_length
>
6059 sizeof(iocommand
.error_info
.SenseInfo
))
6061 sizeof(iocommand
.error_info
.SenseInfo
);
6062 memcpy(iocommand
.error_info
.SenseInfo
,
6063 pqi_error_info
.data
, sense_data_length
);
6064 iocommand
.error_info
.SenseLen
= sense_data_length
;
6068 if (copy_to_user(arg
, &iocommand
, sizeof(iocommand
))) {
6073 if (rc
== 0 && iocommand
.buf_size
> 0 &&
6074 (iocommand
.Request
.Type
.Direction
& XFER_READ
)) {
6075 if (copy_to_user(iocommand
.buf
, kernel_buffer
,
6076 iocommand
.buf_size
)) {
6082 kfree(kernel_buffer
);
6087 static int pqi_ioctl(struct scsi_device
*sdev
, unsigned int cmd
,
6091 struct pqi_ctrl_info
*ctrl_info
;
6093 ctrl_info
= shost_to_hba(sdev
->host
);
6095 if (pqi_ctrl_in_ofa(ctrl_info
) || pqi_ctrl_in_shutdown(ctrl_info
))
6099 case CCISS_DEREGDISK
:
6100 case CCISS_REGNEWDISK
:
6102 rc
= pqi_scan_scsi_devices(ctrl_info
);
6104 case CCISS_GETPCIINFO
:
6105 rc
= pqi_getpciinfo_ioctl(ctrl_info
, arg
);
6107 case CCISS_GETDRIVVER
:
6108 rc
= pqi_getdrivver_ioctl(arg
);
6110 case CCISS_PASSTHRU
:
6111 rc
= pqi_passthru_ioctl(ctrl_info
, arg
);
6121 static ssize_t
pqi_firmware_version_show(struct device
*dev
,
6122 struct device_attribute
*attr
, char *buffer
)
6124 struct Scsi_Host
*shost
;
6125 struct pqi_ctrl_info
*ctrl_info
;
6127 shost
= class_to_shost(dev
);
6128 ctrl_info
= shost_to_hba(shost
);
6130 return snprintf(buffer
, PAGE_SIZE
, "%s\n", ctrl_info
->firmware_version
);
6133 static ssize_t
pqi_driver_version_show(struct device
*dev
,
6134 struct device_attribute
*attr
, char *buffer
)
6136 return snprintf(buffer
, PAGE_SIZE
, "%s\n",
6137 DRIVER_VERSION BUILD_TIMESTAMP
);
6140 static ssize_t
pqi_serial_number_show(struct device
*dev
,
6141 struct device_attribute
*attr
, char *buffer
)
6143 struct Scsi_Host
*shost
;
6144 struct pqi_ctrl_info
*ctrl_info
;
6146 shost
= class_to_shost(dev
);
6147 ctrl_info
= shost_to_hba(shost
);
6149 return snprintf(buffer
, PAGE_SIZE
, "%s\n", ctrl_info
->serial_number
);
6152 static ssize_t
pqi_model_show(struct device
*dev
,
6153 struct device_attribute
*attr
, char *buffer
)
6155 struct Scsi_Host
*shost
;
6156 struct pqi_ctrl_info
*ctrl_info
;
6158 shost
= class_to_shost(dev
);
6159 ctrl_info
= shost_to_hba(shost
);
6161 return snprintf(buffer
, PAGE_SIZE
, "%s\n", ctrl_info
->model
);
6164 static ssize_t
pqi_vendor_show(struct device
*dev
,
6165 struct device_attribute
*attr
, char *buffer
)
6167 struct Scsi_Host
*shost
;
6168 struct pqi_ctrl_info
*ctrl_info
;
6170 shost
= class_to_shost(dev
);
6171 ctrl_info
= shost_to_hba(shost
);
6173 return snprintf(buffer
, PAGE_SIZE
, "%s\n", ctrl_info
->vendor
);
6176 static ssize_t
pqi_host_rescan_store(struct device
*dev
,
6177 struct device_attribute
*attr
, const char *buffer
, size_t count
)
6179 struct Scsi_Host
*shost
= class_to_shost(dev
);
6181 pqi_scan_start(shost
);
6186 static ssize_t
pqi_lockup_action_show(struct device
*dev
,
6187 struct device_attribute
*attr
, char *buffer
)
6192 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
6193 if (pqi_lockup_actions
[i
].action
== pqi_lockup_action
)
6194 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
6195 "[%s] ", pqi_lockup_actions
[i
].name
);
6197 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
6198 "%s ", pqi_lockup_actions
[i
].name
);
6201 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
, "\n");
6206 static ssize_t
pqi_lockup_action_store(struct device
*dev
,
6207 struct device_attribute
*attr
, const char *buffer
, size_t count
)
6211 char action_name_buffer
[32];
6213 strlcpy(action_name_buffer
, buffer
, sizeof(action_name_buffer
));
6214 action_name
= strstrip(action_name_buffer
);
6216 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
6217 if (strcmp(action_name
, pqi_lockup_actions
[i
].name
) == 0) {
6218 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
6226 static DEVICE_ATTR(driver_version
, 0444, pqi_driver_version_show
, NULL
);
6227 static DEVICE_ATTR(firmware_version
, 0444, pqi_firmware_version_show
, NULL
);
6228 static DEVICE_ATTR(model
, 0444, pqi_model_show
, NULL
);
6229 static DEVICE_ATTR(serial_number
, 0444, pqi_serial_number_show
, NULL
);
6230 static DEVICE_ATTR(vendor
, 0444, pqi_vendor_show
, NULL
);
6231 static DEVICE_ATTR(rescan
, 0200, NULL
, pqi_host_rescan_store
);
6232 static DEVICE_ATTR(lockup_action
, 0644,
6233 pqi_lockup_action_show
, pqi_lockup_action_store
);
6235 static struct device_attribute
*pqi_shost_attrs
[] = {
6236 &dev_attr_driver_version
,
6237 &dev_attr_firmware_version
,
6239 &dev_attr_serial_number
,
6242 &dev_attr_lockup_action
,
6246 static ssize_t
pqi_unique_id_show(struct device
*dev
,
6247 struct device_attribute
*attr
, char *buffer
)
6249 struct pqi_ctrl_info
*ctrl_info
;
6250 struct scsi_device
*sdev
;
6251 struct pqi_scsi_dev
*device
;
6252 unsigned long flags
;
6255 sdev
= to_scsi_device(dev
);
6256 ctrl_info
= shost_to_hba(sdev
->host
);
6258 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6260 device
= sdev
->hostdata
;
6262 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
6267 if (device
->is_physical_device
) {
6268 memset(unique_id
, 0, 8);
6269 memcpy(unique_id
+ 8, &device
->wwid
, sizeof(device
->wwid
));
6271 memcpy(unique_id
, device
->volume_id
, sizeof(device
->volume_id
));
6274 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6276 return snprintf(buffer
, PAGE_SIZE
,
6277 "%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X\n",
6278 unique_id
[0], unique_id
[1], unique_id
[2], unique_id
[3],
6279 unique_id
[4], unique_id
[5], unique_id
[6], unique_id
[7],
6280 unique_id
[8], unique_id
[9], unique_id
[10], unique_id
[11],
6281 unique_id
[12], unique_id
[13], unique_id
[14], unique_id
[15]);
6284 static ssize_t
pqi_lunid_show(struct device
*dev
,
6285 struct device_attribute
*attr
, char *buffer
)
6287 struct pqi_ctrl_info
*ctrl_info
;
6288 struct scsi_device
*sdev
;
6289 struct pqi_scsi_dev
*device
;
6290 unsigned long flags
;
6293 sdev
= to_scsi_device(dev
);
6294 ctrl_info
= shost_to_hba(sdev
->host
);
6296 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6298 device
= sdev
->hostdata
;
6300 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
6305 memcpy(lunid
, device
->scsi3addr
, sizeof(lunid
));
6307 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6309 return snprintf(buffer
, PAGE_SIZE
, "0x%8phN\n", lunid
);
6314 static ssize_t
pqi_path_info_show(struct device
*dev
,
6315 struct device_attribute
*attr
, char *buf
)
6317 struct pqi_ctrl_info
*ctrl_info
;
6318 struct scsi_device
*sdev
;
6319 struct pqi_scsi_dev
*device
;
6320 unsigned long flags
;
6327 u8 phys_connector
[2];
6329 sdev
= to_scsi_device(dev
);
6330 ctrl_info
= shost_to_hba(sdev
->host
);
6332 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6334 device
= sdev
->hostdata
;
6336 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
6342 for (i
= 0; i
< MAX_PATHS
; i
++) {
6343 path_map_index
= 1 << i
;
6344 if (i
== device
->active_path_index
)
6346 else if (device
->path_map
& path_map_index
)
6347 active
= "Inactive";
6351 output_len
+= scnprintf(buf
+ output_len
,
6352 PAGE_SIZE
- output_len
,
6353 "[%d:%d:%d:%d] %20.20s ",
6354 ctrl_info
->scsi_host
->host_no
,
6355 device
->bus
, device
->target
,
6357 scsi_device_type(device
->devtype
));
6359 if (device
->devtype
== TYPE_RAID
||
6360 pqi_is_logical_device(device
))
6363 memcpy(&phys_connector
, &device
->phys_connector
[i
],
6364 sizeof(phys_connector
));
6365 if (phys_connector
[0] < '0')
6366 phys_connector
[0] = '0';
6367 if (phys_connector
[1] < '0')
6368 phys_connector
[1] = '0';
6370 output_len
+= scnprintf(buf
+ output_len
,
6371 PAGE_SIZE
- output_len
,
6372 "PORT: %.2s ", phys_connector
);
6374 box
= device
->box
[i
];
6375 if (box
!= 0 && box
!= 0xFF)
6376 output_len
+= scnprintf(buf
+ output_len
,
6377 PAGE_SIZE
- output_len
,
6380 if ((device
->devtype
== TYPE_DISK
||
6381 device
->devtype
== TYPE_ZBC
) &&
6382 pqi_expose_device(device
))
6383 output_len
+= scnprintf(buf
+ output_len
,
6384 PAGE_SIZE
- output_len
,
6388 output_len
+= scnprintf(buf
+ output_len
,
6389 PAGE_SIZE
- output_len
,
6393 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6398 static ssize_t
pqi_sas_address_show(struct device
*dev
,
6399 struct device_attribute
*attr
, char *buffer
)
6401 struct pqi_ctrl_info
*ctrl_info
;
6402 struct scsi_device
*sdev
;
6403 struct pqi_scsi_dev
*device
;
6404 unsigned long flags
;
6407 sdev
= to_scsi_device(dev
);
6408 ctrl_info
= shost_to_hba(sdev
->host
);
6410 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6412 device
= sdev
->hostdata
;
6413 if (pqi_is_logical_device(device
)) {
6414 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
6419 sas_address
= device
->sas_address
;
6421 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6423 return snprintf(buffer
, PAGE_SIZE
, "0x%016llx\n", sas_address
);
6426 static ssize_t
pqi_ssd_smart_path_enabled_show(struct device
*dev
,
6427 struct device_attribute
*attr
, char *buffer
)
6429 struct pqi_ctrl_info
*ctrl_info
;
6430 struct scsi_device
*sdev
;
6431 struct pqi_scsi_dev
*device
;
6432 unsigned long flags
;
6434 sdev
= to_scsi_device(dev
);
6435 ctrl_info
= shost_to_hba(sdev
->host
);
6437 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6439 device
= sdev
->hostdata
;
6440 buffer
[0] = device
->raid_bypass_enabled
? '1' : '0';
6444 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6449 static ssize_t
pqi_raid_level_show(struct device
*dev
,
6450 struct device_attribute
*attr
, char *buffer
)
6452 struct pqi_ctrl_info
*ctrl_info
;
6453 struct scsi_device
*sdev
;
6454 struct pqi_scsi_dev
*device
;
6455 unsigned long flags
;
6458 sdev
= to_scsi_device(dev
);
6459 ctrl_info
= shost_to_hba(sdev
->host
);
6461 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
6463 device
= sdev
->hostdata
;
6465 if (pqi_is_logical_device(device
))
6466 raid_level
= pqi_raid_level_to_string(device
->raid_level
);
6470 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
6472 return snprintf(buffer
, PAGE_SIZE
, "%s\n", raid_level
);
6475 static DEVICE_ATTR(lunid
, 0444, pqi_lunid_show
, NULL
);
6476 static DEVICE_ATTR(unique_id
, 0444, pqi_unique_id_show
, NULL
);
6477 static DEVICE_ATTR(path_info
, 0444, pqi_path_info_show
, NULL
);
6478 static DEVICE_ATTR(sas_address
, 0444, pqi_sas_address_show
, NULL
);
6479 static DEVICE_ATTR(ssd_smart_path_enabled
, 0444,
6480 pqi_ssd_smart_path_enabled_show
, NULL
);
6481 static DEVICE_ATTR(raid_level
, 0444, pqi_raid_level_show
, NULL
);
6483 static struct device_attribute
*pqi_sdev_attrs
[] = {
6485 &dev_attr_unique_id
,
6486 &dev_attr_path_info
,
6487 &dev_attr_sas_address
,
6488 &dev_attr_ssd_smart_path_enabled
,
6489 &dev_attr_raid_level
,
6493 static struct scsi_host_template pqi_driver_template
= {
6494 .module
= THIS_MODULE
,
6495 .name
= DRIVER_NAME_SHORT
,
6496 .proc_name
= DRIVER_NAME_SHORT
,
6497 .queuecommand
= pqi_scsi_queue_command
,
6498 .scan_start
= pqi_scan_start
,
6499 .scan_finished
= pqi_scan_finished
,
6501 .eh_device_reset_handler
= pqi_eh_device_reset_handler
,
6503 .slave_alloc
= pqi_slave_alloc
,
6504 .map_queues
= pqi_map_queues
,
6505 .sdev_attrs
= pqi_sdev_attrs
,
6506 .shost_attrs
= pqi_shost_attrs
,
6509 static int pqi_register_scsi(struct pqi_ctrl_info
*ctrl_info
)
6512 struct Scsi_Host
*shost
;
6514 shost
= scsi_host_alloc(&pqi_driver_template
, sizeof(ctrl_info
));
6516 dev_err(&ctrl_info
->pci_dev
->dev
,
6517 "scsi_host_alloc failed for controller %u\n",
6518 ctrl_info
->ctrl_id
);
6523 shost
->n_io_port
= 0;
6524 shost
->this_id
= -1;
6525 shost
->max_channel
= PQI_MAX_BUS
;
6526 shost
->max_cmd_len
= MAX_COMMAND_SIZE
;
6527 shost
->max_lun
= ~0;
6529 shost
->max_sectors
= ctrl_info
->max_sectors
;
6530 shost
->can_queue
= ctrl_info
->scsi_ml_can_queue
;
6531 shost
->cmd_per_lun
= shost
->can_queue
;
6532 shost
->sg_tablesize
= ctrl_info
->sg_tablesize
;
6533 shost
->transportt
= pqi_sas_transport_template
;
6534 shost
->irq
= pci_irq_vector(ctrl_info
->pci_dev
, 0);
6535 shost
->unique_id
= shost
->irq
;
6536 shost
->nr_hw_queues
= ctrl_info
->num_queue_groups
;
6537 shost
->hostdata
[0] = (unsigned long)ctrl_info
;
6539 rc
= scsi_add_host(shost
, &ctrl_info
->pci_dev
->dev
);
6541 dev_err(&ctrl_info
->pci_dev
->dev
,
6542 "scsi_add_host failed for controller %u\n",
6543 ctrl_info
->ctrl_id
);
6547 rc
= pqi_add_sas_host(shost
, ctrl_info
);
6549 dev_err(&ctrl_info
->pci_dev
->dev
,
6550 "add SAS host failed for controller %u\n",
6551 ctrl_info
->ctrl_id
);
6555 ctrl_info
->scsi_host
= shost
;
6560 scsi_remove_host(shost
);
6562 scsi_host_put(shost
);
6567 static void pqi_unregister_scsi(struct pqi_ctrl_info
*ctrl_info
)
6569 struct Scsi_Host
*shost
;
6571 pqi_delete_sas_host(ctrl_info
);
6573 shost
= ctrl_info
->scsi_host
;
6577 scsi_remove_host(shost
);
6578 scsi_host_put(shost
);
6581 static int pqi_wait_for_pqi_reset_completion(struct pqi_ctrl_info
*ctrl_info
)
6584 struct pqi_device_registers __iomem
*pqi_registers
;
6585 unsigned long timeout
;
6586 unsigned int timeout_msecs
;
6587 union pqi_reset_register reset_reg
;
6589 pqi_registers
= ctrl_info
->pqi_registers
;
6590 timeout_msecs
= readw(&pqi_registers
->max_reset_timeout
) * 100;
6591 timeout
= msecs_to_jiffies(timeout_msecs
) + jiffies
;
6594 msleep(PQI_RESET_POLL_INTERVAL_MSECS
);
6595 reset_reg
.all_bits
= readl(&pqi_registers
->device_reset
);
6596 if (reset_reg
.bits
.reset_action
== PQI_RESET_ACTION_COMPLETED
)
6598 pqi_check_ctrl_health(ctrl_info
);
6599 if (pqi_ctrl_offline(ctrl_info
)) {
6603 if (time_after(jiffies
, timeout
)) {
6612 static int pqi_reset(struct pqi_ctrl_info
*ctrl_info
)
6615 union pqi_reset_register reset_reg
;
6617 if (ctrl_info
->pqi_reset_quiesce_supported
) {
6618 rc
= sis_pqi_reset_quiesce(ctrl_info
);
6620 dev_err(&ctrl_info
->pci_dev
->dev
,
6621 "PQI reset failed during quiesce with error %d\n",
6627 reset_reg
.all_bits
= 0;
6628 reset_reg
.bits
.reset_type
= PQI_RESET_TYPE_HARD_RESET
;
6629 reset_reg
.bits
.reset_action
= PQI_RESET_ACTION_RESET
;
6631 writel(reset_reg
.all_bits
, &ctrl_info
->pqi_registers
->device_reset
);
6633 rc
= pqi_wait_for_pqi_reset_completion(ctrl_info
);
6635 dev_err(&ctrl_info
->pci_dev
->dev
,
6636 "PQI reset failed with error %d\n", rc
);
6641 static int pqi_get_ctrl_serial_number(struct pqi_ctrl_info
*ctrl_info
)
6644 struct bmic_sense_subsystem_info
*sense_info
;
6646 sense_info
= kzalloc(sizeof(*sense_info
), GFP_KERNEL
);
6650 rc
= pqi_sense_subsystem_info(ctrl_info
, sense_info
);
6654 memcpy(ctrl_info
->serial_number
, sense_info
->ctrl_serial_number
,
6655 sizeof(sense_info
->ctrl_serial_number
));
6656 ctrl_info
->serial_number
[sizeof(sense_info
->ctrl_serial_number
)] = '\0';
6664 static int pqi_get_ctrl_product_details(struct pqi_ctrl_info
*ctrl_info
)
6667 struct bmic_identify_controller
*identify
;
6669 identify
= kmalloc(sizeof(*identify
), GFP_KERNEL
);
6673 rc
= pqi_identify_controller(ctrl_info
, identify
);
6677 memcpy(ctrl_info
->firmware_version
, identify
->firmware_version
,
6678 sizeof(identify
->firmware_version
));
6679 ctrl_info
->firmware_version
[sizeof(identify
->firmware_version
)] = '\0';
6680 snprintf(ctrl_info
->firmware_version
+
6681 strlen(ctrl_info
->firmware_version
),
6682 sizeof(ctrl_info
->firmware_version
),
6683 "-%u", get_unaligned_le16(&identify
->firmware_build_number
));
6685 memcpy(ctrl_info
->model
, identify
->product_id
,
6686 sizeof(identify
->product_id
));
6687 ctrl_info
->model
[sizeof(identify
->product_id
)] = '\0';
6689 memcpy(ctrl_info
->vendor
, identify
->vendor_id
,
6690 sizeof(identify
->vendor_id
));
6691 ctrl_info
->vendor
[sizeof(identify
->vendor_id
)] = '\0';
6699 struct pqi_config_table_section_info
{
6700 struct pqi_ctrl_info
*ctrl_info
;
6703 void __iomem
*section_iomem_addr
;
6706 static inline bool pqi_is_firmware_feature_supported(
6707 struct pqi_config_table_firmware_features
*firmware_features
,
6708 unsigned int bit_position
)
6710 unsigned int byte_index
;
6712 byte_index
= bit_position
/ BITS_PER_BYTE
;
6714 if (byte_index
>= le16_to_cpu(firmware_features
->num_elements
))
6717 return firmware_features
->features_supported
[byte_index
] &
6718 (1 << (bit_position
% BITS_PER_BYTE
)) ? true : false;
6721 static inline bool pqi_is_firmware_feature_enabled(
6722 struct pqi_config_table_firmware_features
*firmware_features
,
6723 void __iomem
*firmware_features_iomem_addr
,
6724 unsigned int bit_position
)
6726 unsigned int byte_index
;
6727 u8 __iomem
*features_enabled_iomem_addr
;
6729 byte_index
= (bit_position
/ BITS_PER_BYTE
) +
6730 (le16_to_cpu(firmware_features
->num_elements
) * 2);
6732 features_enabled_iomem_addr
= firmware_features_iomem_addr
+
6733 offsetof(struct pqi_config_table_firmware_features
,
6734 features_supported
) + byte_index
;
6736 return *((__force u8
*)features_enabled_iomem_addr
) &
6737 (1 << (bit_position
% BITS_PER_BYTE
)) ? true : false;
6740 static inline void pqi_request_firmware_feature(
6741 struct pqi_config_table_firmware_features
*firmware_features
,
6742 unsigned int bit_position
)
6744 unsigned int byte_index
;
6746 byte_index
= (bit_position
/ BITS_PER_BYTE
) +
6747 le16_to_cpu(firmware_features
->num_elements
);
6749 firmware_features
->features_supported
[byte_index
] |=
6750 (1 << (bit_position
% BITS_PER_BYTE
));
6753 static int pqi_config_table_update(struct pqi_ctrl_info
*ctrl_info
,
6754 u16 first_section
, u16 last_section
)
6756 struct pqi_vendor_general_request request
;
6758 memset(&request
, 0, sizeof(request
));
6760 request
.header
.iu_type
= PQI_REQUEST_IU_VENDOR_GENERAL
;
6761 put_unaligned_le16(sizeof(request
) - PQI_REQUEST_HEADER_LENGTH
,
6762 &request
.header
.iu_length
);
6763 put_unaligned_le16(PQI_VENDOR_GENERAL_CONFIG_TABLE_UPDATE
,
6764 &request
.function_code
);
6765 put_unaligned_le16(first_section
,
6766 &request
.data
.config_table_update
.first_section
);
6767 put_unaligned_le16(last_section
,
6768 &request
.data
.config_table_update
.last_section
);
6770 return pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
6771 0, NULL
, NO_TIMEOUT
);
6774 static int pqi_enable_firmware_features(struct pqi_ctrl_info
*ctrl_info
,
6775 struct pqi_config_table_firmware_features
*firmware_features
,
6776 void __iomem
*firmware_features_iomem_addr
)
6778 void *features_requested
;
6779 void __iomem
*features_requested_iomem_addr
;
6781 features_requested
= firmware_features
->features_supported
+
6782 le16_to_cpu(firmware_features
->num_elements
);
6784 features_requested_iomem_addr
= firmware_features_iomem_addr
+
6785 (features_requested
- (void *)firmware_features
);
6787 memcpy_toio(features_requested_iomem_addr
, features_requested
,
6788 le16_to_cpu(firmware_features
->num_elements
));
6790 return pqi_config_table_update(ctrl_info
,
6791 PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES
,
6792 PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES
);
6795 struct pqi_firmware_feature
{
6797 unsigned int feature_bit
;
6800 void (*feature_status
)(struct pqi_ctrl_info
*ctrl_info
,
6801 struct pqi_firmware_feature
*firmware_feature
);
6804 static void pqi_firmware_feature_status(struct pqi_ctrl_info
*ctrl_info
,
6805 struct pqi_firmware_feature
*firmware_feature
)
6807 if (!firmware_feature
->supported
) {
6808 dev_info(&ctrl_info
->pci_dev
->dev
, "%s not supported by controller\n",
6809 firmware_feature
->feature_name
);
6813 if (firmware_feature
->enabled
) {
6814 dev_info(&ctrl_info
->pci_dev
->dev
,
6815 "%s enabled\n", firmware_feature
->feature_name
);
6819 dev_err(&ctrl_info
->pci_dev
->dev
, "failed to enable %s\n",
6820 firmware_feature
->feature_name
);
6823 static void pqi_ctrl_update_feature_flags(struct pqi_ctrl_info
*ctrl_info
,
6824 struct pqi_firmware_feature
*firmware_feature
)
6826 switch (firmware_feature
->feature_bit
) {
6827 case PQI_FIRMWARE_FEATURE_SOFT_RESET_HANDSHAKE
:
6828 ctrl_info
->soft_reset_handshake_supported
=
6829 firmware_feature
->enabled
;
6831 case PQI_FIRMWARE_FEATURE_RAID_IU_TIMEOUT
:
6832 ctrl_info
->raid_iu_timeout_supported
=
6833 firmware_feature
->enabled
;
6835 case PQI_FIRMWARE_FEATURE_TMF_IU_TIMEOUT
:
6836 ctrl_info
->tmf_iu_timeout_supported
=
6837 firmware_feature
->enabled
;
6841 pqi_firmware_feature_status(ctrl_info
, firmware_feature
);
6844 static inline void pqi_firmware_feature_update(struct pqi_ctrl_info
*ctrl_info
,
6845 struct pqi_firmware_feature
*firmware_feature
)
6847 if (firmware_feature
->feature_status
)
6848 firmware_feature
->feature_status(ctrl_info
, firmware_feature
);
6851 static DEFINE_MUTEX(pqi_firmware_features_mutex
);
6853 static struct pqi_firmware_feature pqi_firmware_features
[] = {
6855 .feature_name
= "Online Firmware Activation",
6856 .feature_bit
= PQI_FIRMWARE_FEATURE_OFA
,
6857 .feature_status
= pqi_firmware_feature_status
,
6860 .feature_name
= "Serial Management Protocol",
6861 .feature_bit
= PQI_FIRMWARE_FEATURE_SMP
,
6862 .feature_status
= pqi_firmware_feature_status
,
6865 .feature_name
= "New Soft Reset Handshake",
6866 .feature_bit
= PQI_FIRMWARE_FEATURE_SOFT_RESET_HANDSHAKE
,
6867 .feature_status
= pqi_ctrl_update_feature_flags
,
6870 .feature_name
= "RAID IU Timeout",
6871 .feature_bit
= PQI_FIRMWARE_FEATURE_RAID_IU_TIMEOUT
,
6872 .feature_status
= pqi_ctrl_update_feature_flags
,
6875 .feature_name
= "TMF IU Timeout",
6876 .feature_bit
= PQI_FIRMWARE_FEATURE_TMF_IU_TIMEOUT
,
6877 .feature_status
= pqi_ctrl_update_feature_flags
,
6881 static void pqi_process_firmware_features(
6882 struct pqi_config_table_section_info
*section_info
)
6885 struct pqi_ctrl_info
*ctrl_info
;
6886 struct pqi_config_table_firmware_features
*firmware_features
;
6887 void __iomem
*firmware_features_iomem_addr
;
6889 unsigned int num_features_supported
;
6891 ctrl_info
= section_info
->ctrl_info
;
6892 firmware_features
= section_info
->section
;
6893 firmware_features_iomem_addr
= section_info
->section_iomem_addr
;
6895 for (i
= 0, num_features_supported
= 0;
6896 i
< ARRAY_SIZE(pqi_firmware_features
); i
++) {
6897 if (pqi_is_firmware_feature_supported(firmware_features
,
6898 pqi_firmware_features
[i
].feature_bit
)) {
6899 pqi_firmware_features
[i
].supported
= true;
6900 num_features_supported
++;
6902 pqi_firmware_feature_update(ctrl_info
,
6903 &pqi_firmware_features
[i
]);
6907 if (num_features_supported
== 0)
6910 for (i
= 0; i
< ARRAY_SIZE(pqi_firmware_features
); i
++) {
6911 if (!pqi_firmware_features
[i
].supported
)
6913 pqi_request_firmware_feature(firmware_features
,
6914 pqi_firmware_features
[i
].feature_bit
);
6917 rc
= pqi_enable_firmware_features(ctrl_info
, firmware_features
,
6918 firmware_features_iomem_addr
);
6920 dev_err(&ctrl_info
->pci_dev
->dev
,
6921 "failed to enable firmware features in PQI configuration table\n");
6922 for (i
= 0; i
< ARRAY_SIZE(pqi_firmware_features
); i
++) {
6923 if (!pqi_firmware_features
[i
].supported
)
6925 pqi_firmware_feature_update(ctrl_info
,
6926 &pqi_firmware_features
[i
]);
6931 for (i
= 0; i
< ARRAY_SIZE(pqi_firmware_features
); i
++) {
6932 if (!pqi_firmware_features
[i
].supported
)
6934 if (pqi_is_firmware_feature_enabled(firmware_features
,
6935 firmware_features_iomem_addr
,
6936 pqi_firmware_features
[i
].feature_bit
)) {
6937 pqi_firmware_features
[i
].enabled
= true;
6939 pqi_firmware_feature_update(ctrl_info
,
6940 &pqi_firmware_features
[i
]);
6944 static void pqi_init_firmware_features(void)
6948 for (i
= 0; i
< ARRAY_SIZE(pqi_firmware_features
); i
++) {
6949 pqi_firmware_features
[i
].supported
= false;
6950 pqi_firmware_features
[i
].enabled
= false;
6954 static void pqi_process_firmware_features_section(
6955 struct pqi_config_table_section_info
*section_info
)
6957 mutex_lock(&pqi_firmware_features_mutex
);
6958 pqi_init_firmware_features();
6959 pqi_process_firmware_features(section_info
);
6960 mutex_unlock(&pqi_firmware_features_mutex
);
6963 static int pqi_process_config_table(struct pqi_ctrl_info
*ctrl_info
)
6967 void __iomem
*table_iomem_addr
;
6968 struct pqi_config_table
*config_table
;
6969 struct pqi_config_table_section_header
*section
;
6970 struct pqi_config_table_section_info section_info
;
6972 table_length
= ctrl_info
->config_table_length
;
6973 if (table_length
== 0)
6976 config_table
= kmalloc(table_length
, GFP_KERNEL
);
6977 if (!config_table
) {
6978 dev_err(&ctrl_info
->pci_dev
->dev
,
6979 "failed to allocate memory for PQI configuration table\n");
6984 * Copy the config table contents from I/O memory space into the
6987 table_iomem_addr
= ctrl_info
->iomem_base
+
6988 ctrl_info
->config_table_offset
;
6989 memcpy_fromio(config_table
, table_iomem_addr
, table_length
);
6991 section_info
.ctrl_info
= ctrl_info
;
6993 get_unaligned_le32(&config_table
->first_section_offset
);
6995 while (section_offset
) {
6996 section
= (void *)config_table
+ section_offset
;
6998 section_info
.section
= section
;
6999 section_info
.section_offset
= section_offset
;
7000 section_info
.section_iomem_addr
=
7001 table_iomem_addr
+ section_offset
;
7003 switch (get_unaligned_le16(§ion
->section_id
)) {
7004 case PQI_CONFIG_TABLE_SECTION_FIRMWARE_FEATURES
:
7005 pqi_process_firmware_features_section(§ion_info
);
7007 case PQI_CONFIG_TABLE_SECTION_HEARTBEAT
:
7008 if (pqi_disable_heartbeat
)
7009 dev_warn(&ctrl_info
->pci_dev
->dev
,
7010 "heartbeat disabled by module parameter\n");
7012 ctrl_info
->heartbeat_counter
=
7016 struct pqi_config_table_heartbeat
,
7019 case PQI_CONFIG_TABLE_SECTION_SOFT_RESET
:
7020 ctrl_info
->soft_reset_status
=
7023 offsetof(struct pqi_config_table_soft_reset
,
7029 get_unaligned_le16(§ion
->next_section_offset
);
7032 kfree(config_table
);
7037 /* Switches the controller from PQI mode back into SIS mode. */
7039 static int pqi_revert_to_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
7043 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_NONE
);
7044 rc
= pqi_reset(ctrl_info
);
7047 rc
= sis_reenable_sis_mode(ctrl_info
);
7049 dev_err(&ctrl_info
->pci_dev
->dev
,
7050 "re-enabling SIS mode failed with error %d\n", rc
);
7053 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
7059 * If the controller isn't already in SIS mode, this function forces it into
7063 static int pqi_force_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
7065 if (!sis_is_firmware_running(ctrl_info
))
7068 if (pqi_get_ctrl_mode(ctrl_info
) == SIS_MODE
)
7071 if (sis_is_kernel_up(ctrl_info
)) {
7072 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
7076 return pqi_revert_to_sis_mode(ctrl_info
);
7079 #define PQI_POST_RESET_DELAY_B4_MSGU_READY 5000
7081 static int pqi_ctrl_init(struct pqi_ctrl_info
*ctrl_info
)
7085 if (reset_devices
) {
7086 sis_soft_reset(ctrl_info
);
7087 msleep(PQI_POST_RESET_DELAY_B4_MSGU_READY
);
7089 rc
= pqi_force_sis_mode(ctrl_info
);
7095 * Wait until the controller is ready to start accepting SIS
7098 rc
= sis_wait_for_ctrl_ready(ctrl_info
);
7103 * Get the controller properties. This allows us to determine
7104 * whether or not it supports PQI mode.
7106 rc
= sis_get_ctrl_properties(ctrl_info
);
7108 dev_err(&ctrl_info
->pci_dev
->dev
,
7109 "error obtaining controller properties\n");
7113 rc
= sis_get_pqi_capabilities(ctrl_info
);
7115 dev_err(&ctrl_info
->pci_dev
->dev
,
7116 "error obtaining controller capabilities\n");
7120 if (reset_devices
) {
7121 if (ctrl_info
->max_outstanding_requests
>
7122 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
)
7123 ctrl_info
->max_outstanding_requests
=
7124 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
;
7126 if (ctrl_info
->max_outstanding_requests
>
7127 PQI_MAX_OUTSTANDING_REQUESTS
)
7128 ctrl_info
->max_outstanding_requests
=
7129 PQI_MAX_OUTSTANDING_REQUESTS
;
7132 pqi_calculate_io_resources(ctrl_info
);
7134 rc
= pqi_alloc_error_buffer(ctrl_info
);
7136 dev_err(&ctrl_info
->pci_dev
->dev
,
7137 "failed to allocate PQI error buffer\n");
7142 * If the function we are about to call succeeds, the
7143 * controller will transition from legacy SIS mode
7146 rc
= sis_init_base_struct_addr(ctrl_info
);
7148 dev_err(&ctrl_info
->pci_dev
->dev
,
7149 "error initializing PQI mode\n");
7153 /* Wait for the controller to complete the SIS -> PQI transition. */
7154 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
7156 dev_err(&ctrl_info
->pci_dev
->dev
,
7157 "transition to PQI mode failed\n");
7161 /* From here on, we are running in PQI mode. */
7162 ctrl_info
->pqi_mode_enabled
= true;
7163 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
7165 rc
= pqi_alloc_admin_queues(ctrl_info
);
7167 dev_err(&ctrl_info
->pci_dev
->dev
,
7168 "failed to allocate admin queues\n");
7172 rc
= pqi_create_admin_queues(ctrl_info
);
7174 dev_err(&ctrl_info
->pci_dev
->dev
,
7175 "error creating admin queues\n");
7179 rc
= pqi_report_device_capability(ctrl_info
);
7181 dev_err(&ctrl_info
->pci_dev
->dev
,
7182 "obtaining device capability failed\n");
7186 rc
= pqi_validate_device_capability(ctrl_info
);
7190 pqi_calculate_queue_resources(ctrl_info
);
7192 rc
= pqi_enable_msix_interrupts(ctrl_info
);
7196 if (ctrl_info
->num_msix_vectors_enabled
< ctrl_info
->num_queue_groups
) {
7197 ctrl_info
->max_msix_vectors
=
7198 ctrl_info
->num_msix_vectors_enabled
;
7199 pqi_calculate_queue_resources(ctrl_info
);
7202 rc
= pqi_alloc_io_resources(ctrl_info
);
7206 rc
= pqi_alloc_operational_queues(ctrl_info
);
7208 dev_err(&ctrl_info
->pci_dev
->dev
,
7209 "failed to allocate operational queues\n");
7213 pqi_init_operational_queues(ctrl_info
);
7215 rc
= pqi_request_irqs(ctrl_info
);
7219 rc
= pqi_create_queues(ctrl_info
);
7223 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
7225 ctrl_info
->controller_online
= true;
7227 rc
= pqi_process_config_table(ctrl_info
);
7231 pqi_start_heartbeat_timer(ctrl_info
);
7233 rc
= pqi_enable_events(ctrl_info
);
7235 dev_err(&ctrl_info
->pci_dev
->dev
,
7236 "error enabling events\n");
7240 /* Register with the SCSI subsystem. */
7241 rc
= pqi_register_scsi(ctrl_info
);
7245 rc
= pqi_get_ctrl_product_details(ctrl_info
);
7247 dev_err(&ctrl_info
->pci_dev
->dev
,
7248 "error obtaining product details\n");
7252 rc
= pqi_get_ctrl_serial_number(ctrl_info
);
7254 dev_err(&ctrl_info
->pci_dev
->dev
,
7255 "error obtaining ctrl serial number\n");
7259 rc
= pqi_set_diag_rescan(ctrl_info
);
7261 dev_err(&ctrl_info
->pci_dev
->dev
,
7262 "error enabling multi-lun rescan\n");
7266 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
7268 dev_err(&ctrl_info
->pci_dev
->dev
,
7269 "error updating host wellness\n");
7273 pqi_schedule_update_time_worker(ctrl_info
);
7275 pqi_scan_scsi_devices(ctrl_info
);
7280 static void pqi_reinit_queues(struct pqi_ctrl_info
*ctrl_info
)
7283 struct pqi_admin_queues
*admin_queues
;
7284 struct pqi_event_queue
*event_queue
;
7286 admin_queues
= &ctrl_info
->admin_queues
;
7287 admin_queues
->iq_pi_copy
= 0;
7288 admin_queues
->oq_ci_copy
= 0;
7289 writel(0, admin_queues
->oq_pi
);
7291 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
7292 ctrl_info
->queue_groups
[i
].iq_pi_copy
[RAID_PATH
] = 0;
7293 ctrl_info
->queue_groups
[i
].iq_pi_copy
[AIO_PATH
] = 0;
7294 ctrl_info
->queue_groups
[i
].oq_ci_copy
= 0;
7296 writel(0, ctrl_info
->queue_groups
[i
].iq_ci
[RAID_PATH
]);
7297 writel(0, ctrl_info
->queue_groups
[i
].iq_ci
[AIO_PATH
]);
7298 writel(0, ctrl_info
->queue_groups
[i
].oq_pi
);
7301 event_queue
= &ctrl_info
->event_queue
;
7302 writel(0, event_queue
->oq_pi
);
7303 event_queue
->oq_ci_copy
= 0;
7306 static int pqi_ctrl_init_resume(struct pqi_ctrl_info
*ctrl_info
)
7310 rc
= pqi_force_sis_mode(ctrl_info
);
7315 * Wait until the controller is ready to start accepting SIS
7318 rc
= sis_wait_for_ctrl_ready_resume(ctrl_info
);
7323 * Get the controller properties. This allows us to determine
7324 * whether or not it supports PQI mode.
7326 rc
= sis_get_ctrl_properties(ctrl_info
);
7328 dev_err(&ctrl_info
->pci_dev
->dev
,
7329 "error obtaining controller properties\n");
7333 rc
= sis_get_pqi_capabilities(ctrl_info
);
7335 dev_err(&ctrl_info
->pci_dev
->dev
,
7336 "error obtaining controller capabilities\n");
7341 * If the function we are about to call succeeds, the
7342 * controller will transition from legacy SIS mode
7345 rc
= sis_init_base_struct_addr(ctrl_info
);
7347 dev_err(&ctrl_info
->pci_dev
->dev
,
7348 "error initializing PQI mode\n");
7352 /* Wait for the controller to complete the SIS -> PQI transition. */
7353 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
7355 dev_err(&ctrl_info
->pci_dev
->dev
,
7356 "transition to PQI mode failed\n");
7360 /* From here on, we are running in PQI mode. */
7361 ctrl_info
->pqi_mode_enabled
= true;
7362 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
7364 pqi_reinit_queues(ctrl_info
);
7366 rc
= pqi_create_admin_queues(ctrl_info
);
7368 dev_err(&ctrl_info
->pci_dev
->dev
,
7369 "error creating admin queues\n");
7373 rc
= pqi_create_queues(ctrl_info
);
7377 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
7379 ctrl_info
->controller_online
= true;
7380 pqi_ctrl_unblock_requests(ctrl_info
);
7382 rc
= pqi_process_config_table(ctrl_info
);
7386 pqi_start_heartbeat_timer(ctrl_info
);
7388 rc
= pqi_enable_events(ctrl_info
);
7390 dev_err(&ctrl_info
->pci_dev
->dev
,
7391 "error enabling events\n");
7395 rc
= pqi_get_ctrl_product_details(ctrl_info
);
7397 dev_err(&ctrl_info
->pci_dev
->dev
,
7398 "error obtaining product details\n");
7402 rc
= pqi_set_diag_rescan(ctrl_info
);
7404 dev_err(&ctrl_info
->pci_dev
->dev
,
7405 "error enabling multi-lun rescan\n");
7409 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
7411 dev_err(&ctrl_info
->pci_dev
->dev
,
7412 "error updating host wellness\n");
7416 pqi_schedule_update_time_worker(ctrl_info
);
7418 pqi_scan_scsi_devices(ctrl_info
);
7423 static inline int pqi_set_pcie_completion_timeout(struct pci_dev
*pci_dev
,
7426 return pcie_capability_clear_and_set_word(pci_dev
, PCI_EXP_DEVCTL2
,
7427 PCI_EXP_DEVCTL2_COMP_TIMEOUT
, timeout
);
7430 static int pqi_pci_init(struct pqi_ctrl_info
*ctrl_info
)
7435 rc
= pci_enable_device(ctrl_info
->pci_dev
);
7437 dev_err(&ctrl_info
->pci_dev
->dev
,
7438 "failed to enable PCI device\n");
7442 if (sizeof(dma_addr_t
) > 4)
7443 mask
= DMA_BIT_MASK(64);
7445 mask
= DMA_BIT_MASK(32);
7447 rc
= dma_set_mask_and_coherent(&ctrl_info
->pci_dev
->dev
, mask
);
7449 dev_err(&ctrl_info
->pci_dev
->dev
, "failed to set DMA mask\n");
7450 goto disable_device
;
7453 rc
= pci_request_regions(ctrl_info
->pci_dev
, DRIVER_NAME_SHORT
);
7455 dev_err(&ctrl_info
->pci_dev
->dev
,
7456 "failed to obtain PCI resources\n");
7457 goto disable_device
;
7460 ctrl_info
->iomem_base
= ioremap(pci_resource_start(
7461 ctrl_info
->pci_dev
, 0),
7462 sizeof(struct pqi_ctrl_registers
));
7463 if (!ctrl_info
->iomem_base
) {
7464 dev_err(&ctrl_info
->pci_dev
->dev
,
7465 "failed to map memory for controller registers\n");
7467 goto release_regions
;
7470 #define PCI_EXP_COMP_TIMEOUT_65_TO_210_MS 0x6
7472 /* Increase the PCIe completion timeout. */
7473 rc
= pqi_set_pcie_completion_timeout(ctrl_info
->pci_dev
,
7474 PCI_EXP_COMP_TIMEOUT_65_TO_210_MS
);
7476 dev_err(&ctrl_info
->pci_dev
->dev
,
7477 "failed to set PCIe completion timeout\n");
7478 goto release_regions
;
7481 /* Enable bus mastering. */
7482 pci_set_master(ctrl_info
->pci_dev
);
7484 ctrl_info
->registers
= ctrl_info
->iomem_base
;
7485 ctrl_info
->pqi_registers
= &ctrl_info
->registers
->pqi_registers
;
7487 pci_set_drvdata(ctrl_info
->pci_dev
, ctrl_info
);
7492 pci_release_regions(ctrl_info
->pci_dev
);
7494 pci_disable_device(ctrl_info
->pci_dev
);
7499 static void pqi_cleanup_pci_init(struct pqi_ctrl_info
*ctrl_info
)
7501 iounmap(ctrl_info
->iomem_base
);
7502 pci_release_regions(ctrl_info
->pci_dev
);
7503 if (pci_is_enabled(ctrl_info
->pci_dev
))
7504 pci_disable_device(ctrl_info
->pci_dev
);
7505 pci_set_drvdata(ctrl_info
->pci_dev
, NULL
);
7508 static struct pqi_ctrl_info
*pqi_alloc_ctrl_info(int numa_node
)
7510 struct pqi_ctrl_info
*ctrl_info
;
7512 ctrl_info
= kzalloc_node(sizeof(struct pqi_ctrl_info
),
7513 GFP_KERNEL
, numa_node
);
7517 mutex_init(&ctrl_info
->scan_mutex
);
7518 mutex_init(&ctrl_info
->lun_reset_mutex
);
7519 mutex_init(&ctrl_info
->ofa_mutex
);
7521 INIT_LIST_HEAD(&ctrl_info
->scsi_device_list
);
7522 spin_lock_init(&ctrl_info
->scsi_device_list_lock
);
7524 INIT_WORK(&ctrl_info
->event_work
, pqi_event_worker
);
7525 atomic_set(&ctrl_info
->num_interrupts
, 0);
7526 atomic_set(&ctrl_info
->sync_cmds_outstanding
, 0);
7528 INIT_DELAYED_WORK(&ctrl_info
->rescan_work
, pqi_rescan_worker
);
7529 INIT_DELAYED_WORK(&ctrl_info
->update_time_work
, pqi_update_time_worker
);
7531 timer_setup(&ctrl_info
->heartbeat_timer
, pqi_heartbeat_timer_handler
, 0);
7532 INIT_WORK(&ctrl_info
->ctrl_offline_work
, pqi_ctrl_offline_worker
);
7534 sema_init(&ctrl_info
->sync_request_sem
,
7535 PQI_RESERVED_IO_SLOTS_SYNCHRONOUS_REQUESTS
);
7536 init_waitqueue_head(&ctrl_info
->block_requests_wait
);
7538 INIT_LIST_HEAD(&ctrl_info
->raid_bypass_retry_list
);
7539 spin_lock_init(&ctrl_info
->raid_bypass_retry_list_lock
);
7540 INIT_WORK(&ctrl_info
->raid_bypass_retry_work
,
7541 pqi_raid_bypass_retry_worker
);
7543 ctrl_info
->ctrl_id
= atomic_inc_return(&pqi_controller_count
) - 1;
7544 ctrl_info
->irq_mode
= IRQ_MODE_NONE
;
7545 ctrl_info
->max_msix_vectors
= PQI_MAX_MSIX_VECTORS
;
7550 static inline void pqi_free_ctrl_info(struct pqi_ctrl_info
*ctrl_info
)
7555 static void pqi_free_interrupts(struct pqi_ctrl_info
*ctrl_info
)
7557 pqi_free_irqs(ctrl_info
);
7558 pqi_disable_msix_interrupts(ctrl_info
);
7561 static void pqi_free_ctrl_resources(struct pqi_ctrl_info
*ctrl_info
)
7563 pqi_stop_heartbeat_timer(ctrl_info
);
7564 pqi_free_interrupts(ctrl_info
);
7565 if (ctrl_info
->queue_memory_base
)
7566 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
7567 ctrl_info
->queue_memory_length
,
7568 ctrl_info
->queue_memory_base
,
7569 ctrl_info
->queue_memory_base_dma_handle
);
7570 if (ctrl_info
->admin_queue_memory_base
)
7571 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
7572 ctrl_info
->admin_queue_memory_length
,
7573 ctrl_info
->admin_queue_memory_base
,
7574 ctrl_info
->admin_queue_memory_base_dma_handle
);
7575 pqi_free_all_io_requests(ctrl_info
);
7576 if (ctrl_info
->error_buffer
)
7577 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
7578 ctrl_info
->error_buffer_length
,
7579 ctrl_info
->error_buffer
,
7580 ctrl_info
->error_buffer_dma_handle
);
7581 if (ctrl_info
->iomem_base
)
7582 pqi_cleanup_pci_init(ctrl_info
);
7583 pqi_free_ctrl_info(ctrl_info
);
7586 static void pqi_remove_ctrl(struct pqi_ctrl_info
*ctrl_info
)
7588 pqi_cancel_rescan_worker(ctrl_info
);
7589 pqi_cancel_update_time_worker(ctrl_info
);
7590 pqi_remove_all_scsi_devices(ctrl_info
);
7591 pqi_unregister_scsi(ctrl_info
);
7592 if (ctrl_info
->pqi_mode_enabled
)
7593 pqi_revert_to_sis_mode(ctrl_info
);
7594 pqi_free_ctrl_resources(ctrl_info
);
7597 static void pqi_ofa_ctrl_quiesce(struct pqi_ctrl_info
*ctrl_info
)
7599 pqi_cancel_update_time_worker(ctrl_info
);
7600 pqi_cancel_rescan_worker(ctrl_info
);
7601 pqi_wait_until_lun_reset_finished(ctrl_info
);
7602 pqi_wait_until_scan_finished(ctrl_info
);
7603 pqi_ctrl_ofa_start(ctrl_info
);
7604 pqi_ctrl_block_requests(ctrl_info
);
7605 pqi_ctrl_wait_until_quiesced(ctrl_info
);
7606 pqi_ctrl_wait_for_pending_io(ctrl_info
, PQI_PENDING_IO_TIMEOUT_SECS
);
7607 pqi_fail_io_queued_for_all_devices(ctrl_info
);
7608 pqi_wait_until_inbound_queues_empty(ctrl_info
);
7609 pqi_stop_heartbeat_timer(ctrl_info
);
7610 ctrl_info
->pqi_mode_enabled
= false;
7611 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
7614 static void pqi_ofa_ctrl_unquiesce(struct pqi_ctrl_info
*ctrl_info
)
7616 pqi_ofa_free_host_buffer(ctrl_info
);
7617 ctrl_info
->pqi_mode_enabled
= true;
7618 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
7619 ctrl_info
->controller_online
= true;
7620 pqi_ctrl_unblock_requests(ctrl_info
);
7621 pqi_start_heartbeat_timer(ctrl_info
);
7622 pqi_schedule_update_time_worker(ctrl_info
);
7623 pqi_clear_soft_reset_status(ctrl_info
,
7624 PQI_SOFT_RESET_ABORT
);
7625 pqi_scan_scsi_devices(ctrl_info
);
7628 static int pqi_ofa_alloc_mem(struct pqi_ctrl_info
*ctrl_info
,
7629 u32 total_size
, u32 chunk_size
)
7634 struct pqi_sg_descriptor
*mem_descriptor
= NULL
;
7636 struct pqi_ofa_memory
*ofap
;
7638 dev
= &ctrl_info
->pci_dev
->dev
;
7640 sg_count
= (total_size
+ chunk_size
- 1);
7641 sg_count
/= chunk_size
;
7643 ofap
= ctrl_info
->pqi_ofa_mem_virt_addr
;
7645 if (sg_count
*chunk_size
< total_size
)
7648 ctrl_info
->pqi_ofa_chunk_virt_addr
=
7649 kcalloc(sg_count
, sizeof(void *), GFP_KERNEL
);
7650 if (!ctrl_info
->pqi_ofa_chunk_virt_addr
)
7653 for (size
= 0, i
= 0; size
< total_size
; size
+= chunk_size
, i
++) {
7654 dma_addr_t dma_handle
;
7656 ctrl_info
->pqi_ofa_chunk_virt_addr
[i
] =
7657 dma_alloc_coherent(dev
, chunk_size
, &dma_handle
,
7660 if (!ctrl_info
->pqi_ofa_chunk_virt_addr
[i
])
7663 mem_descriptor
= &ofap
->sg_descriptor
[i
];
7664 put_unaligned_le64 ((u64
) dma_handle
, &mem_descriptor
->address
);
7665 put_unaligned_le32 (chunk_size
, &mem_descriptor
->length
);
7668 if (!size
|| size
< total_size
)
7669 goto out_free_chunks
;
7671 put_unaligned_le32(CISS_SG_LAST
, &mem_descriptor
->flags
);
7672 put_unaligned_le16(sg_count
, &ofap
->num_memory_descriptors
);
7673 put_unaligned_le32(size
, &ofap
->bytes_allocated
);
7679 mem_descriptor
= &ofap
->sg_descriptor
[i
];
7680 dma_free_coherent(dev
, chunk_size
,
7681 ctrl_info
->pqi_ofa_chunk_virt_addr
[i
],
7682 get_unaligned_le64(&mem_descriptor
->address
));
7684 kfree(ctrl_info
->pqi_ofa_chunk_virt_addr
);
7687 put_unaligned_le32 (0, &ofap
->bytes_allocated
);
7691 static int pqi_ofa_alloc_host_buffer(struct pqi_ctrl_info
*ctrl_info
)
7697 total_size
= le32_to_cpu(
7698 ctrl_info
->pqi_ofa_mem_virt_addr
->bytes_allocated
);
7699 min_chunk_size
= total_size
/ PQI_OFA_MAX_SG_DESCRIPTORS
;
7701 for (chunk_sz
= total_size
; chunk_sz
>= min_chunk_size
; chunk_sz
/= 2)
7702 if (!pqi_ofa_alloc_mem(ctrl_info
, total_size
, chunk_sz
))
7708 static void pqi_ofa_setup_host_buffer(struct pqi_ctrl_info
*ctrl_info
,
7709 u32 bytes_requested
)
7711 struct pqi_ofa_memory
*pqi_ofa_memory
;
7714 dev
= &ctrl_info
->pci_dev
->dev
;
7715 pqi_ofa_memory
= dma_alloc_coherent(dev
,
7716 PQI_OFA_MEMORY_DESCRIPTOR_LENGTH
,
7717 &ctrl_info
->pqi_ofa_mem_dma_handle
,
7720 if (!pqi_ofa_memory
)
7723 put_unaligned_le16(PQI_OFA_VERSION
, &pqi_ofa_memory
->version
);
7724 memcpy(&pqi_ofa_memory
->signature
, PQI_OFA_SIGNATURE
,
7725 sizeof(pqi_ofa_memory
->signature
));
7726 pqi_ofa_memory
->bytes_allocated
= cpu_to_le32(bytes_requested
);
7728 ctrl_info
->pqi_ofa_mem_virt_addr
= pqi_ofa_memory
;
7730 if (pqi_ofa_alloc_host_buffer(ctrl_info
) < 0) {
7731 dev_err(dev
, "Failed to allocate host buffer of size = %u",
7738 static void pqi_ofa_free_host_buffer(struct pqi_ctrl_info
*ctrl_info
)
7741 struct pqi_sg_descriptor
*mem_descriptor
;
7742 struct pqi_ofa_memory
*ofap
;
7744 ofap
= ctrl_info
->pqi_ofa_mem_virt_addr
;
7749 if (!ofap
->bytes_allocated
)
7752 mem_descriptor
= ofap
->sg_descriptor
;
7754 for (i
= 0; i
< get_unaligned_le16(&ofap
->num_memory_descriptors
);
7756 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
7757 get_unaligned_le32(&mem_descriptor
[i
].length
),
7758 ctrl_info
->pqi_ofa_chunk_virt_addr
[i
],
7759 get_unaligned_le64(&mem_descriptor
[i
].address
));
7761 kfree(ctrl_info
->pqi_ofa_chunk_virt_addr
);
7764 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
7765 PQI_OFA_MEMORY_DESCRIPTOR_LENGTH
, ofap
,
7766 ctrl_info
->pqi_ofa_mem_dma_handle
);
7767 ctrl_info
->pqi_ofa_mem_virt_addr
= NULL
;
7770 static int pqi_ofa_host_memory_update(struct pqi_ctrl_info
*ctrl_info
)
7772 struct pqi_vendor_general_request request
;
7774 struct pqi_ofa_memory
*ofap
;
7776 memset(&request
, 0, sizeof(request
));
7778 ofap
= ctrl_info
->pqi_ofa_mem_virt_addr
;
7780 request
.header
.iu_type
= PQI_REQUEST_IU_VENDOR_GENERAL
;
7781 put_unaligned_le16(sizeof(request
) - PQI_REQUEST_HEADER_LENGTH
,
7782 &request
.header
.iu_length
);
7783 put_unaligned_le16(PQI_VENDOR_GENERAL_HOST_MEMORY_UPDATE
,
7784 &request
.function_code
);
7787 size
= offsetof(struct pqi_ofa_memory
, sg_descriptor
) +
7788 get_unaligned_le16(&ofap
->num_memory_descriptors
) *
7789 sizeof(struct pqi_sg_descriptor
);
7791 put_unaligned_le64((u64
)ctrl_info
->pqi_ofa_mem_dma_handle
,
7792 &request
.data
.ofa_memory_allocation
.buffer_address
);
7793 put_unaligned_le32(size
,
7794 &request
.data
.ofa_memory_allocation
.buffer_length
);
7798 return pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
7799 0, NULL
, NO_TIMEOUT
);
7802 static int pqi_ofa_ctrl_restart(struct pqi_ctrl_info
*ctrl_info
)
7804 msleep(PQI_POST_RESET_DELAY_B4_MSGU_READY
);
7805 return pqi_ctrl_init_resume(ctrl_info
);
7808 static void pqi_perform_lockup_action(void)
7810 switch (pqi_lockup_action
) {
7812 panic("FATAL: Smart Family Controller lockup detected");
7815 emergency_restart();
7823 static struct pqi_raid_error_info pqi_ctrl_offline_raid_error_info
= {
7824 .data_out_result
= PQI_DATA_IN_OUT_HARDWARE_ERROR
,
7825 .status
= SAM_STAT_CHECK_CONDITION
,
7828 static void pqi_fail_all_outstanding_requests(struct pqi_ctrl_info
*ctrl_info
)
7831 struct pqi_io_request
*io_request
;
7832 struct scsi_cmnd
*scmd
;
7834 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
7835 io_request
= &ctrl_info
->io_request_pool
[i
];
7836 if (atomic_read(&io_request
->refcount
) == 0)
7839 scmd
= io_request
->scmd
;
7841 set_host_byte(scmd
, DID_NO_CONNECT
);
7843 io_request
->status
= -ENXIO
;
7844 io_request
->error_info
=
7845 &pqi_ctrl_offline_raid_error_info
;
7848 io_request
->io_complete_callback(io_request
,
7849 io_request
->context
);
7853 static void pqi_take_ctrl_offline_deferred(struct pqi_ctrl_info
*ctrl_info
)
7855 pqi_perform_lockup_action();
7856 pqi_stop_heartbeat_timer(ctrl_info
);
7857 pqi_free_interrupts(ctrl_info
);
7858 pqi_cancel_rescan_worker(ctrl_info
);
7859 pqi_cancel_update_time_worker(ctrl_info
);
7860 pqi_ctrl_wait_until_quiesced(ctrl_info
);
7861 pqi_fail_all_outstanding_requests(ctrl_info
);
7862 pqi_clear_all_queued_raid_bypass_retries(ctrl_info
);
7863 pqi_ctrl_unblock_requests(ctrl_info
);
7866 static void pqi_ctrl_offline_worker(struct work_struct
*work
)
7868 struct pqi_ctrl_info
*ctrl_info
;
7870 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, ctrl_offline_work
);
7871 pqi_take_ctrl_offline_deferred(ctrl_info
);
7874 static void pqi_take_ctrl_offline(struct pqi_ctrl_info
*ctrl_info
)
7876 if (!ctrl_info
->controller_online
)
7879 ctrl_info
->controller_online
= false;
7880 ctrl_info
->pqi_mode_enabled
= false;
7881 pqi_ctrl_block_requests(ctrl_info
);
7882 if (!pqi_disable_ctrl_shutdown
)
7883 sis_shutdown_ctrl(ctrl_info
);
7884 pci_disable_device(ctrl_info
->pci_dev
);
7885 dev_err(&ctrl_info
->pci_dev
->dev
, "controller offline\n");
7886 schedule_work(&ctrl_info
->ctrl_offline_work
);
7889 static void pqi_print_ctrl_info(struct pci_dev
*pci_dev
,
7890 const struct pci_device_id
*id
)
7892 char *ctrl_description
;
7894 if (id
->driver_data
)
7895 ctrl_description
= (char *)id
->driver_data
;
7897 ctrl_description
= "Microsemi Smart Family Controller";
7899 dev_info(&pci_dev
->dev
, "%s found\n", ctrl_description
);
7902 static int pqi_pci_probe(struct pci_dev
*pci_dev
,
7903 const struct pci_device_id
*id
)
7907 struct pqi_ctrl_info
*ctrl_info
;
7909 pqi_print_ctrl_info(pci_dev
, id
);
7911 if (pqi_disable_device_id_wildcards
&&
7912 id
->subvendor
== PCI_ANY_ID
&&
7913 id
->subdevice
== PCI_ANY_ID
) {
7914 dev_warn(&pci_dev
->dev
,
7915 "controller not probed because device ID wildcards are disabled\n");
7919 if (id
->subvendor
== PCI_ANY_ID
|| id
->subdevice
== PCI_ANY_ID
)
7920 dev_warn(&pci_dev
->dev
,
7921 "controller device ID matched using wildcards\n");
7923 node
= dev_to_node(&pci_dev
->dev
);
7924 if (node
== NUMA_NO_NODE
) {
7925 cp_node
= cpu_to_node(0);
7926 if (cp_node
== NUMA_NO_NODE
)
7928 set_dev_node(&pci_dev
->dev
, cp_node
);
7931 ctrl_info
= pqi_alloc_ctrl_info(node
);
7933 dev_err(&pci_dev
->dev
,
7934 "failed to allocate controller info block\n");
7938 ctrl_info
->pci_dev
= pci_dev
;
7940 rc
= pqi_pci_init(ctrl_info
);
7944 rc
= pqi_ctrl_init(ctrl_info
);
7951 pqi_remove_ctrl(ctrl_info
);
7956 static void pqi_pci_remove(struct pci_dev
*pci_dev
)
7958 struct pqi_ctrl_info
*ctrl_info
;
7960 ctrl_info
= pci_get_drvdata(pci_dev
);
7964 ctrl_info
->in_shutdown
= true;
7966 pqi_remove_ctrl(ctrl_info
);
7969 static void pqi_crash_if_pending_command(struct pqi_ctrl_info
*ctrl_info
)
7972 struct pqi_io_request
*io_request
;
7973 struct scsi_cmnd
*scmd
;
7975 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
7976 io_request
= &ctrl_info
->io_request_pool
[i
];
7977 if (atomic_read(&io_request
->refcount
) == 0)
7979 scmd
= io_request
->scmd
;
7980 WARN_ON(scmd
!= NULL
); /* IO command from SML */
7981 WARN_ON(scmd
== NULL
); /* Non-IO cmd or driver initiated*/
7985 static void pqi_shutdown(struct pci_dev
*pci_dev
)
7988 struct pqi_ctrl_info
*ctrl_info
;
7990 ctrl_info
= pci_get_drvdata(pci_dev
);
7992 dev_err(&pci_dev
->dev
,
7993 "cache could not be flushed\n");
7997 pqi_disable_events(ctrl_info
);
7998 pqi_wait_until_ofa_finished(ctrl_info
);
7999 pqi_cancel_update_time_worker(ctrl_info
);
8000 pqi_cancel_rescan_worker(ctrl_info
);
8001 pqi_cancel_event_worker(ctrl_info
);
8003 pqi_ctrl_shutdown_start(ctrl_info
);
8004 pqi_ctrl_wait_until_quiesced(ctrl_info
);
8006 rc
= pqi_ctrl_wait_for_pending_io(ctrl_info
, NO_TIMEOUT
);
8008 dev_err(&pci_dev
->dev
,
8009 "wait for pending I/O failed\n");
8013 pqi_ctrl_block_device_reset(ctrl_info
);
8014 pqi_wait_until_lun_reset_finished(ctrl_info
);
8017 * Write all data in the controller's battery-backed cache to
8020 rc
= pqi_flush_cache(ctrl_info
, SHUTDOWN
);
8022 dev_err(&pci_dev
->dev
,
8023 "unable to flush controller cache\n");
8025 pqi_ctrl_block_requests(ctrl_info
);
8027 rc
= pqi_ctrl_wait_for_pending_sync_cmds(ctrl_info
);
8029 dev_err(&pci_dev
->dev
,
8030 "wait for pending sync cmds failed\n");
8034 pqi_crash_if_pending_command(ctrl_info
);
8035 pqi_reset(ctrl_info
);
8038 static void pqi_process_lockup_action_param(void)
8042 if (!pqi_lockup_action_param
)
8045 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
8046 if (strcmp(pqi_lockup_action_param
,
8047 pqi_lockup_actions
[i
].name
) == 0) {
8048 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
8053 pr_warn("%s: invalid lockup action setting \"%s\" - supported settings: none, reboot, panic\n",
8054 DRIVER_NAME_SHORT
, pqi_lockup_action_param
);
8057 static void pqi_process_module_params(void)
8059 pqi_process_lockup_action_param();
8062 static __maybe_unused
int pqi_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
8064 struct pqi_ctrl_info
*ctrl_info
;
8066 ctrl_info
= pci_get_drvdata(pci_dev
);
8068 pqi_disable_events(ctrl_info
);
8069 pqi_cancel_update_time_worker(ctrl_info
);
8070 pqi_cancel_rescan_worker(ctrl_info
);
8071 pqi_wait_until_scan_finished(ctrl_info
);
8072 pqi_wait_until_lun_reset_finished(ctrl_info
);
8073 pqi_wait_until_ofa_finished(ctrl_info
);
8074 pqi_flush_cache(ctrl_info
, SUSPEND
);
8075 pqi_ctrl_block_requests(ctrl_info
);
8076 pqi_ctrl_wait_until_quiesced(ctrl_info
);
8077 pqi_wait_until_inbound_queues_empty(ctrl_info
);
8078 pqi_ctrl_wait_for_pending_io(ctrl_info
, NO_TIMEOUT
);
8079 pqi_stop_heartbeat_timer(ctrl_info
);
8081 if (state
.event
== PM_EVENT_FREEZE
)
8084 pci_save_state(pci_dev
);
8085 pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
8087 ctrl_info
->controller_online
= false;
8088 ctrl_info
->pqi_mode_enabled
= false;
8093 static __maybe_unused
int pqi_resume(struct pci_dev
*pci_dev
)
8096 struct pqi_ctrl_info
*ctrl_info
;
8098 ctrl_info
= pci_get_drvdata(pci_dev
);
8100 if (pci_dev
->current_state
!= PCI_D0
) {
8101 ctrl_info
->max_hw_queue_index
= 0;
8102 pqi_free_interrupts(ctrl_info
);
8103 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_INTX
);
8104 rc
= request_irq(pci_irq_vector(pci_dev
, 0), pqi_irq_handler
,
8105 IRQF_SHARED
, DRIVER_NAME_SHORT
,
8106 &ctrl_info
->queue_groups
[0]);
8108 dev_err(&ctrl_info
->pci_dev
->dev
,
8109 "irq %u init failed with error %d\n",
8113 pqi_start_heartbeat_timer(ctrl_info
);
8114 pqi_ctrl_unblock_requests(ctrl_info
);
8118 pci_set_power_state(pci_dev
, PCI_D0
);
8119 pci_restore_state(pci_dev
);
8121 return pqi_ctrl_init_resume(ctrl_info
);
8124 /* Define the PCI IDs for the controllers that we support. */
8125 static const struct pci_device_id pqi_pci_id_table
[] = {
8127 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8131 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8135 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8139 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8143 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8147 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8151 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8155 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8159 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8163 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8167 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8171 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8175 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8179 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8183 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8187 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8191 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8195 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8199 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8203 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8207 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8211 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8215 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8219 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8223 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8227 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8231 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8235 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8239 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8243 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8247 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8251 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8252 PCI_VENDOR_ID_ADAPTEC2
, 0x0110)
8255 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8256 PCI_VENDOR_ID_ADAPTEC2
, 0x0608)
8259 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8260 PCI_VENDOR_ID_ADAPTEC2
, 0x0800)
8263 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8264 PCI_VENDOR_ID_ADAPTEC2
, 0x0801)
8267 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8268 PCI_VENDOR_ID_ADAPTEC2
, 0x0802)
8271 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8272 PCI_VENDOR_ID_ADAPTEC2
, 0x0803)
8275 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8276 PCI_VENDOR_ID_ADAPTEC2
, 0x0804)
8279 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8280 PCI_VENDOR_ID_ADAPTEC2
, 0x0805)
8283 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8284 PCI_VENDOR_ID_ADAPTEC2
, 0x0806)
8287 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8288 PCI_VENDOR_ID_ADAPTEC2
, 0x0807)
8291 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8292 PCI_VENDOR_ID_ADAPTEC2
, 0x0808)
8295 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8296 PCI_VENDOR_ID_ADAPTEC2
, 0x0809)
8299 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8300 PCI_VENDOR_ID_ADAPTEC2
, 0x0900)
8303 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8304 PCI_VENDOR_ID_ADAPTEC2
, 0x0901)
8307 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8308 PCI_VENDOR_ID_ADAPTEC2
, 0x0902)
8311 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8312 PCI_VENDOR_ID_ADAPTEC2
, 0x0903)
8315 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8316 PCI_VENDOR_ID_ADAPTEC2
, 0x0904)
8319 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8320 PCI_VENDOR_ID_ADAPTEC2
, 0x0905)
8323 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8324 PCI_VENDOR_ID_ADAPTEC2
, 0x0906)
8327 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8328 PCI_VENDOR_ID_ADAPTEC2
, 0x0907)
8331 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8332 PCI_VENDOR_ID_ADAPTEC2
, 0x0908)
8335 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8336 PCI_VENDOR_ID_ADAPTEC2
, 0x090a)
8339 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8340 PCI_VENDOR_ID_ADAPTEC2
, 0x1200)
8343 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8344 PCI_VENDOR_ID_ADAPTEC2
, 0x1201)
8347 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8348 PCI_VENDOR_ID_ADAPTEC2
, 0x1202)
8351 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8352 PCI_VENDOR_ID_ADAPTEC2
, 0x1280)
8355 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8356 PCI_VENDOR_ID_ADAPTEC2
, 0x1281)
8359 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8360 PCI_VENDOR_ID_ADAPTEC2
, 0x1282)
8363 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8364 PCI_VENDOR_ID_ADAPTEC2
, 0x1300)
8367 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8368 PCI_VENDOR_ID_ADAPTEC2
, 0x1301)
8371 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8372 PCI_VENDOR_ID_ADAPTEC2
, 0x1302)
8375 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8376 PCI_VENDOR_ID_ADAPTEC2
, 0x1303)
8379 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8380 PCI_VENDOR_ID_ADAPTEC2
, 0x1380)
8383 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8384 PCI_VENDOR_ID_ADVANTECH
, 0x8312)
8387 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8388 PCI_VENDOR_ID_DELL
, 0x1fe0)
8391 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8392 PCI_VENDOR_ID_HP
, 0x0600)
8395 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8396 PCI_VENDOR_ID_HP
, 0x0601)
8399 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8400 PCI_VENDOR_ID_HP
, 0x0602)
8403 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8404 PCI_VENDOR_ID_HP
, 0x0603)
8407 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8408 PCI_VENDOR_ID_HP
, 0x0609)
8411 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8412 PCI_VENDOR_ID_HP
, 0x0650)
8415 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8416 PCI_VENDOR_ID_HP
, 0x0651)
8419 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8420 PCI_VENDOR_ID_HP
, 0x0652)
8423 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8424 PCI_VENDOR_ID_HP
, 0x0653)
8427 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8428 PCI_VENDOR_ID_HP
, 0x0654)
8431 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8432 PCI_VENDOR_ID_HP
, 0x0655)
8435 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8436 PCI_VENDOR_ID_HP
, 0x0700)
8439 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8440 PCI_VENDOR_ID_HP
, 0x0701)
8443 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8444 PCI_VENDOR_ID_HP
, 0x1001)
8447 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8448 PCI_VENDOR_ID_HP
, 0x1100)
8451 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8452 PCI_VENDOR_ID_HP
, 0x1101)
8455 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8459 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8463 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8467 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8471 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8472 PCI_VENDOR_ID_GIGABYTE
, 0x1000)
8475 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
8476 PCI_ANY_ID
, PCI_ANY_ID
)
8481 MODULE_DEVICE_TABLE(pci
, pqi_pci_id_table
);
8483 static struct pci_driver pqi_pci_driver
= {
8484 .name
= DRIVER_NAME_SHORT
,
8485 .id_table
= pqi_pci_id_table
,
8486 .probe
= pqi_pci_probe
,
8487 .remove
= pqi_pci_remove
,
8488 .shutdown
= pqi_shutdown
,
8489 #if defined(CONFIG_PM)
8490 .suspend
= pqi_suspend
,
8491 .resume
= pqi_resume
,
8495 static int __init
pqi_init(void)
8499 pr_info(DRIVER_NAME
"\n");
8501 pqi_sas_transport_template
=
8502 sas_attach_transport(&pqi_sas_transport_functions
);
8503 if (!pqi_sas_transport_template
)
8506 pqi_process_module_params();
8508 rc
= pci_register_driver(&pqi_pci_driver
);
8510 sas_release_transport(pqi_sas_transport_template
);
8515 static void __exit
pqi_cleanup(void)
8517 pci_unregister_driver(&pqi_pci_driver
);
8518 sas_release_transport(pqi_sas_transport_template
);
8521 module_init(pqi_init
);
8522 module_exit(pqi_cleanup
);
8524 static void __attribute__((unused
)) verify_structures(void)
8526 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8527 sis_host_to_ctrl_doorbell
) != 0x20);
8528 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8529 sis_interrupt_mask
) != 0x34);
8530 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8531 sis_ctrl_to_host_doorbell
) != 0x9c);
8532 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8533 sis_ctrl_to_host_doorbell_clear
) != 0xa0);
8534 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8535 sis_driver_scratch
) != 0xb0);
8536 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8537 sis_firmware_status
) != 0xbc);
8538 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8539 sis_mailbox
) != 0x1000);
8540 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
8541 pqi_registers
) != 0x4000);
8543 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
8545 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
8547 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
8548 response_queue_id
) != 0x4);
8549 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
8551 BUILD_BUG_ON(sizeof(struct pqi_iu_header
) != 0x8);
8553 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8555 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8556 service_response
) != 0x1);
8557 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8558 data_present
) != 0x2);
8559 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8561 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8562 residual_count
) != 0x4);
8563 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8564 data_length
) != 0x8);
8565 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8567 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
8569 BUILD_BUG_ON(sizeof(struct pqi_aio_error_info
) != 0x10c);
8571 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8572 data_in_result
) != 0x0);
8573 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8574 data_out_result
) != 0x1);
8575 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8577 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8579 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8580 status_qualifier
) != 0x6);
8581 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8582 sense_data_length
) != 0x8);
8583 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8584 response_data_length
) != 0xa);
8585 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8586 data_in_transferred
) != 0xc);
8587 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8588 data_out_transferred
) != 0x10);
8589 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
8591 BUILD_BUG_ON(sizeof(struct pqi_raid_error_info
) != 0x114);
8593 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8595 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8596 function_and_status_code
) != 0x8);
8597 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8598 max_admin_iq_elements
) != 0x10);
8599 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8600 max_admin_oq_elements
) != 0x11);
8601 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8602 admin_iq_element_length
) != 0x12);
8603 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8604 admin_oq_element_length
) != 0x13);
8605 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8606 max_reset_timeout
) != 0x14);
8607 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8608 legacy_intx_status
) != 0x18);
8609 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8610 legacy_intx_mask_set
) != 0x1c);
8611 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8612 legacy_intx_mask_clear
) != 0x20);
8613 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8614 device_status
) != 0x40);
8615 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8616 admin_iq_pi_offset
) != 0x48);
8617 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8618 admin_oq_ci_offset
) != 0x50);
8619 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8620 admin_iq_element_array_addr
) != 0x58);
8621 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8622 admin_oq_element_array_addr
) != 0x60);
8623 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8624 admin_iq_ci_addr
) != 0x68);
8625 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8626 admin_oq_pi_addr
) != 0x70);
8627 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8628 admin_iq_num_elements
) != 0x78);
8629 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8630 admin_oq_num_elements
) != 0x79);
8631 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8632 admin_queue_int_msg_num
) != 0x7a);
8633 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8634 device_error
) != 0x80);
8635 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8636 error_details
) != 0x88);
8637 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8638 device_reset
) != 0x90);
8639 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
8640 power_action
) != 0x94);
8641 BUILD_BUG_ON(sizeof(struct pqi_device_registers
) != 0x100);
8643 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8644 header
.iu_type
) != 0);
8645 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8646 header
.iu_length
) != 2);
8647 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8648 header
.work_area
) != 6);
8649 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8651 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8652 function_code
) != 10);
8653 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8654 data
.report_device_capability
.buffer_length
) != 44);
8655 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8656 data
.report_device_capability
.sg_descriptor
) != 48);
8657 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8658 data
.create_operational_iq
.queue_id
) != 12);
8659 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8660 data
.create_operational_iq
.element_array_addr
) != 16);
8661 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8662 data
.create_operational_iq
.ci_addr
) != 24);
8663 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8664 data
.create_operational_iq
.num_elements
) != 32);
8665 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8666 data
.create_operational_iq
.element_length
) != 34);
8667 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8668 data
.create_operational_iq
.queue_protocol
) != 36);
8669 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8670 data
.create_operational_oq
.queue_id
) != 12);
8671 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8672 data
.create_operational_oq
.element_array_addr
) != 16);
8673 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8674 data
.create_operational_oq
.pi_addr
) != 24);
8675 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8676 data
.create_operational_oq
.num_elements
) != 32);
8677 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8678 data
.create_operational_oq
.element_length
) != 34);
8679 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8680 data
.create_operational_oq
.queue_protocol
) != 36);
8681 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8682 data
.create_operational_oq
.int_msg_num
) != 40);
8683 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8684 data
.create_operational_oq
.coalescing_count
) != 42);
8685 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8686 data
.create_operational_oq
.min_coalescing_time
) != 44);
8687 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8688 data
.create_operational_oq
.max_coalescing_time
) != 48);
8689 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
8690 data
.delete_operational_queue
.queue_id
) != 12);
8691 BUILD_BUG_ON(sizeof(struct pqi_general_admin_request
) != 64);
8692 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request
,
8693 data
.create_operational_iq
) != 64 - 11);
8694 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request
,
8695 data
.create_operational_oq
) != 64 - 11);
8696 BUILD_BUG_ON(sizeof_field(struct pqi_general_admin_request
,
8697 data
.delete_operational_queue
) != 64 - 11);
8699 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8700 header
.iu_type
) != 0);
8701 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8702 header
.iu_length
) != 2);
8703 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8704 header
.work_area
) != 6);
8705 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8707 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8708 function_code
) != 10);
8709 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8711 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8712 data
.create_operational_iq
.status_descriptor
) != 12);
8713 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8714 data
.create_operational_iq
.iq_pi_offset
) != 16);
8715 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8716 data
.create_operational_oq
.status_descriptor
) != 12);
8717 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
8718 data
.create_operational_oq
.oq_ci_offset
) != 16);
8719 BUILD_BUG_ON(sizeof(struct pqi_general_admin_response
) != 64);
8721 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8722 header
.iu_type
) != 0);
8723 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8724 header
.iu_length
) != 2);
8725 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8726 header
.response_queue_id
) != 4);
8727 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8728 header
.work_area
) != 6);
8729 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8731 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8733 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8734 buffer_length
) != 12);
8735 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8737 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8738 protocol_specific
) != 24);
8739 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8740 error_index
) != 27);
8741 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8743 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8745 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
8746 sg_descriptors
) != 64);
8747 BUILD_BUG_ON(sizeof(struct pqi_raid_path_request
) !=
8748 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
8750 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8751 header
.iu_type
) != 0);
8752 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8753 header
.iu_length
) != 2);
8754 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8755 header
.response_queue_id
) != 4);
8756 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8757 header
.work_area
) != 6);
8758 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8760 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8762 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8763 buffer_length
) != 16);
8764 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8765 data_encryption_key_index
) != 22);
8766 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8767 encrypt_tweak_lower
) != 24);
8768 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8769 encrypt_tweak_upper
) != 28);
8770 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8772 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8773 error_index
) != 48);
8774 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8775 num_sg_descriptors
) != 50);
8776 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8778 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8780 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
8781 sg_descriptors
) != 64);
8782 BUILD_BUG_ON(sizeof(struct pqi_aio_path_request
) !=
8783 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
8785 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
8786 header
.iu_type
) != 0);
8787 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
8788 header
.iu_length
) != 2);
8789 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
8791 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
8792 error_index
) != 10);
8794 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8795 header
.iu_type
) != 0);
8796 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8797 header
.iu_length
) != 2);
8798 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8799 header
.response_queue_id
) != 4);
8800 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8802 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8803 data
.report_event_configuration
.buffer_length
) != 12);
8804 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8805 data
.report_event_configuration
.sg_descriptors
) != 16);
8806 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8807 data
.set_event_configuration
.global_event_oq_id
) != 10);
8808 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8809 data
.set_event_configuration
.buffer_length
) != 12);
8810 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
8811 data
.set_event_configuration
.sg_descriptors
) != 16);
8813 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
8814 max_inbound_iu_length
) != 6);
8815 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
8816 max_outbound_iu_length
) != 14);
8817 BUILD_BUG_ON(sizeof(struct pqi_iu_layer_descriptor
) != 16);
8819 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8821 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8822 iq_arbitration_priority_support_bitmask
) != 8);
8823 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8824 maximum_aw_a
) != 9);
8825 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8826 maximum_aw_b
) != 10);
8827 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8828 maximum_aw_c
) != 11);
8829 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8830 max_inbound_queues
) != 16);
8831 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8832 max_elements_per_iq
) != 18);
8833 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8834 max_iq_element_length
) != 24);
8835 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8836 min_iq_element_length
) != 26);
8837 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8838 max_outbound_queues
) != 30);
8839 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8840 max_elements_per_oq
) != 32);
8841 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8842 intr_coalescing_time_granularity
) != 34);
8843 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8844 max_oq_element_length
) != 36);
8845 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8846 min_oq_element_length
) != 38);
8847 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
8848 iu_layer_descriptors
) != 64);
8849 BUILD_BUG_ON(sizeof(struct pqi_device_capability
) != 576);
8851 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
8853 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
8855 BUILD_BUG_ON(sizeof(struct pqi_event_descriptor
) != 4);
8857 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
8858 num_event_descriptors
) != 2);
8859 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
8862 BUILD_BUG_ON(PQI_NUM_SUPPORTED_EVENTS
!=
8863 ARRAY_SIZE(pqi_supported_event_types
));
8865 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8866 header
.iu_type
) != 0);
8867 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8868 header
.iu_length
) != 2);
8869 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8871 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8873 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8874 additional_event_id
) != 12);
8875 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
8877 BUILD_BUG_ON(sizeof(struct pqi_event_response
) != 32);
8879 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
8880 header
.iu_type
) != 0);
8881 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
8882 header
.iu_length
) != 2);
8883 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
8885 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
8887 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
8888 additional_event_id
) != 12);
8889 BUILD_BUG_ON(sizeof(struct pqi_event_acknowledge_request
) != 16);
8891 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8892 header
.iu_type
) != 0);
8893 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8894 header
.iu_length
) != 2);
8895 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8897 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8899 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8901 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8903 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8904 protocol_specific
) != 24);
8905 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8906 outbound_queue_id_to_manage
) != 26);
8907 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8908 request_id_to_manage
) != 28);
8909 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
8910 task_management_function
) != 30);
8911 BUILD_BUG_ON(sizeof(struct pqi_task_management_request
) != 32);
8913 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8914 header
.iu_type
) != 0);
8915 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8916 header
.iu_length
) != 2);
8917 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8919 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8921 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8922 additional_response_info
) != 12);
8923 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
8924 response_code
) != 15);
8925 BUILD_BUG_ON(sizeof(struct pqi_task_management_response
) != 16);
8927 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8928 configured_logical_drive_count
) != 0);
8929 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8930 configuration_signature
) != 1);
8931 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8932 firmware_version
) != 5);
8933 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8934 extended_logical_unit_count
) != 154);
8935 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8936 firmware_build_number
) != 190);
8937 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
8938 controller_mode
) != 292);
8940 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8941 phys_bay_in_box
) != 115);
8942 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8943 device_type
) != 120);
8944 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8945 redundant_path_present_map
) != 1736);
8946 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8947 active_path_number
) != 1738);
8948 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8949 alternate_paths_phys_connector
) != 1739);
8950 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8951 alternate_paths_phys_box_on_port
) != 1755);
8952 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
8953 current_queue_depth_limit
) != 1796);
8954 BUILD_BUG_ON(sizeof(struct bmic_identify_physical_device
) != 2560);
8956 BUILD_BUG_ON(PQI_ADMIN_IQ_NUM_ELEMENTS
> 255);
8957 BUILD_BUG_ON(PQI_ADMIN_OQ_NUM_ELEMENTS
> 255);
8958 BUILD_BUG_ON(PQI_ADMIN_IQ_ELEMENT_LENGTH
%
8959 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
8960 BUILD_BUG_ON(PQI_ADMIN_OQ_ELEMENT_LENGTH
%
8961 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
8962 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
> 1048560);
8963 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
%
8964 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
8965 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
> 1048560);
8966 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
%
8967 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
8969 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>= PQI_MAX_OUTSTANDING_REQUESTS
);
8970 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>=
8971 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
);