2 * driver for Microsemi PQI-based storage controllers
3 * Copyright (c) 2016-2017 Microsemi Corporation
4 * Copyright (c) 2016 PMC-Sierra, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more details.
15 * Questions/Comments/Bugfixes to esc.storagedev@microsemi.com
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/pci.h>
22 #include <linux/delay.h>
23 #include <linux/interrupt.h>
24 #include <linux/sched.h>
25 #include <linux/rtc.h>
26 #include <linux/bcd.h>
27 #include <linux/reboot.h>
28 #include <linux/cciss_ioctl.h>
29 #include <linux/blk-mq-pci.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_cmnd.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_eh.h>
34 #include <scsi/scsi_transport_sas.h>
35 #include <asm/unaligned.h>
37 #include "smartpqi_sis.h"
39 #if !defined(BUILD_TIMESTAMP)
40 #define BUILD_TIMESTAMP
43 #define DRIVER_VERSION "1.1.4-115"
44 #define DRIVER_MAJOR 1
45 #define DRIVER_MINOR 1
46 #define DRIVER_RELEASE 4
47 #define DRIVER_REVISION 115
49 #define DRIVER_NAME "Microsemi PQI Driver (v" \
50 DRIVER_VERSION BUILD_TIMESTAMP ")"
51 #define DRIVER_NAME_SHORT "smartpqi"
53 #define PQI_EXTRA_SGL_MEMORY (12 * sizeof(struct pqi_sg_descriptor))
55 MODULE_AUTHOR("Microsemi");
56 MODULE_DESCRIPTION("Driver for Microsemi Smart Family Controller version "
58 MODULE_SUPPORTED_DEVICE("Microsemi Smart Family Controllers");
59 MODULE_VERSION(DRIVER_VERSION
);
60 MODULE_LICENSE("GPL");
62 static void pqi_take_ctrl_offline(struct pqi_ctrl_info
*ctrl_info
);
63 static void pqi_ctrl_offline_worker(struct work_struct
*work
);
64 static void pqi_retry_raid_bypass_requests(struct pqi_ctrl_info
*ctrl_info
);
65 static int pqi_scan_scsi_devices(struct pqi_ctrl_info
*ctrl_info
);
66 static void pqi_scan_start(struct Scsi_Host
*shost
);
67 static void pqi_start_io(struct pqi_ctrl_info
*ctrl_info
,
68 struct pqi_queue_group
*queue_group
, enum pqi_io_path path
,
69 struct pqi_io_request
*io_request
);
70 static int pqi_submit_raid_request_synchronous(struct pqi_ctrl_info
*ctrl_info
,
71 struct pqi_iu_header
*request
, unsigned int flags
,
72 struct pqi_raid_error_info
*error_info
, unsigned long timeout_msecs
);
73 static int pqi_aio_submit_io(struct pqi_ctrl_info
*ctrl_info
,
74 struct scsi_cmnd
*scmd
, u32 aio_handle
, u8
*cdb
,
75 unsigned int cdb_length
, struct pqi_queue_group
*queue_group
,
76 struct pqi_encryption_info
*encryption_info
, bool raid_bypass
);
78 /* for flags argument to pqi_submit_raid_request_synchronous() */
79 #define PQI_SYNC_FLAGS_INTERRUPTABLE 0x1
81 static struct scsi_transport_template
*pqi_sas_transport_template
;
83 static atomic_t pqi_controller_count
= ATOMIC_INIT(0);
85 enum pqi_lockup_action
{
91 static enum pqi_lockup_action pqi_lockup_action
= NONE
;
94 enum pqi_lockup_action action
;
96 } pqi_lockup_actions
[] = {
111 static unsigned int pqi_supported_event_types
[] = {
112 PQI_EVENT_TYPE_HOTPLUG
,
113 PQI_EVENT_TYPE_HARDWARE
,
114 PQI_EVENT_TYPE_PHYSICAL_DEVICE
,
115 PQI_EVENT_TYPE_LOGICAL_DEVICE
,
116 PQI_EVENT_TYPE_AIO_STATE_CHANGE
,
117 PQI_EVENT_TYPE_AIO_CONFIG_CHANGE
,
120 static int pqi_disable_device_id_wildcards
;
121 module_param_named(disable_device_id_wildcards
,
122 pqi_disable_device_id_wildcards
, int, 0644);
123 MODULE_PARM_DESC(disable_device_id_wildcards
,
124 "Disable device ID wildcards.");
126 static int pqi_disable_heartbeat
;
127 module_param_named(disable_heartbeat
,
128 pqi_disable_heartbeat
, int, 0644);
129 MODULE_PARM_DESC(disable_heartbeat
,
130 "Disable heartbeat.");
132 static int pqi_disable_ctrl_shutdown
;
133 module_param_named(disable_ctrl_shutdown
,
134 pqi_disable_ctrl_shutdown
, int, 0644);
135 MODULE_PARM_DESC(disable_ctrl_shutdown
,
136 "Disable controller shutdown when controller locked up.");
138 static char *pqi_lockup_action_param
;
139 module_param_named(lockup_action
,
140 pqi_lockup_action_param
, charp
, 0644);
141 MODULE_PARM_DESC(lockup_action
, "Action to take when controller locked up.\n"
142 "\t\tSupported: none, reboot, panic\n"
143 "\t\tDefault: none");
145 static char *raid_levels
[] = {
155 static char *pqi_raid_level_to_string(u8 raid_level
)
157 if (raid_level
< ARRAY_SIZE(raid_levels
))
158 return raid_levels
[raid_level
];
160 return "RAID UNKNOWN";
165 #define SA_RAID_1 2 /* also used for RAID 10 */
166 #define SA_RAID_5 3 /* also used for RAID 50 */
168 #define SA_RAID_6 5 /* also used for RAID 60 */
169 #define SA_RAID_ADM 6 /* also used for RAID 1+0 ADM */
170 #define SA_RAID_MAX SA_RAID_ADM
171 #define SA_RAID_UNKNOWN 0xff
173 static inline void pqi_scsi_done(struct scsi_cmnd
*scmd
)
175 pqi_prep_for_scsi_done(scmd
);
176 scmd
->scsi_done(scmd
);
179 static inline bool pqi_scsi3addr_equal(u8
*scsi3addr1
, u8
*scsi3addr2
)
181 return memcmp(scsi3addr1
, scsi3addr2
, 8) == 0;
184 static inline struct pqi_ctrl_info
*shost_to_hba(struct Scsi_Host
*shost
)
186 void *hostdata
= shost_priv(shost
);
188 return *((struct pqi_ctrl_info
**)hostdata
);
191 static inline bool pqi_is_logical_device(struct pqi_scsi_dev
*device
)
193 return !device
->is_physical_device
;
196 static inline bool pqi_is_external_raid_addr(u8
*scsi3addr
)
198 return scsi3addr
[2] != 0;
201 static inline bool pqi_ctrl_offline(struct pqi_ctrl_info
*ctrl_info
)
203 return !ctrl_info
->controller_online
;
206 static inline void pqi_check_ctrl_health(struct pqi_ctrl_info
*ctrl_info
)
208 if (ctrl_info
->controller_online
)
209 if (!sis_is_firmware_running(ctrl_info
))
210 pqi_take_ctrl_offline(ctrl_info
);
213 static inline bool pqi_is_hba_lunid(u8
*scsi3addr
)
215 return pqi_scsi3addr_equal(scsi3addr
, RAID_CTLR_LUNID
);
218 static inline enum pqi_ctrl_mode
pqi_get_ctrl_mode(
219 struct pqi_ctrl_info
*ctrl_info
)
221 return sis_read_driver_scratch(ctrl_info
);
224 static inline void pqi_save_ctrl_mode(struct pqi_ctrl_info
*ctrl_info
,
225 enum pqi_ctrl_mode mode
)
227 sis_write_driver_scratch(ctrl_info
, mode
);
230 static inline void pqi_ctrl_block_requests(struct pqi_ctrl_info
*ctrl_info
)
232 ctrl_info
->block_requests
= true;
233 scsi_block_requests(ctrl_info
->scsi_host
);
236 static inline void pqi_ctrl_unblock_requests(struct pqi_ctrl_info
*ctrl_info
)
238 ctrl_info
->block_requests
= false;
239 wake_up_all(&ctrl_info
->block_requests_wait
);
240 pqi_retry_raid_bypass_requests(ctrl_info
);
241 scsi_unblock_requests(ctrl_info
->scsi_host
);
244 static inline bool pqi_ctrl_blocked(struct pqi_ctrl_info
*ctrl_info
)
246 return ctrl_info
->block_requests
;
249 static unsigned long pqi_wait_if_ctrl_blocked(struct pqi_ctrl_info
*ctrl_info
,
250 unsigned long timeout_msecs
)
252 unsigned long remaining_msecs
;
254 if (!pqi_ctrl_blocked(ctrl_info
))
255 return timeout_msecs
;
257 atomic_inc(&ctrl_info
->num_blocked_threads
);
259 if (timeout_msecs
== NO_TIMEOUT
) {
260 wait_event(ctrl_info
->block_requests_wait
,
261 !pqi_ctrl_blocked(ctrl_info
));
262 remaining_msecs
= timeout_msecs
;
264 unsigned long remaining_jiffies
;
267 wait_event_timeout(ctrl_info
->block_requests_wait
,
268 !pqi_ctrl_blocked(ctrl_info
),
269 msecs_to_jiffies(timeout_msecs
));
270 remaining_msecs
= jiffies_to_msecs(remaining_jiffies
);
273 atomic_dec(&ctrl_info
->num_blocked_threads
);
275 return remaining_msecs
;
278 static inline void pqi_ctrl_busy(struct pqi_ctrl_info
*ctrl_info
)
280 atomic_inc(&ctrl_info
->num_busy_threads
);
283 static inline void pqi_ctrl_unbusy(struct pqi_ctrl_info
*ctrl_info
)
285 atomic_dec(&ctrl_info
->num_busy_threads
);
288 static inline void pqi_ctrl_wait_until_quiesced(struct pqi_ctrl_info
*ctrl_info
)
290 while (atomic_read(&ctrl_info
->num_busy_threads
) >
291 atomic_read(&ctrl_info
->num_blocked_threads
))
292 usleep_range(1000, 2000);
295 static inline bool pqi_device_offline(struct pqi_scsi_dev
*device
)
297 return device
->device_offline
;
300 static inline void pqi_device_reset_start(struct pqi_scsi_dev
*device
)
302 device
->in_reset
= true;
305 static inline void pqi_device_reset_done(struct pqi_scsi_dev
*device
)
307 device
->in_reset
= false;
310 static inline bool pqi_device_in_reset(struct pqi_scsi_dev
*device
)
312 return device
->in_reset
;
315 static inline void pqi_schedule_rescan_worker_with_delay(
316 struct pqi_ctrl_info
*ctrl_info
, unsigned long delay
)
318 if (pqi_ctrl_offline(ctrl_info
))
321 schedule_delayed_work(&ctrl_info
->rescan_work
, delay
);
324 static inline void pqi_schedule_rescan_worker(struct pqi_ctrl_info
*ctrl_info
)
326 pqi_schedule_rescan_worker_with_delay(ctrl_info
, 0);
329 #define PQI_RESCAN_WORK_DELAY (10 * HZ)
331 static inline void pqi_schedule_rescan_worker_delayed(
332 struct pqi_ctrl_info
*ctrl_info
)
334 pqi_schedule_rescan_worker_with_delay(ctrl_info
, PQI_RESCAN_WORK_DELAY
);
337 static inline void pqi_cancel_rescan_worker(struct pqi_ctrl_info
*ctrl_info
)
339 cancel_delayed_work_sync(&ctrl_info
->rescan_work
);
342 static inline u32
pqi_read_heartbeat_counter(struct pqi_ctrl_info
*ctrl_info
)
344 if (!ctrl_info
->heartbeat_counter
)
347 return readl(ctrl_info
->heartbeat_counter
);
350 static int pqi_map_single(struct pci_dev
*pci_dev
,
351 struct pqi_sg_descriptor
*sg_descriptor
, void *buffer
,
352 size_t buffer_length
, int data_direction
)
354 dma_addr_t bus_address
;
356 if (!buffer
|| buffer_length
== 0 || data_direction
== PCI_DMA_NONE
)
359 bus_address
= pci_map_single(pci_dev
, buffer
, buffer_length
,
361 if (pci_dma_mapping_error(pci_dev
, bus_address
))
364 put_unaligned_le64((u64
)bus_address
, &sg_descriptor
->address
);
365 put_unaligned_le32(buffer_length
, &sg_descriptor
->length
);
366 put_unaligned_le32(CISS_SG_LAST
, &sg_descriptor
->flags
);
371 static void pqi_pci_unmap(struct pci_dev
*pci_dev
,
372 struct pqi_sg_descriptor
*descriptors
, int num_descriptors
,
377 if (data_direction
== PCI_DMA_NONE
)
380 for (i
= 0; i
< num_descriptors
; i
++)
381 pci_unmap_single(pci_dev
,
382 (dma_addr_t
)get_unaligned_le64(&descriptors
[i
].address
),
383 get_unaligned_le32(&descriptors
[i
].length
),
387 static int pqi_build_raid_path_request(struct pqi_ctrl_info
*ctrl_info
,
388 struct pqi_raid_path_request
*request
, u8 cmd
,
389 u8
*scsi3addr
, void *buffer
, size_t buffer_length
,
390 u16 vpd_page
, int *pci_direction
)
395 memset(request
, 0, sizeof(*request
));
397 request
->header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
398 put_unaligned_le16(offsetof(struct pqi_raid_path_request
,
399 sg_descriptors
[1]) - PQI_REQUEST_HEADER_LENGTH
,
400 &request
->header
.iu_length
);
401 put_unaligned_le32(buffer_length
, &request
->buffer_length
);
402 memcpy(request
->lun_number
, scsi3addr
, sizeof(request
->lun_number
));
403 request
->task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
404 request
->additional_cdb_bytes_usage
= SOP_ADDITIONAL_CDB_BYTES_0
;
410 request
->data_direction
= SOP_READ_FLAG
;
412 if (vpd_page
& VPD_PAGE
) {
414 cdb
[2] = (u8
)vpd_page
;
416 cdb
[4] = (u8
)buffer_length
;
418 case CISS_REPORT_LOG
:
419 case CISS_REPORT_PHYS
:
420 request
->data_direction
= SOP_READ_FLAG
;
422 if (cmd
== CISS_REPORT_PHYS
)
423 cdb
[1] = CISS_REPORT_PHYS_EXTENDED
;
425 cdb
[1] = CISS_REPORT_LOG_EXTENDED
;
426 put_unaligned_be32(buffer_length
, &cdb
[6]);
428 case CISS_GET_RAID_MAP
:
429 request
->data_direction
= SOP_READ_FLAG
;
431 cdb
[1] = CISS_GET_RAID_MAP
;
432 put_unaligned_be32(buffer_length
, &cdb
[6]);
435 request
->data_direction
= SOP_WRITE_FLAG
;
437 cdb
[6] = BMIC_FLUSH_CACHE
;
438 put_unaligned_be16(buffer_length
, &cdb
[7]);
440 case BMIC_IDENTIFY_CONTROLLER
:
441 case BMIC_IDENTIFY_PHYSICAL_DEVICE
:
442 request
->data_direction
= SOP_READ_FLAG
;
445 put_unaligned_be16(buffer_length
, &cdb
[7]);
447 case BMIC_WRITE_HOST_WELLNESS
:
448 request
->data_direction
= SOP_WRITE_FLAG
;
451 put_unaligned_be16(buffer_length
, &cdb
[7]);
454 dev_err(&ctrl_info
->pci_dev
->dev
, "unknown command 0x%c\n",
459 switch (request
->data_direction
) {
461 pci_dir
= PCI_DMA_FROMDEVICE
;
464 pci_dir
= PCI_DMA_TODEVICE
;
466 case SOP_NO_DIRECTION_FLAG
:
467 pci_dir
= PCI_DMA_NONE
;
470 pci_dir
= PCI_DMA_BIDIRECTIONAL
;
474 *pci_direction
= pci_dir
;
476 return pqi_map_single(ctrl_info
->pci_dev
, &request
->sg_descriptors
[0],
477 buffer
, buffer_length
, pci_dir
);
480 static inline void pqi_reinit_io_request(struct pqi_io_request
*io_request
)
482 io_request
->scmd
= NULL
;
483 io_request
->status
= 0;
484 io_request
->error_info
= NULL
;
485 io_request
->raid_bypass
= false;
488 static struct pqi_io_request
*pqi_alloc_io_request(
489 struct pqi_ctrl_info
*ctrl_info
)
491 struct pqi_io_request
*io_request
;
492 u16 i
= ctrl_info
->next_io_request_slot
; /* benignly racy */
495 io_request
= &ctrl_info
->io_request_pool
[i
];
496 if (atomic_inc_return(&io_request
->refcount
) == 1)
498 atomic_dec(&io_request
->refcount
);
499 i
= (i
+ 1) % ctrl_info
->max_io_slots
;
503 ctrl_info
->next_io_request_slot
= (i
+ 1) % ctrl_info
->max_io_slots
;
505 pqi_reinit_io_request(io_request
);
510 static void pqi_free_io_request(struct pqi_io_request
*io_request
)
512 atomic_dec(&io_request
->refcount
);
515 static int pqi_identify_controller(struct pqi_ctrl_info
*ctrl_info
,
516 struct bmic_identify_controller
*buffer
)
520 struct pqi_raid_path_request request
;
522 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
523 BMIC_IDENTIFY_CONTROLLER
, RAID_CTLR_LUNID
, buffer
,
524 sizeof(*buffer
), 0, &pci_direction
);
528 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
531 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
537 static int pqi_scsi_inquiry(struct pqi_ctrl_info
*ctrl_info
,
538 u8
*scsi3addr
, u16 vpd_page
, void *buffer
, size_t buffer_length
)
542 struct pqi_raid_path_request request
;
544 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
545 INQUIRY
, scsi3addr
, buffer
, buffer_length
, vpd_page
,
550 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
553 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
559 static int pqi_identify_physical_device(struct pqi_ctrl_info
*ctrl_info
,
560 struct pqi_scsi_dev
*device
,
561 struct bmic_identify_physical_device
*buffer
,
562 size_t buffer_length
)
566 u16 bmic_device_index
;
567 struct pqi_raid_path_request request
;
569 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
570 BMIC_IDENTIFY_PHYSICAL_DEVICE
, RAID_CTLR_LUNID
, buffer
,
571 buffer_length
, 0, &pci_direction
);
575 bmic_device_index
= CISS_GET_DRIVE_NUMBER(device
->scsi3addr
);
576 request
.cdb
[2] = (u8
)bmic_device_index
;
577 request
.cdb
[9] = (u8
)(bmic_device_index
>> 8);
579 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
580 0, NULL
, NO_TIMEOUT
);
582 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
588 static int pqi_flush_cache(struct pqi_ctrl_info
*ctrl_info
,
589 enum bmic_flush_cache_shutdown_event shutdown_event
)
592 struct pqi_raid_path_request request
;
594 struct bmic_flush_cache
*flush_cache
;
597 * Don't bother trying to flush the cache if the controller is
600 if (pqi_ctrl_offline(ctrl_info
))
603 flush_cache
= kzalloc(sizeof(*flush_cache
), GFP_KERNEL
);
607 flush_cache
->shutdown_event
= shutdown_event
;
609 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
610 SA_FLUSH_CACHE
, RAID_CTLR_LUNID
, flush_cache
,
611 sizeof(*flush_cache
), 0, &pci_direction
);
615 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
616 0, NULL
, NO_TIMEOUT
);
618 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
627 static int pqi_write_host_wellness(struct pqi_ctrl_info
*ctrl_info
,
628 void *buffer
, size_t buffer_length
)
631 struct pqi_raid_path_request request
;
634 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
635 BMIC_WRITE_HOST_WELLNESS
, RAID_CTLR_LUNID
, buffer
,
636 buffer_length
, 0, &pci_direction
);
640 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
641 0, NULL
, NO_TIMEOUT
);
643 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
651 struct bmic_host_wellness_driver_version
{
653 u8 driver_version_tag
[2];
654 __le16 driver_version_length
;
655 char driver_version
[32];
661 static int pqi_write_driver_version_to_host_wellness(
662 struct pqi_ctrl_info
*ctrl_info
)
665 struct bmic_host_wellness_driver_version
*buffer
;
666 size_t buffer_length
;
668 buffer_length
= sizeof(*buffer
);
670 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
674 buffer
->start_tag
[0] = '<';
675 buffer
->start_tag
[1] = 'H';
676 buffer
->start_tag
[2] = 'W';
677 buffer
->start_tag
[3] = '>';
678 buffer
->driver_version_tag
[0] = 'D';
679 buffer
->driver_version_tag
[1] = 'V';
680 put_unaligned_le16(sizeof(buffer
->driver_version
),
681 &buffer
->driver_version_length
);
682 strncpy(buffer
->driver_version
, "Linux " DRIVER_VERSION
,
683 sizeof(buffer
->driver_version
) - 1);
684 buffer
->driver_version
[sizeof(buffer
->driver_version
) - 1] = '\0';
685 buffer
->end_tag
[0] = 'Z';
686 buffer
->end_tag
[1] = 'Z';
688 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
697 struct bmic_host_wellness_time
{
702 u8 dont_write_tag
[2];
708 static int pqi_write_current_time_to_host_wellness(
709 struct pqi_ctrl_info
*ctrl_info
)
712 struct bmic_host_wellness_time
*buffer
;
713 size_t buffer_length
;
718 buffer_length
= sizeof(*buffer
);
720 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
724 buffer
->start_tag
[0] = '<';
725 buffer
->start_tag
[1] = 'H';
726 buffer
->start_tag
[2] = 'W';
727 buffer
->start_tag
[3] = '>';
728 buffer
->time_tag
[0] = 'T';
729 buffer
->time_tag
[1] = 'D';
730 put_unaligned_le16(sizeof(buffer
->time
),
731 &buffer
->time_length
);
733 local_time
= ktime_get_real_seconds();
734 time64_to_tm(local_time
, -sys_tz
.tz_minuteswest
* 60, &tm
);
735 year
= tm
.tm_year
+ 1900;
737 buffer
->time
[0] = bin2bcd(tm
.tm_hour
);
738 buffer
->time
[1] = bin2bcd(tm
.tm_min
);
739 buffer
->time
[2] = bin2bcd(tm
.tm_sec
);
741 buffer
->time
[4] = bin2bcd(tm
.tm_mon
+ 1);
742 buffer
->time
[5] = bin2bcd(tm
.tm_mday
);
743 buffer
->time
[6] = bin2bcd(year
/ 100);
744 buffer
->time
[7] = bin2bcd(year
% 100);
746 buffer
->dont_write_tag
[0] = 'D';
747 buffer
->dont_write_tag
[1] = 'W';
748 buffer
->end_tag
[0] = 'Z';
749 buffer
->end_tag
[1] = 'Z';
751 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
758 #define PQI_UPDATE_TIME_WORK_INTERVAL (24UL * 60 * 60 * HZ)
760 static void pqi_update_time_worker(struct work_struct
*work
)
763 struct pqi_ctrl_info
*ctrl_info
;
765 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
768 if (pqi_ctrl_offline(ctrl_info
))
771 rc
= pqi_write_current_time_to_host_wellness(ctrl_info
);
773 dev_warn(&ctrl_info
->pci_dev
->dev
,
774 "error updating time on controller\n");
776 schedule_delayed_work(&ctrl_info
->update_time_work
,
777 PQI_UPDATE_TIME_WORK_INTERVAL
);
780 static inline void pqi_schedule_update_time_worker(
781 struct pqi_ctrl_info
*ctrl_info
)
783 schedule_delayed_work(&ctrl_info
->update_time_work
, 0);
786 static inline void pqi_cancel_update_time_worker(
787 struct pqi_ctrl_info
*ctrl_info
)
789 cancel_delayed_work_sync(&ctrl_info
->update_time_work
);
792 static int pqi_report_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
793 void *buffer
, size_t buffer_length
)
797 struct pqi_raid_path_request request
;
799 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
800 cmd
, RAID_CTLR_LUNID
, buffer
, buffer_length
, 0, &pci_direction
);
804 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
807 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
813 static int pqi_report_phys_logical_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
817 size_t lun_list_length
;
818 size_t lun_data_length
;
819 size_t new_lun_list_length
;
820 void *lun_data
= NULL
;
821 struct report_lun_header
*report_lun_header
;
823 report_lun_header
= kmalloc(sizeof(*report_lun_header
), GFP_KERNEL
);
824 if (!report_lun_header
) {
829 rc
= pqi_report_luns(ctrl_info
, cmd
, report_lun_header
,
830 sizeof(*report_lun_header
));
834 lun_list_length
= get_unaligned_be32(&report_lun_header
->list_length
);
837 lun_data_length
= sizeof(struct report_lun_header
) + lun_list_length
;
839 lun_data
= kmalloc(lun_data_length
, GFP_KERNEL
);
845 if (lun_list_length
== 0) {
846 memcpy(lun_data
, report_lun_header
, sizeof(*report_lun_header
));
850 rc
= pqi_report_luns(ctrl_info
, cmd
, lun_data
, lun_data_length
);
854 new_lun_list_length
= get_unaligned_be32(
855 &((struct report_lun_header
*)lun_data
)->list_length
);
857 if (new_lun_list_length
> lun_list_length
) {
858 lun_list_length
= new_lun_list_length
;
864 kfree(report_lun_header
);
876 static inline int pqi_report_phys_luns(struct pqi_ctrl_info
*ctrl_info
,
879 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_PHYS
,
883 static inline int pqi_report_logical_luns(struct pqi_ctrl_info
*ctrl_info
,
886 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_LOG
, buffer
);
889 static int pqi_get_device_lists(struct pqi_ctrl_info
*ctrl_info
,
890 struct report_phys_lun_extended
**physdev_list
,
891 struct report_log_lun_extended
**logdev_list
)
894 size_t logdev_list_length
;
895 size_t logdev_data_length
;
896 struct report_log_lun_extended
*internal_logdev_list
;
897 struct report_log_lun_extended
*logdev_data
;
898 struct report_lun_header report_lun_header
;
900 rc
= pqi_report_phys_luns(ctrl_info
, (void **)physdev_list
);
902 dev_err(&ctrl_info
->pci_dev
->dev
,
903 "report physical LUNs failed\n");
905 rc
= pqi_report_logical_luns(ctrl_info
, (void **)logdev_list
);
907 dev_err(&ctrl_info
->pci_dev
->dev
,
908 "report logical LUNs failed\n");
911 * Tack the controller itself onto the end of the logical device list.
914 logdev_data
= *logdev_list
;
918 get_unaligned_be32(&logdev_data
->header
.list_length
);
920 memset(&report_lun_header
, 0, sizeof(report_lun_header
));
922 (struct report_log_lun_extended
*)&report_lun_header
;
923 logdev_list_length
= 0;
926 logdev_data_length
= sizeof(struct report_lun_header
) +
929 internal_logdev_list
= kmalloc(logdev_data_length
+
930 sizeof(struct report_log_lun_extended
), GFP_KERNEL
);
931 if (!internal_logdev_list
) {
937 memcpy(internal_logdev_list
, logdev_data
, logdev_data_length
);
938 memset((u8
*)internal_logdev_list
+ logdev_data_length
, 0,
939 sizeof(struct report_log_lun_extended_entry
));
940 put_unaligned_be32(logdev_list_length
+
941 sizeof(struct report_log_lun_extended_entry
),
942 &internal_logdev_list
->header
.list_length
);
945 *logdev_list
= internal_logdev_list
;
950 static inline void pqi_set_bus_target_lun(struct pqi_scsi_dev
*device
,
951 int bus
, int target
, int lun
)
954 device
->target
= target
;
958 static void pqi_assign_bus_target_lun(struct pqi_scsi_dev
*device
)
966 scsi3addr
= device
->scsi3addr
;
967 lunid
= get_unaligned_le32(scsi3addr
);
969 if (pqi_is_hba_lunid(scsi3addr
)) {
970 /* The specified device is the controller. */
971 pqi_set_bus_target_lun(device
, PQI_HBA_BUS
, 0, lunid
& 0x3fff);
972 device
->target_lun_valid
= true;
976 if (pqi_is_logical_device(device
)) {
977 if (device
->is_external_raid_device
) {
978 bus
= PQI_EXTERNAL_RAID_VOLUME_BUS
;
979 target
= (lunid
>> 16) & 0x3fff;
982 bus
= PQI_RAID_VOLUME_BUS
;
984 lun
= lunid
& 0x3fff;
986 pqi_set_bus_target_lun(device
, bus
, target
, lun
);
987 device
->target_lun_valid
= true;
992 * Defer target and LUN assignment for non-controller physical devices
993 * because the SAS transport layer will make these assignments later.
995 pqi_set_bus_target_lun(device
, PQI_PHYSICAL_DEVICE_BUS
, 0, 0);
998 static void pqi_get_raid_level(struct pqi_ctrl_info
*ctrl_info
,
999 struct pqi_scsi_dev
*device
)
1005 raid_level
= SA_RAID_UNKNOWN
;
1007 buffer
= kmalloc(64, GFP_KERNEL
);
1009 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1010 VPD_PAGE
| CISS_VPD_LV_DEVICE_GEOMETRY
, buffer
, 64);
1012 raid_level
= buffer
[8];
1013 if (raid_level
> SA_RAID_MAX
)
1014 raid_level
= SA_RAID_UNKNOWN
;
1019 device
->raid_level
= raid_level
;
1022 static int pqi_validate_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1023 struct pqi_scsi_dev
*device
, struct raid_map
*raid_map
)
1027 u32 r5or6_blocks_per_row
;
1028 unsigned int num_phys_disks
;
1029 unsigned int num_raid_map_entries
;
1031 raid_map_size
= get_unaligned_le32(&raid_map
->structure_size
);
1033 if (raid_map_size
< offsetof(struct raid_map
, disk_data
)) {
1034 err_msg
= "RAID map too small";
1038 if (raid_map_size
> sizeof(*raid_map
)) {
1039 err_msg
= "RAID map too large";
1043 num_phys_disks
= get_unaligned_le16(&raid_map
->layout_map_count
) *
1044 (get_unaligned_le16(&raid_map
->data_disks_per_row
) +
1045 get_unaligned_le16(&raid_map
->metadata_disks_per_row
));
1046 num_raid_map_entries
= num_phys_disks
*
1047 get_unaligned_le16(&raid_map
->row_cnt
);
1049 if (num_raid_map_entries
> RAID_MAP_MAX_ENTRIES
) {
1050 err_msg
= "invalid number of map entries in RAID map";
1054 if (device
->raid_level
== SA_RAID_1
) {
1055 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 2) {
1056 err_msg
= "invalid RAID-1 map";
1059 } else if (device
->raid_level
== SA_RAID_ADM
) {
1060 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 3) {
1061 err_msg
= "invalid RAID-1(ADM) map";
1064 } else if ((device
->raid_level
== SA_RAID_5
||
1065 device
->raid_level
== SA_RAID_6
) &&
1066 get_unaligned_le16(&raid_map
->layout_map_count
) > 1) {
1068 r5or6_blocks_per_row
=
1069 get_unaligned_le16(&raid_map
->strip_size
) *
1070 get_unaligned_le16(&raid_map
->data_disks_per_row
);
1071 if (r5or6_blocks_per_row
== 0) {
1072 err_msg
= "invalid RAID-5 or RAID-6 map";
1080 dev_warn(&ctrl_info
->pci_dev
->dev
,
1081 "logical device %08x%08x %s\n",
1082 *((u32
*)&device
->scsi3addr
),
1083 *((u32
*)&device
->scsi3addr
[4]), err_msg
);
1088 static int pqi_get_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1089 struct pqi_scsi_dev
*device
)
1093 struct pqi_raid_path_request request
;
1094 struct raid_map
*raid_map
;
1096 raid_map
= kmalloc(sizeof(*raid_map
), GFP_KERNEL
);
1100 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
1101 CISS_GET_RAID_MAP
, device
->scsi3addr
, raid_map
,
1102 sizeof(*raid_map
), 0, &pci_direction
);
1106 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
1109 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
1115 rc
= pqi_validate_raid_map(ctrl_info
, device
, raid_map
);
1119 device
->raid_map
= raid_map
;
1129 static void pqi_get_raid_bypass_status(struct pqi_ctrl_info
*ctrl_info
,
1130 struct pqi_scsi_dev
*device
)
1136 buffer
= kmalloc(64, GFP_KERNEL
);
1140 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1141 VPD_PAGE
| CISS_VPD_LV_BYPASS_STATUS
, buffer
, 64);
1145 #define RAID_BYPASS_STATUS 4
1146 #define RAID_BYPASS_CONFIGURED 0x1
1147 #define RAID_BYPASS_ENABLED 0x2
1149 bypass_status
= buffer
[RAID_BYPASS_STATUS
];
1150 device
->raid_bypass_configured
=
1151 (bypass_status
& RAID_BYPASS_CONFIGURED
) != 0;
1152 if (device
->raid_bypass_configured
&&
1153 (bypass_status
& RAID_BYPASS_ENABLED
) &&
1154 pqi_get_raid_map(ctrl_info
, device
) == 0)
1155 device
->raid_bypass_enabled
= true;
1162 * Use vendor-specific VPD to determine online/offline status of a volume.
1165 static void pqi_get_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1166 struct pqi_scsi_dev
*device
)
1170 u8 volume_status
= CISS_LV_STATUS_UNAVAILABLE
;
1171 bool volume_offline
= true;
1173 struct ciss_vpd_logical_volume_status
*vpd
;
1175 vpd
= kmalloc(sizeof(*vpd
), GFP_KERNEL
);
1179 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1180 VPD_PAGE
| CISS_VPD_LV_STATUS
, vpd
, sizeof(*vpd
));
1184 page_length
= offsetof(struct ciss_vpd_logical_volume_status
,
1185 volume_status
) + vpd
->page_length
;
1186 if (page_length
< sizeof(*vpd
))
1189 volume_status
= vpd
->volume_status
;
1190 volume_flags
= get_unaligned_be32(&vpd
->flags
);
1191 volume_offline
= (volume_flags
& CISS_LV_FLAGS_NO_HOST_IO
) != 0;
1196 device
->volume_status
= volume_status
;
1197 device
->volume_offline
= volume_offline
;
1200 static int pqi_get_device_info(struct pqi_ctrl_info
*ctrl_info
,
1201 struct pqi_scsi_dev
*device
)
1206 buffer
= kmalloc(64, GFP_KERNEL
);
1210 /* Send an inquiry to the device to see what it is. */
1211 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
, 0, buffer
, 64);
1215 scsi_sanitize_inquiry_string(&buffer
[8], 8);
1216 scsi_sanitize_inquiry_string(&buffer
[16], 16);
1218 device
->devtype
= buffer
[0] & 0x1f;
1219 memcpy(device
->vendor
, &buffer
[8], sizeof(device
->vendor
));
1220 memcpy(device
->model
, &buffer
[16], sizeof(device
->model
));
1222 if (pqi_is_logical_device(device
) && device
->devtype
== TYPE_DISK
) {
1223 if (device
->is_external_raid_device
) {
1224 device
->raid_level
= SA_RAID_UNKNOWN
;
1225 device
->volume_status
= CISS_LV_OK
;
1226 device
->volume_offline
= false;
1228 pqi_get_raid_level(ctrl_info
, device
);
1229 pqi_get_raid_bypass_status(ctrl_info
, device
);
1230 pqi_get_volume_status(ctrl_info
, device
);
1240 static void pqi_get_physical_disk_info(struct pqi_ctrl_info
*ctrl_info
,
1241 struct pqi_scsi_dev
*device
,
1242 struct bmic_identify_physical_device
*id_phys
)
1246 memset(id_phys
, 0, sizeof(*id_phys
));
1248 rc
= pqi_identify_physical_device(ctrl_info
, device
,
1249 id_phys
, sizeof(*id_phys
));
1251 device
->queue_depth
= PQI_PHYSICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH
;
1255 device
->queue_depth
=
1256 get_unaligned_le16(&id_phys
->current_queue_depth_limit
);
1257 device
->device_type
= id_phys
->device_type
;
1258 device
->active_path_index
= id_phys
->active_path_number
;
1259 device
->path_map
= id_phys
->redundant_path_present_map
;
1260 memcpy(&device
->box
,
1261 &id_phys
->alternate_paths_phys_box_on_port
,
1262 sizeof(device
->box
));
1263 memcpy(&device
->phys_connector
,
1264 &id_phys
->alternate_paths_phys_connector
,
1265 sizeof(device
->phys_connector
));
1266 device
->bay
= id_phys
->phys_bay_in_box
;
1269 static void pqi_show_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1270 struct pqi_scsi_dev
*device
)
1273 static const char unknown_state_str
[] =
1274 "Volume is in an unknown state (%u)";
1275 char unknown_state_buffer
[sizeof(unknown_state_str
) + 10];
1277 switch (device
->volume_status
) {
1279 status
= "Volume online";
1281 case CISS_LV_FAILED
:
1282 status
= "Volume failed";
1284 case CISS_LV_NOT_CONFIGURED
:
1285 status
= "Volume not configured";
1287 case CISS_LV_DEGRADED
:
1288 status
= "Volume degraded";
1290 case CISS_LV_READY_FOR_RECOVERY
:
1291 status
= "Volume ready for recovery operation";
1293 case CISS_LV_UNDERGOING_RECOVERY
:
1294 status
= "Volume undergoing recovery";
1296 case CISS_LV_WRONG_PHYSICAL_DRIVE_REPLACED
:
1297 status
= "Wrong physical drive was replaced";
1299 case CISS_LV_PHYSICAL_DRIVE_CONNECTION_PROBLEM
:
1300 status
= "A physical drive not properly connected";
1302 case CISS_LV_HARDWARE_OVERHEATING
:
1303 status
= "Hardware is overheating";
1305 case CISS_LV_HARDWARE_HAS_OVERHEATED
:
1306 status
= "Hardware has overheated";
1308 case CISS_LV_UNDERGOING_EXPANSION
:
1309 status
= "Volume undergoing expansion";
1311 case CISS_LV_NOT_AVAILABLE
:
1312 status
= "Volume waiting for transforming volume";
1314 case CISS_LV_QUEUED_FOR_EXPANSION
:
1315 status
= "Volume queued for expansion";
1317 case CISS_LV_DISABLED_SCSI_ID_CONFLICT
:
1318 status
= "Volume disabled due to SCSI ID conflict";
1320 case CISS_LV_EJECTED
:
1321 status
= "Volume has been ejected";
1323 case CISS_LV_UNDERGOING_ERASE
:
1324 status
= "Volume undergoing background erase";
1326 case CISS_LV_READY_FOR_PREDICTIVE_SPARE_REBUILD
:
1327 status
= "Volume ready for predictive spare rebuild";
1329 case CISS_LV_UNDERGOING_RPI
:
1330 status
= "Volume undergoing rapid parity initialization";
1332 case CISS_LV_PENDING_RPI
:
1333 status
= "Volume queued for rapid parity initialization";
1335 case CISS_LV_ENCRYPTED_NO_KEY
:
1336 status
= "Encrypted volume inaccessible - key not present";
1338 case CISS_LV_UNDERGOING_ENCRYPTION
:
1339 status
= "Volume undergoing encryption process";
1341 case CISS_LV_UNDERGOING_ENCRYPTION_REKEYING
:
1342 status
= "Volume undergoing encryption re-keying process";
1344 case CISS_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER
:
1345 status
= "Volume encrypted but encryption is disabled";
1347 case CISS_LV_PENDING_ENCRYPTION
:
1348 status
= "Volume pending migration to encrypted state";
1350 case CISS_LV_PENDING_ENCRYPTION_REKEYING
:
1351 status
= "Volume pending encryption rekeying";
1353 case CISS_LV_NOT_SUPPORTED
:
1354 status
= "Volume not supported on this controller";
1356 case CISS_LV_STATUS_UNAVAILABLE
:
1357 status
= "Volume status not available";
1360 snprintf(unknown_state_buffer
, sizeof(unknown_state_buffer
),
1361 unknown_state_str
, device
->volume_status
);
1362 status
= unknown_state_buffer
;
1366 dev_info(&ctrl_info
->pci_dev
->dev
,
1367 "scsi %d:%d:%d:%d %s\n",
1368 ctrl_info
->scsi_host
->host_no
,
1369 device
->bus
, device
->target
, device
->lun
, status
);
1372 static void pqi_rescan_worker(struct work_struct
*work
)
1374 struct pqi_ctrl_info
*ctrl_info
;
1376 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
1379 pqi_scan_scsi_devices(ctrl_info
);
1382 static int pqi_add_device(struct pqi_ctrl_info
*ctrl_info
,
1383 struct pqi_scsi_dev
*device
)
1387 if (pqi_is_logical_device(device
))
1388 rc
= scsi_add_device(ctrl_info
->scsi_host
, device
->bus
,
1389 device
->target
, device
->lun
);
1391 rc
= pqi_add_sas_device(ctrl_info
->sas_host
, device
);
1396 static inline void pqi_remove_device(struct pqi_ctrl_info
*ctrl_info
,
1397 struct pqi_scsi_dev
*device
)
1399 if (pqi_is_logical_device(device
))
1400 scsi_remove_device(device
->sdev
);
1402 pqi_remove_sas_device(device
);
1405 /* Assumes the SCSI device list lock is held. */
1407 static struct pqi_scsi_dev
*pqi_find_scsi_dev(struct pqi_ctrl_info
*ctrl_info
,
1408 int bus
, int target
, int lun
)
1410 struct pqi_scsi_dev
*device
;
1412 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1413 scsi_device_list_entry
)
1414 if (device
->bus
== bus
&& device
->target
== target
&&
1421 static inline bool pqi_device_equal(struct pqi_scsi_dev
*dev1
,
1422 struct pqi_scsi_dev
*dev2
)
1424 if (dev1
->is_physical_device
!= dev2
->is_physical_device
)
1427 if (dev1
->is_physical_device
)
1428 return dev1
->wwid
== dev2
->wwid
;
1430 return memcmp(dev1
->volume_id
, dev2
->volume_id
,
1431 sizeof(dev1
->volume_id
)) == 0;
1434 enum pqi_find_result
{
1440 static enum pqi_find_result
pqi_scsi_find_entry(struct pqi_ctrl_info
*ctrl_info
,
1441 struct pqi_scsi_dev
*device_to_find
,
1442 struct pqi_scsi_dev
**matching_device
)
1444 struct pqi_scsi_dev
*device
;
1446 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1447 scsi_device_list_entry
) {
1448 if (pqi_scsi3addr_equal(device_to_find
->scsi3addr
,
1449 device
->scsi3addr
)) {
1450 *matching_device
= device
;
1451 if (pqi_device_equal(device_to_find
, device
)) {
1452 if (device_to_find
->volume_offline
)
1453 return DEVICE_CHANGED
;
1456 return DEVICE_CHANGED
;
1460 return DEVICE_NOT_FOUND
;
1463 #define PQI_DEV_INFO_BUFFER_LENGTH 128
1465 static void pqi_dev_info(struct pqi_ctrl_info
*ctrl_info
,
1466 char *action
, struct pqi_scsi_dev
*device
)
1469 char buffer
[PQI_DEV_INFO_BUFFER_LENGTH
];
1471 count
= snprintf(buffer
, PQI_DEV_INFO_BUFFER_LENGTH
,
1472 "%d:%d:", ctrl_info
->scsi_host
->host_no
, device
->bus
);
1474 if (device
->target_lun_valid
)
1475 count
+= snprintf(buffer
+ count
,
1476 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1481 count
+= snprintf(buffer
+ count
,
1482 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1485 if (pqi_is_logical_device(device
))
1486 count
+= snprintf(buffer
+ count
,
1487 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1489 *((u32
*)&device
->scsi3addr
),
1490 *((u32
*)&device
->scsi3addr
[4]));
1492 count
+= snprintf(buffer
+ count
,
1493 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1494 " %016llx", device
->sas_address
);
1496 count
+= snprintf(buffer
+ count
, PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1498 scsi_device_type(device
->devtype
),
1502 if (pqi_is_logical_device(device
)) {
1503 if (device
->devtype
== TYPE_DISK
)
1504 count
+= snprintf(buffer
+ count
,
1505 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1506 "SSDSmartPathCap%c En%c %-12s",
1507 device
->raid_bypass_configured
? '+' : '-',
1508 device
->raid_bypass_enabled
? '+' : '-',
1509 pqi_raid_level_to_string(device
->raid_level
));
1511 count
+= snprintf(buffer
+ count
,
1512 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1513 "AIO%c", device
->aio_enabled
? '+' : '-');
1514 if (device
->devtype
== TYPE_DISK
||
1515 device
->devtype
== TYPE_ZBC
)
1516 count
+= snprintf(buffer
+ count
,
1517 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1518 " qd=%-6d", device
->queue_depth
);
1521 dev_info(&ctrl_info
->pci_dev
->dev
, "%s %s\n", action
, buffer
);
1524 /* Assumes the SCSI device list lock is held. */
1526 static void pqi_scsi_update_device(struct pqi_scsi_dev
*existing_device
,
1527 struct pqi_scsi_dev
*new_device
)
1529 existing_device
->devtype
= new_device
->devtype
;
1530 existing_device
->device_type
= new_device
->device_type
;
1531 existing_device
->bus
= new_device
->bus
;
1532 if (new_device
->target_lun_valid
) {
1533 existing_device
->target
= new_device
->target
;
1534 existing_device
->lun
= new_device
->lun
;
1535 existing_device
->target_lun_valid
= true;
1538 /* By definition, the scsi3addr and wwid fields are already the same. */
1540 existing_device
->is_physical_device
= new_device
->is_physical_device
;
1541 existing_device
->is_external_raid_device
=
1542 new_device
->is_external_raid_device
;
1543 existing_device
->aio_enabled
= new_device
->aio_enabled
;
1544 memcpy(existing_device
->vendor
, new_device
->vendor
,
1545 sizeof(existing_device
->vendor
));
1546 memcpy(existing_device
->model
, new_device
->model
,
1547 sizeof(existing_device
->model
));
1548 existing_device
->sas_address
= new_device
->sas_address
;
1549 existing_device
->raid_level
= new_device
->raid_level
;
1550 existing_device
->queue_depth
= new_device
->queue_depth
;
1551 existing_device
->aio_handle
= new_device
->aio_handle
;
1552 existing_device
->volume_status
= new_device
->volume_status
;
1553 existing_device
->active_path_index
= new_device
->active_path_index
;
1554 existing_device
->path_map
= new_device
->path_map
;
1555 existing_device
->bay
= new_device
->bay
;
1556 memcpy(existing_device
->box
, new_device
->box
,
1557 sizeof(existing_device
->box
));
1558 memcpy(existing_device
->phys_connector
, new_device
->phys_connector
,
1559 sizeof(existing_device
->phys_connector
));
1560 existing_device
->offload_to_mirror
= 0;
1561 kfree(existing_device
->raid_map
);
1562 existing_device
->raid_map
= new_device
->raid_map
;
1563 existing_device
->raid_bypass_configured
=
1564 new_device
->raid_bypass_configured
;
1565 existing_device
->raid_bypass_enabled
=
1566 new_device
->raid_bypass_enabled
;
1568 /* To prevent this from being freed later. */
1569 new_device
->raid_map
= NULL
;
1572 static inline void pqi_free_device(struct pqi_scsi_dev
*device
)
1575 kfree(device
->raid_map
);
1581 * Called when exposing a new device to the OS fails in order to re-adjust
1582 * our internal SCSI device list to match the SCSI ML's view.
1585 static inline void pqi_fixup_botched_add(struct pqi_ctrl_info
*ctrl_info
,
1586 struct pqi_scsi_dev
*device
)
1588 unsigned long flags
;
1590 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1591 list_del(&device
->scsi_device_list_entry
);
1592 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1594 /* Allow the device structure to be freed later. */
1595 device
->keep_device
= false;
1598 static void pqi_update_device_list(struct pqi_ctrl_info
*ctrl_info
,
1599 struct pqi_scsi_dev
*new_device_list
[], unsigned int num_new_devices
)
1603 unsigned long flags
;
1604 enum pqi_find_result find_result
;
1605 struct pqi_scsi_dev
*device
;
1606 struct pqi_scsi_dev
*next
;
1607 struct pqi_scsi_dev
*matching_device
;
1608 LIST_HEAD(add_list
);
1609 LIST_HEAD(delete_list
);
1612 * The idea here is to do as little work as possible while holding the
1613 * spinlock. That's why we go to great pains to defer anything other
1614 * than updating the internal device list until after we release the
1618 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1620 /* Assume that all devices in the existing list have gone away. */
1621 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1622 scsi_device_list_entry
)
1623 device
->device_gone
= true;
1625 for (i
= 0; i
< num_new_devices
; i
++) {
1626 device
= new_device_list
[i
];
1628 find_result
= pqi_scsi_find_entry(ctrl_info
, device
,
1631 switch (find_result
) {
1634 * The newly found device is already in the existing
1637 device
->new_device
= false;
1638 matching_device
->device_gone
= false;
1639 pqi_scsi_update_device(matching_device
, device
);
1641 case DEVICE_NOT_FOUND
:
1643 * The newly found device is NOT in the existing device
1646 device
->new_device
= true;
1648 case DEVICE_CHANGED
:
1650 * The original device has gone away and we need to add
1653 device
->new_device
= true;
1658 /* Process all devices that have gone away. */
1659 list_for_each_entry_safe(device
, next
, &ctrl_info
->scsi_device_list
,
1660 scsi_device_list_entry
) {
1661 if (device
->device_gone
) {
1662 list_del(&device
->scsi_device_list_entry
);
1663 list_add_tail(&device
->delete_list_entry
, &delete_list
);
1667 /* Process all new devices. */
1668 for (i
= 0; i
< num_new_devices
; i
++) {
1669 device
= new_device_list
[i
];
1670 if (!device
->new_device
)
1672 if (device
->volume_offline
)
1674 list_add_tail(&device
->scsi_device_list_entry
,
1675 &ctrl_info
->scsi_device_list
);
1676 list_add_tail(&device
->add_list_entry
, &add_list
);
1677 /* To prevent this device structure from being freed later. */
1678 device
->keep_device
= true;
1681 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1683 /* Remove all devices that have gone away. */
1684 list_for_each_entry_safe(device
, next
, &delete_list
,
1685 delete_list_entry
) {
1686 if (device
->volume_offline
) {
1687 pqi_dev_info(ctrl_info
, "offline", device
);
1688 pqi_show_volume_status(ctrl_info
, device
);
1690 pqi_dev_info(ctrl_info
, "removed", device
);
1693 pqi_remove_device(ctrl_info
, device
);
1694 list_del(&device
->delete_list_entry
);
1695 pqi_free_device(device
);
1699 * Notify the SCSI ML if the queue depth of any existing device has
1702 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1703 scsi_device_list_entry
) {
1704 if (device
->sdev
&& device
->queue_depth
!=
1705 device
->advertised_queue_depth
) {
1706 device
->advertised_queue_depth
= device
->queue_depth
;
1707 scsi_change_queue_depth(device
->sdev
,
1708 device
->advertised_queue_depth
);
1712 /* Expose any new devices. */
1713 list_for_each_entry_safe(device
, next
, &add_list
, add_list_entry
) {
1714 if (!device
->sdev
) {
1715 pqi_dev_info(ctrl_info
, "added", device
);
1716 rc
= pqi_add_device(ctrl_info
, device
);
1718 dev_warn(&ctrl_info
->pci_dev
->dev
,
1719 "scsi %d:%d:%d:%d addition failed, device not added\n",
1720 ctrl_info
->scsi_host
->host_no
,
1721 device
->bus
, device
->target
,
1723 pqi_fixup_botched_add(ctrl_info
, device
);
1729 static bool pqi_is_supported_device(struct pqi_scsi_dev
*device
)
1731 bool is_supported
= false;
1733 switch (device
->devtype
) {
1737 case TYPE_MEDIUM_CHANGER
:
1738 case TYPE_ENCLOSURE
:
1739 is_supported
= true;
1743 * Only support the HBA controller itself as a RAID
1744 * controller. If it's a RAID controller other than
1745 * the HBA itself (an external RAID controller, for
1746 * example), we don't support it.
1748 if (pqi_is_hba_lunid(device
->scsi3addr
))
1749 is_supported
= true;
1753 return is_supported
;
1756 static inline bool pqi_skip_device(u8
*scsi3addr
)
1758 /* Ignore all masked devices. */
1759 if (MASKED_DEVICE(scsi3addr
))
1765 static int pqi_update_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1769 LIST_HEAD(new_device_list_head
);
1770 struct report_phys_lun_extended
*physdev_list
= NULL
;
1771 struct report_log_lun_extended
*logdev_list
= NULL
;
1772 struct report_phys_lun_extended_entry
*phys_lun_ext_entry
;
1773 struct report_log_lun_extended_entry
*log_lun_ext_entry
;
1774 struct bmic_identify_physical_device
*id_phys
= NULL
;
1777 struct pqi_scsi_dev
**new_device_list
= NULL
;
1778 struct pqi_scsi_dev
*device
;
1779 struct pqi_scsi_dev
*next
;
1780 unsigned int num_new_devices
;
1781 unsigned int num_valid_devices
;
1782 bool is_physical_device
;
1784 static char *out_of_memory_msg
=
1785 "failed to allocate memory, device discovery stopped";
1787 rc
= pqi_get_device_lists(ctrl_info
, &physdev_list
, &logdev_list
);
1793 get_unaligned_be32(&physdev_list
->header
.list_length
)
1794 / sizeof(physdev_list
->lun_entries
[0]);
1800 get_unaligned_be32(&logdev_list
->header
.list_length
)
1801 / sizeof(logdev_list
->lun_entries
[0]);
1805 if (num_physicals
) {
1807 * We need this buffer for calls to pqi_get_physical_disk_info()
1808 * below. We allocate it here instead of inside
1809 * pqi_get_physical_disk_info() because it's a fairly large
1812 id_phys
= kmalloc(sizeof(*id_phys
), GFP_KERNEL
);
1814 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1821 num_new_devices
= num_physicals
+ num_logicals
;
1823 new_device_list
= kmalloc_array(num_new_devices
,
1824 sizeof(*new_device_list
),
1826 if (!new_device_list
) {
1827 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n", out_of_memory_msg
);
1832 for (i
= 0; i
< num_new_devices
; i
++) {
1833 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
1835 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1840 list_add_tail(&device
->new_device_list_entry
,
1841 &new_device_list_head
);
1845 num_valid_devices
= 0;
1847 for (i
= 0; i
< num_new_devices
; i
++) {
1849 if (i
< num_physicals
) {
1850 is_physical_device
= true;
1851 phys_lun_ext_entry
= &physdev_list
->lun_entries
[i
];
1852 log_lun_ext_entry
= NULL
;
1853 scsi3addr
= phys_lun_ext_entry
->lunid
;
1855 is_physical_device
= false;
1856 phys_lun_ext_entry
= NULL
;
1858 &logdev_list
->lun_entries
[i
- num_physicals
];
1859 scsi3addr
= log_lun_ext_entry
->lunid
;
1862 if (is_physical_device
&& pqi_skip_device(scsi3addr
))
1866 device
= list_next_entry(device
, new_device_list_entry
);
1868 device
= list_first_entry(&new_device_list_head
,
1869 struct pqi_scsi_dev
, new_device_list_entry
);
1871 memcpy(device
->scsi3addr
, scsi3addr
, sizeof(device
->scsi3addr
));
1872 device
->is_physical_device
= is_physical_device
;
1873 if (!is_physical_device
)
1874 device
->is_external_raid_device
=
1875 pqi_is_external_raid_addr(scsi3addr
);
1877 /* Gather information about the device. */
1878 rc
= pqi_get_device_info(ctrl_info
, device
);
1879 if (rc
== -ENOMEM
) {
1880 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1885 if (device
->is_physical_device
)
1886 dev_warn(&ctrl_info
->pci_dev
->dev
,
1887 "obtaining device info failed, skipping physical device %016llx\n",
1889 &phys_lun_ext_entry
->wwid
));
1891 dev_warn(&ctrl_info
->pci_dev
->dev
,
1892 "obtaining device info failed, skipping logical device %08x%08x\n",
1893 *((u32
*)&device
->scsi3addr
),
1894 *((u32
*)&device
->scsi3addr
[4]));
1899 if (!pqi_is_supported_device(device
))
1902 pqi_assign_bus_target_lun(device
);
1904 if (device
->is_physical_device
) {
1905 device
->wwid
= phys_lun_ext_entry
->wwid
;
1906 if ((phys_lun_ext_entry
->device_flags
&
1907 REPORT_PHYS_LUN_DEV_FLAG_AIO_ENABLED
) &&
1908 phys_lun_ext_entry
->aio_handle
)
1909 device
->aio_enabled
= true;
1911 memcpy(device
->volume_id
, log_lun_ext_entry
->volume_id
,
1912 sizeof(device
->volume_id
));
1915 switch (device
->devtype
) {
1918 case TYPE_ENCLOSURE
:
1919 if (device
->is_physical_device
) {
1920 device
->sas_address
=
1921 get_unaligned_be64(&device
->wwid
);
1922 if (device
->devtype
== TYPE_DISK
||
1923 device
->devtype
== TYPE_ZBC
) {
1924 device
->aio_handle
=
1925 phys_lun_ext_entry
->aio_handle
;
1926 pqi_get_physical_disk_info(ctrl_info
,
1933 new_device_list
[num_valid_devices
++] = device
;
1936 pqi_update_device_list(ctrl_info
, new_device_list
, num_valid_devices
);
1939 list_for_each_entry_safe(device
, next
, &new_device_list_head
,
1940 new_device_list_entry
) {
1941 if (device
->keep_device
)
1943 list_del(&device
->new_device_list_entry
);
1944 pqi_free_device(device
);
1947 kfree(new_device_list
);
1948 kfree(physdev_list
);
1955 static void pqi_remove_all_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1957 unsigned long flags
;
1958 struct pqi_scsi_dev
*device
;
1961 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1963 device
= list_first_entry_or_null(&ctrl_info
->scsi_device_list
,
1964 struct pqi_scsi_dev
, scsi_device_list_entry
);
1966 list_del(&device
->scsi_device_list_entry
);
1968 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
1975 pqi_remove_device(ctrl_info
, device
);
1976 pqi_free_device(device
);
1980 static int pqi_scan_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1984 if (pqi_ctrl_offline(ctrl_info
))
1987 mutex_lock(&ctrl_info
->scan_mutex
);
1989 rc
= pqi_update_scsi_devices(ctrl_info
);
1991 pqi_schedule_rescan_worker_delayed(ctrl_info
);
1993 mutex_unlock(&ctrl_info
->scan_mutex
);
1998 static void pqi_scan_start(struct Scsi_Host
*shost
)
2000 pqi_scan_scsi_devices(shost_to_hba(shost
));
2003 /* Returns TRUE if scan is finished. */
2005 static int pqi_scan_finished(struct Scsi_Host
*shost
,
2006 unsigned long elapsed_time
)
2008 struct pqi_ctrl_info
*ctrl_info
;
2010 ctrl_info
= shost_priv(shost
);
2012 return !mutex_is_locked(&ctrl_info
->scan_mutex
);
2015 static void pqi_wait_until_scan_finished(struct pqi_ctrl_info
*ctrl_info
)
2017 mutex_lock(&ctrl_info
->scan_mutex
);
2018 mutex_unlock(&ctrl_info
->scan_mutex
);
2021 static void pqi_wait_until_lun_reset_finished(struct pqi_ctrl_info
*ctrl_info
)
2023 mutex_lock(&ctrl_info
->lun_reset_mutex
);
2024 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
2027 static inline void pqi_set_encryption_info(
2028 struct pqi_encryption_info
*encryption_info
, struct raid_map
*raid_map
,
2031 u32 volume_blk_size
;
2034 * Set the encryption tweak values based on logical block address.
2035 * If the block size is 512, the tweak value is equal to the LBA.
2036 * For other block sizes, tweak value is (LBA * block size) / 512.
2038 volume_blk_size
= get_unaligned_le32(&raid_map
->volume_blk_size
);
2039 if (volume_blk_size
!= 512)
2040 first_block
= (first_block
* volume_blk_size
) / 512;
2042 encryption_info
->data_encryption_key_index
=
2043 get_unaligned_le16(&raid_map
->data_encryption_key_index
);
2044 encryption_info
->encrypt_tweak_lower
= lower_32_bits(first_block
);
2045 encryption_info
->encrypt_tweak_upper
= upper_32_bits(first_block
);
2049 * Attempt to perform RAID bypass mapping for a logical volume I/O.
2052 #define PQI_RAID_BYPASS_INELIGIBLE 1
2054 static int pqi_raid_bypass_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
2055 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
2056 struct pqi_queue_group
*queue_group
)
2058 struct raid_map
*raid_map
;
2059 bool is_write
= false;
2067 u32 first_row_offset
;
2068 u32 last_row_offset
;
2073 u32 r5or6_blocks_per_row
;
2074 u64 r5or6_first_row
;
2076 u32 r5or6_first_row_offset
;
2077 u32 r5or6_last_row_offset
;
2078 u32 r5or6_first_column
;
2079 u32 r5or6_last_column
;
2080 u16 data_disks_per_row
;
2081 u32 total_disks_per_row
;
2082 u16 layout_map_count
;
2094 int offload_to_mirror
;
2095 struct pqi_encryption_info
*encryption_info_ptr
;
2096 struct pqi_encryption_info encryption_info
;
2097 #if BITS_PER_LONG == 32
2101 /* Check for valid opcode, get LBA and block count. */
2102 switch (scmd
->cmnd
[0]) {
2107 first_block
= (u64
)(((scmd
->cmnd
[1] & 0x1f) << 16) |
2108 (scmd
->cmnd
[2] << 8) | scmd
->cmnd
[3]);
2109 block_cnt
= (u32
)scmd
->cmnd
[4];
2117 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2118 block_cnt
= (u32
)get_unaligned_be16(&scmd
->cmnd
[7]);
2124 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2125 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[6]);
2131 first_block
= get_unaligned_be64(&scmd
->cmnd
[2]);
2132 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[10]);
2135 /* Process via normal I/O path. */
2136 return PQI_RAID_BYPASS_INELIGIBLE
;
2139 /* Check for write to non-RAID-0. */
2140 if (is_write
&& device
->raid_level
!= SA_RAID_0
)
2141 return PQI_RAID_BYPASS_INELIGIBLE
;
2143 if (unlikely(block_cnt
== 0))
2144 return PQI_RAID_BYPASS_INELIGIBLE
;
2146 last_block
= first_block
+ block_cnt
- 1;
2147 raid_map
= device
->raid_map
;
2149 /* Check for invalid block or wraparound. */
2150 if (last_block
>= get_unaligned_le64(&raid_map
->volume_blk_cnt
) ||
2151 last_block
< first_block
)
2152 return PQI_RAID_BYPASS_INELIGIBLE
;
2154 data_disks_per_row
= get_unaligned_le16(&raid_map
->data_disks_per_row
);
2155 strip_size
= get_unaligned_le16(&raid_map
->strip_size
);
2156 layout_map_count
= get_unaligned_le16(&raid_map
->layout_map_count
);
2158 /* Calculate stripe information for the request. */
2159 blocks_per_row
= data_disks_per_row
* strip_size
;
2160 #if BITS_PER_LONG == 32
2161 tmpdiv
= first_block
;
2162 do_div(tmpdiv
, blocks_per_row
);
2164 tmpdiv
= last_block
;
2165 do_div(tmpdiv
, blocks_per_row
);
2167 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2168 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2169 tmpdiv
= first_row_offset
;
2170 do_div(tmpdiv
, strip_size
);
2171 first_column
= tmpdiv
;
2172 tmpdiv
= last_row_offset
;
2173 do_div(tmpdiv
, strip_size
);
2174 last_column
= tmpdiv
;
2176 first_row
= first_block
/ blocks_per_row
;
2177 last_row
= last_block
/ blocks_per_row
;
2178 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2179 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2180 first_column
= first_row_offset
/ strip_size
;
2181 last_column
= last_row_offset
/ strip_size
;
2184 /* If this isn't a single row/column then give to the controller. */
2185 if (first_row
!= last_row
|| first_column
!= last_column
)
2186 return PQI_RAID_BYPASS_INELIGIBLE
;
2188 /* Proceeding with driver mapping. */
2189 total_disks_per_row
= data_disks_per_row
+
2190 get_unaligned_le16(&raid_map
->metadata_disks_per_row
);
2191 map_row
= ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2192 get_unaligned_le16(&raid_map
->row_cnt
);
2193 map_index
= (map_row
* total_disks_per_row
) + first_column
;
2196 if (device
->raid_level
== SA_RAID_1
) {
2197 if (device
->offload_to_mirror
)
2198 map_index
+= data_disks_per_row
;
2199 device
->offload_to_mirror
= !device
->offload_to_mirror
;
2200 } else if (device
->raid_level
== SA_RAID_ADM
) {
2203 * Handles N-way mirrors (R1-ADM) and R10 with # of drives
2206 offload_to_mirror
= device
->offload_to_mirror
;
2207 if (offload_to_mirror
== 0) {
2208 /* use physical disk in the first mirrored group. */
2209 map_index
%= data_disks_per_row
;
2213 * Determine mirror group that map_index
2216 current_group
= map_index
/ data_disks_per_row
;
2218 if (offload_to_mirror
!= current_group
) {
2220 layout_map_count
- 1) {
2222 * Select raid index from
2225 map_index
+= data_disks_per_row
;
2229 * Select raid index from first
2232 map_index
%= data_disks_per_row
;
2236 } while (offload_to_mirror
!= current_group
);
2239 /* Set mirror group to use next time. */
2241 (offload_to_mirror
>= layout_map_count
- 1) ?
2242 0 : offload_to_mirror
+ 1;
2243 WARN_ON(offload_to_mirror
>= layout_map_count
);
2244 device
->offload_to_mirror
= offload_to_mirror
;
2246 * Avoid direct use of device->offload_to_mirror within this
2247 * function since multiple threads might simultaneously
2248 * increment it beyond the range of device->layout_map_count -1.
2250 } else if ((device
->raid_level
== SA_RAID_5
||
2251 device
->raid_level
== SA_RAID_6
) && layout_map_count
> 1) {
2253 /* Verify first and last block are in same RAID group */
2254 r5or6_blocks_per_row
= strip_size
* data_disks_per_row
;
2255 stripesize
= r5or6_blocks_per_row
* layout_map_count
;
2256 #if BITS_PER_LONG == 32
2257 tmpdiv
= first_block
;
2258 first_group
= do_div(tmpdiv
, stripesize
);
2259 tmpdiv
= first_group
;
2260 do_div(tmpdiv
, r5or6_blocks_per_row
);
2261 first_group
= tmpdiv
;
2262 tmpdiv
= last_block
;
2263 last_group
= do_div(tmpdiv
, stripesize
);
2264 tmpdiv
= last_group
;
2265 do_div(tmpdiv
, r5or6_blocks_per_row
);
2266 last_group
= tmpdiv
;
2268 first_group
= (first_block
% stripesize
) / r5or6_blocks_per_row
;
2269 last_group
= (last_block
% stripesize
) / r5or6_blocks_per_row
;
2271 if (first_group
!= last_group
)
2272 return PQI_RAID_BYPASS_INELIGIBLE
;
2274 /* Verify request is in a single row of RAID 5/6 */
2275 #if BITS_PER_LONG == 32
2276 tmpdiv
= first_block
;
2277 do_div(tmpdiv
, stripesize
);
2278 first_row
= r5or6_first_row
= r0_first_row
= tmpdiv
;
2279 tmpdiv
= last_block
;
2280 do_div(tmpdiv
, stripesize
);
2281 r5or6_last_row
= r0_last_row
= tmpdiv
;
2283 first_row
= r5or6_first_row
= r0_first_row
=
2284 first_block
/ stripesize
;
2285 r5or6_last_row
= r0_last_row
= last_block
/ stripesize
;
2287 if (r5or6_first_row
!= r5or6_last_row
)
2288 return PQI_RAID_BYPASS_INELIGIBLE
;
2290 /* Verify request is in a single column */
2291 #if BITS_PER_LONG == 32
2292 tmpdiv
= first_block
;
2293 first_row_offset
= do_div(tmpdiv
, stripesize
);
2294 tmpdiv
= first_row_offset
;
2295 first_row_offset
= (u32
)do_div(tmpdiv
, r5or6_blocks_per_row
);
2296 r5or6_first_row_offset
= first_row_offset
;
2297 tmpdiv
= last_block
;
2298 r5or6_last_row_offset
= do_div(tmpdiv
, stripesize
);
2299 tmpdiv
= r5or6_last_row_offset
;
2300 r5or6_last_row_offset
= do_div(tmpdiv
, r5or6_blocks_per_row
);
2301 tmpdiv
= r5or6_first_row_offset
;
2302 do_div(tmpdiv
, strip_size
);
2303 first_column
= r5or6_first_column
= tmpdiv
;
2304 tmpdiv
= r5or6_last_row_offset
;
2305 do_div(tmpdiv
, strip_size
);
2306 r5or6_last_column
= tmpdiv
;
2308 first_row_offset
= r5or6_first_row_offset
=
2309 (u32
)((first_block
% stripesize
) %
2310 r5or6_blocks_per_row
);
2312 r5or6_last_row_offset
=
2313 (u32
)((last_block
% stripesize
) %
2314 r5or6_blocks_per_row
);
2316 first_column
= r5or6_first_row_offset
/ strip_size
;
2317 r5or6_first_column
= first_column
;
2318 r5or6_last_column
= r5or6_last_row_offset
/ strip_size
;
2320 if (r5or6_first_column
!= r5or6_last_column
)
2321 return PQI_RAID_BYPASS_INELIGIBLE
;
2323 /* Request is eligible */
2325 ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2326 get_unaligned_le16(&raid_map
->row_cnt
);
2328 map_index
= (first_group
*
2329 (get_unaligned_le16(&raid_map
->row_cnt
) *
2330 total_disks_per_row
)) +
2331 (map_row
* total_disks_per_row
) + first_column
;
2334 if (unlikely(map_index
>= RAID_MAP_MAX_ENTRIES
))
2335 return PQI_RAID_BYPASS_INELIGIBLE
;
2337 aio_handle
= raid_map
->disk_data
[map_index
].aio_handle
;
2338 disk_block
= get_unaligned_le64(&raid_map
->disk_starting_blk
) +
2339 first_row
* strip_size
+
2340 (first_row_offset
- first_column
* strip_size
);
2341 disk_block_cnt
= block_cnt
;
2343 /* Handle differing logical/physical block sizes. */
2344 if (raid_map
->phys_blk_shift
) {
2345 disk_block
<<= raid_map
->phys_blk_shift
;
2346 disk_block_cnt
<<= raid_map
->phys_blk_shift
;
2349 if (unlikely(disk_block_cnt
> 0xffff))
2350 return PQI_RAID_BYPASS_INELIGIBLE
;
2352 /* Build the new CDB for the physical disk I/O. */
2353 if (disk_block
> 0xffffffff) {
2354 cdb
[0] = is_write
? WRITE_16
: READ_16
;
2356 put_unaligned_be64(disk_block
, &cdb
[2]);
2357 put_unaligned_be32(disk_block_cnt
, &cdb
[10]);
2362 cdb
[0] = is_write
? WRITE_10
: READ_10
;
2364 put_unaligned_be32((u32
)disk_block
, &cdb
[2]);
2366 put_unaligned_be16((u16
)disk_block_cnt
, &cdb
[7]);
2371 if (get_unaligned_le16(&raid_map
->flags
) &
2372 RAID_MAP_ENCRYPTION_ENABLED
) {
2373 pqi_set_encryption_info(&encryption_info
, raid_map
,
2375 encryption_info_ptr
= &encryption_info
;
2377 encryption_info_ptr
= NULL
;
2380 return pqi_aio_submit_io(ctrl_info
, scmd
, aio_handle
,
2381 cdb
, cdb_length
, queue_group
, encryption_info_ptr
, true);
2384 #define PQI_STATUS_IDLE 0x0
2386 #define PQI_CREATE_ADMIN_QUEUE_PAIR 1
2387 #define PQI_DELETE_ADMIN_QUEUE_PAIR 2
2389 #define PQI_DEVICE_STATE_POWER_ON_AND_RESET 0x0
2390 #define PQI_DEVICE_STATE_STATUS_AVAILABLE 0x1
2391 #define PQI_DEVICE_STATE_ALL_REGISTERS_READY 0x2
2392 #define PQI_DEVICE_STATE_ADMIN_QUEUE_PAIR_READY 0x3
2393 #define PQI_DEVICE_STATE_ERROR 0x4
2395 #define PQI_MODE_READY_TIMEOUT_SECS 30
2396 #define PQI_MODE_READY_POLL_INTERVAL_MSECS 1
2398 static int pqi_wait_for_pqi_mode_ready(struct pqi_ctrl_info
*ctrl_info
)
2400 struct pqi_device_registers __iomem
*pqi_registers
;
2401 unsigned long timeout
;
2405 pqi_registers
= ctrl_info
->pqi_registers
;
2406 timeout
= (PQI_MODE_READY_TIMEOUT_SECS
* HZ
) + jiffies
;
2409 signature
= readq(&pqi_registers
->signature
);
2410 if (memcmp(&signature
, PQI_DEVICE_SIGNATURE
,
2411 sizeof(signature
)) == 0)
2413 if (time_after(jiffies
, timeout
)) {
2414 dev_err(&ctrl_info
->pci_dev
->dev
,
2415 "timed out waiting for PQI signature\n");
2418 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2422 status
= readb(&pqi_registers
->function_and_status_code
);
2423 if (status
== PQI_STATUS_IDLE
)
2425 if (time_after(jiffies
, timeout
)) {
2426 dev_err(&ctrl_info
->pci_dev
->dev
,
2427 "timed out waiting for PQI IDLE\n");
2430 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2434 if (readl(&pqi_registers
->device_status
) ==
2435 PQI_DEVICE_STATE_ALL_REGISTERS_READY
)
2437 if (time_after(jiffies
, timeout
)) {
2438 dev_err(&ctrl_info
->pci_dev
->dev
,
2439 "timed out waiting for PQI all registers ready\n");
2442 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2448 static inline void pqi_aio_path_disabled(struct pqi_io_request
*io_request
)
2450 struct pqi_scsi_dev
*device
;
2452 device
= io_request
->scmd
->device
->hostdata
;
2453 device
->raid_bypass_enabled
= false;
2454 device
->aio_enabled
= false;
2457 static inline void pqi_take_device_offline(struct scsi_device
*sdev
, char *path
)
2459 struct pqi_ctrl_info
*ctrl_info
;
2460 struct pqi_scsi_dev
*device
;
2462 device
= sdev
->hostdata
;
2463 if (device
->device_offline
)
2466 device
->device_offline
= true;
2467 scsi_device_set_state(sdev
, SDEV_OFFLINE
);
2468 ctrl_info
= shost_to_hba(sdev
->host
);
2469 pqi_schedule_rescan_worker(ctrl_info
);
2470 dev_err(&ctrl_info
->pci_dev
->dev
, "offlined %s scsi %d:%d:%d:%d\n",
2471 path
, ctrl_info
->scsi_host
->host_no
, device
->bus
,
2472 device
->target
, device
->lun
);
2475 static void pqi_process_raid_io_error(struct pqi_io_request
*io_request
)
2479 struct scsi_cmnd
*scmd
;
2480 struct pqi_raid_error_info
*error_info
;
2481 size_t sense_data_length
;
2484 struct scsi_sense_hdr sshdr
;
2486 scmd
= io_request
->scmd
;
2490 error_info
= io_request
->error_info
;
2491 scsi_status
= error_info
->status
;
2494 switch (error_info
->data_out_result
) {
2495 case PQI_DATA_IN_OUT_GOOD
:
2497 case PQI_DATA_IN_OUT_UNDERFLOW
:
2499 get_unaligned_le32(&error_info
->data_out_transferred
);
2500 residual_count
= scsi_bufflen(scmd
) - xfer_count
;
2501 scsi_set_resid(scmd
, residual_count
);
2502 if (xfer_count
< scmd
->underflow
)
2503 host_byte
= DID_SOFT_ERROR
;
2505 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
2506 case PQI_DATA_IN_OUT_ABORTED
:
2507 host_byte
= DID_ABORT
;
2509 case PQI_DATA_IN_OUT_TIMEOUT
:
2510 host_byte
= DID_TIME_OUT
;
2512 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
2513 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
2514 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
2515 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
2516 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
2517 case PQI_DATA_IN_OUT_ERROR
:
2518 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
2519 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
2520 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
2521 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
2522 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
2523 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
2524 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
2525 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
2526 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
2527 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
2529 host_byte
= DID_ERROR
;
2533 sense_data_length
= get_unaligned_le16(&error_info
->sense_data_length
);
2534 if (sense_data_length
== 0)
2536 get_unaligned_le16(&error_info
->response_data_length
);
2537 if (sense_data_length
) {
2538 if (sense_data_length
> sizeof(error_info
->data
))
2539 sense_data_length
= sizeof(error_info
->data
);
2541 if (scsi_status
== SAM_STAT_CHECK_CONDITION
&&
2542 scsi_normalize_sense(error_info
->data
,
2543 sense_data_length
, &sshdr
) &&
2544 sshdr
.sense_key
== HARDWARE_ERROR
&&
2545 sshdr
.asc
== 0x3e &&
2546 sshdr
.ascq
== 0x1) {
2547 pqi_take_device_offline(scmd
->device
, "RAID");
2548 host_byte
= DID_NO_CONNECT
;
2551 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2552 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2553 memcpy(scmd
->sense_buffer
, error_info
->data
,
2557 scmd
->result
= scsi_status
;
2558 set_host_byte(scmd
, host_byte
);
2561 static void pqi_process_aio_io_error(struct pqi_io_request
*io_request
)
2565 struct scsi_cmnd
*scmd
;
2566 struct pqi_aio_error_info
*error_info
;
2567 size_t sense_data_length
;
2570 bool device_offline
;
2572 scmd
= io_request
->scmd
;
2573 error_info
= io_request
->error_info
;
2575 sense_data_length
= 0;
2576 device_offline
= false;
2578 switch (error_info
->service_response
) {
2579 case PQI_AIO_SERV_RESPONSE_COMPLETE
:
2580 scsi_status
= error_info
->status
;
2582 case PQI_AIO_SERV_RESPONSE_FAILURE
:
2583 switch (error_info
->status
) {
2584 case PQI_AIO_STATUS_IO_ABORTED
:
2585 scsi_status
= SAM_STAT_TASK_ABORTED
;
2587 case PQI_AIO_STATUS_UNDERRUN
:
2588 scsi_status
= SAM_STAT_GOOD
;
2589 residual_count
= get_unaligned_le32(
2590 &error_info
->residual_count
);
2591 scsi_set_resid(scmd
, residual_count
);
2592 xfer_count
= scsi_bufflen(scmd
) - residual_count
;
2593 if (xfer_count
< scmd
->underflow
)
2594 host_byte
= DID_SOFT_ERROR
;
2596 case PQI_AIO_STATUS_OVERRUN
:
2597 scsi_status
= SAM_STAT_GOOD
;
2599 case PQI_AIO_STATUS_AIO_PATH_DISABLED
:
2600 pqi_aio_path_disabled(io_request
);
2601 scsi_status
= SAM_STAT_GOOD
;
2602 io_request
->status
= -EAGAIN
;
2604 case PQI_AIO_STATUS_NO_PATH_TO_DEVICE
:
2605 case PQI_AIO_STATUS_INVALID_DEVICE
:
2606 if (!io_request
->raid_bypass
) {
2607 device_offline
= true;
2608 pqi_take_device_offline(scmd
->device
, "AIO");
2609 host_byte
= DID_NO_CONNECT
;
2611 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2613 case PQI_AIO_STATUS_IO_ERROR
:
2615 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2619 case PQI_AIO_SERV_RESPONSE_TMF_COMPLETE
:
2620 case PQI_AIO_SERV_RESPONSE_TMF_SUCCEEDED
:
2621 scsi_status
= SAM_STAT_GOOD
;
2623 case PQI_AIO_SERV_RESPONSE_TMF_REJECTED
:
2624 case PQI_AIO_SERV_RESPONSE_TMF_INCORRECT_LUN
:
2626 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2630 if (error_info
->data_present
) {
2632 get_unaligned_le16(&error_info
->data_length
);
2633 if (sense_data_length
) {
2634 if (sense_data_length
> sizeof(error_info
->data
))
2635 sense_data_length
= sizeof(error_info
->data
);
2636 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2637 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2638 memcpy(scmd
->sense_buffer
, error_info
->data
,
2643 if (device_offline
&& sense_data_length
== 0)
2644 scsi_build_sense_buffer(0, scmd
->sense_buffer
, HARDWARE_ERROR
,
2647 scmd
->result
= scsi_status
;
2648 set_host_byte(scmd
, host_byte
);
2651 static void pqi_process_io_error(unsigned int iu_type
,
2652 struct pqi_io_request
*io_request
)
2655 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2656 pqi_process_raid_io_error(io_request
);
2658 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2659 pqi_process_aio_io_error(io_request
);
2664 static int pqi_interpret_task_management_response(
2665 struct pqi_task_management_response
*response
)
2669 switch (response
->response_code
) {
2670 case SOP_TMF_COMPLETE
:
2671 case SOP_TMF_FUNCTION_SUCCEEDED
:
2682 static unsigned int pqi_process_io_intr(struct pqi_ctrl_info
*ctrl_info
,
2683 struct pqi_queue_group
*queue_group
)
2685 unsigned int num_responses
;
2688 struct pqi_io_request
*io_request
;
2689 struct pqi_io_response
*response
;
2693 oq_ci
= queue_group
->oq_ci_copy
;
2696 oq_pi
= *queue_group
->oq_pi
;
2701 response
= queue_group
->oq_element_array
+
2702 (oq_ci
* PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
);
2704 request_id
= get_unaligned_le16(&response
->request_id
);
2705 WARN_ON(request_id
>= ctrl_info
->max_io_slots
);
2707 io_request
= &ctrl_info
->io_request_pool
[request_id
];
2708 WARN_ON(atomic_read(&io_request
->refcount
) == 0);
2710 switch (response
->header
.iu_type
) {
2711 case PQI_RESPONSE_IU_RAID_PATH_IO_SUCCESS
:
2712 case PQI_RESPONSE_IU_AIO_PATH_IO_SUCCESS
:
2713 case PQI_RESPONSE_IU_GENERAL_MANAGEMENT
:
2715 case PQI_RESPONSE_IU_TASK_MANAGEMENT
:
2716 io_request
->status
=
2717 pqi_interpret_task_management_response(
2720 case PQI_RESPONSE_IU_AIO_PATH_DISABLED
:
2721 pqi_aio_path_disabled(io_request
);
2722 io_request
->status
= -EAGAIN
;
2724 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2725 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2726 io_request
->error_info
= ctrl_info
->error_buffer
+
2727 (get_unaligned_le16(&response
->error_index
) *
2728 PQI_ERROR_BUFFER_ELEMENT_LENGTH
);
2729 pqi_process_io_error(response
->header
.iu_type
,
2733 dev_err(&ctrl_info
->pci_dev
->dev
,
2734 "unexpected IU type: 0x%x\n",
2735 response
->header
.iu_type
);
2739 io_request
->io_complete_callback(io_request
,
2740 io_request
->context
);
2743 * Note that the I/O request structure CANNOT BE TOUCHED after
2744 * returning from the I/O completion callback!
2747 oq_ci
= (oq_ci
+ 1) % ctrl_info
->num_elements_per_oq
;
2750 if (num_responses
) {
2751 queue_group
->oq_ci_copy
= oq_ci
;
2752 writel(oq_ci
, queue_group
->oq_ci
);
2755 return num_responses
;
2758 static inline unsigned int pqi_num_elements_free(unsigned int pi
,
2759 unsigned int ci
, unsigned int elements_in_queue
)
2761 unsigned int num_elements_used
;
2764 num_elements_used
= pi
- ci
;
2766 num_elements_used
= elements_in_queue
- ci
+ pi
;
2768 return elements_in_queue
- num_elements_used
- 1;
2771 static void pqi_send_event_ack(struct pqi_ctrl_info
*ctrl_info
,
2772 struct pqi_event_acknowledge_request
*iu
, size_t iu_length
)
2776 unsigned long flags
;
2778 struct pqi_queue_group
*queue_group
;
2780 queue_group
= &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
];
2781 put_unaligned_le16(queue_group
->oq_id
, &iu
->header
.response_queue_id
);
2784 spin_lock_irqsave(&queue_group
->submit_lock
[RAID_PATH
], flags
);
2786 iq_pi
= queue_group
->iq_pi_copy
[RAID_PATH
];
2787 iq_ci
= *queue_group
->iq_ci
[RAID_PATH
];
2789 if (pqi_num_elements_free(iq_pi
, iq_ci
,
2790 ctrl_info
->num_elements_per_iq
))
2793 spin_unlock_irqrestore(
2794 &queue_group
->submit_lock
[RAID_PATH
], flags
);
2796 if (pqi_ctrl_offline(ctrl_info
))
2800 next_element
= queue_group
->iq_element_array
[RAID_PATH
] +
2801 (iq_pi
* PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
2803 memcpy(next_element
, iu
, iu_length
);
2805 iq_pi
= (iq_pi
+ 1) % ctrl_info
->num_elements_per_iq
;
2806 queue_group
->iq_pi_copy
[RAID_PATH
] = iq_pi
;
2809 * This write notifies the controller that an IU is available to be
2812 writel(iq_pi
, queue_group
->iq_pi
[RAID_PATH
]);
2814 spin_unlock_irqrestore(&queue_group
->submit_lock
[RAID_PATH
], flags
);
2817 static void pqi_acknowledge_event(struct pqi_ctrl_info
*ctrl_info
,
2818 struct pqi_event
*event
)
2820 struct pqi_event_acknowledge_request request
;
2822 memset(&request
, 0, sizeof(request
));
2824 request
.header
.iu_type
= PQI_REQUEST_IU_ACKNOWLEDGE_VENDOR_EVENT
;
2825 put_unaligned_le16(sizeof(request
) - PQI_REQUEST_HEADER_LENGTH
,
2826 &request
.header
.iu_length
);
2827 request
.event_type
= event
->event_type
;
2828 request
.event_id
= event
->event_id
;
2829 request
.additional_event_id
= event
->additional_event_id
;
2831 pqi_send_event_ack(ctrl_info
, &request
, sizeof(request
));
2834 static void pqi_event_worker(struct work_struct
*work
)
2837 struct pqi_ctrl_info
*ctrl_info
;
2838 struct pqi_event
*event
;
2840 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, event_work
);
2842 pqi_ctrl_busy(ctrl_info
);
2843 pqi_wait_if_ctrl_blocked(ctrl_info
, NO_TIMEOUT
);
2844 if (pqi_ctrl_offline(ctrl_info
))
2847 pqi_schedule_rescan_worker_delayed(ctrl_info
);
2849 event
= ctrl_info
->events
;
2850 for (i
= 0; i
< PQI_NUM_SUPPORTED_EVENTS
; i
++) {
2851 if (event
->pending
) {
2852 event
->pending
= false;
2853 pqi_acknowledge_event(ctrl_info
, event
);
2859 pqi_ctrl_unbusy(ctrl_info
);
2862 #define PQI_HEARTBEAT_TIMER_INTERVAL (10 * HZ)
2864 static void pqi_heartbeat_timer_handler(struct timer_list
*t
)
2867 u32 heartbeat_count
;
2868 struct pqi_ctrl_info
*ctrl_info
= from_timer(ctrl_info
, t
,
2871 pqi_check_ctrl_health(ctrl_info
);
2872 if (pqi_ctrl_offline(ctrl_info
))
2875 num_interrupts
= atomic_read(&ctrl_info
->num_interrupts
);
2876 heartbeat_count
= pqi_read_heartbeat_counter(ctrl_info
);
2878 if (num_interrupts
== ctrl_info
->previous_num_interrupts
) {
2879 if (heartbeat_count
== ctrl_info
->previous_heartbeat_count
) {
2880 dev_err(&ctrl_info
->pci_dev
->dev
,
2881 "no heartbeat detected - last heartbeat count: %u\n",
2883 pqi_take_ctrl_offline(ctrl_info
);
2887 ctrl_info
->previous_num_interrupts
= num_interrupts
;
2890 ctrl_info
->previous_heartbeat_count
= heartbeat_count
;
2891 mod_timer(&ctrl_info
->heartbeat_timer
,
2892 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
);
2895 static void pqi_start_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
2897 if (!ctrl_info
->heartbeat_counter
)
2900 ctrl_info
->previous_num_interrupts
=
2901 atomic_read(&ctrl_info
->num_interrupts
);
2902 ctrl_info
->previous_heartbeat_count
=
2903 pqi_read_heartbeat_counter(ctrl_info
);
2905 ctrl_info
->heartbeat_timer
.expires
=
2906 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
;
2907 add_timer(&ctrl_info
->heartbeat_timer
);
2910 static inline void pqi_stop_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
2912 del_timer_sync(&ctrl_info
->heartbeat_timer
);
2915 static inline int pqi_event_type_to_event_index(unsigned int event_type
)
2919 for (index
= 0; index
< ARRAY_SIZE(pqi_supported_event_types
); index
++)
2920 if (event_type
== pqi_supported_event_types
[index
])
2926 static inline bool pqi_is_supported_event(unsigned int event_type
)
2928 return pqi_event_type_to_event_index(event_type
) != -1;
2931 static unsigned int pqi_process_event_intr(struct pqi_ctrl_info
*ctrl_info
)
2933 unsigned int num_events
;
2936 struct pqi_event_queue
*event_queue
;
2937 struct pqi_event_response
*response
;
2938 struct pqi_event
*event
;
2941 event_queue
= &ctrl_info
->event_queue
;
2943 oq_ci
= event_queue
->oq_ci_copy
;
2946 oq_pi
= *event_queue
->oq_pi
;
2951 response
= event_queue
->oq_element_array
+
2952 (oq_ci
* PQI_EVENT_OQ_ELEMENT_LENGTH
);
2955 pqi_event_type_to_event_index(response
->event_type
);
2957 if (event_index
>= 0) {
2958 if (response
->request_acknowlege
) {
2959 event
= &ctrl_info
->events
[event_index
];
2960 event
->pending
= true;
2961 event
->event_type
= response
->event_type
;
2962 event
->event_id
= response
->event_id
;
2963 event
->additional_event_id
=
2964 response
->additional_event_id
;
2968 oq_ci
= (oq_ci
+ 1) % PQI_NUM_EVENT_QUEUE_ELEMENTS
;
2972 event_queue
->oq_ci_copy
= oq_ci
;
2973 writel(oq_ci
, event_queue
->oq_ci
);
2974 schedule_work(&ctrl_info
->event_work
);
2980 #define PQI_LEGACY_INTX_MASK 0x1
2982 static inline void pqi_configure_legacy_intx(struct pqi_ctrl_info
*ctrl_info
,
2986 struct pqi_device_registers __iomem
*pqi_registers
;
2987 volatile void __iomem
*register_addr
;
2989 pqi_registers
= ctrl_info
->pqi_registers
;
2992 register_addr
= &pqi_registers
->legacy_intx_mask_clear
;
2994 register_addr
= &pqi_registers
->legacy_intx_mask_set
;
2996 intx_mask
= readl(register_addr
);
2997 intx_mask
|= PQI_LEGACY_INTX_MASK
;
2998 writel(intx_mask
, register_addr
);
3001 static void pqi_change_irq_mode(struct pqi_ctrl_info
*ctrl_info
,
3002 enum pqi_irq_mode new_mode
)
3004 switch (ctrl_info
->irq_mode
) {
3010 pqi_configure_legacy_intx(ctrl_info
, true);
3011 sis_enable_intx(ctrl_info
);
3020 pqi_configure_legacy_intx(ctrl_info
, false);
3021 sis_enable_msix(ctrl_info
);
3026 pqi_configure_legacy_intx(ctrl_info
, false);
3033 sis_enable_msix(ctrl_info
);
3036 pqi_configure_legacy_intx(ctrl_info
, true);
3037 sis_enable_intx(ctrl_info
);
3045 ctrl_info
->irq_mode
= new_mode
;
3048 #define PQI_LEGACY_INTX_PENDING 0x1
3050 static inline bool pqi_is_valid_irq(struct pqi_ctrl_info
*ctrl_info
)
3055 switch (ctrl_info
->irq_mode
) {
3061 readl(&ctrl_info
->pqi_registers
->legacy_intx_status
);
3062 if (intx_status
& PQI_LEGACY_INTX_PENDING
)
3076 static irqreturn_t
pqi_irq_handler(int irq
, void *data
)
3078 struct pqi_ctrl_info
*ctrl_info
;
3079 struct pqi_queue_group
*queue_group
;
3080 unsigned int num_responses_handled
;
3083 ctrl_info
= queue_group
->ctrl_info
;
3085 if (!pqi_is_valid_irq(ctrl_info
))
3088 num_responses_handled
= pqi_process_io_intr(ctrl_info
, queue_group
);
3090 if (irq
== ctrl_info
->event_irq
)
3091 num_responses_handled
+= pqi_process_event_intr(ctrl_info
);
3093 if (num_responses_handled
)
3094 atomic_inc(&ctrl_info
->num_interrupts
);
3096 pqi_start_io(ctrl_info
, queue_group
, RAID_PATH
, NULL
);
3097 pqi_start_io(ctrl_info
, queue_group
, AIO_PATH
, NULL
);
3102 static int pqi_request_irqs(struct pqi_ctrl_info
*ctrl_info
)
3104 struct pci_dev
*pci_dev
= ctrl_info
->pci_dev
;
3108 ctrl_info
->event_irq
= pci_irq_vector(pci_dev
, 0);
3110 for (i
= 0; i
< ctrl_info
->num_msix_vectors_enabled
; i
++) {
3111 rc
= request_irq(pci_irq_vector(pci_dev
, i
), pqi_irq_handler
, 0,
3112 DRIVER_NAME_SHORT
, &ctrl_info
->queue_groups
[i
]);
3114 dev_err(&pci_dev
->dev
,
3115 "irq %u init failed with error %d\n",
3116 pci_irq_vector(pci_dev
, i
), rc
);
3119 ctrl_info
->num_msix_vectors_initialized
++;
3125 static void pqi_free_irqs(struct pqi_ctrl_info
*ctrl_info
)
3129 for (i
= 0; i
< ctrl_info
->num_msix_vectors_initialized
; i
++)
3130 free_irq(pci_irq_vector(ctrl_info
->pci_dev
, i
),
3131 &ctrl_info
->queue_groups
[i
]);
3133 ctrl_info
->num_msix_vectors_initialized
= 0;
3136 static int pqi_enable_msix_interrupts(struct pqi_ctrl_info
*ctrl_info
)
3138 int num_vectors_enabled
;
3140 num_vectors_enabled
= pci_alloc_irq_vectors(ctrl_info
->pci_dev
,
3141 PQI_MIN_MSIX_VECTORS
, ctrl_info
->num_queue_groups
,
3142 PCI_IRQ_MSIX
| PCI_IRQ_AFFINITY
);
3143 if (num_vectors_enabled
< 0) {
3144 dev_err(&ctrl_info
->pci_dev
->dev
,
3145 "MSI-X init failed with error %d\n",
3146 num_vectors_enabled
);
3147 return num_vectors_enabled
;
3150 ctrl_info
->num_msix_vectors_enabled
= num_vectors_enabled
;
3151 ctrl_info
->irq_mode
= IRQ_MODE_MSIX
;
3155 static void pqi_disable_msix_interrupts(struct pqi_ctrl_info
*ctrl_info
)
3157 if (ctrl_info
->num_msix_vectors_enabled
) {
3158 pci_free_irq_vectors(ctrl_info
->pci_dev
);
3159 ctrl_info
->num_msix_vectors_enabled
= 0;
3163 static int pqi_alloc_operational_queues(struct pqi_ctrl_info
*ctrl_info
)
3166 size_t alloc_length
;
3167 size_t element_array_length_per_iq
;
3168 size_t element_array_length_per_oq
;
3169 void *element_array
;
3170 void *next_queue_index
;
3171 void *aligned_pointer
;
3172 unsigned int num_inbound_queues
;
3173 unsigned int num_outbound_queues
;
3174 unsigned int num_queue_indexes
;
3175 struct pqi_queue_group
*queue_group
;
3177 element_array_length_per_iq
=
3178 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
*
3179 ctrl_info
->num_elements_per_iq
;
3180 element_array_length_per_oq
=
3181 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
*
3182 ctrl_info
->num_elements_per_oq
;
3183 num_inbound_queues
= ctrl_info
->num_queue_groups
* 2;
3184 num_outbound_queues
= ctrl_info
->num_queue_groups
;
3185 num_queue_indexes
= (ctrl_info
->num_queue_groups
* 3) + 1;
3187 aligned_pointer
= NULL
;
3189 for (i
= 0; i
< num_inbound_queues
; i
++) {
3190 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3191 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3192 aligned_pointer
+= element_array_length_per_iq
;
3195 for (i
= 0; i
< num_outbound_queues
; i
++) {
3196 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3197 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3198 aligned_pointer
+= element_array_length_per_oq
;
3201 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3202 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3203 aligned_pointer
+= PQI_NUM_EVENT_QUEUE_ELEMENTS
*
3204 PQI_EVENT_OQ_ELEMENT_LENGTH
;
3206 for (i
= 0; i
< num_queue_indexes
; i
++) {
3207 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3208 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3209 aligned_pointer
+= sizeof(pqi_index_t
);
3212 alloc_length
= (size_t)aligned_pointer
+
3213 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
;
3215 alloc_length
+= PQI_EXTRA_SGL_MEMORY
;
3217 ctrl_info
->queue_memory_base
=
3218 dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
3220 &ctrl_info
->queue_memory_base_dma_handle
, GFP_KERNEL
);
3222 if (!ctrl_info
->queue_memory_base
)
3225 ctrl_info
->queue_memory_length
= alloc_length
;
3227 element_array
= PTR_ALIGN(ctrl_info
->queue_memory_base
,
3228 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3230 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3231 queue_group
= &ctrl_info
->queue_groups
[i
];
3232 queue_group
->iq_element_array
[RAID_PATH
] = element_array
;
3233 queue_group
->iq_element_array_bus_addr
[RAID_PATH
] =
3234 ctrl_info
->queue_memory_base_dma_handle
+
3235 (element_array
- ctrl_info
->queue_memory_base
);
3236 element_array
+= element_array_length_per_iq
;
3237 element_array
= PTR_ALIGN(element_array
,
3238 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3239 queue_group
->iq_element_array
[AIO_PATH
] = element_array
;
3240 queue_group
->iq_element_array_bus_addr
[AIO_PATH
] =
3241 ctrl_info
->queue_memory_base_dma_handle
+
3242 (element_array
- ctrl_info
->queue_memory_base
);
3243 element_array
+= element_array_length_per_iq
;
3244 element_array
= PTR_ALIGN(element_array
,
3245 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3248 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3249 queue_group
= &ctrl_info
->queue_groups
[i
];
3250 queue_group
->oq_element_array
= element_array
;
3251 queue_group
->oq_element_array_bus_addr
=
3252 ctrl_info
->queue_memory_base_dma_handle
+
3253 (element_array
- ctrl_info
->queue_memory_base
);
3254 element_array
+= element_array_length_per_oq
;
3255 element_array
= PTR_ALIGN(element_array
,
3256 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3259 ctrl_info
->event_queue
.oq_element_array
= element_array
;
3260 ctrl_info
->event_queue
.oq_element_array_bus_addr
=
3261 ctrl_info
->queue_memory_base_dma_handle
+
3262 (element_array
- ctrl_info
->queue_memory_base
);
3263 element_array
+= PQI_NUM_EVENT_QUEUE_ELEMENTS
*
3264 PQI_EVENT_OQ_ELEMENT_LENGTH
;
3266 next_queue_index
= PTR_ALIGN(element_array
,
3267 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3269 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3270 queue_group
= &ctrl_info
->queue_groups
[i
];
3271 queue_group
->iq_ci
[RAID_PATH
] = next_queue_index
;
3272 queue_group
->iq_ci_bus_addr
[RAID_PATH
] =
3273 ctrl_info
->queue_memory_base_dma_handle
+
3274 (next_queue_index
- ctrl_info
->queue_memory_base
);
3275 next_queue_index
+= sizeof(pqi_index_t
);
3276 next_queue_index
= PTR_ALIGN(next_queue_index
,
3277 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3278 queue_group
->iq_ci
[AIO_PATH
] = next_queue_index
;
3279 queue_group
->iq_ci_bus_addr
[AIO_PATH
] =
3280 ctrl_info
->queue_memory_base_dma_handle
+
3281 (next_queue_index
- ctrl_info
->queue_memory_base
);
3282 next_queue_index
+= sizeof(pqi_index_t
);
3283 next_queue_index
= PTR_ALIGN(next_queue_index
,
3284 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3285 queue_group
->oq_pi
= next_queue_index
;
3286 queue_group
->oq_pi_bus_addr
=
3287 ctrl_info
->queue_memory_base_dma_handle
+
3288 (next_queue_index
- ctrl_info
->queue_memory_base
);
3289 next_queue_index
+= sizeof(pqi_index_t
);
3290 next_queue_index
= PTR_ALIGN(next_queue_index
,
3291 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3294 ctrl_info
->event_queue
.oq_pi
= next_queue_index
;
3295 ctrl_info
->event_queue
.oq_pi_bus_addr
=
3296 ctrl_info
->queue_memory_base_dma_handle
+
3297 (next_queue_index
- ctrl_info
->queue_memory_base
);
3302 static void pqi_init_operational_queues(struct pqi_ctrl_info
*ctrl_info
)
3305 u16 next_iq_id
= PQI_MIN_OPERATIONAL_QUEUE_ID
;
3306 u16 next_oq_id
= PQI_MIN_OPERATIONAL_QUEUE_ID
;
3309 * Initialize the backpointers to the controller structure in
3310 * each operational queue group structure.
3312 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++)
3313 ctrl_info
->queue_groups
[i
].ctrl_info
= ctrl_info
;
3316 * Assign IDs to all operational queues. Note that the IDs
3317 * assigned to operational IQs are independent of the IDs
3318 * assigned to operational OQs.
3320 ctrl_info
->event_queue
.oq_id
= next_oq_id
++;
3321 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3322 ctrl_info
->queue_groups
[i
].iq_id
[RAID_PATH
] = next_iq_id
++;
3323 ctrl_info
->queue_groups
[i
].iq_id
[AIO_PATH
] = next_iq_id
++;
3324 ctrl_info
->queue_groups
[i
].oq_id
= next_oq_id
++;
3328 * Assign MSI-X table entry indexes to all queues. Note that the
3329 * interrupt for the event queue is shared with the first queue group.
3331 ctrl_info
->event_queue
.int_msg_num
= 0;
3332 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++)
3333 ctrl_info
->queue_groups
[i
].int_msg_num
= i
;
3335 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3336 spin_lock_init(&ctrl_info
->queue_groups
[i
].submit_lock
[0]);
3337 spin_lock_init(&ctrl_info
->queue_groups
[i
].submit_lock
[1]);
3338 INIT_LIST_HEAD(&ctrl_info
->queue_groups
[i
].request_list
[0]);
3339 INIT_LIST_HEAD(&ctrl_info
->queue_groups
[i
].request_list
[1]);
3343 static int pqi_alloc_admin_queues(struct pqi_ctrl_info
*ctrl_info
)
3345 size_t alloc_length
;
3346 struct pqi_admin_queues_aligned
*admin_queues_aligned
;
3347 struct pqi_admin_queues
*admin_queues
;
3349 alloc_length
= sizeof(struct pqi_admin_queues_aligned
) +
3350 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
;
3352 ctrl_info
->admin_queue_memory_base
=
3353 dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
3355 &ctrl_info
->admin_queue_memory_base_dma_handle
,
3358 if (!ctrl_info
->admin_queue_memory_base
)
3361 ctrl_info
->admin_queue_memory_length
= alloc_length
;
3363 admin_queues
= &ctrl_info
->admin_queues
;
3364 admin_queues_aligned
= PTR_ALIGN(ctrl_info
->admin_queue_memory_base
,
3365 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3366 admin_queues
->iq_element_array
=
3367 &admin_queues_aligned
->iq_element_array
;
3368 admin_queues
->oq_element_array
=
3369 &admin_queues_aligned
->oq_element_array
;
3370 admin_queues
->iq_ci
= &admin_queues_aligned
->iq_ci
;
3371 admin_queues
->oq_pi
= &admin_queues_aligned
->oq_pi
;
3373 admin_queues
->iq_element_array_bus_addr
=
3374 ctrl_info
->admin_queue_memory_base_dma_handle
+
3375 (admin_queues
->iq_element_array
-
3376 ctrl_info
->admin_queue_memory_base
);
3377 admin_queues
->oq_element_array_bus_addr
=
3378 ctrl_info
->admin_queue_memory_base_dma_handle
+
3379 (admin_queues
->oq_element_array
-
3380 ctrl_info
->admin_queue_memory_base
);
3381 admin_queues
->iq_ci_bus_addr
=
3382 ctrl_info
->admin_queue_memory_base_dma_handle
+
3383 ((void *)admin_queues
->iq_ci
-
3384 ctrl_info
->admin_queue_memory_base
);
3385 admin_queues
->oq_pi_bus_addr
=
3386 ctrl_info
->admin_queue_memory_base_dma_handle
+
3387 ((void *)admin_queues
->oq_pi
-
3388 ctrl_info
->admin_queue_memory_base
);
3393 #define PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES HZ
3394 #define PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS 1
3396 static int pqi_create_admin_queues(struct pqi_ctrl_info
*ctrl_info
)
3398 struct pqi_device_registers __iomem
*pqi_registers
;
3399 struct pqi_admin_queues
*admin_queues
;
3400 unsigned long timeout
;
3404 pqi_registers
= ctrl_info
->pqi_registers
;
3405 admin_queues
= &ctrl_info
->admin_queues
;
3407 writeq((u64
)admin_queues
->iq_element_array_bus_addr
,
3408 &pqi_registers
->admin_iq_element_array_addr
);
3409 writeq((u64
)admin_queues
->oq_element_array_bus_addr
,
3410 &pqi_registers
->admin_oq_element_array_addr
);
3411 writeq((u64
)admin_queues
->iq_ci_bus_addr
,
3412 &pqi_registers
->admin_iq_ci_addr
);
3413 writeq((u64
)admin_queues
->oq_pi_bus_addr
,
3414 &pqi_registers
->admin_oq_pi_addr
);
3416 reg
= PQI_ADMIN_IQ_NUM_ELEMENTS
|
3417 (PQI_ADMIN_OQ_NUM_ELEMENTS
) << 8 |
3418 (admin_queues
->int_msg_num
<< 16);
3419 writel(reg
, &pqi_registers
->admin_iq_num_elements
);
3420 writel(PQI_CREATE_ADMIN_QUEUE_PAIR
,
3421 &pqi_registers
->function_and_status_code
);
3423 timeout
= PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES
+ jiffies
;
3425 status
= readb(&pqi_registers
->function_and_status_code
);
3426 if (status
== PQI_STATUS_IDLE
)
3428 if (time_after(jiffies
, timeout
))
3430 msleep(PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS
);
3434 * The offset registers are not initialized to the correct
3435 * offsets until *after* the create admin queue pair command
3436 * completes successfully.
3438 admin_queues
->iq_pi
= ctrl_info
->iomem_base
+
3439 PQI_DEVICE_REGISTERS_OFFSET
+
3440 readq(&pqi_registers
->admin_iq_pi_offset
);
3441 admin_queues
->oq_ci
= ctrl_info
->iomem_base
+
3442 PQI_DEVICE_REGISTERS_OFFSET
+
3443 readq(&pqi_registers
->admin_oq_ci_offset
);
3448 static void pqi_submit_admin_request(struct pqi_ctrl_info
*ctrl_info
,
3449 struct pqi_general_admin_request
*request
)
3451 struct pqi_admin_queues
*admin_queues
;
3455 admin_queues
= &ctrl_info
->admin_queues
;
3456 iq_pi
= admin_queues
->iq_pi_copy
;
3458 next_element
= admin_queues
->iq_element_array
+
3459 (iq_pi
* PQI_ADMIN_IQ_ELEMENT_LENGTH
);
3461 memcpy(next_element
, request
, sizeof(*request
));
3463 iq_pi
= (iq_pi
+ 1) % PQI_ADMIN_IQ_NUM_ELEMENTS
;
3464 admin_queues
->iq_pi_copy
= iq_pi
;
3467 * This write notifies the controller that an IU is available to be
3470 writel(iq_pi
, admin_queues
->iq_pi
);
3473 #define PQI_ADMIN_REQUEST_TIMEOUT_SECS 60
3475 static int pqi_poll_for_admin_response(struct pqi_ctrl_info
*ctrl_info
,
3476 struct pqi_general_admin_response
*response
)
3478 struct pqi_admin_queues
*admin_queues
;
3481 unsigned long timeout
;
3483 admin_queues
= &ctrl_info
->admin_queues
;
3484 oq_ci
= admin_queues
->oq_ci_copy
;
3486 timeout
= (PQI_ADMIN_REQUEST_TIMEOUT_SECS
* HZ
) + jiffies
;
3489 oq_pi
= *admin_queues
->oq_pi
;
3492 if (time_after(jiffies
, timeout
)) {
3493 dev_err(&ctrl_info
->pci_dev
->dev
,
3494 "timed out waiting for admin response\n");
3497 if (!sis_is_firmware_running(ctrl_info
))
3499 usleep_range(1000, 2000);
3502 memcpy(response
, admin_queues
->oq_element_array
+
3503 (oq_ci
* PQI_ADMIN_OQ_ELEMENT_LENGTH
), sizeof(*response
));
3505 oq_ci
= (oq_ci
+ 1) % PQI_ADMIN_OQ_NUM_ELEMENTS
;
3506 admin_queues
->oq_ci_copy
= oq_ci
;
3507 writel(oq_ci
, admin_queues
->oq_ci
);
3512 static void pqi_start_io(struct pqi_ctrl_info
*ctrl_info
,
3513 struct pqi_queue_group
*queue_group
, enum pqi_io_path path
,
3514 struct pqi_io_request
*io_request
)
3516 struct pqi_io_request
*next
;
3521 unsigned long flags
;
3522 unsigned int num_elements_needed
;
3523 unsigned int num_elements_to_end_of_queue
;
3525 struct pqi_iu_header
*request
;
3527 spin_lock_irqsave(&queue_group
->submit_lock
[path
], flags
);
3530 io_request
->queue_group
= queue_group
;
3531 list_add_tail(&io_request
->request_list_entry
,
3532 &queue_group
->request_list
[path
]);
3535 iq_pi
= queue_group
->iq_pi_copy
[path
];
3537 list_for_each_entry_safe(io_request
, next
,
3538 &queue_group
->request_list
[path
], request_list_entry
) {
3540 request
= io_request
->iu
;
3542 iu_length
= get_unaligned_le16(&request
->iu_length
) +
3543 PQI_REQUEST_HEADER_LENGTH
;
3544 num_elements_needed
=
3545 DIV_ROUND_UP(iu_length
,
3546 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3548 iq_ci
= *queue_group
->iq_ci
[path
];
3550 if (num_elements_needed
> pqi_num_elements_free(iq_pi
, iq_ci
,
3551 ctrl_info
->num_elements_per_iq
))
3554 put_unaligned_le16(queue_group
->oq_id
,
3555 &request
->response_queue_id
);
3557 next_element
= queue_group
->iq_element_array
[path
] +
3558 (iq_pi
* PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3560 num_elements_to_end_of_queue
=
3561 ctrl_info
->num_elements_per_iq
- iq_pi
;
3563 if (num_elements_needed
<= num_elements_to_end_of_queue
) {
3564 memcpy(next_element
, request
, iu_length
);
3566 copy_count
= num_elements_to_end_of_queue
*
3567 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
;
3568 memcpy(next_element
, request
, copy_count
);
3569 memcpy(queue_group
->iq_element_array
[path
],
3570 (u8
*)request
+ copy_count
,
3571 iu_length
- copy_count
);
3574 iq_pi
= (iq_pi
+ num_elements_needed
) %
3575 ctrl_info
->num_elements_per_iq
;
3577 list_del(&io_request
->request_list_entry
);
3580 if (iq_pi
!= queue_group
->iq_pi_copy
[path
]) {
3581 queue_group
->iq_pi_copy
[path
] = iq_pi
;
3583 * This write notifies the controller that one or more IUs are
3584 * available to be processed.
3586 writel(iq_pi
, queue_group
->iq_pi
[path
]);
3589 spin_unlock_irqrestore(&queue_group
->submit_lock
[path
], flags
);
3592 #define PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS 10
3594 static int pqi_wait_for_completion_io(struct pqi_ctrl_info
*ctrl_info
,
3595 struct completion
*wait
)
3600 if (wait_for_completion_io_timeout(wait
,
3601 PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS
* HZ
)) {
3606 pqi_check_ctrl_health(ctrl_info
);
3607 if (pqi_ctrl_offline(ctrl_info
)) {
3616 static void pqi_raid_synchronous_complete(struct pqi_io_request
*io_request
,
3619 struct completion
*waiting
= context
;
3624 static int pqi_submit_raid_request_synchronous_with_io_request(
3625 struct pqi_ctrl_info
*ctrl_info
, struct pqi_io_request
*io_request
,
3626 unsigned long timeout_msecs
)
3629 DECLARE_COMPLETION_ONSTACK(wait
);
3631 io_request
->io_complete_callback
= pqi_raid_synchronous_complete
;
3632 io_request
->context
= &wait
;
3634 pqi_start_io(ctrl_info
,
3635 &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
], RAID_PATH
,
3638 if (timeout_msecs
== NO_TIMEOUT
) {
3639 pqi_wait_for_completion_io(ctrl_info
, &wait
);
3641 if (!wait_for_completion_io_timeout(&wait
,
3642 msecs_to_jiffies(timeout_msecs
))) {
3643 dev_warn(&ctrl_info
->pci_dev
->dev
,
3644 "command timed out\n");
3652 static int pqi_submit_raid_request_synchronous(struct pqi_ctrl_info
*ctrl_info
,
3653 struct pqi_iu_header
*request
, unsigned int flags
,
3654 struct pqi_raid_error_info
*error_info
, unsigned long timeout_msecs
)
3657 struct pqi_io_request
*io_request
;
3658 unsigned long start_jiffies
;
3659 unsigned long msecs_blocked
;
3663 * Note that specifying PQI_SYNC_FLAGS_INTERRUPTABLE and a timeout value
3664 * are mutually exclusive.
3667 if (flags
& PQI_SYNC_FLAGS_INTERRUPTABLE
) {
3668 if (down_interruptible(&ctrl_info
->sync_request_sem
))
3669 return -ERESTARTSYS
;
3671 if (timeout_msecs
== NO_TIMEOUT
) {
3672 down(&ctrl_info
->sync_request_sem
);
3674 start_jiffies
= jiffies
;
3675 if (down_timeout(&ctrl_info
->sync_request_sem
,
3676 msecs_to_jiffies(timeout_msecs
)))
3679 jiffies_to_msecs(jiffies
- start_jiffies
);
3680 if (msecs_blocked
>= timeout_msecs
)
3682 timeout_msecs
-= msecs_blocked
;
3686 pqi_ctrl_busy(ctrl_info
);
3687 timeout_msecs
= pqi_wait_if_ctrl_blocked(ctrl_info
, timeout_msecs
);
3688 if (timeout_msecs
== 0) {
3693 if (pqi_ctrl_offline(ctrl_info
)) {
3698 io_request
= pqi_alloc_io_request(ctrl_info
);
3700 put_unaligned_le16(io_request
->index
,
3701 &(((struct pqi_raid_path_request
*)request
)->request_id
));
3703 if (request
->iu_type
== PQI_REQUEST_IU_RAID_PATH_IO
)
3704 ((struct pqi_raid_path_request
*)request
)->error_index
=
3705 ((struct pqi_raid_path_request
*)request
)->request_id
;
3707 iu_length
= get_unaligned_le16(&request
->iu_length
) +
3708 PQI_REQUEST_HEADER_LENGTH
;
3709 memcpy(io_request
->iu
, request
, iu_length
);
3711 rc
= pqi_submit_raid_request_synchronous_with_io_request(ctrl_info
,
3712 io_request
, timeout_msecs
);
3715 if (io_request
->error_info
)
3716 memcpy(error_info
, io_request
->error_info
,
3717 sizeof(*error_info
));
3719 memset(error_info
, 0, sizeof(*error_info
));
3720 } else if (rc
== 0 && io_request
->error_info
) {
3722 struct pqi_raid_error_info
*raid_error_info
;
3724 raid_error_info
= io_request
->error_info
;
3725 scsi_status
= raid_error_info
->status
;
3727 if (scsi_status
== SAM_STAT_CHECK_CONDITION
&&
3728 raid_error_info
->data_out_result
==
3729 PQI_DATA_IN_OUT_UNDERFLOW
)
3730 scsi_status
= SAM_STAT_GOOD
;
3732 if (scsi_status
!= SAM_STAT_GOOD
)
3736 pqi_free_io_request(io_request
);
3739 pqi_ctrl_unbusy(ctrl_info
);
3740 up(&ctrl_info
->sync_request_sem
);
3745 static int pqi_validate_admin_response(
3746 struct pqi_general_admin_response
*response
, u8 expected_function_code
)
3748 if (response
->header
.iu_type
!= PQI_RESPONSE_IU_GENERAL_ADMIN
)
3751 if (get_unaligned_le16(&response
->header
.iu_length
) !=
3752 PQI_GENERAL_ADMIN_IU_LENGTH
)
3755 if (response
->function_code
!= expected_function_code
)
3758 if (response
->status
!= PQI_GENERAL_ADMIN_STATUS_SUCCESS
)
3764 static int pqi_submit_admin_request_synchronous(
3765 struct pqi_ctrl_info
*ctrl_info
,
3766 struct pqi_general_admin_request
*request
,
3767 struct pqi_general_admin_response
*response
)
3771 pqi_submit_admin_request(ctrl_info
, request
);
3773 rc
= pqi_poll_for_admin_response(ctrl_info
, response
);
3776 rc
= pqi_validate_admin_response(response
,
3777 request
->function_code
);
3782 static int pqi_report_device_capability(struct pqi_ctrl_info
*ctrl_info
)
3785 struct pqi_general_admin_request request
;
3786 struct pqi_general_admin_response response
;
3787 struct pqi_device_capability
*capability
;
3788 struct pqi_iu_layer_descriptor
*sop_iu_layer_descriptor
;
3790 capability
= kmalloc(sizeof(*capability
), GFP_KERNEL
);
3794 memset(&request
, 0, sizeof(request
));
3796 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3797 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3798 &request
.header
.iu_length
);
3799 request
.function_code
=
3800 PQI_GENERAL_ADMIN_FUNCTION_REPORT_DEVICE_CAPABILITY
;
3801 put_unaligned_le32(sizeof(*capability
),
3802 &request
.data
.report_device_capability
.buffer_length
);
3804 rc
= pqi_map_single(ctrl_info
->pci_dev
,
3805 &request
.data
.report_device_capability
.sg_descriptor
,
3806 capability
, sizeof(*capability
),
3807 PCI_DMA_FROMDEVICE
);
3811 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
3814 pqi_pci_unmap(ctrl_info
->pci_dev
,
3815 &request
.data
.report_device_capability
.sg_descriptor
, 1,
3816 PCI_DMA_FROMDEVICE
);
3821 if (response
.status
!= PQI_GENERAL_ADMIN_STATUS_SUCCESS
) {
3826 ctrl_info
->max_inbound_queues
=
3827 get_unaligned_le16(&capability
->max_inbound_queues
);
3828 ctrl_info
->max_elements_per_iq
=
3829 get_unaligned_le16(&capability
->max_elements_per_iq
);
3830 ctrl_info
->max_iq_element_length
=
3831 get_unaligned_le16(&capability
->max_iq_element_length
)
3833 ctrl_info
->max_outbound_queues
=
3834 get_unaligned_le16(&capability
->max_outbound_queues
);
3835 ctrl_info
->max_elements_per_oq
=
3836 get_unaligned_le16(&capability
->max_elements_per_oq
);
3837 ctrl_info
->max_oq_element_length
=
3838 get_unaligned_le16(&capability
->max_oq_element_length
)
3841 sop_iu_layer_descriptor
=
3842 &capability
->iu_layer_descriptors
[PQI_PROTOCOL_SOP
];
3844 ctrl_info
->max_inbound_iu_length_per_firmware
=
3846 &sop_iu_layer_descriptor
->max_inbound_iu_length
);
3847 ctrl_info
->inbound_spanning_supported
=
3848 sop_iu_layer_descriptor
->inbound_spanning_supported
;
3849 ctrl_info
->outbound_spanning_supported
=
3850 sop_iu_layer_descriptor
->outbound_spanning_supported
;
3858 static int pqi_validate_device_capability(struct pqi_ctrl_info
*ctrl_info
)
3860 if (ctrl_info
->max_iq_element_length
<
3861 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) {
3862 dev_err(&ctrl_info
->pci_dev
->dev
,
3863 "max. inbound queue element length of %d is less than the required length of %d\n",
3864 ctrl_info
->max_iq_element_length
,
3865 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3869 if (ctrl_info
->max_oq_element_length
<
3870 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
) {
3871 dev_err(&ctrl_info
->pci_dev
->dev
,
3872 "max. outbound queue element length of %d is less than the required length of %d\n",
3873 ctrl_info
->max_oq_element_length
,
3874 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
);
3878 if (ctrl_info
->max_inbound_iu_length_per_firmware
<
3879 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) {
3880 dev_err(&ctrl_info
->pci_dev
->dev
,
3881 "max. inbound IU length of %u is less than the min. required length of %d\n",
3882 ctrl_info
->max_inbound_iu_length_per_firmware
,
3883 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3887 if (!ctrl_info
->inbound_spanning_supported
) {
3888 dev_err(&ctrl_info
->pci_dev
->dev
,
3889 "the controller does not support inbound spanning\n");
3893 if (ctrl_info
->outbound_spanning_supported
) {
3894 dev_err(&ctrl_info
->pci_dev
->dev
,
3895 "the controller supports outbound spanning but this driver does not\n");
3902 static int pqi_create_event_queue(struct pqi_ctrl_info
*ctrl_info
)
3905 struct pqi_event_queue
*event_queue
;
3906 struct pqi_general_admin_request request
;
3907 struct pqi_general_admin_response response
;
3909 event_queue
= &ctrl_info
->event_queue
;
3912 * Create OQ (Outbound Queue - device to host queue) to dedicate
3915 memset(&request
, 0, sizeof(request
));
3916 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3917 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3918 &request
.header
.iu_length
);
3919 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ
;
3920 put_unaligned_le16(event_queue
->oq_id
,
3921 &request
.data
.create_operational_oq
.queue_id
);
3922 put_unaligned_le64((u64
)event_queue
->oq_element_array_bus_addr
,
3923 &request
.data
.create_operational_oq
.element_array_addr
);
3924 put_unaligned_le64((u64
)event_queue
->oq_pi_bus_addr
,
3925 &request
.data
.create_operational_oq
.pi_addr
);
3926 put_unaligned_le16(PQI_NUM_EVENT_QUEUE_ELEMENTS
,
3927 &request
.data
.create_operational_oq
.num_elements
);
3928 put_unaligned_le16(PQI_EVENT_OQ_ELEMENT_LENGTH
/ 16,
3929 &request
.data
.create_operational_oq
.element_length
);
3930 request
.data
.create_operational_oq
.queue_protocol
= PQI_PROTOCOL_SOP
;
3931 put_unaligned_le16(event_queue
->int_msg_num
,
3932 &request
.data
.create_operational_oq
.int_msg_num
);
3934 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
3939 event_queue
->oq_ci
= ctrl_info
->iomem_base
+
3940 PQI_DEVICE_REGISTERS_OFFSET
+
3942 &response
.data
.create_operational_oq
.oq_ci_offset
);
3947 static int pqi_create_queue_group(struct pqi_ctrl_info
*ctrl_info
,
3948 unsigned int group_number
)
3951 struct pqi_queue_group
*queue_group
;
3952 struct pqi_general_admin_request request
;
3953 struct pqi_general_admin_response response
;
3955 queue_group
= &ctrl_info
->queue_groups
[group_number
];
3958 * Create IQ (Inbound Queue - host to device queue) for
3961 memset(&request
, 0, sizeof(request
));
3962 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3963 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3964 &request
.header
.iu_length
);
3965 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ
;
3966 put_unaligned_le16(queue_group
->iq_id
[RAID_PATH
],
3967 &request
.data
.create_operational_iq
.queue_id
);
3969 (u64
)queue_group
->iq_element_array_bus_addr
[RAID_PATH
],
3970 &request
.data
.create_operational_iq
.element_array_addr
);
3971 put_unaligned_le64((u64
)queue_group
->iq_ci_bus_addr
[RAID_PATH
],
3972 &request
.data
.create_operational_iq
.ci_addr
);
3973 put_unaligned_le16(ctrl_info
->num_elements_per_iq
,
3974 &request
.data
.create_operational_iq
.num_elements
);
3975 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
/ 16,
3976 &request
.data
.create_operational_iq
.element_length
);
3977 request
.data
.create_operational_iq
.queue_protocol
= PQI_PROTOCOL_SOP
;
3979 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
3982 dev_err(&ctrl_info
->pci_dev
->dev
,
3983 "error creating inbound RAID queue\n");
3987 queue_group
->iq_pi
[RAID_PATH
] = ctrl_info
->iomem_base
+
3988 PQI_DEVICE_REGISTERS_OFFSET
+
3990 &response
.data
.create_operational_iq
.iq_pi_offset
);
3993 * Create IQ (Inbound Queue - host to device queue) for
3994 * Advanced I/O (AIO) path.
3996 memset(&request
, 0, sizeof(request
));
3997 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3998 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3999 &request
.header
.iu_length
);
4000 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ
;
4001 put_unaligned_le16(queue_group
->iq_id
[AIO_PATH
],
4002 &request
.data
.create_operational_iq
.queue_id
);
4003 put_unaligned_le64((u64
)queue_group
->
4004 iq_element_array_bus_addr
[AIO_PATH
],
4005 &request
.data
.create_operational_iq
.element_array_addr
);
4006 put_unaligned_le64((u64
)queue_group
->iq_ci_bus_addr
[AIO_PATH
],
4007 &request
.data
.create_operational_iq
.ci_addr
);
4008 put_unaligned_le16(ctrl_info
->num_elements_per_iq
,
4009 &request
.data
.create_operational_iq
.num_elements
);
4010 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
/ 16,
4011 &request
.data
.create_operational_iq
.element_length
);
4012 request
.data
.create_operational_iq
.queue_protocol
= PQI_PROTOCOL_SOP
;
4014 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4017 dev_err(&ctrl_info
->pci_dev
->dev
,
4018 "error creating inbound AIO queue\n");
4022 queue_group
->iq_pi
[AIO_PATH
] = ctrl_info
->iomem_base
+
4023 PQI_DEVICE_REGISTERS_OFFSET
+
4025 &response
.data
.create_operational_iq
.iq_pi_offset
);
4028 * Designate the 2nd IQ as the AIO path. By default, all IQs are
4029 * assumed to be for RAID path I/O unless we change the queue's
4032 memset(&request
, 0, sizeof(request
));
4033 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
4034 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
4035 &request
.header
.iu_length
);
4036 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CHANGE_IQ_PROPERTY
;
4037 put_unaligned_le16(queue_group
->iq_id
[AIO_PATH
],
4038 &request
.data
.change_operational_iq_properties
.queue_id
);
4039 put_unaligned_le32(PQI_IQ_PROPERTY_IS_AIO_QUEUE
,
4040 &request
.data
.change_operational_iq_properties
.vendor_specific
);
4042 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4045 dev_err(&ctrl_info
->pci_dev
->dev
,
4046 "error changing queue property\n");
4051 * Create OQ (Outbound Queue - device to host queue).
4053 memset(&request
, 0, sizeof(request
));
4054 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
4055 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
4056 &request
.header
.iu_length
);
4057 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ
;
4058 put_unaligned_le16(queue_group
->oq_id
,
4059 &request
.data
.create_operational_oq
.queue_id
);
4060 put_unaligned_le64((u64
)queue_group
->oq_element_array_bus_addr
,
4061 &request
.data
.create_operational_oq
.element_array_addr
);
4062 put_unaligned_le64((u64
)queue_group
->oq_pi_bus_addr
,
4063 &request
.data
.create_operational_oq
.pi_addr
);
4064 put_unaligned_le16(ctrl_info
->num_elements_per_oq
,
4065 &request
.data
.create_operational_oq
.num_elements
);
4066 put_unaligned_le16(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
/ 16,
4067 &request
.data
.create_operational_oq
.element_length
);
4068 request
.data
.create_operational_oq
.queue_protocol
= PQI_PROTOCOL_SOP
;
4069 put_unaligned_le16(queue_group
->int_msg_num
,
4070 &request
.data
.create_operational_oq
.int_msg_num
);
4072 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4075 dev_err(&ctrl_info
->pci_dev
->dev
,
4076 "error creating outbound queue\n");
4080 queue_group
->oq_ci
= ctrl_info
->iomem_base
+
4081 PQI_DEVICE_REGISTERS_OFFSET
+
4083 &response
.data
.create_operational_oq
.oq_ci_offset
);
4088 static int pqi_create_queues(struct pqi_ctrl_info
*ctrl_info
)
4093 rc
= pqi_create_event_queue(ctrl_info
);
4095 dev_err(&ctrl_info
->pci_dev
->dev
,
4096 "error creating event queue\n");
4100 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
4101 rc
= pqi_create_queue_group(ctrl_info
, i
);
4103 dev_err(&ctrl_info
->pci_dev
->dev
,
4104 "error creating queue group number %u/%u\n",
4105 i
, ctrl_info
->num_queue_groups
);
4113 #define PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH \
4114 (offsetof(struct pqi_event_config, descriptors) + \
4115 (PQI_MAX_EVENT_DESCRIPTORS * sizeof(struct pqi_event_descriptor)))
4117 static int pqi_configure_events(struct pqi_ctrl_info
*ctrl_info
,
4122 struct pqi_event_config
*event_config
;
4123 struct pqi_event_descriptor
*event_descriptor
;
4124 struct pqi_general_management_request request
;
4126 event_config
= kmalloc(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4131 memset(&request
, 0, sizeof(request
));
4133 request
.header
.iu_type
= PQI_REQUEST_IU_REPORT_VENDOR_EVENT_CONFIG
;
4134 put_unaligned_le16(offsetof(struct pqi_general_management_request
,
4135 data
.report_event_configuration
.sg_descriptors
[1]) -
4136 PQI_REQUEST_HEADER_LENGTH
, &request
.header
.iu_length
);
4137 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4138 &request
.data
.report_event_configuration
.buffer_length
);
4140 rc
= pqi_map_single(ctrl_info
->pci_dev
,
4141 request
.data
.report_event_configuration
.sg_descriptors
,
4142 event_config
, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4143 PCI_DMA_FROMDEVICE
);
4147 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
4148 0, NULL
, NO_TIMEOUT
);
4150 pqi_pci_unmap(ctrl_info
->pci_dev
,
4151 request
.data
.report_event_configuration
.sg_descriptors
, 1,
4152 PCI_DMA_FROMDEVICE
);
4157 for (i
= 0; i
< event_config
->num_event_descriptors
; i
++) {
4158 event_descriptor
= &event_config
->descriptors
[i
];
4159 if (enable_events
&&
4160 pqi_is_supported_event(event_descriptor
->event_type
))
4161 put_unaligned_le16(ctrl_info
->event_queue
.oq_id
,
4162 &event_descriptor
->oq_id
);
4164 put_unaligned_le16(0, &event_descriptor
->oq_id
);
4167 memset(&request
, 0, sizeof(request
));
4169 request
.header
.iu_type
= PQI_REQUEST_IU_SET_VENDOR_EVENT_CONFIG
;
4170 put_unaligned_le16(offsetof(struct pqi_general_management_request
,
4171 data
.report_event_configuration
.sg_descriptors
[1]) -
4172 PQI_REQUEST_HEADER_LENGTH
, &request
.header
.iu_length
);
4173 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4174 &request
.data
.report_event_configuration
.buffer_length
);
4176 rc
= pqi_map_single(ctrl_info
->pci_dev
,
4177 request
.data
.report_event_configuration
.sg_descriptors
,
4178 event_config
, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4183 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
4186 pqi_pci_unmap(ctrl_info
->pci_dev
,
4187 request
.data
.report_event_configuration
.sg_descriptors
, 1,
4191 kfree(event_config
);
4196 static inline int pqi_enable_events(struct pqi_ctrl_info
*ctrl_info
)
4198 return pqi_configure_events(ctrl_info
, true);
4201 static inline int pqi_disable_events(struct pqi_ctrl_info
*ctrl_info
)
4203 return pqi_configure_events(ctrl_info
, false);
4206 static void pqi_free_all_io_requests(struct pqi_ctrl_info
*ctrl_info
)
4210 size_t sg_chain_buffer_length
;
4211 struct pqi_io_request
*io_request
;
4213 if (!ctrl_info
->io_request_pool
)
4216 dev
= &ctrl_info
->pci_dev
->dev
;
4217 sg_chain_buffer_length
= ctrl_info
->sg_chain_buffer_length
;
4218 io_request
= ctrl_info
->io_request_pool
;
4220 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
4221 kfree(io_request
->iu
);
4222 if (!io_request
->sg_chain_buffer
)
4224 dma_free_coherent(dev
, sg_chain_buffer_length
,
4225 io_request
->sg_chain_buffer
,
4226 io_request
->sg_chain_buffer_dma_handle
);
4230 kfree(ctrl_info
->io_request_pool
);
4231 ctrl_info
->io_request_pool
= NULL
;
4234 static inline int pqi_alloc_error_buffer(struct pqi_ctrl_info
*ctrl_info
)
4236 ctrl_info
->error_buffer
= dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
4237 ctrl_info
->error_buffer_length
,
4238 &ctrl_info
->error_buffer_dma_handle
, GFP_KERNEL
);
4240 if (!ctrl_info
->error_buffer
)
4246 static int pqi_alloc_io_resources(struct pqi_ctrl_info
*ctrl_info
)
4249 void *sg_chain_buffer
;
4250 size_t sg_chain_buffer_length
;
4251 dma_addr_t sg_chain_buffer_dma_handle
;
4253 struct pqi_io_request
*io_request
;
4255 ctrl_info
->io_request_pool
=
4256 kcalloc(ctrl_info
->max_io_slots
,
4257 sizeof(ctrl_info
->io_request_pool
[0]), GFP_KERNEL
);
4259 if (!ctrl_info
->io_request_pool
) {
4260 dev_err(&ctrl_info
->pci_dev
->dev
,
4261 "failed to allocate I/O request pool\n");
4265 dev
= &ctrl_info
->pci_dev
->dev
;
4266 sg_chain_buffer_length
= ctrl_info
->sg_chain_buffer_length
;
4267 io_request
= ctrl_info
->io_request_pool
;
4269 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
4271 kmalloc(ctrl_info
->max_inbound_iu_length
, GFP_KERNEL
);
4273 if (!io_request
->iu
) {
4274 dev_err(&ctrl_info
->pci_dev
->dev
,
4275 "failed to allocate IU buffers\n");
4279 sg_chain_buffer
= dma_alloc_coherent(dev
,
4280 sg_chain_buffer_length
, &sg_chain_buffer_dma_handle
,
4283 if (!sg_chain_buffer
) {
4284 dev_err(&ctrl_info
->pci_dev
->dev
,
4285 "failed to allocate PQI scatter-gather chain buffers\n");
4289 io_request
->index
= i
;
4290 io_request
->sg_chain_buffer
= sg_chain_buffer
;
4291 io_request
->sg_chain_buffer_dma_handle
=
4292 sg_chain_buffer_dma_handle
;
4299 pqi_free_all_io_requests(ctrl_info
);
4305 * Calculate required resources that are sized based on max. outstanding
4306 * requests and max. transfer size.
4309 static void pqi_calculate_io_resources(struct pqi_ctrl_info
*ctrl_info
)
4311 u32 max_transfer_size
;
4314 ctrl_info
->scsi_ml_can_queue
=
4315 ctrl_info
->max_outstanding_requests
- PQI_RESERVED_IO_SLOTS
;
4316 ctrl_info
->max_io_slots
= ctrl_info
->max_outstanding_requests
;
4318 ctrl_info
->error_buffer_length
=
4319 ctrl_info
->max_io_slots
* PQI_ERROR_BUFFER_ELEMENT_LENGTH
;
4322 max_transfer_size
= min(ctrl_info
->max_transfer_size
,
4323 PQI_MAX_TRANSFER_SIZE_KDUMP
);
4325 max_transfer_size
= min(ctrl_info
->max_transfer_size
,
4326 PQI_MAX_TRANSFER_SIZE
);
4328 max_sg_entries
= max_transfer_size
/ PAGE_SIZE
;
4330 /* +1 to cover when the buffer is not page-aligned. */
4333 max_sg_entries
= min(ctrl_info
->max_sg_entries
, max_sg_entries
);
4335 max_transfer_size
= (max_sg_entries
- 1) * PAGE_SIZE
;
4337 ctrl_info
->sg_chain_buffer_length
=
4338 (max_sg_entries
* sizeof(struct pqi_sg_descriptor
)) +
4339 PQI_EXTRA_SGL_MEMORY
;
4340 ctrl_info
->sg_tablesize
= max_sg_entries
;
4341 ctrl_info
->max_sectors
= max_transfer_size
/ 512;
4344 static void pqi_calculate_queue_resources(struct pqi_ctrl_info
*ctrl_info
)
4346 int num_queue_groups
;
4347 u16 num_elements_per_iq
;
4348 u16 num_elements_per_oq
;
4350 if (reset_devices
) {
4351 num_queue_groups
= 1;
4354 int max_queue_groups
;
4356 max_queue_groups
= min(ctrl_info
->max_inbound_queues
/ 2,
4357 ctrl_info
->max_outbound_queues
- 1);
4358 max_queue_groups
= min(max_queue_groups
, PQI_MAX_QUEUE_GROUPS
);
4360 num_cpus
= num_online_cpus();
4361 num_queue_groups
= min(num_cpus
, ctrl_info
->max_msix_vectors
);
4362 num_queue_groups
= min(num_queue_groups
, max_queue_groups
);
4365 ctrl_info
->num_queue_groups
= num_queue_groups
;
4366 ctrl_info
->max_hw_queue_index
= num_queue_groups
- 1;
4369 * Make sure that the max. inbound IU length is an even multiple
4370 * of our inbound element length.
4372 ctrl_info
->max_inbound_iu_length
=
4373 (ctrl_info
->max_inbound_iu_length_per_firmware
/
4374 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) *
4375 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
;
4377 num_elements_per_iq
=
4378 (ctrl_info
->max_inbound_iu_length
/
4379 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
4381 /* Add one because one element in each queue is unusable. */
4382 num_elements_per_iq
++;
4384 num_elements_per_iq
= min(num_elements_per_iq
,
4385 ctrl_info
->max_elements_per_iq
);
4387 num_elements_per_oq
= ((num_elements_per_iq
- 1) * 2) + 1;
4388 num_elements_per_oq
= min(num_elements_per_oq
,
4389 ctrl_info
->max_elements_per_oq
);
4391 ctrl_info
->num_elements_per_iq
= num_elements_per_iq
;
4392 ctrl_info
->num_elements_per_oq
= num_elements_per_oq
;
4394 ctrl_info
->max_sg_per_iu
=
4395 ((ctrl_info
->max_inbound_iu_length
-
4396 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) /
4397 sizeof(struct pqi_sg_descriptor
)) +
4398 PQI_MAX_EMBEDDED_SG_DESCRIPTORS
;
4401 static inline void pqi_set_sg_descriptor(
4402 struct pqi_sg_descriptor
*sg_descriptor
, struct scatterlist
*sg
)
4404 u64 address
= (u64
)sg_dma_address(sg
);
4405 unsigned int length
= sg_dma_len(sg
);
4407 put_unaligned_le64(address
, &sg_descriptor
->address
);
4408 put_unaligned_le32(length
, &sg_descriptor
->length
);
4409 put_unaligned_le32(0, &sg_descriptor
->flags
);
4412 static int pqi_build_raid_sg_list(struct pqi_ctrl_info
*ctrl_info
,
4413 struct pqi_raid_path_request
*request
, struct scsi_cmnd
*scmd
,
4414 struct pqi_io_request
*io_request
)
4420 unsigned int num_sg_in_iu
;
4421 unsigned int max_sg_per_iu
;
4422 struct scatterlist
*sg
;
4423 struct pqi_sg_descriptor
*sg_descriptor
;
4425 sg_count
= scsi_dma_map(scmd
);
4429 iu_length
= offsetof(struct pqi_raid_path_request
, sg_descriptors
) -
4430 PQI_REQUEST_HEADER_LENGTH
;
4435 sg
= scsi_sglist(scmd
);
4436 sg_descriptor
= request
->sg_descriptors
;
4437 max_sg_per_iu
= ctrl_info
->max_sg_per_iu
- 1;
4443 pqi_set_sg_descriptor(sg_descriptor
, sg
);
4450 if (i
== max_sg_per_iu
) {
4452 (u64
)io_request
->sg_chain_buffer_dma_handle
,
4453 &sg_descriptor
->address
);
4454 put_unaligned_le32((sg_count
- num_sg_in_iu
)
4455 * sizeof(*sg_descriptor
),
4456 &sg_descriptor
->length
);
4457 put_unaligned_le32(CISS_SG_CHAIN
,
4458 &sg_descriptor
->flags
);
4461 sg_descriptor
= io_request
->sg_chain_buffer
;
4466 put_unaligned_le32(CISS_SG_LAST
, &sg_descriptor
->flags
);
4467 request
->partial
= chained
;
4468 iu_length
+= num_sg_in_iu
* sizeof(*sg_descriptor
);
4471 put_unaligned_le16(iu_length
, &request
->header
.iu_length
);
4476 static int pqi_build_aio_sg_list(struct pqi_ctrl_info
*ctrl_info
,
4477 struct pqi_aio_path_request
*request
, struct scsi_cmnd
*scmd
,
4478 struct pqi_io_request
*io_request
)
4484 unsigned int num_sg_in_iu
;
4485 unsigned int max_sg_per_iu
;
4486 struct scatterlist
*sg
;
4487 struct pqi_sg_descriptor
*sg_descriptor
;
4489 sg_count
= scsi_dma_map(scmd
);
4493 iu_length
= offsetof(struct pqi_aio_path_request
, sg_descriptors
) -
4494 PQI_REQUEST_HEADER_LENGTH
;
4500 sg
= scsi_sglist(scmd
);
4501 sg_descriptor
= request
->sg_descriptors
;
4502 max_sg_per_iu
= ctrl_info
->max_sg_per_iu
- 1;
4507 pqi_set_sg_descriptor(sg_descriptor
, sg
);
4514 if (i
== max_sg_per_iu
) {
4516 (u64
)io_request
->sg_chain_buffer_dma_handle
,
4517 &sg_descriptor
->address
);
4518 put_unaligned_le32((sg_count
- num_sg_in_iu
)
4519 * sizeof(*sg_descriptor
),
4520 &sg_descriptor
->length
);
4521 put_unaligned_le32(CISS_SG_CHAIN
,
4522 &sg_descriptor
->flags
);
4525 sg_descriptor
= io_request
->sg_chain_buffer
;
4530 put_unaligned_le32(CISS_SG_LAST
, &sg_descriptor
->flags
);
4531 request
->partial
= chained
;
4532 iu_length
+= num_sg_in_iu
* sizeof(*sg_descriptor
);
4535 put_unaligned_le16(iu_length
, &request
->header
.iu_length
);
4536 request
->num_sg_descriptors
= num_sg_in_iu
;
4541 static void pqi_raid_io_complete(struct pqi_io_request
*io_request
,
4544 struct scsi_cmnd
*scmd
;
4546 scmd
= io_request
->scmd
;
4547 pqi_free_io_request(io_request
);
4548 scsi_dma_unmap(scmd
);
4549 pqi_scsi_done(scmd
);
4552 static int pqi_raid_submit_scsi_cmd_with_io_request(
4553 struct pqi_ctrl_info
*ctrl_info
, struct pqi_io_request
*io_request
,
4554 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4555 struct pqi_queue_group
*queue_group
)
4559 struct pqi_raid_path_request
*request
;
4561 io_request
->io_complete_callback
= pqi_raid_io_complete
;
4562 io_request
->scmd
= scmd
;
4564 request
= io_request
->iu
;
4566 offsetof(struct pqi_raid_path_request
, sg_descriptors
));
4568 request
->header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
4569 put_unaligned_le32(scsi_bufflen(scmd
), &request
->buffer_length
);
4570 request
->task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
4571 put_unaligned_le16(io_request
->index
, &request
->request_id
);
4572 request
->error_index
= request
->request_id
;
4573 memcpy(request
->lun_number
, device
->scsi3addr
,
4574 sizeof(request
->lun_number
));
4576 cdb_length
= min_t(size_t, scmd
->cmd_len
, sizeof(request
->cdb
));
4577 memcpy(request
->cdb
, scmd
->cmnd
, cdb_length
);
4579 switch (cdb_length
) {
4584 /* No bytes in the Additional CDB bytes field */
4585 request
->additional_cdb_bytes_usage
=
4586 SOP_ADDITIONAL_CDB_BYTES_0
;
4589 /* 4 bytes in the Additional cdb field */
4590 request
->additional_cdb_bytes_usage
=
4591 SOP_ADDITIONAL_CDB_BYTES_4
;
4594 /* 8 bytes in the Additional cdb field */
4595 request
->additional_cdb_bytes_usage
=
4596 SOP_ADDITIONAL_CDB_BYTES_8
;
4599 /* 12 bytes in the Additional cdb field */
4600 request
->additional_cdb_bytes_usage
=
4601 SOP_ADDITIONAL_CDB_BYTES_12
;
4605 /* 16 bytes in the Additional cdb field */
4606 request
->additional_cdb_bytes_usage
=
4607 SOP_ADDITIONAL_CDB_BYTES_16
;
4611 switch (scmd
->sc_data_direction
) {
4613 request
->data_direction
= SOP_READ_FLAG
;
4615 case DMA_FROM_DEVICE
:
4616 request
->data_direction
= SOP_WRITE_FLAG
;
4619 request
->data_direction
= SOP_NO_DIRECTION_FLAG
;
4621 case DMA_BIDIRECTIONAL
:
4622 request
->data_direction
= SOP_BIDIRECTIONAL
;
4625 dev_err(&ctrl_info
->pci_dev
->dev
,
4626 "unknown data direction: %d\n",
4627 scmd
->sc_data_direction
);
4631 rc
= pqi_build_raid_sg_list(ctrl_info
, request
, scmd
, io_request
);
4633 pqi_free_io_request(io_request
);
4634 return SCSI_MLQUEUE_HOST_BUSY
;
4637 pqi_start_io(ctrl_info
, queue_group
, RAID_PATH
, io_request
);
4642 static inline int pqi_raid_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
4643 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4644 struct pqi_queue_group
*queue_group
)
4646 struct pqi_io_request
*io_request
;
4648 io_request
= pqi_alloc_io_request(ctrl_info
);
4650 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info
, io_request
,
4651 device
, scmd
, queue_group
);
4654 static inline void pqi_schedule_bypass_retry(struct pqi_ctrl_info
*ctrl_info
)
4656 if (!pqi_ctrl_blocked(ctrl_info
))
4657 schedule_work(&ctrl_info
->raid_bypass_retry_work
);
4660 static bool pqi_raid_bypass_retry_needed(struct pqi_io_request
*io_request
)
4662 struct scsi_cmnd
*scmd
;
4663 struct pqi_scsi_dev
*device
;
4664 struct pqi_ctrl_info
*ctrl_info
;
4666 if (!io_request
->raid_bypass
)
4669 scmd
= io_request
->scmd
;
4670 if ((scmd
->result
& 0xff) == SAM_STAT_GOOD
)
4672 if (host_byte(scmd
->result
) == DID_NO_CONNECT
)
4675 device
= scmd
->device
->hostdata
;
4676 if (pqi_device_offline(device
))
4679 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4680 if (pqi_ctrl_offline(ctrl_info
))
4686 static inline void pqi_add_to_raid_bypass_retry_list(
4687 struct pqi_ctrl_info
*ctrl_info
,
4688 struct pqi_io_request
*io_request
, bool at_head
)
4690 unsigned long flags
;
4692 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4694 list_add(&io_request
->request_list_entry
,
4695 &ctrl_info
->raid_bypass_retry_list
);
4697 list_add_tail(&io_request
->request_list_entry
,
4698 &ctrl_info
->raid_bypass_retry_list
);
4699 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4702 static void pqi_queued_raid_bypass_complete(struct pqi_io_request
*io_request
,
4705 struct scsi_cmnd
*scmd
;
4707 scmd
= io_request
->scmd
;
4708 pqi_free_io_request(io_request
);
4709 pqi_scsi_done(scmd
);
4712 static void pqi_queue_raid_bypass_retry(struct pqi_io_request
*io_request
)
4714 struct scsi_cmnd
*scmd
;
4715 struct pqi_ctrl_info
*ctrl_info
;
4717 io_request
->io_complete_callback
= pqi_queued_raid_bypass_complete
;
4718 scmd
= io_request
->scmd
;
4720 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4722 pqi_add_to_raid_bypass_retry_list(ctrl_info
, io_request
, false);
4723 pqi_schedule_bypass_retry(ctrl_info
);
4726 static int pqi_retry_raid_bypass(struct pqi_io_request
*io_request
)
4728 struct scsi_cmnd
*scmd
;
4729 struct pqi_scsi_dev
*device
;
4730 struct pqi_ctrl_info
*ctrl_info
;
4731 struct pqi_queue_group
*queue_group
;
4733 scmd
= io_request
->scmd
;
4734 device
= scmd
->device
->hostdata
;
4735 if (pqi_device_in_reset(device
)) {
4736 pqi_free_io_request(io_request
);
4737 set_host_byte(scmd
, DID_RESET
);
4738 pqi_scsi_done(scmd
);
4742 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4743 queue_group
= io_request
->queue_group
;
4745 pqi_reinit_io_request(io_request
);
4747 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info
, io_request
,
4748 device
, scmd
, queue_group
);
4751 static inline struct pqi_io_request
*pqi_next_queued_raid_bypass_request(
4752 struct pqi_ctrl_info
*ctrl_info
)
4754 unsigned long flags
;
4755 struct pqi_io_request
*io_request
;
4757 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4758 io_request
= list_first_entry_or_null(
4759 &ctrl_info
->raid_bypass_retry_list
,
4760 struct pqi_io_request
, request_list_entry
);
4762 list_del(&io_request
->request_list_entry
);
4763 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4768 static void pqi_retry_raid_bypass_requests(struct pqi_ctrl_info
*ctrl_info
)
4771 struct pqi_io_request
*io_request
;
4773 pqi_ctrl_busy(ctrl_info
);
4776 if (pqi_ctrl_blocked(ctrl_info
))
4778 io_request
= pqi_next_queued_raid_bypass_request(ctrl_info
);
4781 rc
= pqi_retry_raid_bypass(io_request
);
4783 pqi_add_to_raid_bypass_retry_list(ctrl_info
, io_request
,
4785 pqi_schedule_bypass_retry(ctrl_info
);
4790 pqi_ctrl_unbusy(ctrl_info
);
4793 static void pqi_raid_bypass_retry_worker(struct work_struct
*work
)
4795 struct pqi_ctrl_info
*ctrl_info
;
4797 ctrl_info
= container_of(work
, struct pqi_ctrl_info
,
4798 raid_bypass_retry_work
);
4799 pqi_retry_raid_bypass_requests(ctrl_info
);
4802 static void pqi_clear_all_queued_raid_bypass_retries(
4803 struct pqi_ctrl_info
*ctrl_info
)
4805 unsigned long flags
;
4807 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4808 INIT_LIST_HEAD(&ctrl_info
->raid_bypass_retry_list
);
4809 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4812 static void pqi_aio_io_complete(struct pqi_io_request
*io_request
,
4815 struct scsi_cmnd
*scmd
;
4817 scmd
= io_request
->scmd
;
4818 scsi_dma_unmap(scmd
);
4819 if (io_request
->status
== -EAGAIN
)
4820 set_host_byte(scmd
, DID_IMM_RETRY
);
4821 else if (pqi_raid_bypass_retry_needed(io_request
)) {
4822 pqi_queue_raid_bypass_retry(io_request
);
4825 pqi_free_io_request(io_request
);
4826 pqi_scsi_done(scmd
);
4829 static inline int pqi_aio_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
4830 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4831 struct pqi_queue_group
*queue_group
)
4833 return pqi_aio_submit_io(ctrl_info
, scmd
, device
->aio_handle
,
4834 scmd
->cmnd
, scmd
->cmd_len
, queue_group
, NULL
, false);
4837 static int pqi_aio_submit_io(struct pqi_ctrl_info
*ctrl_info
,
4838 struct scsi_cmnd
*scmd
, u32 aio_handle
, u8
*cdb
,
4839 unsigned int cdb_length
, struct pqi_queue_group
*queue_group
,
4840 struct pqi_encryption_info
*encryption_info
, bool raid_bypass
)
4843 struct pqi_io_request
*io_request
;
4844 struct pqi_aio_path_request
*request
;
4846 io_request
= pqi_alloc_io_request(ctrl_info
);
4847 io_request
->io_complete_callback
= pqi_aio_io_complete
;
4848 io_request
->scmd
= scmd
;
4849 io_request
->raid_bypass
= raid_bypass
;
4851 request
= io_request
->iu
;
4853 offsetof(struct pqi_raid_path_request
, sg_descriptors
));
4855 request
->header
.iu_type
= PQI_REQUEST_IU_AIO_PATH_IO
;
4856 put_unaligned_le32(aio_handle
, &request
->nexus_id
);
4857 put_unaligned_le32(scsi_bufflen(scmd
), &request
->buffer_length
);
4858 request
->task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
4859 put_unaligned_le16(io_request
->index
, &request
->request_id
);
4860 request
->error_index
= request
->request_id
;
4861 if (cdb_length
> sizeof(request
->cdb
))
4862 cdb_length
= sizeof(request
->cdb
);
4863 request
->cdb_length
= cdb_length
;
4864 memcpy(request
->cdb
, cdb
, cdb_length
);
4866 switch (scmd
->sc_data_direction
) {
4868 request
->data_direction
= SOP_READ_FLAG
;
4870 case DMA_FROM_DEVICE
:
4871 request
->data_direction
= SOP_WRITE_FLAG
;
4874 request
->data_direction
= SOP_NO_DIRECTION_FLAG
;
4876 case DMA_BIDIRECTIONAL
:
4877 request
->data_direction
= SOP_BIDIRECTIONAL
;
4880 dev_err(&ctrl_info
->pci_dev
->dev
,
4881 "unknown data direction: %d\n",
4882 scmd
->sc_data_direction
);
4886 if (encryption_info
) {
4887 request
->encryption_enable
= true;
4888 put_unaligned_le16(encryption_info
->data_encryption_key_index
,
4889 &request
->data_encryption_key_index
);
4890 put_unaligned_le32(encryption_info
->encrypt_tweak_lower
,
4891 &request
->encrypt_tweak_lower
);
4892 put_unaligned_le32(encryption_info
->encrypt_tweak_upper
,
4893 &request
->encrypt_tweak_upper
);
4896 rc
= pqi_build_aio_sg_list(ctrl_info
, request
, scmd
, io_request
);
4898 pqi_free_io_request(io_request
);
4899 return SCSI_MLQUEUE_HOST_BUSY
;
4902 pqi_start_io(ctrl_info
, queue_group
, AIO_PATH
, io_request
);
4907 static inline u16
pqi_get_hw_queue(struct pqi_ctrl_info
*ctrl_info
,
4908 struct scsi_cmnd
*scmd
)
4912 hw_queue
= blk_mq_unique_tag_to_hwq(blk_mq_unique_tag(scmd
->request
));
4913 if (hw_queue
> ctrl_info
->max_hw_queue_index
)
4920 * This function gets called just before we hand the completed SCSI request
4924 void pqi_prep_for_scsi_done(struct scsi_cmnd
*scmd
)
4926 struct pqi_scsi_dev
*device
;
4928 device
= scmd
->device
->hostdata
;
4929 atomic_dec(&device
->scsi_cmds_outstanding
);
4932 static int pqi_scsi_queue_command(struct Scsi_Host
*shost
,
4933 struct scsi_cmnd
*scmd
)
4936 struct pqi_ctrl_info
*ctrl_info
;
4937 struct pqi_scsi_dev
*device
;
4939 struct pqi_queue_group
*queue_group
;
4942 device
= scmd
->device
->hostdata
;
4943 ctrl_info
= shost_to_hba(shost
);
4945 atomic_inc(&device
->scsi_cmds_outstanding
);
4947 if (pqi_ctrl_offline(ctrl_info
)) {
4948 set_host_byte(scmd
, DID_NO_CONNECT
);
4949 pqi_scsi_done(scmd
);
4953 pqi_ctrl_busy(ctrl_info
);
4954 if (pqi_ctrl_blocked(ctrl_info
) || pqi_device_in_reset(device
)) {
4955 rc
= SCSI_MLQUEUE_HOST_BUSY
;
4960 * This is necessary because the SML doesn't zero out this field during
4965 hw_queue
= pqi_get_hw_queue(ctrl_info
, scmd
);
4966 queue_group
= &ctrl_info
->queue_groups
[hw_queue
];
4968 if (pqi_is_logical_device(device
)) {
4969 raid_bypassed
= false;
4970 if (device
->raid_bypass_enabled
&&
4971 !blk_rq_is_passthrough(scmd
->request
)) {
4972 rc
= pqi_raid_bypass_submit_scsi_cmd(ctrl_info
, device
,
4974 if (rc
== 0 || rc
== SCSI_MLQUEUE_HOST_BUSY
)
4975 raid_bypassed
= true;
4978 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
4981 if (device
->aio_enabled
)
4982 rc
= pqi_aio_submit_scsi_cmd(ctrl_info
, device
, scmd
,
4985 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
4990 pqi_ctrl_unbusy(ctrl_info
);
4992 atomic_dec(&device
->scsi_cmds_outstanding
);
4997 static int pqi_wait_until_queued_io_drained(struct pqi_ctrl_info
*ctrl_info
,
4998 struct pqi_queue_group
*queue_group
)
5001 unsigned long flags
;
5004 for (path
= 0; path
< 2; path
++) {
5007 &queue_group
->submit_lock
[path
], flags
);
5009 list_empty(&queue_group
->request_list
[path
]);
5010 spin_unlock_irqrestore(
5011 &queue_group
->submit_lock
[path
], flags
);
5014 pqi_check_ctrl_health(ctrl_info
);
5015 if (pqi_ctrl_offline(ctrl_info
))
5017 usleep_range(1000, 2000);
5024 static int pqi_wait_until_inbound_queues_empty(struct pqi_ctrl_info
*ctrl_info
)
5029 struct pqi_queue_group
*queue_group
;
5033 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5034 queue_group
= &ctrl_info
->queue_groups
[i
];
5036 rc
= pqi_wait_until_queued_io_drained(ctrl_info
, queue_group
);
5040 for (path
= 0; path
< 2; path
++) {
5041 iq_pi
= queue_group
->iq_pi_copy
[path
];
5044 iq_ci
= *queue_group
->iq_ci
[path
];
5047 pqi_check_ctrl_health(ctrl_info
);
5048 if (pqi_ctrl_offline(ctrl_info
))
5050 usleep_range(1000, 2000);
5058 static void pqi_fail_io_queued_for_device(struct pqi_ctrl_info
*ctrl_info
,
5059 struct pqi_scsi_dev
*device
)
5063 struct pqi_queue_group
*queue_group
;
5064 unsigned long flags
;
5065 struct pqi_io_request
*io_request
;
5066 struct pqi_io_request
*next
;
5067 struct scsi_cmnd
*scmd
;
5068 struct pqi_scsi_dev
*scsi_device
;
5070 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5071 queue_group
= &ctrl_info
->queue_groups
[i
];
5073 for (path
= 0; path
< 2; path
++) {
5075 &queue_group
->submit_lock
[path
], flags
);
5077 list_for_each_entry_safe(io_request
, next
,
5078 &queue_group
->request_list
[path
],
5079 request_list_entry
) {
5080 scmd
= io_request
->scmd
;
5084 scsi_device
= scmd
->device
->hostdata
;
5085 if (scsi_device
!= device
)
5088 list_del(&io_request
->request_list_entry
);
5089 set_host_byte(scmd
, DID_RESET
);
5090 pqi_scsi_done(scmd
);
5093 spin_unlock_irqrestore(
5094 &queue_group
->submit_lock
[path
], flags
);
5099 static int pqi_device_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
,
5100 struct pqi_scsi_dev
*device
)
5102 while (atomic_read(&device
->scsi_cmds_outstanding
)) {
5103 pqi_check_ctrl_health(ctrl_info
);
5104 if (pqi_ctrl_offline(ctrl_info
))
5106 usleep_range(1000, 2000);
5112 static int pqi_ctrl_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
)
5115 unsigned long flags
;
5116 struct pqi_scsi_dev
*device
;
5121 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5122 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
5123 scsi_device_list_entry
) {
5124 if (atomic_read(&device
->scsi_cmds_outstanding
)) {
5129 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
5135 pqi_check_ctrl_health(ctrl_info
);
5136 if (pqi_ctrl_offline(ctrl_info
))
5139 usleep_range(1000, 2000);
5145 static void pqi_lun_reset_complete(struct pqi_io_request
*io_request
,
5148 struct completion
*waiting
= context
;
5153 #define PQI_LUN_RESET_TIMEOUT_SECS 10
5155 static int pqi_wait_for_lun_reset_completion(struct pqi_ctrl_info
*ctrl_info
,
5156 struct pqi_scsi_dev
*device
, struct completion
*wait
)
5161 if (wait_for_completion_io_timeout(wait
,
5162 PQI_LUN_RESET_TIMEOUT_SECS
* HZ
)) {
5167 pqi_check_ctrl_health(ctrl_info
);
5168 if (pqi_ctrl_offline(ctrl_info
)) {
5177 static int pqi_lun_reset(struct pqi_ctrl_info
*ctrl_info
,
5178 struct pqi_scsi_dev
*device
)
5181 struct pqi_io_request
*io_request
;
5182 DECLARE_COMPLETION_ONSTACK(wait
);
5183 struct pqi_task_management_request
*request
;
5185 io_request
= pqi_alloc_io_request(ctrl_info
);
5186 io_request
->io_complete_callback
= pqi_lun_reset_complete
;
5187 io_request
->context
= &wait
;
5189 request
= io_request
->iu
;
5190 memset(request
, 0, sizeof(*request
));
5192 request
->header
.iu_type
= PQI_REQUEST_IU_TASK_MANAGEMENT
;
5193 put_unaligned_le16(sizeof(*request
) - PQI_REQUEST_HEADER_LENGTH
,
5194 &request
->header
.iu_length
);
5195 put_unaligned_le16(io_request
->index
, &request
->request_id
);
5196 memcpy(request
->lun_number
, device
->scsi3addr
,
5197 sizeof(request
->lun_number
));
5198 request
->task_management_function
= SOP_TASK_MANAGEMENT_LUN_RESET
;
5200 pqi_start_io(ctrl_info
,
5201 &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
], RAID_PATH
,
5204 rc
= pqi_wait_for_lun_reset_completion(ctrl_info
, device
, &wait
);
5206 rc
= io_request
->status
;
5208 pqi_free_io_request(io_request
);
5213 /* Performs a reset at the LUN level. */
5215 static int pqi_device_reset(struct pqi_ctrl_info
*ctrl_info
,
5216 struct pqi_scsi_dev
*device
)
5220 rc
= pqi_lun_reset(ctrl_info
, device
);
5222 rc
= pqi_device_wait_for_pending_io(ctrl_info
, device
);
5224 return rc
== 0 ? SUCCESS
: FAILED
;
5227 static int pqi_eh_device_reset_handler(struct scsi_cmnd
*scmd
)
5230 struct Scsi_Host
*shost
;
5231 struct pqi_ctrl_info
*ctrl_info
;
5232 struct pqi_scsi_dev
*device
;
5234 shost
= scmd
->device
->host
;
5235 ctrl_info
= shost_to_hba(shost
);
5236 device
= scmd
->device
->hostdata
;
5238 dev_err(&ctrl_info
->pci_dev
->dev
,
5239 "resetting scsi %d:%d:%d:%d\n",
5240 shost
->host_no
, device
->bus
, device
->target
, device
->lun
);
5242 pqi_check_ctrl_health(ctrl_info
);
5243 if (pqi_ctrl_offline(ctrl_info
)) {
5248 mutex_lock(&ctrl_info
->lun_reset_mutex
);
5250 pqi_ctrl_block_requests(ctrl_info
);
5251 pqi_ctrl_wait_until_quiesced(ctrl_info
);
5252 pqi_fail_io_queued_for_device(ctrl_info
, device
);
5253 rc
= pqi_wait_until_inbound_queues_empty(ctrl_info
);
5254 pqi_device_reset_start(device
);
5255 pqi_ctrl_unblock_requests(ctrl_info
);
5260 rc
= pqi_device_reset(ctrl_info
, device
);
5262 pqi_device_reset_done(device
);
5264 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
5267 dev_err(&ctrl_info
->pci_dev
->dev
,
5268 "reset of scsi %d:%d:%d:%d: %s\n",
5269 shost
->host_no
, device
->bus
, device
->target
, device
->lun
,
5270 rc
== SUCCESS
? "SUCCESS" : "FAILED");
5275 static int pqi_slave_alloc(struct scsi_device
*sdev
)
5277 struct pqi_scsi_dev
*device
;
5278 unsigned long flags
;
5279 struct pqi_ctrl_info
*ctrl_info
;
5280 struct scsi_target
*starget
;
5281 struct sas_rphy
*rphy
;
5283 ctrl_info
= shost_to_hba(sdev
->host
);
5285 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5287 if (sdev_channel(sdev
) == PQI_PHYSICAL_DEVICE_BUS
) {
5288 starget
= scsi_target(sdev
);
5289 rphy
= target_to_rphy(starget
);
5290 device
= pqi_find_device_by_sas_rphy(ctrl_info
, rphy
);
5292 device
->target
= sdev_id(sdev
);
5293 device
->lun
= sdev
->lun
;
5294 device
->target_lun_valid
= true;
5297 device
= pqi_find_scsi_dev(ctrl_info
, sdev_channel(sdev
),
5298 sdev_id(sdev
), sdev
->lun
);
5302 sdev
->hostdata
= device
;
5303 device
->sdev
= sdev
;
5304 if (device
->queue_depth
) {
5305 device
->advertised_queue_depth
= device
->queue_depth
;
5306 scsi_change_queue_depth(sdev
,
5307 device
->advertised_queue_depth
);
5311 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5316 static int pqi_map_queues(struct Scsi_Host
*shost
)
5318 struct pqi_ctrl_info
*ctrl_info
= shost_to_hba(shost
);
5320 return blk_mq_pci_map_queues(&shost
->tag_set
, ctrl_info
->pci_dev
, 0);
5323 static int pqi_getpciinfo_ioctl(struct pqi_ctrl_info
*ctrl_info
,
5326 struct pci_dev
*pci_dev
;
5327 u32 subsystem_vendor
;
5328 u32 subsystem_device
;
5329 cciss_pci_info_struct pciinfo
;
5334 pci_dev
= ctrl_info
->pci_dev
;
5336 pciinfo
.domain
= pci_domain_nr(pci_dev
->bus
);
5337 pciinfo
.bus
= pci_dev
->bus
->number
;
5338 pciinfo
.dev_fn
= pci_dev
->devfn
;
5339 subsystem_vendor
= pci_dev
->subsystem_vendor
;
5340 subsystem_device
= pci_dev
->subsystem_device
;
5341 pciinfo
.board_id
= ((subsystem_device
<< 16) & 0xffff0000) |
5344 if (copy_to_user(arg
, &pciinfo
, sizeof(pciinfo
)))
5350 static int pqi_getdrivver_ioctl(void __user
*arg
)
5357 version
= (DRIVER_MAJOR
<< 28) | (DRIVER_MINOR
<< 24) |
5358 (DRIVER_RELEASE
<< 16) | DRIVER_REVISION
;
5360 if (copy_to_user(arg
, &version
, sizeof(version
)))
5366 struct ciss_error_info
{
5369 size_t sense_data_length
;
5372 static void pqi_error_info_to_ciss(struct pqi_raid_error_info
*pqi_error_info
,
5373 struct ciss_error_info
*ciss_error_info
)
5375 int ciss_cmd_status
;
5376 size_t sense_data_length
;
5378 switch (pqi_error_info
->data_out_result
) {
5379 case PQI_DATA_IN_OUT_GOOD
:
5380 ciss_cmd_status
= CISS_CMD_STATUS_SUCCESS
;
5382 case PQI_DATA_IN_OUT_UNDERFLOW
:
5383 ciss_cmd_status
= CISS_CMD_STATUS_DATA_UNDERRUN
;
5385 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
5386 ciss_cmd_status
= CISS_CMD_STATUS_DATA_OVERRUN
;
5388 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
5389 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
5390 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
5391 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
5392 case PQI_DATA_IN_OUT_ERROR
:
5393 ciss_cmd_status
= CISS_CMD_STATUS_PROTOCOL_ERROR
;
5395 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
5396 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
5397 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
5398 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
5399 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
5400 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
5401 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
5402 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
5403 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
5404 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
5405 ciss_cmd_status
= CISS_CMD_STATUS_HARDWARE_ERROR
;
5407 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
5408 ciss_cmd_status
= CISS_CMD_STATUS_UNSOLICITED_ABORT
;
5410 case PQI_DATA_IN_OUT_ABORTED
:
5411 ciss_cmd_status
= CISS_CMD_STATUS_ABORTED
;
5413 case PQI_DATA_IN_OUT_TIMEOUT
:
5414 ciss_cmd_status
= CISS_CMD_STATUS_TIMEOUT
;
5417 ciss_cmd_status
= CISS_CMD_STATUS_TARGET_STATUS
;
5422 get_unaligned_le16(&pqi_error_info
->sense_data_length
);
5423 if (sense_data_length
== 0)
5425 get_unaligned_le16(&pqi_error_info
->response_data_length
);
5426 if (sense_data_length
)
5427 if (sense_data_length
> sizeof(pqi_error_info
->data
))
5428 sense_data_length
= sizeof(pqi_error_info
->data
);
5430 ciss_error_info
->scsi_status
= pqi_error_info
->status
;
5431 ciss_error_info
->command_status
= ciss_cmd_status
;
5432 ciss_error_info
->sense_data_length
= sense_data_length
;
5435 static int pqi_passthru_ioctl(struct pqi_ctrl_info
*ctrl_info
, void __user
*arg
)
5438 char *kernel_buffer
= NULL
;
5440 size_t sense_data_length
;
5441 IOCTL_Command_struct iocommand
;
5442 struct pqi_raid_path_request request
;
5443 struct pqi_raid_error_info pqi_error_info
;
5444 struct ciss_error_info ciss_error_info
;
5446 if (pqi_ctrl_offline(ctrl_info
))
5450 if (!capable(CAP_SYS_RAWIO
))
5452 if (copy_from_user(&iocommand
, arg
, sizeof(iocommand
)))
5454 if (iocommand
.buf_size
< 1 &&
5455 iocommand
.Request
.Type
.Direction
!= XFER_NONE
)
5457 if (iocommand
.Request
.CDBLen
> sizeof(request
.cdb
))
5459 if (iocommand
.Request
.Type
.Type
!= TYPE_CMD
)
5462 switch (iocommand
.Request
.Type
.Direction
) {
5466 case XFER_READ
| XFER_WRITE
:
5472 if (iocommand
.buf_size
> 0) {
5473 kernel_buffer
= kmalloc(iocommand
.buf_size
, GFP_KERNEL
);
5476 if (iocommand
.Request
.Type
.Direction
& XFER_WRITE
) {
5477 if (copy_from_user(kernel_buffer
, iocommand
.buf
,
5478 iocommand
.buf_size
)) {
5483 memset(kernel_buffer
, 0, iocommand
.buf_size
);
5487 memset(&request
, 0, sizeof(request
));
5489 request
.header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
5490 iu_length
= offsetof(struct pqi_raid_path_request
, sg_descriptors
) -
5491 PQI_REQUEST_HEADER_LENGTH
;
5492 memcpy(request
.lun_number
, iocommand
.LUN_info
.LunAddrBytes
,
5493 sizeof(request
.lun_number
));
5494 memcpy(request
.cdb
, iocommand
.Request
.CDB
, iocommand
.Request
.CDBLen
);
5495 request
.additional_cdb_bytes_usage
= SOP_ADDITIONAL_CDB_BYTES_0
;
5497 switch (iocommand
.Request
.Type
.Direction
) {
5499 request
.data_direction
= SOP_NO_DIRECTION_FLAG
;
5502 request
.data_direction
= SOP_WRITE_FLAG
;
5505 request
.data_direction
= SOP_READ_FLAG
;
5507 case XFER_READ
| XFER_WRITE
:
5508 request
.data_direction
= SOP_BIDIRECTIONAL
;
5512 request
.task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
5514 if (iocommand
.buf_size
> 0) {
5515 put_unaligned_le32(iocommand
.buf_size
, &request
.buffer_length
);
5517 rc
= pqi_map_single(ctrl_info
->pci_dev
,
5518 &request
.sg_descriptors
[0], kernel_buffer
,
5519 iocommand
.buf_size
, PCI_DMA_BIDIRECTIONAL
);
5523 iu_length
+= sizeof(request
.sg_descriptors
[0]);
5526 put_unaligned_le16(iu_length
, &request
.header
.iu_length
);
5528 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
5529 PQI_SYNC_FLAGS_INTERRUPTABLE
, &pqi_error_info
, NO_TIMEOUT
);
5531 if (iocommand
.buf_size
> 0)
5532 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
5533 PCI_DMA_BIDIRECTIONAL
);
5535 memset(&iocommand
.error_info
, 0, sizeof(iocommand
.error_info
));
5538 pqi_error_info_to_ciss(&pqi_error_info
, &ciss_error_info
);
5539 iocommand
.error_info
.ScsiStatus
= ciss_error_info
.scsi_status
;
5540 iocommand
.error_info
.CommandStatus
=
5541 ciss_error_info
.command_status
;
5542 sense_data_length
= ciss_error_info
.sense_data_length
;
5543 if (sense_data_length
) {
5544 if (sense_data_length
>
5545 sizeof(iocommand
.error_info
.SenseInfo
))
5547 sizeof(iocommand
.error_info
.SenseInfo
);
5548 memcpy(iocommand
.error_info
.SenseInfo
,
5549 pqi_error_info
.data
, sense_data_length
);
5550 iocommand
.error_info
.SenseLen
= sense_data_length
;
5554 if (copy_to_user(arg
, &iocommand
, sizeof(iocommand
))) {
5559 if (rc
== 0 && iocommand
.buf_size
> 0 &&
5560 (iocommand
.Request
.Type
.Direction
& XFER_READ
)) {
5561 if (copy_to_user(iocommand
.buf
, kernel_buffer
,
5562 iocommand
.buf_size
)) {
5568 kfree(kernel_buffer
);
5573 static int pqi_ioctl(struct scsi_device
*sdev
, int cmd
, void __user
*arg
)
5576 struct pqi_ctrl_info
*ctrl_info
;
5578 ctrl_info
= shost_to_hba(sdev
->host
);
5581 case CCISS_DEREGDISK
:
5582 case CCISS_REGNEWDISK
:
5584 rc
= pqi_scan_scsi_devices(ctrl_info
);
5586 case CCISS_GETPCIINFO
:
5587 rc
= pqi_getpciinfo_ioctl(ctrl_info
, arg
);
5589 case CCISS_GETDRIVVER
:
5590 rc
= pqi_getdrivver_ioctl(arg
);
5592 case CCISS_PASSTHRU
:
5593 rc
= pqi_passthru_ioctl(ctrl_info
, arg
);
5603 static ssize_t
pqi_version_show(struct device
*dev
,
5604 struct device_attribute
*attr
, char *buffer
)
5607 struct Scsi_Host
*shost
;
5608 struct pqi_ctrl_info
*ctrl_info
;
5610 shost
= class_to_shost(dev
);
5611 ctrl_info
= shost_to_hba(shost
);
5613 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5614 " driver: %s\n", DRIVER_VERSION BUILD_TIMESTAMP
);
5616 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5617 "firmware: %s\n", ctrl_info
->firmware_version
);
5622 static ssize_t
pqi_host_rescan_store(struct device
*dev
,
5623 struct device_attribute
*attr
, const char *buffer
, size_t count
)
5625 struct Scsi_Host
*shost
= class_to_shost(dev
);
5627 pqi_scan_start(shost
);
5632 static ssize_t
pqi_lockup_action_show(struct device
*dev
,
5633 struct device_attribute
*attr
, char *buffer
)
5638 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
5639 if (pqi_lockup_actions
[i
].action
== pqi_lockup_action
)
5640 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5641 "[%s] ", pqi_lockup_actions
[i
].name
);
5643 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5644 "%s ", pqi_lockup_actions
[i
].name
);
5647 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
, "\n");
5652 static ssize_t
pqi_lockup_action_store(struct device
*dev
,
5653 struct device_attribute
*attr
, const char *buffer
, size_t count
)
5657 char action_name_buffer
[32];
5659 strlcpy(action_name_buffer
, buffer
, sizeof(action_name_buffer
));
5660 action_name
= strstrip(action_name_buffer
);
5662 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
5663 if (strcmp(action_name
, pqi_lockup_actions
[i
].name
) == 0) {
5664 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
5672 static DEVICE_ATTR(version
, 0444, pqi_version_show
, NULL
);
5673 static DEVICE_ATTR(rescan
, 0200, NULL
, pqi_host_rescan_store
);
5674 static DEVICE_ATTR(lockup_action
, 0644,
5675 pqi_lockup_action_show
, pqi_lockup_action_store
);
5677 static struct device_attribute
*pqi_shost_attrs
[] = {
5680 &dev_attr_lockup_action
,
5684 static ssize_t
pqi_sas_address_show(struct device
*dev
,
5685 struct device_attribute
*attr
, char *buffer
)
5687 struct pqi_ctrl_info
*ctrl_info
;
5688 struct scsi_device
*sdev
;
5689 struct pqi_scsi_dev
*device
;
5690 unsigned long flags
;
5693 sdev
= to_scsi_device(dev
);
5694 ctrl_info
= shost_to_hba(sdev
->host
);
5696 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5698 device
= sdev
->hostdata
;
5699 if (pqi_is_logical_device(device
)) {
5700 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
5704 sas_address
= device
->sas_address
;
5706 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5708 return snprintf(buffer
, PAGE_SIZE
, "0x%016llx\n", sas_address
);
5711 static ssize_t
pqi_ssd_smart_path_enabled_show(struct device
*dev
,
5712 struct device_attribute
*attr
, char *buffer
)
5714 struct pqi_ctrl_info
*ctrl_info
;
5715 struct scsi_device
*sdev
;
5716 struct pqi_scsi_dev
*device
;
5717 unsigned long flags
;
5719 sdev
= to_scsi_device(dev
);
5720 ctrl_info
= shost_to_hba(sdev
->host
);
5722 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5724 device
= sdev
->hostdata
;
5725 buffer
[0] = device
->raid_bypass_enabled
? '1' : '0';
5729 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5734 static ssize_t
pqi_raid_level_show(struct device
*dev
,
5735 struct device_attribute
*attr
, char *buffer
)
5737 struct pqi_ctrl_info
*ctrl_info
;
5738 struct scsi_device
*sdev
;
5739 struct pqi_scsi_dev
*device
;
5740 unsigned long flags
;
5743 sdev
= to_scsi_device(dev
);
5744 ctrl_info
= shost_to_hba(sdev
->host
);
5746 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5748 device
= sdev
->hostdata
;
5750 if (pqi_is_logical_device(device
))
5751 raid_level
= pqi_raid_level_to_string(device
->raid_level
);
5755 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5757 return snprintf(buffer
, PAGE_SIZE
, "%s\n", raid_level
);
5760 static DEVICE_ATTR(sas_address
, 0444, pqi_sas_address_show
, NULL
);
5761 static DEVICE_ATTR(ssd_smart_path_enabled
, 0444,
5762 pqi_ssd_smart_path_enabled_show
, NULL
);
5763 static DEVICE_ATTR(raid_level
, 0444, pqi_raid_level_show
, NULL
);
5765 static struct device_attribute
*pqi_sdev_attrs
[] = {
5766 &dev_attr_sas_address
,
5767 &dev_attr_ssd_smart_path_enabled
,
5768 &dev_attr_raid_level
,
5772 static struct scsi_host_template pqi_driver_template
= {
5773 .module
= THIS_MODULE
,
5774 .name
= DRIVER_NAME_SHORT
,
5775 .proc_name
= DRIVER_NAME_SHORT
,
5776 .queuecommand
= pqi_scsi_queue_command
,
5777 .scan_start
= pqi_scan_start
,
5778 .scan_finished
= pqi_scan_finished
,
5780 .use_clustering
= ENABLE_CLUSTERING
,
5781 .eh_device_reset_handler
= pqi_eh_device_reset_handler
,
5783 .slave_alloc
= pqi_slave_alloc
,
5784 .map_queues
= pqi_map_queues
,
5785 .sdev_attrs
= pqi_sdev_attrs
,
5786 .shost_attrs
= pqi_shost_attrs
,
5789 static int pqi_register_scsi(struct pqi_ctrl_info
*ctrl_info
)
5792 struct Scsi_Host
*shost
;
5794 shost
= scsi_host_alloc(&pqi_driver_template
, sizeof(ctrl_info
));
5796 dev_err(&ctrl_info
->pci_dev
->dev
,
5797 "scsi_host_alloc failed for controller %u\n",
5798 ctrl_info
->ctrl_id
);
5803 shost
->n_io_port
= 0;
5804 shost
->this_id
= -1;
5805 shost
->max_channel
= PQI_MAX_BUS
;
5806 shost
->max_cmd_len
= MAX_COMMAND_SIZE
;
5807 shost
->max_lun
= ~0;
5809 shost
->max_sectors
= ctrl_info
->max_sectors
;
5810 shost
->can_queue
= ctrl_info
->scsi_ml_can_queue
;
5811 shost
->cmd_per_lun
= shost
->can_queue
;
5812 shost
->sg_tablesize
= ctrl_info
->sg_tablesize
;
5813 shost
->transportt
= pqi_sas_transport_template
;
5814 shost
->irq
= pci_irq_vector(ctrl_info
->pci_dev
, 0);
5815 shost
->unique_id
= shost
->irq
;
5816 shost
->nr_hw_queues
= ctrl_info
->num_queue_groups
;
5817 shost
->hostdata
[0] = (unsigned long)ctrl_info
;
5819 rc
= scsi_add_host(shost
, &ctrl_info
->pci_dev
->dev
);
5821 dev_err(&ctrl_info
->pci_dev
->dev
,
5822 "scsi_add_host failed for controller %u\n",
5823 ctrl_info
->ctrl_id
);
5827 rc
= pqi_add_sas_host(shost
, ctrl_info
);
5829 dev_err(&ctrl_info
->pci_dev
->dev
,
5830 "add SAS host failed for controller %u\n",
5831 ctrl_info
->ctrl_id
);
5835 ctrl_info
->scsi_host
= shost
;
5840 scsi_remove_host(shost
);
5842 scsi_host_put(shost
);
5847 static void pqi_unregister_scsi(struct pqi_ctrl_info
*ctrl_info
)
5849 struct Scsi_Host
*shost
;
5851 pqi_delete_sas_host(ctrl_info
);
5853 shost
= ctrl_info
->scsi_host
;
5857 scsi_remove_host(shost
);
5858 scsi_host_put(shost
);
5861 static int pqi_wait_for_pqi_reset_completion(struct pqi_ctrl_info
*ctrl_info
)
5864 struct pqi_device_registers __iomem
*pqi_registers
;
5865 unsigned long timeout
;
5866 unsigned int timeout_msecs
;
5867 union pqi_reset_register reset_reg
;
5869 pqi_registers
= ctrl_info
->pqi_registers
;
5870 timeout_msecs
= readw(&pqi_registers
->max_reset_timeout
) * 100;
5871 timeout
= msecs_to_jiffies(timeout_msecs
) + jiffies
;
5874 msleep(PQI_RESET_POLL_INTERVAL_MSECS
);
5875 reset_reg
.all_bits
= readl(&pqi_registers
->device_reset
);
5876 if (reset_reg
.bits
.reset_action
== PQI_RESET_ACTION_COMPLETED
)
5878 pqi_check_ctrl_health(ctrl_info
);
5879 if (pqi_ctrl_offline(ctrl_info
)) {
5883 if (time_after(jiffies
, timeout
)) {
5892 static int pqi_reset(struct pqi_ctrl_info
*ctrl_info
)
5895 union pqi_reset_register reset_reg
;
5897 if (ctrl_info
->pqi_reset_quiesce_supported
) {
5898 rc
= sis_pqi_reset_quiesce(ctrl_info
);
5900 dev_err(&ctrl_info
->pci_dev
->dev
,
5901 "PQI reset failed during quiesce with error %d\n",
5907 reset_reg
.all_bits
= 0;
5908 reset_reg
.bits
.reset_type
= PQI_RESET_TYPE_HARD_RESET
;
5909 reset_reg
.bits
.reset_action
= PQI_RESET_ACTION_RESET
;
5911 writel(reset_reg
.all_bits
, &ctrl_info
->pqi_registers
->device_reset
);
5913 rc
= pqi_wait_for_pqi_reset_completion(ctrl_info
);
5915 dev_err(&ctrl_info
->pci_dev
->dev
,
5916 "PQI reset failed with error %d\n", rc
);
5921 static int pqi_get_ctrl_firmware_version(struct pqi_ctrl_info
*ctrl_info
)
5924 struct bmic_identify_controller
*identify
;
5926 identify
= kmalloc(sizeof(*identify
), GFP_KERNEL
);
5930 rc
= pqi_identify_controller(ctrl_info
, identify
);
5934 memcpy(ctrl_info
->firmware_version
, identify
->firmware_version
,
5935 sizeof(identify
->firmware_version
));
5936 ctrl_info
->firmware_version
[sizeof(identify
->firmware_version
)] = '\0';
5937 snprintf(ctrl_info
->firmware_version
+
5938 strlen(ctrl_info
->firmware_version
),
5939 sizeof(ctrl_info
->firmware_version
),
5940 "-%u", get_unaligned_le16(&identify
->firmware_build_number
));
5948 static int pqi_process_config_table(struct pqi_ctrl_info
*ctrl_info
)
5952 void __iomem
*table_iomem_addr
;
5953 struct pqi_config_table
*config_table
;
5954 struct pqi_config_table_section_header
*section
;
5956 table_length
= ctrl_info
->config_table_length
;
5958 config_table
= kmalloc(table_length
, GFP_KERNEL
);
5959 if (!config_table
) {
5960 dev_err(&ctrl_info
->pci_dev
->dev
,
5961 "failed to allocate memory for PQI configuration table\n");
5966 * Copy the config table contents from I/O memory space into the
5969 table_iomem_addr
= ctrl_info
->iomem_base
+
5970 ctrl_info
->config_table_offset
;
5971 memcpy_fromio(config_table
, table_iomem_addr
, table_length
);
5974 get_unaligned_le32(&config_table
->first_section_offset
);
5976 while (section_offset
) {
5977 section
= (void *)config_table
+ section_offset
;
5979 switch (get_unaligned_le16(§ion
->section_id
)) {
5980 case PQI_CONFIG_TABLE_SECTION_HEARTBEAT
:
5981 if (pqi_disable_heartbeat
)
5982 dev_warn(&ctrl_info
->pci_dev
->dev
,
5983 "heartbeat disabled by module parameter\n");
5985 ctrl_info
->heartbeat_counter
=
5989 struct pqi_config_table_heartbeat
,
5995 get_unaligned_le16(§ion
->next_section_offset
);
5998 kfree(config_table
);
6003 /* Switches the controller from PQI mode back into SIS mode. */
6005 static int pqi_revert_to_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
6009 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_NONE
);
6010 rc
= pqi_reset(ctrl_info
);
6013 rc
= sis_reenable_sis_mode(ctrl_info
);
6015 dev_err(&ctrl_info
->pci_dev
->dev
,
6016 "re-enabling SIS mode failed with error %d\n", rc
);
6019 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
6025 * If the controller isn't already in SIS mode, this function forces it into
6029 static int pqi_force_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
6031 if (!sis_is_firmware_running(ctrl_info
))
6034 if (pqi_get_ctrl_mode(ctrl_info
) == SIS_MODE
)
6037 if (sis_is_kernel_up(ctrl_info
)) {
6038 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
6042 return pqi_revert_to_sis_mode(ctrl_info
);
6045 static int pqi_ctrl_init(struct pqi_ctrl_info
*ctrl_info
)
6049 rc
= pqi_force_sis_mode(ctrl_info
);
6054 * Wait until the controller is ready to start accepting SIS
6057 rc
= sis_wait_for_ctrl_ready(ctrl_info
);
6062 * Get the controller properties. This allows us to determine
6063 * whether or not it supports PQI mode.
6065 rc
= sis_get_ctrl_properties(ctrl_info
);
6067 dev_err(&ctrl_info
->pci_dev
->dev
,
6068 "error obtaining controller properties\n");
6072 rc
= sis_get_pqi_capabilities(ctrl_info
);
6074 dev_err(&ctrl_info
->pci_dev
->dev
,
6075 "error obtaining controller capabilities\n");
6079 if (reset_devices
) {
6080 if (ctrl_info
->max_outstanding_requests
>
6081 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
)
6082 ctrl_info
->max_outstanding_requests
=
6083 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
;
6085 if (ctrl_info
->max_outstanding_requests
>
6086 PQI_MAX_OUTSTANDING_REQUESTS
)
6087 ctrl_info
->max_outstanding_requests
=
6088 PQI_MAX_OUTSTANDING_REQUESTS
;
6091 pqi_calculate_io_resources(ctrl_info
);
6093 rc
= pqi_alloc_error_buffer(ctrl_info
);
6095 dev_err(&ctrl_info
->pci_dev
->dev
,
6096 "failed to allocate PQI error buffer\n");
6101 * If the function we are about to call succeeds, the
6102 * controller will transition from legacy SIS mode
6105 rc
= sis_init_base_struct_addr(ctrl_info
);
6107 dev_err(&ctrl_info
->pci_dev
->dev
,
6108 "error initializing PQI mode\n");
6112 /* Wait for the controller to complete the SIS -> PQI transition. */
6113 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
6115 dev_err(&ctrl_info
->pci_dev
->dev
,
6116 "transition to PQI mode failed\n");
6120 /* From here on, we are running in PQI mode. */
6121 ctrl_info
->pqi_mode_enabled
= true;
6122 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
6124 rc
= pqi_process_config_table(ctrl_info
);
6128 rc
= pqi_alloc_admin_queues(ctrl_info
);
6130 dev_err(&ctrl_info
->pci_dev
->dev
,
6131 "failed to allocate admin queues\n");
6135 rc
= pqi_create_admin_queues(ctrl_info
);
6137 dev_err(&ctrl_info
->pci_dev
->dev
,
6138 "error creating admin queues\n");
6142 rc
= pqi_report_device_capability(ctrl_info
);
6144 dev_err(&ctrl_info
->pci_dev
->dev
,
6145 "obtaining device capability failed\n");
6149 rc
= pqi_validate_device_capability(ctrl_info
);
6153 pqi_calculate_queue_resources(ctrl_info
);
6155 rc
= pqi_enable_msix_interrupts(ctrl_info
);
6159 if (ctrl_info
->num_msix_vectors_enabled
< ctrl_info
->num_queue_groups
) {
6160 ctrl_info
->max_msix_vectors
=
6161 ctrl_info
->num_msix_vectors_enabled
;
6162 pqi_calculate_queue_resources(ctrl_info
);
6165 rc
= pqi_alloc_io_resources(ctrl_info
);
6169 rc
= pqi_alloc_operational_queues(ctrl_info
);
6171 dev_err(&ctrl_info
->pci_dev
->dev
,
6172 "failed to allocate operational queues\n");
6176 pqi_init_operational_queues(ctrl_info
);
6178 rc
= pqi_request_irqs(ctrl_info
);
6182 rc
= pqi_create_queues(ctrl_info
);
6186 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
6188 ctrl_info
->controller_online
= true;
6189 pqi_start_heartbeat_timer(ctrl_info
);
6191 rc
= pqi_enable_events(ctrl_info
);
6193 dev_err(&ctrl_info
->pci_dev
->dev
,
6194 "error enabling events\n");
6198 /* Register with the SCSI subsystem. */
6199 rc
= pqi_register_scsi(ctrl_info
);
6203 rc
= pqi_get_ctrl_firmware_version(ctrl_info
);
6205 dev_err(&ctrl_info
->pci_dev
->dev
,
6206 "error obtaining firmware version\n");
6210 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
6212 dev_err(&ctrl_info
->pci_dev
->dev
,
6213 "error updating host wellness\n");
6217 pqi_schedule_update_time_worker(ctrl_info
);
6219 pqi_scan_scsi_devices(ctrl_info
);
6224 static void pqi_reinit_queues(struct pqi_ctrl_info
*ctrl_info
)
6227 struct pqi_admin_queues
*admin_queues
;
6228 struct pqi_event_queue
*event_queue
;
6230 admin_queues
= &ctrl_info
->admin_queues
;
6231 admin_queues
->iq_pi_copy
= 0;
6232 admin_queues
->oq_ci_copy
= 0;
6233 *admin_queues
->oq_pi
= 0;
6235 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
6236 ctrl_info
->queue_groups
[i
].iq_pi_copy
[RAID_PATH
] = 0;
6237 ctrl_info
->queue_groups
[i
].iq_pi_copy
[AIO_PATH
] = 0;
6238 ctrl_info
->queue_groups
[i
].oq_ci_copy
= 0;
6240 *ctrl_info
->queue_groups
[i
].iq_ci
[RAID_PATH
] = 0;
6241 *ctrl_info
->queue_groups
[i
].iq_ci
[AIO_PATH
] = 0;
6242 *ctrl_info
->queue_groups
[i
].oq_pi
= 0;
6245 event_queue
= &ctrl_info
->event_queue
;
6246 *event_queue
->oq_pi
= 0;
6247 event_queue
->oq_ci_copy
= 0;
6250 static int pqi_ctrl_init_resume(struct pqi_ctrl_info
*ctrl_info
)
6254 rc
= pqi_force_sis_mode(ctrl_info
);
6259 * Wait until the controller is ready to start accepting SIS
6262 rc
= sis_wait_for_ctrl_ready_resume(ctrl_info
);
6267 * If the function we are about to call succeeds, the
6268 * controller will transition from legacy SIS mode
6271 rc
= sis_init_base_struct_addr(ctrl_info
);
6273 dev_err(&ctrl_info
->pci_dev
->dev
,
6274 "error initializing PQI mode\n");
6278 /* Wait for the controller to complete the SIS -> PQI transition. */
6279 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
6281 dev_err(&ctrl_info
->pci_dev
->dev
,
6282 "transition to PQI mode failed\n");
6286 /* From here on, we are running in PQI mode. */
6287 ctrl_info
->pqi_mode_enabled
= true;
6288 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
6290 pqi_reinit_queues(ctrl_info
);
6292 rc
= pqi_create_admin_queues(ctrl_info
);
6294 dev_err(&ctrl_info
->pci_dev
->dev
,
6295 "error creating admin queues\n");
6299 rc
= pqi_create_queues(ctrl_info
);
6303 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
6305 ctrl_info
->controller_online
= true;
6306 pqi_start_heartbeat_timer(ctrl_info
);
6307 pqi_ctrl_unblock_requests(ctrl_info
);
6309 rc
= pqi_enable_events(ctrl_info
);
6311 dev_err(&ctrl_info
->pci_dev
->dev
,
6312 "error enabling events\n");
6316 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
6318 dev_err(&ctrl_info
->pci_dev
->dev
,
6319 "error updating host wellness\n");
6323 pqi_schedule_update_time_worker(ctrl_info
);
6325 pqi_scan_scsi_devices(ctrl_info
);
6330 static inline int pqi_set_pcie_completion_timeout(struct pci_dev
*pci_dev
,
6333 return pcie_capability_clear_and_set_word(pci_dev
, PCI_EXP_DEVCTL2
,
6334 PCI_EXP_DEVCTL2_COMP_TIMEOUT
, timeout
);
6337 static int pqi_pci_init(struct pqi_ctrl_info
*ctrl_info
)
6342 rc
= pci_enable_device(ctrl_info
->pci_dev
);
6344 dev_err(&ctrl_info
->pci_dev
->dev
,
6345 "failed to enable PCI device\n");
6349 if (sizeof(dma_addr_t
) > 4)
6350 mask
= DMA_BIT_MASK(64);
6352 mask
= DMA_BIT_MASK(32);
6354 rc
= dma_set_mask(&ctrl_info
->pci_dev
->dev
, mask
);
6356 dev_err(&ctrl_info
->pci_dev
->dev
, "failed to set DMA mask\n");
6357 goto disable_device
;
6360 rc
= pci_request_regions(ctrl_info
->pci_dev
, DRIVER_NAME_SHORT
);
6362 dev_err(&ctrl_info
->pci_dev
->dev
,
6363 "failed to obtain PCI resources\n");
6364 goto disable_device
;
6367 ctrl_info
->iomem_base
= ioremap_nocache(pci_resource_start(
6368 ctrl_info
->pci_dev
, 0),
6369 sizeof(struct pqi_ctrl_registers
));
6370 if (!ctrl_info
->iomem_base
) {
6371 dev_err(&ctrl_info
->pci_dev
->dev
,
6372 "failed to map memory for controller registers\n");
6374 goto release_regions
;
6377 #define PCI_EXP_COMP_TIMEOUT_65_TO_210_MS 0x6
6379 /* Increase the PCIe completion timeout. */
6380 rc
= pqi_set_pcie_completion_timeout(ctrl_info
->pci_dev
,
6381 PCI_EXP_COMP_TIMEOUT_65_TO_210_MS
);
6383 dev_err(&ctrl_info
->pci_dev
->dev
,
6384 "failed to set PCIe completion timeout\n");
6385 goto release_regions
;
6388 /* Enable bus mastering. */
6389 pci_set_master(ctrl_info
->pci_dev
);
6391 ctrl_info
->registers
= ctrl_info
->iomem_base
;
6392 ctrl_info
->pqi_registers
= &ctrl_info
->registers
->pqi_registers
;
6394 pci_set_drvdata(ctrl_info
->pci_dev
, ctrl_info
);
6399 pci_release_regions(ctrl_info
->pci_dev
);
6401 pci_disable_device(ctrl_info
->pci_dev
);
6406 static void pqi_cleanup_pci_init(struct pqi_ctrl_info
*ctrl_info
)
6408 iounmap(ctrl_info
->iomem_base
);
6409 pci_release_regions(ctrl_info
->pci_dev
);
6410 if (pci_is_enabled(ctrl_info
->pci_dev
))
6411 pci_disable_device(ctrl_info
->pci_dev
);
6412 pci_set_drvdata(ctrl_info
->pci_dev
, NULL
);
6415 static struct pqi_ctrl_info
*pqi_alloc_ctrl_info(int numa_node
)
6417 struct pqi_ctrl_info
*ctrl_info
;
6419 ctrl_info
= kzalloc_node(sizeof(struct pqi_ctrl_info
),
6420 GFP_KERNEL
, numa_node
);
6424 mutex_init(&ctrl_info
->scan_mutex
);
6425 mutex_init(&ctrl_info
->lun_reset_mutex
);
6427 INIT_LIST_HEAD(&ctrl_info
->scsi_device_list
);
6428 spin_lock_init(&ctrl_info
->scsi_device_list_lock
);
6430 INIT_WORK(&ctrl_info
->event_work
, pqi_event_worker
);
6431 atomic_set(&ctrl_info
->num_interrupts
, 0);
6433 INIT_DELAYED_WORK(&ctrl_info
->rescan_work
, pqi_rescan_worker
);
6434 INIT_DELAYED_WORK(&ctrl_info
->update_time_work
, pqi_update_time_worker
);
6436 timer_setup(&ctrl_info
->heartbeat_timer
, pqi_heartbeat_timer_handler
, 0);
6437 INIT_WORK(&ctrl_info
->ctrl_offline_work
, pqi_ctrl_offline_worker
);
6439 sema_init(&ctrl_info
->sync_request_sem
,
6440 PQI_RESERVED_IO_SLOTS_SYNCHRONOUS_REQUESTS
);
6441 init_waitqueue_head(&ctrl_info
->block_requests_wait
);
6443 INIT_LIST_HEAD(&ctrl_info
->raid_bypass_retry_list
);
6444 spin_lock_init(&ctrl_info
->raid_bypass_retry_list_lock
);
6445 INIT_WORK(&ctrl_info
->raid_bypass_retry_work
,
6446 pqi_raid_bypass_retry_worker
);
6448 ctrl_info
->ctrl_id
= atomic_inc_return(&pqi_controller_count
) - 1;
6449 ctrl_info
->irq_mode
= IRQ_MODE_NONE
;
6450 ctrl_info
->max_msix_vectors
= PQI_MAX_MSIX_VECTORS
;
6455 static inline void pqi_free_ctrl_info(struct pqi_ctrl_info
*ctrl_info
)
6460 static void pqi_free_interrupts(struct pqi_ctrl_info
*ctrl_info
)
6462 pqi_free_irqs(ctrl_info
);
6463 pqi_disable_msix_interrupts(ctrl_info
);
6466 static void pqi_free_ctrl_resources(struct pqi_ctrl_info
*ctrl_info
)
6468 pqi_stop_heartbeat_timer(ctrl_info
);
6469 pqi_free_interrupts(ctrl_info
);
6470 if (ctrl_info
->queue_memory_base
)
6471 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6472 ctrl_info
->queue_memory_length
,
6473 ctrl_info
->queue_memory_base
,
6474 ctrl_info
->queue_memory_base_dma_handle
);
6475 if (ctrl_info
->admin_queue_memory_base
)
6476 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6477 ctrl_info
->admin_queue_memory_length
,
6478 ctrl_info
->admin_queue_memory_base
,
6479 ctrl_info
->admin_queue_memory_base_dma_handle
);
6480 pqi_free_all_io_requests(ctrl_info
);
6481 if (ctrl_info
->error_buffer
)
6482 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6483 ctrl_info
->error_buffer_length
,
6484 ctrl_info
->error_buffer
,
6485 ctrl_info
->error_buffer_dma_handle
);
6486 if (ctrl_info
->iomem_base
)
6487 pqi_cleanup_pci_init(ctrl_info
);
6488 pqi_free_ctrl_info(ctrl_info
);
6491 static void pqi_remove_ctrl(struct pqi_ctrl_info
*ctrl_info
)
6493 pqi_cancel_rescan_worker(ctrl_info
);
6494 pqi_cancel_update_time_worker(ctrl_info
);
6495 pqi_remove_all_scsi_devices(ctrl_info
);
6496 pqi_unregister_scsi(ctrl_info
);
6497 if (ctrl_info
->pqi_mode_enabled
)
6498 pqi_revert_to_sis_mode(ctrl_info
);
6499 pqi_free_ctrl_resources(ctrl_info
);
6502 static void pqi_perform_lockup_action(void)
6504 switch (pqi_lockup_action
) {
6506 panic("FATAL: Smart Family Controller lockup detected");
6509 emergency_restart();
6517 static struct pqi_raid_error_info pqi_ctrl_offline_raid_error_info
= {
6518 .data_out_result
= PQI_DATA_IN_OUT_HARDWARE_ERROR
,
6519 .status
= SAM_STAT_CHECK_CONDITION
,
6522 static void pqi_fail_all_outstanding_requests(struct pqi_ctrl_info
*ctrl_info
)
6525 struct pqi_io_request
*io_request
;
6526 struct scsi_cmnd
*scmd
;
6528 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
6529 io_request
= &ctrl_info
->io_request_pool
[i
];
6530 if (atomic_read(&io_request
->refcount
) == 0)
6533 scmd
= io_request
->scmd
;
6535 set_host_byte(scmd
, DID_NO_CONNECT
);
6537 io_request
->status
= -ENXIO
;
6538 io_request
->error_info
=
6539 &pqi_ctrl_offline_raid_error_info
;
6542 io_request
->io_complete_callback(io_request
,
6543 io_request
->context
);
6547 static void pqi_take_ctrl_offline_deferred(struct pqi_ctrl_info
*ctrl_info
)
6549 pqi_perform_lockup_action();
6550 pqi_stop_heartbeat_timer(ctrl_info
);
6551 pqi_free_interrupts(ctrl_info
);
6552 pqi_cancel_rescan_worker(ctrl_info
);
6553 pqi_cancel_update_time_worker(ctrl_info
);
6554 pqi_ctrl_wait_until_quiesced(ctrl_info
);
6555 pqi_fail_all_outstanding_requests(ctrl_info
);
6556 pqi_clear_all_queued_raid_bypass_retries(ctrl_info
);
6557 pqi_ctrl_unblock_requests(ctrl_info
);
6560 static void pqi_ctrl_offline_worker(struct work_struct
*work
)
6562 struct pqi_ctrl_info
*ctrl_info
;
6564 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, ctrl_offline_work
);
6565 pqi_take_ctrl_offline_deferred(ctrl_info
);
6568 static void pqi_take_ctrl_offline(struct pqi_ctrl_info
*ctrl_info
)
6570 if (!ctrl_info
->controller_online
)
6573 ctrl_info
->controller_online
= false;
6574 ctrl_info
->pqi_mode_enabled
= false;
6575 pqi_ctrl_block_requests(ctrl_info
);
6576 if (!pqi_disable_ctrl_shutdown
)
6577 sis_shutdown_ctrl(ctrl_info
);
6578 pci_disable_device(ctrl_info
->pci_dev
);
6579 dev_err(&ctrl_info
->pci_dev
->dev
, "controller offline\n");
6580 schedule_work(&ctrl_info
->ctrl_offline_work
);
6583 static void pqi_print_ctrl_info(struct pci_dev
*pci_dev
,
6584 const struct pci_device_id
*id
)
6586 char *ctrl_description
;
6588 if (id
->driver_data
)
6589 ctrl_description
= (char *)id
->driver_data
;
6591 ctrl_description
= "Microsemi Smart Family Controller";
6593 dev_info(&pci_dev
->dev
, "%s found\n", ctrl_description
);
6596 static int pqi_pci_probe(struct pci_dev
*pci_dev
,
6597 const struct pci_device_id
*id
)
6601 struct pqi_ctrl_info
*ctrl_info
;
6603 pqi_print_ctrl_info(pci_dev
, id
);
6605 if (pqi_disable_device_id_wildcards
&&
6606 id
->subvendor
== PCI_ANY_ID
&&
6607 id
->subdevice
== PCI_ANY_ID
) {
6608 dev_warn(&pci_dev
->dev
,
6609 "controller not probed because device ID wildcards are disabled\n");
6613 if (id
->subvendor
== PCI_ANY_ID
|| id
->subdevice
== PCI_ANY_ID
)
6614 dev_warn(&pci_dev
->dev
,
6615 "controller device ID matched using wildcards\n");
6617 node
= dev_to_node(&pci_dev
->dev
);
6618 if (node
== NUMA_NO_NODE
)
6619 set_dev_node(&pci_dev
->dev
, 0);
6621 ctrl_info
= pqi_alloc_ctrl_info(node
);
6623 dev_err(&pci_dev
->dev
,
6624 "failed to allocate controller info block\n");
6628 ctrl_info
->pci_dev
= pci_dev
;
6630 rc
= pqi_pci_init(ctrl_info
);
6634 rc
= pqi_ctrl_init(ctrl_info
);
6641 pqi_remove_ctrl(ctrl_info
);
6646 static void pqi_pci_remove(struct pci_dev
*pci_dev
)
6648 struct pqi_ctrl_info
*ctrl_info
;
6650 ctrl_info
= pci_get_drvdata(pci_dev
);
6654 pqi_remove_ctrl(ctrl_info
);
6657 static void pqi_shutdown(struct pci_dev
*pci_dev
)
6660 struct pqi_ctrl_info
*ctrl_info
;
6662 ctrl_info
= pci_get_drvdata(pci_dev
);
6667 * Write all data in the controller's battery-backed cache to
6670 rc
= pqi_flush_cache(ctrl_info
, SHUTDOWN
);
6671 pqi_reset(ctrl_info
);
6676 dev_warn(&pci_dev
->dev
,
6677 "unable to flush controller cache\n");
6680 static void pqi_process_lockup_action_param(void)
6684 if (!pqi_lockup_action_param
)
6687 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
6688 if (strcmp(pqi_lockup_action_param
,
6689 pqi_lockup_actions
[i
].name
) == 0) {
6690 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
6695 pr_warn("%s: invalid lockup action setting \"%s\" - supported settings: none, reboot, panic\n",
6696 DRIVER_NAME_SHORT
, pqi_lockup_action_param
);
6699 static void pqi_process_module_params(void)
6701 pqi_process_lockup_action_param();
6704 static __maybe_unused
int pqi_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
6706 struct pqi_ctrl_info
*ctrl_info
;
6708 ctrl_info
= pci_get_drvdata(pci_dev
);
6710 pqi_disable_events(ctrl_info
);
6711 pqi_cancel_update_time_worker(ctrl_info
);
6712 pqi_cancel_rescan_worker(ctrl_info
);
6713 pqi_wait_until_scan_finished(ctrl_info
);
6714 pqi_wait_until_lun_reset_finished(ctrl_info
);
6715 pqi_flush_cache(ctrl_info
, SUSPEND
);
6716 pqi_ctrl_block_requests(ctrl_info
);
6717 pqi_ctrl_wait_until_quiesced(ctrl_info
);
6718 pqi_wait_until_inbound_queues_empty(ctrl_info
);
6719 pqi_ctrl_wait_for_pending_io(ctrl_info
);
6720 pqi_stop_heartbeat_timer(ctrl_info
);
6722 if (state
.event
== PM_EVENT_FREEZE
)
6725 pci_save_state(pci_dev
);
6726 pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
6728 ctrl_info
->controller_online
= false;
6729 ctrl_info
->pqi_mode_enabled
= false;
6734 static __maybe_unused
int pqi_resume(struct pci_dev
*pci_dev
)
6737 struct pqi_ctrl_info
*ctrl_info
;
6739 ctrl_info
= pci_get_drvdata(pci_dev
);
6741 if (pci_dev
->current_state
!= PCI_D0
) {
6742 ctrl_info
->max_hw_queue_index
= 0;
6743 pqi_free_interrupts(ctrl_info
);
6744 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_INTX
);
6745 rc
= request_irq(pci_irq_vector(pci_dev
, 0), pqi_irq_handler
,
6746 IRQF_SHARED
, DRIVER_NAME_SHORT
,
6747 &ctrl_info
->queue_groups
[0]);
6749 dev_err(&ctrl_info
->pci_dev
->dev
,
6750 "irq %u init failed with error %d\n",
6754 pqi_start_heartbeat_timer(ctrl_info
);
6755 pqi_ctrl_unblock_requests(ctrl_info
);
6759 pci_set_power_state(pci_dev
, PCI_D0
);
6760 pci_restore_state(pci_dev
);
6762 return pqi_ctrl_init_resume(ctrl_info
);
6765 /* Define the PCI IDs for the controllers that we support. */
6766 static const struct pci_device_id pqi_pci_id_table
[] = {
6768 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6772 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6776 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6780 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6784 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6788 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6792 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6796 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6800 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6804 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6808 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6812 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6816 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6820 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6824 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6828 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6829 PCI_VENDOR_ID_ADAPTEC2
, 0x0110)
6832 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6833 PCI_VENDOR_ID_ADAPTEC2
, 0x0608)
6836 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6837 PCI_VENDOR_ID_ADAPTEC2
, 0x0800)
6840 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6841 PCI_VENDOR_ID_ADAPTEC2
, 0x0801)
6844 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6845 PCI_VENDOR_ID_ADAPTEC2
, 0x0802)
6848 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6849 PCI_VENDOR_ID_ADAPTEC2
, 0x0803)
6852 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6853 PCI_VENDOR_ID_ADAPTEC2
, 0x0804)
6856 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6857 PCI_VENDOR_ID_ADAPTEC2
, 0x0805)
6860 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6861 PCI_VENDOR_ID_ADAPTEC2
, 0x0806)
6864 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6865 PCI_VENDOR_ID_ADAPTEC2
, 0x0807)
6868 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6869 PCI_VENDOR_ID_ADAPTEC2
, 0x0900)
6872 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6873 PCI_VENDOR_ID_ADAPTEC2
, 0x0901)
6876 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6877 PCI_VENDOR_ID_ADAPTEC2
, 0x0902)
6880 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6881 PCI_VENDOR_ID_ADAPTEC2
, 0x0903)
6884 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6885 PCI_VENDOR_ID_ADAPTEC2
, 0x0904)
6888 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6889 PCI_VENDOR_ID_ADAPTEC2
, 0x0905)
6892 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6893 PCI_VENDOR_ID_ADAPTEC2
, 0x0906)
6896 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6897 PCI_VENDOR_ID_ADAPTEC2
, 0x0907)
6900 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6901 PCI_VENDOR_ID_ADAPTEC2
, 0x0908)
6904 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6905 PCI_VENDOR_ID_ADAPTEC2
, 0x090a)
6908 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6909 PCI_VENDOR_ID_ADAPTEC2
, 0x1200)
6912 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6913 PCI_VENDOR_ID_ADAPTEC2
, 0x1201)
6916 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6917 PCI_VENDOR_ID_ADAPTEC2
, 0x1202)
6920 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6921 PCI_VENDOR_ID_ADAPTEC2
, 0x1280)
6924 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6925 PCI_VENDOR_ID_ADAPTEC2
, 0x1281)
6928 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6929 PCI_VENDOR_ID_ADAPTEC2
, 0x1282)
6932 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6933 PCI_VENDOR_ID_ADAPTEC2
, 0x1300)
6936 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6937 PCI_VENDOR_ID_ADAPTEC2
, 0x1301)
6940 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6941 PCI_VENDOR_ID_ADAPTEC2
, 0x1302)
6944 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6945 PCI_VENDOR_ID_ADAPTEC2
, 0x1303)
6948 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6949 PCI_VENDOR_ID_ADAPTEC2
, 0x1380)
6952 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6953 PCI_VENDOR_ID_DELL
, 0x1fe0)
6956 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6957 PCI_VENDOR_ID_HP
, 0x0600)
6960 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6961 PCI_VENDOR_ID_HP
, 0x0601)
6964 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6965 PCI_VENDOR_ID_HP
, 0x0602)
6968 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6969 PCI_VENDOR_ID_HP
, 0x0603)
6972 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6973 PCI_VENDOR_ID_HP
, 0x0609)
6976 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6977 PCI_VENDOR_ID_HP
, 0x0650)
6980 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6981 PCI_VENDOR_ID_HP
, 0x0651)
6984 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6985 PCI_VENDOR_ID_HP
, 0x0652)
6988 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6989 PCI_VENDOR_ID_HP
, 0x0653)
6992 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6993 PCI_VENDOR_ID_HP
, 0x0654)
6996 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6997 PCI_VENDOR_ID_HP
, 0x0655)
7000 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7001 PCI_VENDOR_ID_HP
, 0x0700)
7004 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7005 PCI_VENDOR_ID_HP
, 0x0701)
7008 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7009 PCI_VENDOR_ID_HP
, 0x1001)
7012 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7013 PCI_VENDOR_ID_HP
, 0x1100)
7016 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7017 PCI_VENDOR_ID_HP
, 0x1101)
7020 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7021 PCI_ANY_ID
, PCI_ANY_ID
)
7026 MODULE_DEVICE_TABLE(pci
, pqi_pci_id_table
);
7028 static struct pci_driver pqi_pci_driver
= {
7029 .name
= DRIVER_NAME_SHORT
,
7030 .id_table
= pqi_pci_id_table
,
7031 .probe
= pqi_pci_probe
,
7032 .remove
= pqi_pci_remove
,
7033 .shutdown
= pqi_shutdown
,
7034 #if defined(CONFIG_PM)
7035 .suspend
= pqi_suspend
,
7036 .resume
= pqi_resume
,
7040 static int __init
pqi_init(void)
7044 pr_info(DRIVER_NAME
"\n");
7046 pqi_sas_transport_template
=
7047 sas_attach_transport(&pqi_sas_transport_functions
);
7048 if (!pqi_sas_transport_template
)
7051 pqi_process_module_params();
7053 rc
= pci_register_driver(&pqi_pci_driver
);
7055 sas_release_transport(pqi_sas_transport_template
);
7060 static void __exit
pqi_cleanup(void)
7062 pci_unregister_driver(&pqi_pci_driver
);
7063 sas_release_transport(pqi_sas_transport_template
);
7066 module_init(pqi_init
);
7067 module_exit(pqi_cleanup
);
7069 static void __attribute__((unused
)) verify_structures(void)
7071 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7072 sis_host_to_ctrl_doorbell
) != 0x20);
7073 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7074 sis_interrupt_mask
) != 0x34);
7075 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7076 sis_ctrl_to_host_doorbell
) != 0x9c);
7077 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7078 sis_ctrl_to_host_doorbell_clear
) != 0xa0);
7079 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7080 sis_driver_scratch
) != 0xb0);
7081 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7082 sis_firmware_status
) != 0xbc);
7083 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7084 sis_mailbox
) != 0x1000);
7085 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7086 pqi_registers
) != 0x4000);
7088 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7090 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7092 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7093 response_queue_id
) != 0x4);
7094 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7096 BUILD_BUG_ON(sizeof(struct pqi_iu_header
) != 0x8);
7098 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7100 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7101 service_response
) != 0x1);
7102 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7103 data_present
) != 0x2);
7104 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7106 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7107 residual_count
) != 0x4);
7108 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7109 data_length
) != 0x8);
7110 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7112 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7114 BUILD_BUG_ON(sizeof(struct pqi_aio_error_info
) != 0x10c);
7116 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7117 data_in_result
) != 0x0);
7118 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7119 data_out_result
) != 0x1);
7120 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7122 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7124 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7125 status_qualifier
) != 0x6);
7126 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7127 sense_data_length
) != 0x8);
7128 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7129 response_data_length
) != 0xa);
7130 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7131 data_in_transferred
) != 0xc);
7132 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7133 data_out_transferred
) != 0x10);
7134 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7136 BUILD_BUG_ON(sizeof(struct pqi_raid_error_info
) != 0x114);
7138 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7140 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7141 function_and_status_code
) != 0x8);
7142 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7143 max_admin_iq_elements
) != 0x10);
7144 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7145 max_admin_oq_elements
) != 0x11);
7146 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7147 admin_iq_element_length
) != 0x12);
7148 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7149 admin_oq_element_length
) != 0x13);
7150 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7151 max_reset_timeout
) != 0x14);
7152 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7153 legacy_intx_status
) != 0x18);
7154 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7155 legacy_intx_mask_set
) != 0x1c);
7156 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7157 legacy_intx_mask_clear
) != 0x20);
7158 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7159 device_status
) != 0x40);
7160 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7161 admin_iq_pi_offset
) != 0x48);
7162 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7163 admin_oq_ci_offset
) != 0x50);
7164 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7165 admin_iq_element_array_addr
) != 0x58);
7166 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7167 admin_oq_element_array_addr
) != 0x60);
7168 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7169 admin_iq_ci_addr
) != 0x68);
7170 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7171 admin_oq_pi_addr
) != 0x70);
7172 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7173 admin_iq_num_elements
) != 0x78);
7174 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7175 admin_oq_num_elements
) != 0x79);
7176 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7177 admin_queue_int_msg_num
) != 0x7a);
7178 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7179 device_error
) != 0x80);
7180 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7181 error_details
) != 0x88);
7182 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7183 device_reset
) != 0x90);
7184 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7185 power_action
) != 0x94);
7186 BUILD_BUG_ON(sizeof(struct pqi_device_registers
) != 0x100);
7188 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7189 header
.iu_type
) != 0);
7190 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7191 header
.iu_length
) != 2);
7192 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7193 header
.work_area
) != 6);
7194 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7196 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7197 function_code
) != 10);
7198 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7199 data
.report_device_capability
.buffer_length
) != 44);
7200 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7201 data
.report_device_capability
.sg_descriptor
) != 48);
7202 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7203 data
.create_operational_iq
.queue_id
) != 12);
7204 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7205 data
.create_operational_iq
.element_array_addr
) != 16);
7206 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7207 data
.create_operational_iq
.ci_addr
) != 24);
7208 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7209 data
.create_operational_iq
.num_elements
) != 32);
7210 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7211 data
.create_operational_iq
.element_length
) != 34);
7212 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7213 data
.create_operational_iq
.queue_protocol
) != 36);
7214 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7215 data
.create_operational_oq
.queue_id
) != 12);
7216 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7217 data
.create_operational_oq
.element_array_addr
) != 16);
7218 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7219 data
.create_operational_oq
.pi_addr
) != 24);
7220 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7221 data
.create_operational_oq
.num_elements
) != 32);
7222 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7223 data
.create_operational_oq
.element_length
) != 34);
7224 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7225 data
.create_operational_oq
.queue_protocol
) != 36);
7226 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7227 data
.create_operational_oq
.int_msg_num
) != 40);
7228 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7229 data
.create_operational_oq
.coalescing_count
) != 42);
7230 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7231 data
.create_operational_oq
.min_coalescing_time
) != 44);
7232 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7233 data
.create_operational_oq
.max_coalescing_time
) != 48);
7234 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7235 data
.delete_operational_queue
.queue_id
) != 12);
7236 BUILD_BUG_ON(sizeof(struct pqi_general_admin_request
) != 64);
7237 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7238 data
.create_operational_iq
) != 64 - 11);
7239 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7240 data
.create_operational_oq
) != 64 - 11);
7241 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7242 data
.delete_operational_queue
) != 64 - 11);
7244 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7245 header
.iu_type
) != 0);
7246 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7247 header
.iu_length
) != 2);
7248 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7249 header
.work_area
) != 6);
7250 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7252 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7253 function_code
) != 10);
7254 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7256 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7257 data
.create_operational_iq
.status_descriptor
) != 12);
7258 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7259 data
.create_operational_iq
.iq_pi_offset
) != 16);
7260 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7261 data
.create_operational_oq
.status_descriptor
) != 12);
7262 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7263 data
.create_operational_oq
.oq_ci_offset
) != 16);
7264 BUILD_BUG_ON(sizeof(struct pqi_general_admin_response
) != 64);
7266 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7267 header
.iu_type
) != 0);
7268 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7269 header
.iu_length
) != 2);
7270 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7271 header
.response_queue_id
) != 4);
7272 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7273 header
.work_area
) != 6);
7274 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7276 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7278 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7279 buffer_length
) != 12);
7280 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7282 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7283 protocol_specific
) != 24);
7284 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7285 error_index
) != 27);
7286 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7288 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7289 sg_descriptors
) != 64);
7290 BUILD_BUG_ON(sizeof(struct pqi_raid_path_request
) !=
7291 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
7293 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7294 header
.iu_type
) != 0);
7295 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7296 header
.iu_length
) != 2);
7297 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7298 header
.response_queue_id
) != 4);
7299 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7300 header
.work_area
) != 6);
7301 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7303 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7305 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7306 buffer_length
) != 16);
7307 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7308 data_encryption_key_index
) != 22);
7309 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7310 encrypt_tweak_lower
) != 24);
7311 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7312 encrypt_tweak_upper
) != 28);
7313 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7315 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7316 error_index
) != 48);
7317 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7318 num_sg_descriptors
) != 50);
7319 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7321 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7323 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7324 sg_descriptors
) != 64);
7325 BUILD_BUG_ON(sizeof(struct pqi_aio_path_request
) !=
7326 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
7328 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7329 header
.iu_type
) != 0);
7330 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7331 header
.iu_length
) != 2);
7332 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7334 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7335 error_index
) != 10);
7337 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7338 header
.iu_type
) != 0);
7339 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7340 header
.iu_length
) != 2);
7341 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7342 header
.response_queue_id
) != 4);
7343 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7345 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7346 data
.report_event_configuration
.buffer_length
) != 12);
7347 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7348 data
.report_event_configuration
.sg_descriptors
) != 16);
7349 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7350 data
.set_event_configuration
.global_event_oq_id
) != 10);
7351 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7352 data
.set_event_configuration
.buffer_length
) != 12);
7353 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7354 data
.set_event_configuration
.sg_descriptors
) != 16);
7356 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
7357 max_inbound_iu_length
) != 6);
7358 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
7359 max_outbound_iu_length
) != 14);
7360 BUILD_BUG_ON(sizeof(struct pqi_iu_layer_descriptor
) != 16);
7362 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7364 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7365 iq_arbitration_priority_support_bitmask
) != 8);
7366 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7367 maximum_aw_a
) != 9);
7368 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7369 maximum_aw_b
) != 10);
7370 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7371 maximum_aw_c
) != 11);
7372 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7373 max_inbound_queues
) != 16);
7374 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7375 max_elements_per_iq
) != 18);
7376 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7377 max_iq_element_length
) != 24);
7378 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7379 min_iq_element_length
) != 26);
7380 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7381 max_outbound_queues
) != 30);
7382 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7383 max_elements_per_oq
) != 32);
7384 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7385 intr_coalescing_time_granularity
) != 34);
7386 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7387 max_oq_element_length
) != 36);
7388 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7389 min_oq_element_length
) != 38);
7390 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7391 iu_layer_descriptors
) != 64);
7392 BUILD_BUG_ON(sizeof(struct pqi_device_capability
) != 576);
7394 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
7396 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
7398 BUILD_BUG_ON(sizeof(struct pqi_event_descriptor
) != 4);
7400 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
7401 num_event_descriptors
) != 2);
7402 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
7405 BUILD_BUG_ON(PQI_NUM_SUPPORTED_EVENTS
!=
7406 ARRAY_SIZE(pqi_supported_event_types
));
7408 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7409 header
.iu_type
) != 0);
7410 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7411 header
.iu_length
) != 2);
7412 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7414 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7416 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7417 additional_event_id
) != 12);
7418 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7420 BUILD_BUG_ON(sizeof(struct pqi_event_response
) != 32);
7422 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7423 header
.iu_type
) != 0);
7424 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7425 header
.iu_length
) != 2);
7426 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7428 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7430 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7431 additional_event_id
) != 12);
7432 BUILD_BUG_ON(sizeof(struct pqi_event_acknowledge_request
) != 16);
7434 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7435 header
.iu_type
) != 0);
7436 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7437 header
.iu_length
) != 2);
7438 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7440 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7442 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7444 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7445 protocol_specific
) != 24);
7446 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7447 outbound_queue_id_to_manage
) != 26);
7448 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7449 request_id_to_manage
) != 28);
7450 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7451 task_management_function
) != 30);
7452 BUILD_BUG_ON(sizeof(struct pqi_task_management_request
) != 32);
7454 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7455 header
.iu_type
) != 0);
7456 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7457 header
.iu_length
) != 2);
7458 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7460 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7462 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7463 additional_response_info
) != 12);
7464 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7465 response_code
) != 15);
7466 BUILD_BUG_ON(sizeof(struct pqi_task_management_response
) != 16);
7468 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7469 configured_logical_drive_count
) != 0);
7470 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7471 configuration_signature
) != 1);
7472 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7473 firmware_version
) != 5);
7474 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7475 extended_logical_unit_count
) != 154);
7476 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7477 firmware_build_number
) != 190);
7478 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7479 controller_mode
) != 292);
7481 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7482 phys_bay_in_box
) != 115);
7483 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7484 device_type
) != 120);
7485 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7486 redundant_path_present_map
) != 1736);
7487 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7488 active_path_number
) != 1738);
7489 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7490 alternate_paths_phys_connector
) != 1739);
7491 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7492 alternate_paths_phys_box_on_port
) != 1755);
7493 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7494 current_queue_depth_limit
) != 1796);
7495 BUILD_BUG_ON(sizeof(struct bmic_identify_physical_device
) != 2560);
7497 BUILD_BUG_ON(PQI_ADMIN_IQ_NUM_ELEMENTS
> 255);
7498 BUILD_BUG_ON(PQI_ADMIN_OQ_NUM_ELEMENTS
> 255);
7499 BUILD_BUG_ON(PQI_ADMIN_IQ_ELEMENT_LENGTH
%
7500 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7501 BUILD_BUG_ON(PQI_ADMIN_OQ_ELEMENT_LENGTH
%
7502 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7503 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
> 1048560);
7504 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
%
7505 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7506 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
> 1048560);
7507 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
%
7508 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7510 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>= PQI_MAX_OUTSTANDING_REQUESTS
);
7511 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>=
7512 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
);