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-130"
44 #define DRIVER_MAJOR 1
45 #define DRIVER_MINOR 1
46 #define DRIVER_RELEASE 4
47 #define DRIVER_REVISION 130
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];
656 u8 dont_write_tag
[2];
662 static int pqi_write_driver_version_to_host_wellness(
663 struct pqi_ctrl_info
*ctrl_info
)
666 struct bmic_host_wellness_driver_version
*buffer
;
667 size_t buffer_length
;
669 buffer_length
= sizeof(*buffer
);
671 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
675 buffer
->start_tag
[0] = '<';
676 buffer
->start_tag
[1] = 'H';
677 buffer
->start_tag
[2] = 'W';
678 buffer
->start_tag
[3] = '>';
679 buffer
->driver_version_tag
[0] = 'D';
680 buffer
->driver_version_tag
[1] = 'V';
681 put_unaligned_le16(sizeof(buffer
->driver_version
),
682 &buffer
->driver_version_length
);
683 strncpy(buffer
->driver_version
, "Linux " DRIVER_VERSION
,
684 sizeof(buffer
->driver_version
) - 1);
685 buffer
->driver_version
[sizeof(buffer
->driver_version
) - 1] = '\0';
686 buffer
->dont_write_tag
[0] = 'D';
687 buffer
->dont_write_tag
[1] = 'W';
688 buffer
->end_tag
[0] = 'Z';
689 buffer
->end_tag
[1] = 'Z';
691 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
700 struct bmic_host_wellness_time
{
705 u8 dont_write_tag
[2];
711 static int pqi_write_current_time_to_host_wellness(
712 struct pqi_ctrl_info
*ctrl_info
)
715 struct bmic_host_wellness_time
*buffer
;
716 size_t buffer_length
;
721 buffer_length
= sizeof(*buffer
);
723 buffer
= kmalloc(buffer_length
, GFP_KERNEL
);
727 buffer
->start_tag
[0] = '<';
728 buffer
->start_tag
[1] = 'H';
729 buffer
->start_tag
[2] = 'W';
730 buffer
->start_tag
[3] = '>';
731 buffer
->time_tag
[0] = 'T';
732 buffer
->time_tag
[1] = 'D';
733 put_unaligned_le16(sizeof(buffer
->time
),
734 &buffer
->time_length
);
736 local_time
= ktime_get_real_seconds();
737 time64_to_tm(local_time
, -sys_tz
.tz_minuteswest
* 60, &tm
);
738 year
= tm
.tm_year
+ 1900;
740 buffer
->time
[0] = bin2bcd(tm
.tm_hour
);
741 buffer
->time
[1] = bin2bcd(tm
.tm_min
);
742 buffer
->time
[2] = bin2bcd(tm
.tm_sec
);
744 buffer
->time
[4] = bin2bcd(tm
.tm_mon
+ 1);
745 buffer
->time
[5] = bin2bcd(tm
.tm_mday
);
746 buffer
->time
[6] = bin2bcd(year
/ 100);
747 buffer
->time
[7] = bin2bcd(year
% 100);
749 buffer
->dont_write_tag
[0] = 'D';
750 buffer
->dont_write_tag
[1] = 'W';
751 buffer
->end_tag
[0] = 'Z';
752 buffer
->end_tag
[1] = 'Z';
754 rc
= pqi_write_host_wellness(ctrl_info
, buffer
, buffer_length
);
761 #define PQI_UPDATE_TIME_WORK_INTERVAL (24UL * 60 * 60 * HZ)
763 static void pqi_update_time_worker(struct work_struct
*work
)
766 struct pqi_ctrl_info
*ctrl_info
;
768 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
771 if (pqi_ctrl_offline(ctrl_info
))
774 rc
= pqi_write_current_time_to_host_wellness(ctrl_info
);
776 dev_warn(&ctrl_info
->pci_dev
->dev
,
777 "error updating time on controller\n");
779 schedule_delayed_work(&ctrl_info
->update_time_work
,
780 PQI_UPDATE_TIME_WORK_INTERVAL
);
783 static inline void pqi_schedule_update_time_worker(
784 struct pqi_ctrl_info
*ctrl_info
)
786 schedule_delayed_work(&ctrl_info
->update_time_work
, 0);
789 static inline void pqi_cancel_update_time_worker(
790 struct pqi_ctrl_info
*ctrl_info
)
792 cancel_delayed_work_sync(&ctrl_info
->update_time_work
);
795 static int pqi_report_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
796 void *buffer
, size_t buffer_length
)
800 struct pqi_raid_path_request request
;
802 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
803 cmd
, RAID_CTLR_LUNID
, buffer
, buffer_length
, 0, &pci_direction
);
807 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
810 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
816 static int pqi_report_phys_logical_luns(struct pqi_ctrl_info
*ctrl_info
, u8 cmd
,
820 size_t lun_list_length
;
821 size_t lun_data_length
;
822 size_t new_lun_list_length
;
823 void *lun_data
= NULL
;
824 struct report_lun_header
*report_lun_header
;
826 report_lun_header
= kmalloc(sizeof(*report_lun_header
), GFP_KERNEL
);
827 if (!report_lun_header
) {
832 rc
= pqi_report_luns(ctrl_info
, cmd
, report_lun_header
,
833 sizeof(*report_lun_header
));
837 lun_list_length
= get_unaligned_be32(&report_lun_header
->list_length
);
840 lun_data_length
= sizeof(struct report_lun_header
) + lun_list_length
;
842 lun_data
= kmalloc(lun_data_length
, GFP_KERNEL
);
848 if (lun_list_length
== 0) {
849 memcpy(lun_data
, report_lun_header
, sizeof(*report_lun_header
));
853 rc
= pqi_report_luns(ctrl_info
, cmd
, lun_data
, lun_data_length
);
857 new_lun_list_length
= get_unaligned_be32(
858 &((struct report_lun_header
*)lun_data
)->list_length
);
860 if (new_lun_list_length
> lun_list_length
) {
861 lun_list_length
= new_lun_list_length
;
867 kfree(report_lun_header
);
879 static inline int pqi_report_phys_luns(struct pqi_ctrl_info
*ctrl_info
,
882 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_PHYS
,
886 static inline int pqi_report_logical_luns(struct pqi_ctrl_info
*ctrl_info
,
889 return pqi_report_phys_logical_luns(ctrl_info
, CISS_REPORT_LOG
, buffer
);
892 static int pqi_get_device_lists(struct pqi_ctrl_info
*ctrl_info
,
893 struct report_phys_lun_extended
**physdev_list
,
894 struct report_log_lun_extended
**logdev_list
)
897 size_t logdev_list_length
;
898 size_t logdev_data_length
;
899 struct report_log_lun_extended
*internal_logdev_list
;
900 struct report_log_lun_extended
*logdev_data
;
901 struct report_lun_header report_lun_header
;
903 rc
= pqi_report_phys_luns(ctrl_info
, (void **)physdev_list
);
905 dev_err(&ctrl_info
->pci_dev
->dev
,
906 "report physical LUNs failed\n");
908 rc
= pqi_report_logical_luns(ctrl_info
, (void **)logdev_list
);
910 dev_err(&ctrl_info
->pci_dev
->dev
,
911 "report logical LUNs failed\n");
914 * Tack the controller itself onto the end of the logical device list.
917 logdev_data
= *logdev_list
;
921 get_unaligned_be32(&logdev_data
->header
.list_length
);
923 memset(&report_lun_header
, 0, sizeof(report_lun_header
));
925 (struct report_log_lun_extended
*)&report_lun_header
;
926 logdev_list_length
= 0;
929 logdev_data_length
= sizeof(struct report_lun_header
) +
932 internal_logdev_list
= kmalloc(logdev_data_length
+
933 sizeof(struct report_log_lun_extended
), GFP_KERNEL
);
934 if (!internal_logdev_list
) {
940 memcpy(internal_logdev_list
, logdev_data
, logdev_data_length
);
941 memset((u8
*)internal_logdev_list
+ logdev_data_length
, 0,
942 sizeof(struct report_log_lun_extended_entry
));
943 put_unaligned_be32(logdev_list_length
+
944 sizeof(struct report_log_lun_extended_entry
),
945 &internal_logdev_list
->header
.list_length
);
948 *logdev_list
= internal_logdev_list
;
953 static inline void pqi_set_bus_target_lun(struct pqi_scsi_dev
*device
,
954 int bus
, int target
, int lun
)
957 device
->target
= target
;
961 static void pqi_assign_bus_target_lun(struct pqi_scsi_dev
*device
)
969 scsi3addr
= device
->scsi3addr
;
970 lunid
= get_unaligned_le32(scsi3addr
);
972 if (pqi_is_hba_lunid(scsi3addr
)) {
973 /* The specified device is the controller. */
974 pqi_set_bus_target_lun(device
, PQI_HBA_BUS
, 0, lunid
& 0x3fff);
975 device
->target_lun_valid
= true;
979 if (pqi_is_logical_device(device
)) {
980 if (device
->is_external_raid_device
) {
981 bus
= PQI_EXTERNAL_RAID_VOLUME_BUS
;
982 target
= (lunid
>> 16) & 0x3fff;
985 bus
= PQI_RAID_VOLUME_BUS
;
987 lun
= lunid
& 0x3fff;
989 pqi_set_bus_target_lun(device
, bus
, target
, lun
);
990 device
->target_lun_valid
= true;
995 * Defer target and LUN assignment for non-controller physical devices
996 * because the SAS transport layer will make these assignments later.
998 pqi_set_bus_target_lun(device
, PQI_PHYSICAL_DEVICE_BUS
, 0, 0);
1001 static void pqi_get_raid_level(struct pqi_ctrl_info
*ctrl_info
,
1002 struct pqi_scsi_dev
*device
)
1008 raid_level
= SA_RAID_UNKNOWN
;
1010 buffer
= kmalloc(64, GFP_KERNEL
);
1012 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1013 VPD_PAGE
| CISS_VPD_LV_DEVICE_GEOMETRY
, buffer
, 64);
1015 raid_level
= buffer
[8];
1016 if (raid_level
> SA_RAID_MAX
)
1017 raid_level
= SA_RAID_UNKNOWN
;
1022 device
->raid_level
= raid_level
;
1025 static int pqi_validate_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1026 struct pqi_scsi_dev
*device
, struct raid_map
*raid_map
)
1030 u32 r5or6_blocks_per_row
;
1031 unsigned int num_phys_disks
;
1032 unsigned int num_raid_map_entries
;
1034 raid_map_size
= get_unaligned_le32(&raid_map
->structure_size
);
1036 if (raid_map_size
< offsetof(struct raid_map
, disk_data
)) {
1037 err_msg
= "RAID map too small";
1041 if (raid_map_size
> sizeof(*raid_map
)) {
1042 err_msg
= "RAID map too large";
1046 num_phys_disks
= get_unaligned_le16(&raid_map
->layout_map_count
) *
1047 (get_unaligned_le16(&raid_map
->data_disks_per_row
) +
1048 get_unaligned_le16(&raid_map
->metadata_disks_per_row
));
1049 num_raid_map_entries
= num_phys_disks
*
1050 get_unaligned_le16(&raid_map
->row_cnt
);
1052 if (num_raid_map_entries
> RAID_MAP_MAX_ENTRIES
) {
1053 err_msg
= "invalid number of map entries in RAID map";
1057 if (device
->raid_level
== SA_RAID_1
) {
1058 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 2) {
1059 err_msg
= "invalid RAID-1 map";
1062 } else if (device
->raid_level
== SA_RAID_ADM
) {
1063 if (get_unaligned_le16(&raid_map
->layout_map_count
) != 3) {
1064 err_msg
= "invalid RAID-1(ADM) map";
1067 } else if ((device
->raid_level
== SA_RAID_5
||
1068 device
->raid_level
== SA_RAID_6
) &&
1069 get_unaligned_le16(&raid_map
->layout_map_count
) > 1) {
1071 r5or6_blocks_per_row
=
1072 get_unaligned_le16(&raid_map
->strip_size
) *
1073 get_unaligned_le16(&raid_map
->data_disks_per_row
);
1074 if (r5or6_blocks_per_row
== 0) {
1075 err_msg
= "invalid RAID-5 or RAID-6 map";
1083 dev_warn(&ctrl_info
->pci_dev
->dev
,
1084 "logical device %08x%08x %s\n",
1085 *((u32
*)&device
->scsi3addr
),
1086 *((u32
*)&device
->scsi3addr
[4]), err_msg
);
1091 static int pqi_get_raid_map(struct pqi_ctrl_info
*ctrl_info
,
1092 struct pqi_scsi_dev
*device
)
1096 struct pqi_raid_path_request request
;
1097 struct raid_map
*raid_map
;
1099 raid_map
= kmalloc(sizeof(*raid_map
), GFP_KERNEL
);
1103 rc
= pqi_build_raid_path_request(ctrl_info
, &request
,
1104 CISS_GET_RAID_MAP
, device
->scsi3addr
, raid_map
,
1105 sizeof(*raid_map
), 0, &pci_direction
);
1109 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
1112 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
1118 rc
= pqi_validate_raid_map(ctrl_info
, device
, raid_map
);
1122 device
->raid_map
= raid_map
;
1132 static void pqi_get_raid_bypass_status(struct pqi_ctrl_info
*ctrl_info
,
1133 struct pqi_scsi_dev
*device
)
1139 buffer
= kmalloc(64, GFP_KERNEL
);
1143 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1144 VPD_PAGE
| CISS_VPD_LV_BYPASS_STATUS
, buffer
, 64);
1148 #define RAID_BYPASS_STATUS 4
1149 #define RAID_BYPASS_CONFIGURED 0x1
1150 #define RAID_BYPASS_ENABLED 0x2
1152 bypass_status
= buffer
[RAID_BYPASS_STATUS
];
1153 device
->raid_bypass_configured
=
1154 (bypass_status
& RAID_BYPASS_CONFIGURED
) != 0;
1155 if (device
->raid_bypass_configured
&&
1156 (bypass_status
& RAID_BYPASS_ENABLED
) &&
1157 pqi_get_raid_map(ctrl_info
, device
) == 0)
1158 device
->raid_bypass_enabled
= true;
1165 * Use vendor-specific VPD to determine online/offline status of a volume.
1168 static void pqi_get_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1169 struct pqi_scsi_dev
*device
)
1173 u8 volume_status
= CISS_LV_STATUS_UNAVAILABLE
;
1174 bool volume_offline
= true;
1176 struct ciss_vpd_logical_volume_status
*vpd
;
1178 vpd
= kmalloc(sizeof(*vpd
), GFP_KERNEL
);
1182 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
,
1183 VPD_PAGE
| CISS_VPD_LV_STATUS
, vpd
, sizeof(*vpd
));
1187 if (vpd
->page_code
!= CISS_VPD_LV_STATUS
)
1190 page_length
= offsetof(struct ciss_vpd_logical_volume_status
,
1191 volume_status
) + vpd
->page_length
;
1192 if (page_length
< sizeof(*vpd
))
1195 volume_status
= vpd
->volume_status
;
1196 volume_flags
= get_unaligned_be32(&vpd
->flags
);
1197 volume_offline
= (volume_flags
& CISS_LV_FLAGS_NO_HOST_IO
) != 0;
1202 device
->volume_status
= volume_status
;
1203 device
->volume_offline
= volume_offline
;
1206 #define PQI_INQUIRY_PAGE0_RETRIES 3
1208 static int pqi_get_device_info(struct pqi_ctrl_info
*ctrl_info
,
1209 struct pqi_scsi_dev
*device
)
1213 unsigned int retries
;
1215 buffer
= kmalloc(64, GFP_KERNEL
);
1219 /* Send an inquiry to the device to see what it is. */
1220 for (retries
= 0;;) {
1221 rc
= pqi_scsi_inquiry(ctrl_info
, device
->scsi3addr
, 0,
1225 if (pqi_is_logical_device(device
) ||
1226 rc
!= PQI_CMD_STATUS_ABORTED
||
1227 ++retries
> PQI_INQUIRY_PAGE0_RETRIES
)
1231 scsi_sanitize_inquiry_string(&buffer
[8], 8);
1232 scsi_sanitize_inquiry_string(&buffer
[16], 16);
1234 device
->devtype
= buffer
[0] & 0x1f;
1235 memcpy(device
->vendor
, &buffer
[8], sizeof(device
->vendor
));
1236 memcpy(device
->model
, &buffer
[16], sizeof(device
->model
));
1238 if (pqi_is_logical_device(device
) && device
->devtype
== TYPE_DISK
) {
1239 if (device
->is_external_raid_device
) {
1240 device
->raid_level
= SA_RAID_UNKNOWN
;
1241 device
->volume_status
= CISS_LV_OK
;
1242 device
->volume_offline
= false;
1244 pqi_get_raid_level(ctrl_info
, device
);
1245 pqi_get_raid_bypass_status(ctrl_info
, device
);
1246 pqi_get_volume_status(ctrl_info
, device
);
1256 static void pqi_get_physical_disk_info(struct pqi_ctrl_info
*ctrl_info
,
1257 struct pqi_scsi_dev
*device
,
1258 struct bmic_identify_physical_device
*id_phys
)
1262 memset(id_phys
, 0, sizeof(*id_phys
));
1264 rc
= pqi_identify_physical_device(ctrl_info
, device
,
1265 id_phys
, sizeof(*id_phys
));
1267 device
->queue_depth
= PQI_PHYSICAL_DISK_DEFAULT_MAX_QUEUE_DEPTH
;
1271 device
->queue_depth
=
1272 get_unaligned_le16(&id_phys
->current_queue_depth_limit
);
1273 device
->device_type
= id_phys
->device_type
;
1274 device
->active_path_index
= id_phys
->active_path_number
;
1275 device
->path_map
= id_phys
->redundant_path_present_map
;
1276 memcpy(&device
->box
,
1277 &id_phys
->alternate_paths_phys_box_on_port
,
1278 sizeof(device
->box
));
1279 memcpy(&device
->phys_connector
,
1280 &id_phys
->alternate_paths_phys_connector
,
1281 sizeof(device
->phys_connector
));
1282 device
->bay
= id_phys
->phys_bay_in_box
;
1285 static void pqi_show_volume_status(struct pqi_ctrl_info
*ctrl_info
,
1286 struct pqi_scsi_dev
*device
)
1289 static const char unknown_state_str
[] =
1290 "Volume is in an unknown state (%u)";
1291 char unknown_state_buffer
[sizeof(unknown_state_str
) + 10];
1293 switch (device
->volume_status
) {
1295 status
= "Volume online";
1297 case CISS_LV_FAILED
:
1298 status
= "Volume failed";
1300 case CISS_LV_NOT_CONFIGURED
:
1301 status
= "Volume not configured";
1303 case CISS_LV_DEGRADED
:
1304 status
= "Volume degraded";
1306 case CISS_LV_READY_FOR_RECOVERY
:
1307 status
= "Volume ready for recovery operation";
1309 case CISS_LV_UNDERGOING_RECOVERY
:
1310 status
= "Volume undergoing recovery";
1312 case CISS_LV_WRONG_PHYSICAL_DRIVE_REPLACED
:
1313 status
= "Wrong physical drive was replaced";
1315 case CISS_LV_PHYSICAL_DRIVE_CONNECTION_PROBLEM
:
1316 status
= "A physical drive not properly connected";
1318 case CISS_LV_HARDWARE_OVERHEATING
:
1319 status
= "Hardware is overheating";
1321 case CISS_LV_HARDWARE_HAS_OVERHEATED
:
1322 status
= "Hardware has overheated";
1324 case CISS_LV_UNDERGOING_EXPANSION
:
1325 status
= "Volume undergoing expansion";
1327 case CISS_LV_NOT_AVAILABLE
:
1328 status
= "Volume waiting for transforming volume";
1330 case CISS_LV_QUEUED_FOR_EXPANSION
:
1331 status
= "Volume queued for expansion";
1333 case CISS_LV_DISABLED_SCSI_ID_CONFLICT
:
1334 status
= "Volume disabled due to SCSI ID conflict";
1336 case CISS_LV_EJECTED
:
1337 status
= "Volume has been ejected";
1339 case CISS_LV_UNDERGOING_ERASE
:
1340 status
= "Volume undergoing background erase";
1342 case CISS_LV_READY_FOR_PREDICTIVE_SPARE_REBUILD
:
1343 status
= "Volume ready for predictive spare rebuild";
1345 case CISS_LV_UNDERGOING_RPI
:
1346 status
= "Volume undergoing rapid parity initialization";
1348 case CISS_LV_PENDING_RPI
:
1349 status
= "Volume queued for rapid parity initialization";
1351 case CISS_LV_ENCRYPTED_NO_KEY
:
1352 status
= "Encrypted volume inaccessible - key not present";
1354 case CISS_LV_UNDERGOING_ENCRYPTION
:
1355 status
= "Volume undergoing encryption process";
1357 case CISS_LV_UNDERGOING_ENCRYPTION_REKEYING
:
1358 status
= "Volume undergoing encryption re-keying process";
1360 case CISS_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER
:
1361 status
= "Volume encrypted but encryption is disabled";
1363 case CISS_LV_PENDING_ENCRYPTION
:
1364 status
= "Volume pending migration to encrypted state";
1366 case CISS_LV_PENDING_ENCRYPTION_REKEYING
:
1367 status
= "Volume pending encryption rekeying";
1369 case CISS_LV_NOT_SUPPORTED
:
1370 status
= "Volume not supported on this controller";
1372 case CISS_LV_STATUS_UNAVAILABLE
:
1373 status
= "Volume status not available";
1376 snprintf(unknown_state_buffer
, sizeof(unknown_state_buffer
),
1377 unknown_state_str
, device
->volume_status
);
1378 status
= unknown_state_buffer
;
1382 dev_info(&ctrl_info
->pci_dev
->dev
,
1383 "scsi %d:%d:%d:%d %s\n",
1384 ctrl_info
->scsi_host
->host_no
,
1385 device
->bus
, device
->target
, device
->lun
, status
);
1388 static void pqi_rescan_worker(struct work_struct
*work
)
1390 struct pqi_ctrl_info
*ctrl_info
;
1392 ctrl_info
= container_of(to_delayed_work(work
), struct pqi_ctrl_info
,
1395 pqi_scan_scsi_devices(ctrl_info
);
1398 static int pqi_add_device(struct pqi_ctrl_info
*ctrl_info
,
1399 struct pqi_scsi_dev
*device
)
1403 if (pqi_is_logical_device(device
))
1404 rc
= scsi_add_device(ctrl_info
->scsi_host
, device
->bus
,
1405 device
->target
, device
->lun
);
1407 rc
= pqi_add_sas_device(ctrl_info
->sas_host
, device
);
1412 static inline void pqi_remove_device(struct pqi_ctrl_info
*ctrl_info
,
1413 struct pqi_scsi_dev
*device
)
1415 if (pqi_is_logical_device(device
))
1416 scsi_remove_device(device
->sdev
);
1418 pqi_remove_sas_device(device
);
1421 /* Assumes the SCSI device list lock is held. */
1423 static struct pqi_scsi_dev
*pqi_find_scsi_dev(struct pqi_ctrl_info
*ctrl_info
,
1424 int bus
, int target
, int lun
)
1426 struct pqi_scsi_dev
*device
;
1428 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1429 scsi_device_list_entry
)
1430 if (device
->bus
== bus
&& device
->target
== target
&&
1437 static inline bool pqi_device_equal(struct pqi_scsi_dev
*dev1
,
1438 struct pqi_scsi_dev
*dev2
)
1440 if (dev1
->is_physical_device
!= dev2
->is_physical_device
)
1443 if (dev1
->is_physical_device
)
1444 return dev1
->wwid
== dev2
->wwid
;
1446 return memcmp(dev1
->volume_id
, dev2
->volume_id
,
1447 sizeof(dev1
->volume_id
)) == 0;
1450 enum pqi_find_result
{
1456 static enum pqi_find_result
pqi_scsi_find_entry(struct pqi_ctrl_info
*ctrl_info
,
1457 struct pqi_scsi_dev
*device_to_find
,
1458 struct pqi_scsi_dev
**matching_device
)
1460 struct pqi_scsi_dev
*device
;
1462 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1463 scsi_device_list_entry
) {
1464 if (pqi_scsi3addr_equal(device_to_find
->scsi3addr
,
1465 device
->scsi3addr
)) {
1466 *matching_device
= device
;
1467 if (pqi_device_equal(device_to_find
, device
)) {
1468 if (device_to_find
->volume_offline
)
1469 return DEVICE_CHANGED
;
1472 return DEVICE_CHANGED
;
1476 return DEVICE_NOT_FOUND
;
1479 #define PQI_DEV_INFO_BUFFER_LENGTH 128
1481 static void pqi_dev_info(struct pqi_ctrl_info
*ctrl_info
,
1482 char *action
, struct pqi_scsi_dev
*device
)
1485 char buffer
[PQI_DEV_INFO_BUFFER_LENGTH
];
1487 count
= snprintf(buffer
, PQI_DEV_INFO_BUFFER_LENGTH
,
1488 "%d:%d:", ctrl_info
->scsi_host
->host_no
, device
->bus
);
1490 if (device
->target_lun_valid
)
1491 count
+= snprintf(buffer
+ count
,
1492 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1497 count
+= snprintf(buffer
+ count
,
1498 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1501 if (pqi_is_logical_device(device
))
1502 count
+= snprintf(buffer
+ count
,
1503 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1505 *((u32
*)&device
->scsi3addr
),
1506 *((u32
*)&device
->scsi3addr
[4]));
1508 count
+= snprintf(buffer
+ count
,
1509 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1510 " %016llx", device
->sas_address
);
1512 count
+= snprintf(buffer
+ count
, PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1514 scsi_device_type(device
->devtype
),
1518 if (pqi_is_logical_device(device
)) {
1519 if (device
->devtype
== TYPE_DISK
)
1520 count
+= snprintf(buffer
+ count
,
1521 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1522 "SSDSmartPathCap%c En%c %-12s",
1523 device
->raid_bypass_configured
? '+' : '-',
1524 device
->raid_bypass_enabled
? '+' : '-',
1525 pqi_raid_level_to_string(device
->raid_level
));
1527 count
+= snprintf(buffer
+ count
,
1528 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1529 "AIO%c", device
->aio_enabled
? '+' : '-');
1530 if (device
->devtype
== TYPE_DISK
||
1531 device
->devtype
== TYPE_ZBC
)
1532 count
+= snprintf(buffer
+ count
,
1533 PQI_DEV_INFO_BUFFER_LENGTH
- count
,
1534 " qd=%-6d", device
->queue_depth
);
1537 dev_info(&ctrl_info
->pci_dev
->dev
, "%s %s\n", action
, buffer
);
1540 /* Assumes the SCSI device list lock is held. */
1542 static void pqi_scsi_update_device(struct pqi_scsi_dev
*existing_device
,
1543 struct pqi_scsi_dev
*new_device
)
1545 existing_device
->devtype
= new_device
->devtype
;
1546 existing_device
->device_type
= new_device
->device_type
;
1547 existing_device
->bus
= new_device
->bus
;
1548 if (new_device
->target_lun_valid
) {
1549 existing_device
->target
= new_device
->target
;
1550 existing_device
->lun
= new_device
->lun
;
1551 existing_device
->target_lun_valid
= true;
1554 /* By definition, the scsi3addr and wwid fields are already the same. */
1556 existing_device
->is_physical_device
= new_device
->is_physical_device
;
1557 existing_device
->is_external_raid_device
=
1558 new_device
->is_external_raid_device
;
1559 existing_device
->aio_enabled
= new_device
->aio_enabled
;
1560 memcpy(existing_device
->vendor
, new_device
->vendor
,
1561 sizeof(existing_device
->vendor
));
1562 memcpy(existing_device
->model
, new_device
->model
,
1563 sizeof(existing_device
->model
));
1564 existing_device
->sas_address
= new_device
->sas_address
;
1565 existing_device
->raid_level
= new_device
->raid_level
;
1566 existing_device
->queue_depth
= new_device
->queue_depth
;
1567 existing_device
->aio_handle
= new_device
->aio_handle
;
1568 existing_device
->volume_status
= new_device
->volume_status
;
1569 existing_device
->active_path_index
= new_device
->active_path_index
;
1570 existing_device
->path_map
= new_device
->path_map
;
1571 existing_device
->bay
= new_device
->bay
;
1572 memcpy(existing_device
->box
, new_device
->box
,
1573 sizeof(existing_device
->box
));
1574 memcpy(existing_device
->phys_connector
, new_device
->phys_connector
,
1575 sizeof(existing_device
->phys_connector
));
1576 existing_device
->offload_to_mirror
= 0;
1577 kfree(existing_device
->raid_map
);
1578 existing_device
->raid_map
= new_device
->raid_map
;
1579 existing_device
->raid_bypass_configured
=
1580 new_device
->raid_bypass_configured
;
1581 existing_device
->raid_bypass_enabled
=
1582 new_device
->raid_bypass_enabled
;
1584 /* To prevent this from being freed later. */
1585 new_device
->raid_map
= NULL
;
1588 static inline void pqi_free_device(struct pqi_scsi_dev
*device
)
1591 kfree(device
->raid_map
);
1597 * Called when exposing a new device to the OS fails in order to re-adjust
1598 * our internal SCSI device list to match the SCSI ML's view.
1601 static inline void pqi_fixup_botched_add(struct pqi_ctrl_info
*ctrl_info
,
1602 struct pqi_scsi_dev
*device
)
1604 unsigned long flags
;
1606 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1607 list_del(&device
->scsi_device_list_entry
);
1608 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1610 /* Allow the device structure to be freed later. */
1611 device
->keep_device
= false;
1614 static void pqi_update_device_list(struct pqi_ctrl_info
*ctrl_info
,
1615 struct pqi_scsi_dev
*new_device_list
[], unsigned int num_new_devices
)
1619 unsigned long flags
;
1620 enum pqi_find_result find_result
;
1621 struct pqi_scsi_dev
*device
;
1622 struct pqi_scsi_dev
*next
;
1623 struct pqi_scsi_dev
*matching_device
;
1624 LIST_HEAD(add_list
);
1625 LIST_HEAD(delete_list
);
1628 * The idea here is to do as little work as possible while holding the
1629 * spinlock. That's why we go to great pains to defer anything other
1630 * than updating the internal device list until after we release the
1634 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1636 /* Assume that all devices in the existing list have gone away. */
1637 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1638 scsi_device_list_entry
)
1639 device
->device_gone
= true;
1641 for (i
= 0; i
< num_new_devices
; i
++) {
1642 device
= new_device_list
[i
];
1644 find_result
= pqi_scsi_find_entry(ctrl_info
, device
,
1647 switch (find_result
) {
1650 * The newly found device is already in the existing
1653 device
->new_device
= false;
1654 matching_device
->device_gone
= false;
1655 pqi_scsi_update_device(matching_device
, device
);
1657 case DEVICE_NOT_FOUND
:
1659 * The newly found device is NOT in the existing device
1662 device
->new_device
= true;
1664 case DEVICE_CHANGED
:
1666 * The original device has gone away and we need to add
1669 device
->new_device
= true;
1674 /* Process all devices that have gone away. */
1675 list_for_each_entry_safe(device
, next
, &ctrl_info
->scsi_device_list
,
1676 scsi_device_list_entry
) {
1677 if (device
->device_gone
) {
1678 list_del(&device
->scsi_device_list_entry
);
1679 list_add_tail(&device
->delete_list_entry
, &delete_list
);
1683 /* Process all new devices. */
1684 for (i
= 0; i
< num_new_devices
; i
++) {
1685 device
= new_device_list
[i
];
1686 if (!device
->new_device
)
1688 if (device
->volume_offline
)
1690 list_add_tail(&device
->scsi_device_list_entry
,
1691 &ctrl_info
->scsi_device_list
);
1692 list_add_tail(&device
->add_list_entry
, &add_list
);
1693 /* To prevent this device structure from being freed later. */
1694 device
->keep_device
= true;
1697 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
1699 /* Remove all devices that have gone away. */
1700 list_for_each_entry_safe(device
, next
, &delete_list
,
1701 delete_list_entry
) {
1702 if (device
->volume_offline
) {
1703 pqi_dev_info(ctrl_info
, "offline", device
);
1704 pqi_show_volume_status(ctrl_info
, device
);
1706 pqi_dev_info(ctrl_info
, "removed", device
);
1709 pqi_remove_device(ctrl_info
, device
);
1710 list_del(&device
->delete_list_entry
);
1711 pqi_free_device(device
);
1715 * Notify the SCSI ML if the queue depth of any existing device has
1718 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
1719 scsi_device_list_entry
) {
1720 if (device
->sdev
&& device
->queue_depth
!=
1721 device
->advertised_queue_depth
) {
1722 device
->advertised_queue_depth
= device
->queue_depth
;
1723 scsi_change_queue_depth(device
->sdev
,
1724 device
->advertised_queue_depth
);
1728 /* Expose any new devices. */
1729 list_for_each_entry_safe(device
, next
, &add_list
, add_list_entry
) {
1730 if (!device
->sdev
) {
1731 pqi_dev_info(ctrl_info
, "added", device
);
1732 rc
= pqi_add_device(ctrl_info
, device
);
1734 dev_warn(&ctrl_info
->pci_dev
->dev
,
1735 "scsi %d:%d:%d:%d addition failed, device not added\n",
1736 ctrl_info
->scsi_host
->host_no
,
1737 device
->bus
, device
->target
,
1739 pqi_fixup_botched_add(ctrl_info
, device
);
1745 static bool pqi_is_supported_device(struct pqi_scsi_dev
*device
)
1747 bool is_supported
= false;
1749 switch (device
->devtype
) {
1753 case TYPE_MEDIUM_CHANGER
:
1754 case TYPE_ENCLOSURE
:
1755 is_supported
= true;
1759 * Only support the HBA controller itself as a RAID
1760 * controller. If it's a RAID controller other than
1761 * the HBA itself (an external RAID controller, for
1762 * example), we don't support it.
1764 if (pqi_is_hba_lunid(device
->scsi3addr
))
1765 is_supported
= true;
1769 return is_supported
;
1772 static inline bool pqi_skip_device(u8
*scsi3addr
)
1774 /* Ignore all masked devices. */
1775 if (MASKED_DEVICE(scsi3addr
))
1781 static int pqi_update_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1785 LIST_HEAD(new_device_list_head
);
1786 struct report_phys_lun_extended
*physdev_list
= NULL
;
1787 struct report_log_lun_extended
*logdev_list
= NULL
;
1788 struct report_phys_lun_extended_entry
*phys_lun_ext_entry
;
1789 struct report_log_lun_extended_entry
*log_lun_ext_entry
;
1790 struct bmic_identify_physical_device
*id_phys
= NULL
;
1793 struct pqi_scsi_dev
**new_device_list
= NULL
;
1794 struct pqi_scsi_dev
*device
;
1795 struct pqi_scsi_dev
*next
;
1796 unsigned int num_new_devices
;
1797 unsigned int num_valid_devices
;
1798 bool is_physical_device
;
1800 static char *out_of_memory_msg
=
1801 "failed to allocate memory, device discovery stopped";
1803 rc
= pqi_get_device_lists(ctrl_info
, &physdev_list
, &logdev_list
);
1809 get_unaligned_be32(&physdev_list
->header
.list_length
)
1810 / sizeof(physdev_list
->lun_entries
[0]);
1816 get_unaligned_be32(&logdev_list
->header
.list_length
)
1817 / sizeof(logdev_list
->lun_entries
[0]);
1821 if (num_physicals
) {
1823 * We need this buffer for calls to pqi_get_physical_disk_info()
1824 * below. We allocate it here instead of inside
1825 * pqi_get_physical_disk_info() because it's a fairly large
1828 id_phys
= kmalloc(sizeof(*id_phys
), GFP_KERNEL
);
1830 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1837 num_new_devices
= num_physicals
+ num_logicals
;
1839 new_device_list
= kmalloc_array(num_new_devices
,
1840 sizeof(*new_device_list
),
1842 if (!new_device_list
) {
1843 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n", out_of_memory_msg
);
1848 for (i
= 0; i
< num_new_devices
; i
++) {
1849 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
1851 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1856 list_add_tail(&device
->new_device_list_entry
,
1857 &new_device_list_head
);
1861 num_valid_devices
= 0;
1863 for (i
= 0; i
< num_new_devices
; i
++) {
1865 if (i
< num_physicals
) {
1866 is_physical_device
= true;
1867 phys_lun_ext_entry
= &physdev_list
->lun_entries
[i
];
1868 log_lun_ext_entry
= NULL
;
1869 scsi3addr
= phys_lun_ext_entry
->lunid
;
1871 is_physical_device
= false;
1872 phys_lun_ext_entry
= NULL
;
1874 &logdev_list
->lun_entries
[i
- num_physicals
];
1875 scsi3addr
= log_lun_ext_entry
->lunid
;
1878 if (is_physical_device
&& pqi_skip_device(scsi3addr
))
1882 device
= list_next_entry(device
, new_device_list_entry
);
1884 device
= list_first_entry(&new_device_list_head
,
1885 struct pqi_scsi_dev
, new_device_list_entry
);
1887 memcpy(device
->scsi3addr
, scsi3addr
, sizeof(device
->scsi3addr
));
1888 device
->is_physical_device
= is_physical_device
;
1889 if (!is_physical_device
)
1890 device
->is_external_raid_device
=
1891 pqi_is_external_raid_addr(scsi3addr
);
1893 /* Gather information about the device. */
1894 rc
= pqi_get_device_info(ctrl_info
, device
);
1895 if (rc
== -ENOMEM
) {
1896 dev_warn(&ctrl_info
->pci_dev
->dev
, "%s\n",
1901 if (device
->is_physical_device
)
1902 dev_warn(&ctrl_info
->pci_dev
->dev
,
1903 "obtaining device info failed, skipping physical device %016llx\n",
1905 &phys_lun_ext_entry
->wwid
));
1907 dev_warn(&ctrl_info
->pci_dev
->dev
,
1908 "obtaining device info failed, skipping logical device %08x%08x\n",
1909 *((u32
*)&device
->scsi3addr
),
1910 *((u32
*)&device
->scsi3addr
[4]));
1915 if (!pqi_is_supported_device(device
))
1918 pqi_assign_bus_target_lun(device
);
1920 if (device
->is_physical_device
) {
1921 device
->wwid
= phys_lun_ext_entry
->wwid
;
1922 if ((phys_lun_ext_entry
->device_flags
&
1923 REPORT_PHYS_LUN_DEV_FLAG_AIO_ENABLED
) &&
1924 phys_lun_ext_entry
->aio_handle
)
1925 device
->aio_enabled
= true;
1927 memcpy(device
->volume_id
, log_lun_ext_entry
->volume_id
,
1928 sizeof(device
->volume_id
));
1931 switch (device
->devtype
) {
1934 case TYPE_ENCLOSURE
:
1935 if (device
->is_physical_device
) {
1936 device
->sas_address
=
1937 get_unaligned_be64(&device
->wwid
);
1938 if (device
->devtype
== TYPE_DISK
||
1939 device
->devtype
== TYPE_ZBC
) {
1940 device
->aio_handle
=
1941 phys_lun_ext_entry
->aio_handle
;
1942 pqi_get_physical_disk_info(ctrl_info
,
1949 new_device_list
[num_valid_devices
++] = device
;
1952 pqi_update_device_list(ctrl_info
, new_device_list
, num_valid_devices
);
1955 list_for_each_entry_safe(device
, next
, &new_device_list_head
,
1956 new_device_list_entry
) {
1957 if (device
->keep_device
)
1959 list_del(&device
->new_device_list_entry
);
1960 pqi_free_device(device
);
1963 kfree(new_device_list
);
1964 kfree(physdev_list
);
1971 static void pqi_remove_all_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
1973 unsigned long flags
;
1974 struct pqi_scsi_dev
*device
;
1977 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
1979 device
= list_first_entry_or_null(&ctrl_info
->scsi_device_list
,
1980 struct pqi_scsi_dev
, scsi_device_list_entry
);
1982 list_del(&device
->scsi_device_list_entry
);
1984 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
1991 pqi_remove_device(ctrl_info
, device
);
1992 pqi_free_device(device
);
1996 static int pqi_scan_scsi_devices(struct pqi_ctrl_info
*ctrl_info
)
2000 if (pqi_ctrl_offline(ctrl_info
))
2003 mutex_lock(&ctrl_info
->scan_mutex
);
2005 rc
= pqi_update_scsi_devices(ctrl_info
);
2007 pqi_schedule_rescan_worker_delayed(ctrl_info
);
2009 mutex_unlock(&ctrl_info
->scan_mutex
);
2014 static void pqi_scan_start(struct Scsi_Host
*shost
)
2016 pqi_scan_scsi_devices(shost_to_hba(shost
));
2019 /* Returns TRUE if scan is finished. */
2021 static int pqi_scan_finished(struct Scsi_Host
*shost
,
2022 unsigned long elapsed_time
)
2024 struct pqi_ctrl_info
*ctrl_info
;
2026 ctrl_info
= shost_priv(shost
);
2028 return !mutex_is_locked(&ctrl_info
->scan_mutex
);
2031 static void pqi_wait_until_scan_finished(struct pqi_ctrl_info
*ctrl_info
)
2033 mutex_lock(&ctrl_info
->scan_mutex
);
2034 mutex_unlock(&ctrl_info
->scan_mutex
);
2037 static void pqi_wait_until_lun_reset_finished(struct pqi_ctrl_info
*ctrl_info
)
2039 mutex_lock(&ctrl_info
->lun_reset_mutex
);
2040 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
2043 static inline void pqi_set_encryption_info(
2044 struct pqi_encryption_info
*encryption_info
, struct raid_map
*raid_map
,
2047 u32 volume_blk_size
;
2050 * Set the encryption tweak values based on logical block address.
2051 * If the block size is 512, the tweak value is equal to the LBA.
2052 * For other block sizes, tweak value is (LBA * block size) / 512.
2054 volume_blk_size
= get_unaligned_le32(&raid_map
->volume_blk_size
);
2055 if (volume_blk_size
!= 512)
2056 first_block
= (first_block
* volume_blk_size
) / 512;
2058 encryption_info
->data_encryption_key_index
=
2059 get_unaligned_le16(&raid_map
->data_encryption_key_index
);
2060 encryption_info
->encrypt_tweak_lower
= lower_32_bits(first_block
);
2061 encryption_info
->encrypt_tweak_upper
= upper_32_bits(first_block
);
2065 * Attempt to perform RAID bypass mapping for a logical volume I/O.
2068 #define PQI_RAID_BYPASS_INELIGIBLE 1
2070 static int pqi_raid_bypass_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
2071 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
2072 struct pqi_queue_group
*queue_group
)
2074 struct raid_map
*raid_map
;
2075 bool is_write
= false;
2083 u32 first_row_offset
;
2084 u32 last_row_offset
;
2089 u32 r5or6_blocks_per_row
;
2090 u64 r5or6_first_row
;
2092 u32 r5or6_first_row_offset
;
2093 u32 r5or6_last_row_offset
;
2094 u32 r5or6_first_column
;
2095 u32 r5or6_last_column
;
2096 u16 data_disks_per_row
;
2097 u32 total_disks_per_row
;
2098 u16 layout_map_count
;
2110 int offload_to_mirror
;
2111 struct pqi_encryption_info
*encryption_info_ptr
;
2112 struct pqi_encryption_info encryption_info
;
2113 #if BITS_PER_LONG == 32
2117 /* Check for valid opcode, get LBA and block count. */
2118 switch (scmd
->cmnd
[0]) {
2123 first_block
= (u64
)(((scmd
->cmnd
[1] & 0x1f) << 16) |
2124 (scmd
->cmnd
[2] << 8) | scmd
->cmnd
[3]);
2125 block_cnt
= (u32
)scmd
->cmnd
[4];
2133 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2134 block_cnt
= (u32
)get_unaligned_be16(&scmd
->cmnd
[7]);
2140 first_block
= (u64
)get_unaligned_be32(&scmd
->cmnd
[2]);
2141 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[6]);
2147 first_block
= get_unaligned_be64(&scmd
->cmnd
[2]);
2148 block_cnt
= get_unaligned_be32(&scmd
->cmnd
[10]);
2151 /* Process via normal I/O path. */
2152 return PQI_RAID_BYPASS_INELIGIBLE
;
2155 /* Check for write to non-RAID-0. */
2156 if (is_write
&& device
->raid_level
!= SA_RAID_0
)
2157 return PQI_RAID_BYPASS_INELIGIBLE
;
2159 if (unlikely(block_cnt
== 0))
2160 return PQI_RAID_BYPASS_INELIGIBLE
;
2162 last_block
= first_block
+ block_cnt
- 1;
2163 raid_map
= device
->raid_map
;
2165 /* Check for invalid block or wraparound. */
2166 if (last_block
>= get_unaligned_le64(&raid_map
->volume_blk_cnt
) ||
2167 last_block
< first_block
)
2168 return PQI_RAID_BYPASS_INELIGIBLE
;
2170 data_disks_per_row
= get_unaligned_le16(&raid_map
->data_disks_per_row
);
2171 strip_size
= get_unaligned_le16(&raid_map
->strip_size
);
2172 layout_map_count
= get_unaligned_le16(&raid_map
->layout_map_count
);
2174 /* Calculate stripe information for the request. */
2175 blocks_per_row
= data_disks_per_row
* strip_size
;
2176 #if BITS_PER_LONG == 32
2177 tmpdiv
= first_block
;
2178 do_div(tmpdiv
, blocks_per_row
);
2180 tmpdiv
= last_block
;
2181 do_div(tmpdiv
, blocks_per_row
);
2183 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2184 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2185 tmpdiv
= first_row_offset
;
2186 do_div(tmpdiv
, strip_size
);
2187 first_column
= tmpdiv
;
2188 tmpdiv
= last_row_offset
;
2189 do_div(tmpdiv
, strip_size
);
2190 last_column
= tmpdiv
;
2192 first_row
= first_block
/ blocks_per_row
;
2193 last_row
= last_block
/ blocks_per_row
;
2194 first_row_offset
= (u32
)(first_block
- (first_row
* blocks_per_row
));
2195 last_row_offset
= (u32
)(last_block
- (last_row
* blocks_per_row
));
2196 first_column
= first_row_offset
/ strip_size
;
2197 last_column
= last_row_offset
/ strip_size
;
2200 /* If this isn't a single row/column then give to the controller. */
2201 if (first_row
!= last_row
|| first_column
!= last_column
)
2202 return PQI_RAID_BYPASS_INELIGIBLE
;
2204 /* Proceeding with driver mapping. */
2205 total_disks_per_row
= data_disks_per_row
+
2206 get_unaligned_le16(&raid_map
->metadata_disks_per_row
);
2207 map_row
= ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2208 get_unaligned_le16(&raid_map
->row_cnt
);
2209 map_index
= (map_row
* total_disks_per_row
) + first_column
;
2212 if (device
->raid_level
== SA_RAID_1
) {
2213 if (device
->offload_to_mirror
)
2214 map_index
+= data_disks_per_row
;
2215 device
->offload_to_mirror
= !device
->offload_to_mirror
;
2216 } else if (device
->raid_level
== SA_RAID_ADM
) {
2219 * Handles N-way mirrors (R1-ADM) and R10 with # of drives
2222 offload_to_mirror
= device
->offload_to_mirror
;
2223 if (offload_to_mirror
== 0) {
2224 /* use physical disk in the first mirrored group. */
2225 map_index
%= data_disks_per_row
;
2229 * Determine mirror group that map_index
2232 current_group
= map_index
/ data_disks_per_row
;
2234 if (offload_to_mirror
!= current_group
) {
2236 layout_map_count
- 1) {
2238 * Select raid index from
2241 map_index
+= data_disks_per_row
;
2245 * Select raid index from first
2248 map_index
%= data_disks_per_row
;
2252 } while (offload_to_mirror
!= current_group
);
2255 /* Set mirror group to use next time. */
2257 (offload_to_mirror
>= layout_map_count
- 1) ?
2258 0 : offload_to_mirror
+ 1;
2259 WARN_ON(offload_to_mirror
>= layout_map_count
);
2260 device
->offload_to_mirror
= offload_to_mirror
;
2262 * Avoid direct use of device->offload_to_mirror within this
2263 * function since multiple threads might simultaneously
2264 * increment it beyond the range of device->layout_map_count -1.
2266 } else if ((device
->raid_level
== SA_RAID_5
||
2267 device
->raid_level
== SA_RAID_6
) && layout_map_count
> 1) {
2269 /* Verify first and last block are in same RAID group */
2270 r5or6_blocks_per_row
= strip_size
* data_disks_per_row
;
2271 stripesize
= r5or6_blocks_per_row
* layout_map_count
;
2272 #if BITS_PER_LONG == 32
2273 tmpdiv
= first_block
;
2274 first_group
= do_div(tmpdiv
, stripesize
);
2275 tmpdiv
= first_group
;
2276 do_div(tmpdiv
, r5or6_blocks_per_row
);
2277 first_group
= tmpdiv
;
2278 tmpdiv
= last_block
;
2279 last_group
= do_div(tmpdiv
, stripesize
);
2280 tmpdiv
= last_group
;
2281 do_div(tmpdiv
, r5or6_blocks_per_row
);
2282 last_group
= tmpdiv
;
2284 first_group
= (first_block
% stripesize
) / r5or6_blocks_per_row
;
2285 last_group
= (last_block
% stripesize
) / r5or6_blocks_per_row
;
2287 if (first_group
!= last_group
)
2288 return PQI_RAID_BYPASS_INELIGIBLE
;
2290 /* Verify request is in a single row of RAID 5/6 */
2291 #if BITS_PER_LONG == 32
2292 tmpdiv
= first_block
;
2293 do_div(tmpdiv
, stripesize
);
2294 first_row
= r5or6_first_row
= r0_first_row
= tmpdiv
;
2295 tmpdiv
= last_block
;
2296 do_div(tmpdiv
, stripesize
);
2297 r5or6_last_row
= r0_last_row
= tmpdiv
;
2299 first_row
= r5or6_first_row
= r0_first_row
=
2300 first_block
/ stripesize
;
2301 r5or6_last_row
= r0_last_row
= last_block
/ stripesize
;
2303 if (r5or6_first_row
!= r5or6_last_row
)
2304 return PQI_RAID_BYPASS_INELIGIBLE
;
2306 /* Verify request is in a single column */
2307 #if BITS_PER_LONG == 32
2308 tmpdiv
= first_block
;
2309 first_row_offset
= do_div(tmpdiv
, stripesize
);
2310 tmpdiv
= first_row_offset
;
2311 first_row_offset
= (u32
)do_div(tmpdiv
, r5or6_blocks_per_row
);
2312 r5or6_first_row_offset
= first_row_offset
;
2313 tmpdiv
= last_block
;
2314 r5or6_last_row_offset
= do_div(tmpdiv
, stripesize
);
2315 tmpdiv
= r5or6_last_row_offset
;
2316 r5or6_last_row_offset
= do_div(tmpdiv
, r5or6_blocks_per_row
);
2317 tmpdiv
= r5or6_first_row_offset
;
2318 do_div(tmpdiv
, strip_size
);
2319 first_column
= r5or6_first_column
= tmpdiv
;
2320 tmpdiv
= r5or6_last_row_offset
;
2321 do_div(tmpdiv
, strip_size
);
2322 r5or6_last_column
= tmpdiv
;
2324 first_row_offset
= r5or6_first_row_offset
=
2325 (u32
)((first_block
% stripesize
) %
2326 r5or6_blocks_per_row
);
2328 r5or6_last_row_offset
=
2329 (u32
)((last_block
% stripesize
) %
2330 r5or6_blocks_per_row
);
2332 first_column
= r5or6_first_row_offset
/ strip_size
;
2333 r5or6_first_column
= first_column
;
2334 r5or6_last_column
= r5or6_last_row_offset
/ strip_size
;
2336 if (r5or6_first_column
!= r5or6_last_column
)
2337 return PQI_RAID_BYPASS_INELIGIBLE
;
2339 /* Request is eligible */
2341 ((u32
)(first_row
>> raid_map
->parity_rotation_shift
)) %
2342 get_unaligned_le16(&raid_map
->row_cnt
);
2344 map_index
= (first_group
*
2345 (get_unaligned_le16(&raid_map
->row_cnt
) *
2346 total_disks_per_row
)) +
2347 (map_row
* total_disks_per_row
) + first_column
;
2350 if (unlikely(map_index
>= RAID_MAP_MAX_ENTRIES
))
2351 return PQI_RAID_BYPASS_INELIGIBLE
;
2353 aio_handle
= raid_map
->disk_data
[map_index
].aio_handle
;
2354 disk_block
= get_unaligned_le64(&raid_map
->disk_starting_blk
) +
2355 first_row
* strip_size
+
2356 (first_row_offset
- first_column
* strip_size
);
2357 disk_block_cnt
= block_cnt
;
2359 /* Handle differing logical/physical block sizes. */
2360 if (raid_map
->phys_blk_shift
) {
2361 disk_block
<<= raid_map
->phys_blk_shift
;
2362 disk_block_cnt
<<= raid_map
->phys_blk_shift
;
2365 if (unlikely(disk_block_cnt
> 0xffff))
2366 return PQI_RAID_BYPASS_INELIGIBLE
;
2368 /* Build the new CDB for the physical disk I/O. */
2369 if (disk_block
> 0xffffffff) {
2370 cdb
[0] = is_write
? WRITE_16
: READ_16
;
2372 put_unaligned_be64(disk_block
, &cdb
[2]);
2373 put_unaligned_be32(disk_block_cnt
, &cdb
[10]);
2378 cdb
[0] = is_write
? WRITE_10
: READ_10
;
2380 put_unaligned_be32((u32
)disk_block
, &cdb
[2]);
2382 put_unaligned_be16((u16
)disk_block_cnt
, &cdb
[7]);
2387 if (get_unaligned_le16(&raid_map
->flags
) &
2388 RAID_MAP_ENCRYPTION_ENABLED
) {
2389 pqi_set_encryption_info(&encryption_info
, raid_map
,
2391 encryption_info_ptr
= &encryption_info
;
2393 encryption_info_ptr
= NULL
;
2396 return pqi_aio_submit_io(ctrl_info
, scmd
, aio_handle
,
2397 cdb
, cdb_length
, queue_group
, encryption_info_ptr
, true);
2400 #define PQI_STATUS_IDLE 0x0
2402 #define PQI_CREATE_ADMIN_QUEUE_PAIR 1
2403 #define PQI_DELETE_ADMIN_QUEUE_PAIR 2
2405 #define PQI_DEVICE_STATE_POWER_ON_AND_RESET 0x0
2406 #define PQI_DEVICE_STATE_STATUS_AVAILABLE 0x1
2407 #define PQI_DEVICE_STATE_ALL_REGISTERS_READY 0x2
2408 #define PQI_DEVICE_STATE_ADMIN_QUEUE_PAIR_READY 0x3
2409 #define PQI_DEVICE_STATE_ERROR 0x4
2411 #define PQI_MODE_READY_TIMEOUT_SECS 30
2412 #define PQI_MODE_READY_POLL_INTERVAL_MSECS 1
2414 static int pqi_wait_for_pqi_mode_ready(struct pqi_ctrl_info
*ctrl_info
)
2416 struct pqi_device_registers __iomem
*pqi_registers
;
2417 unsigned long timeout
;
2421 pqi_registers
= ctrl_info
->pqi_registers
;
2422 timeout
= (PQI_MODE_READY_TIMEOUT_SECS
* HZ
) + jiffies
;
2425 signature
= readq(&pqi_registers
->signature
);
2426 if (memcmp(&signature
, PQI_DEVICE_SIGNATURE
,
2427 sizeof(signature
)) == 0)
2429 if (time_after(jiffies
, timeout
)) {
2430 dev_err(&ctrl_info
->pci_dev
->dev
,
2431 "timed out waiting for PQI signature\n");
2434 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2438 status
= readb(&pqi_registers
->function_and_status_code
);
2439 if (status
== PQI_STATUS_IDLE
)
2441 if (time_after(jiffies
, timeout
)) {
2442 dev_err(&ctrl_info
->pci_dev
->dev
,
2443 "timed out waiting for PQI IDLE\n");
2446 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2450 if (readl(&pqi_registers
->device_status
) ==
2451 PQI_DEVICE_STATE_ALL_REGISTERS_READY
)
2453 if (time_after(jiffies
, timeout
)) {
2454 dev_err(&ctrl_info
->pci_dev
->dev
,
2455 "timed out waiting for PQI all registers ready\n");
2458 msleep(PQI_MODE_READY_POLL_INTERVAL_MSECS
);
2464 static inline void pqi_aio_path_disabled(struct pqi_io_request
*io_request
)
2466 struct pqi_scsi_dev
*device
;
2468 device
= io_request
->scmd
->device
->hostdata
;
2469 device
->raid_bypass_enabled
= false;
2470 device
->aio_enabled
= false;
2473 static inline void pqi_take_device_offline(struct scsi_device
*sdev
, char *path
)
2475 struct pqi_ctrl_info
*ctrl_info
;
2476 struct pqi_scsi_dev
*device
;
2478 device
= sdev
->hostdata
;
2479 if (device
->device_offline
)
2482 device
->device_offline
= true;
2483 scsi_device_set_state(sdev
, SDEV_OFFLINE
);
2484 ctrl_info
= shost_to_hba(sdev
->host
);
2485 pqi_schedule_rescan_worker(ctrl_info
);
2486 dev_err(&ctrl_info
->pci_dev
->dev
, "offlined %s scsi %d:%d:%d:%d\n",
2487 path
, ctrl_info
->scsi_host
->host_no
, device
->bus
,
2488 device
->target
, device
->lun
);
2491 static void pqi_process_raid_io_error(struct pqi_io_request
*io_request
)
2495 struct scsi_cmnd
*scmd
;
2496 struct pqi_raid_error_info
*error_info
;
2497 size_t sense_data_length
;
2500 struct scsi_sense_hdr sshdr
;
2502 scmd
= io_request
->scmd
;
2506 error_info
= io_request
->error_info
;
2507 scsi_status
= error_info
->status
;
2510 switch (error_info
->data_out_result
) {
2511 case PQI_DATA_IN_OUT_GOOD
:
2513 case PQI_DATA_IN_OUT_UNDERFLOW
:
2515 get_unaligned_le32(&error_info
->data_out_transferred
);
2516 residual_count
= scsi_bufflen(scmd
) - xfer_count
;
2517 scsi_set_resid(scmd
, residual_count
);
2518 if (xfer_count
< scmd
->underflow
)
2519 host_byte
= DID_SOFT_ERROR
;
2521 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
2522 case PQI_DATA_IN_OUT_ABORTED
:
2523 host_byte
= DID_ABORT
;
2525 case PQI_DATA_IN_OUT_TIMEOUT
:
2526 host_byte
= DID_TIME_OUT
;
2528 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
2529 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
2530 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
2531 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
2532 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
2533 case PQI_DATA_IN_OUT_ERROR
:
2534 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
2535 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
2536 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
2537 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
2538 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
2539 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
2540 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
2541 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
2542 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
2543 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
2545 host_byte
= DID_ERROR
;
2549 sense_data_length
= get_unaligned_le16(&error_info
->sense_data_length
);
2550 if (sense_data_length
== 0)
2552 get_unaligned_le16(&error_info
->response_data_length
);
2553 if (sense_data_length
) {
2554 if (sense_data_length
> sizeof(error_info
->data
))
2555 sense_data_length
= sizeof(error_info
->data
);
2557 if (scsi_status
== SAM_STAT_CHECK_CONDITION
&&
2558 scsi_normalize_sense(error_info
->data
,
2559 sense_data_length
, &sshdr
) &&
2560 sshdr
.sense_key
== HARDWARE_ERROR
&&
2561 sshdr
.asc
== 0x3e &&
2562 sshdr
.ascq
== 0x1) {
2563 pqi_take_device_offline(scmd
->device
, "RAID");
2564 host_byte
= DID_NO_CONNECT
;
2567 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2568 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2569 memcpy(scmd
->sense_buffer
, error_info
->data
,
2573 scmd
->result
= scsi_status
;
2574 set_host_byte(scmd
, host_byte
);
2577 static void pqi_process_aio_io_error(struct pqi_io_request
*io_request
)
2581 struct scsi_cmnd
*scmd
;
2582 struct pqi_aio_error_info
*error_info
;
2583 size_t sense_data_length
;
2586 bool device_offline
;
2588 scmd
= io_request
->scmd
;
2589 error_info
= io_request
->error_info
;
2591 sense_data_length
= 0;
2592 device_offline
= false;
2594 switch (error_info
->service_response
) {
2595 case PQI_AIO_SERV_RESPONSE_COMPLETE
:
2596 scsi_status
= error_info
->status
;
2598 case PQI_AIO_SERV_RESPONSE_FAILURE
:
2599 switch (error_info
->status
) {
2600 case PQI_AIO_STATUS_IO_ABORTED
:
2601 scsi_status
= SAM_STAT_TASK_ABORTED
;
2603 case PQI_AIO_STATUS_UNDERRUN
:
2604 scsi_status
= SAM_STAT_GOOD
;
2605 residual_count
= get_unaligned_le32(
2606 &error_info
->residual_count
);
2607 scsi_set_resid(scmd
, residual_count
);
2608 xfer_count
= scsi_bufflen(scmd
) - residual_count
;
2609 if (xfer_count
< scmd
->underflow
)
2610 host_byte
= DID_SOFT_ERROR
;
2612 case PQI_AIO_STATUS_OVERRUN
:
2613 scsi_status
= SAM_STAT_GOOD
;
2615 case PQI_AIO_STATUS_AIO_PATH_DISABLED
:
2616 pqi_aio_path_disabled(io_request
);
2617 scsi_status
= SAM_STAT_GOOD
;
2618 io_request
->status
= -EAGAIN
;
2620 case PQI_AIO_STATUS_NO_PATH_TO_DEVICE
:
2621 case PQI_AIO_STATUS_INVALID_DEVICE
:
2622 if (!io_request
->raid_bypass
) {
2623 device_offline
= true;
2624 pqi_take_device_offline(scmd
->device
, "AIO");
2625 host_byte
= DID_NO_CONNECT
;
2627 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2629 case PQI_AIO_STATUS_IO_ERROR
:
2631 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2635 case PQI_AIO_SERV_RESPONSE_TMF_COMPLETE
:
2636 case PQI_AIO_SERV_RESPONSE_TMF_SUCCEEDED
:
2637 scsi_status
= SAM_STAT_GOOD
;
2639 case PQI_AIO_SERV_RESPONSE_TMF_REJECTED
:
2640 case PQI_AIO_SERV_RESPONSE_TMF_INCORRECT_LUN
:
2642 scsi_status
= SAM_STAT_CHECK_CONDITION
;
2646 if (error_info
->data_present
) {
2648 get_unaligned_le16(&error_info
->data_length
);
2649 if (sense_data_length
) {
2650 if (sense_data_length
> sizeof(error_info
->data
))
2651 sense_data_length
= sizeof(error_info
->data
);
2652 if (sense_data_length
> SCSI_SENSE_BUFFERSIZE
)
2653 sense_data_length
= SCSI_SENSE_BUFFERSIZE
;
2654 memcpy(scmd
->sense_buffer
, error_info
->data
,
2659 if (device_offline
&& sense_data_length
== 0)
2660 scsi_build_sense_buffer(0, scmd
->sense_buffer
, HARDWARE_ERROR
,
2663 scmd
->result
= scsi_status
;
2664 set_host_byte(scmd
, host_byte
);
2667 static void pqi_process_io_error(unsigned int iu_type
,
2668 struct pqi_io_request
*io_request
)
2671 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2672 pqi_process_raid_io_error(io_request
);
2674 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2675 pqi_process_aio_io_error(io_request
);
2680 static int pqi_interpret_task_management_response(
2681 struct pqi_task_management_response
*response
)
2685 switch (response
->response_code
) {
2686 case SOP_TMF_COMPLETE
:
2687 case SOP_TMF_FUNCTION_SUCCEEDED
:
2698 static unsigned int pqi_process_io_intr(struct pqi_ctrl_info
*ctrl_info
,
2699 struct pqi_queue_group
*queue_group
)
2701 unsigned int num_responses
;
2704 struct pqi_io_request
*io_request
;
2705 struct pqi_io_response
*response
;
2709 oq_ci
= queue_group
->oq_ci_copy
;
2712 oq_pi
= readl(queue_group
->oq_pi
);
2717 response
= queue_group
->oq_element_array
+
2718 (oq_ci
* PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
);
2720 request_id
= get_unaligned_le16(&response
->request_id
);
2721 WARN_ON(request_id
>= ctrl_info
->max_io_slots
);
2723 io_request
= &ctrl_info
->io_request_pool
[request_id
];
2724 WARN_ON(atomic_read(&io_request
->refcount
) == 0);
2726 switch (response
->header
.iu_type
) {
2727 case PQI_RESPONSE_IU_RAID_PATH_IO_SUCCESS
:
2728 case PQI_RESPONSE_IU_AIO_PATH_IO_SUCCESS
:
2729 if (io_request
->scmd
)
2730 io_request
->scmd
->result
= 0;
2732 case PQI_RESPONSE_IU_GENERAL_MANAGEMENT
:
2734 case PQI_RESPONSE_IU_TASK_MANAGEMENT
:
2735 io_request
->status
=
2736 pqi_interpret_task_management_response(
2739 case PQI_RESPONSE_IU_AIO_PATH_DISABLED
:
2740 pqi_aio_path_disabled(io_request
);
2741 io_request
->status
= -EAGAIN
;
2743 case PQI_RESPONSE_IU_RAID_PATH_IO_ERROR
:
2744 case PQI_RESPONSE_IU_AIO_PATH_IO_ERROR
:
2745 io_request
->error_info
= ctrl_info
->error_buffer
+
2746 (get_unaligned_le16(&response
->error_index
) *
2747 PQI_ERROR_BUFFER_ELEMENT_LENGTH
);
2748 pqi_process_io_error(response
->header
.iu_type
,
2752 dev_err(&ctrl_info
->pci_dev
->dev
,
2753 "unexpected IU type: 0x%x\n",
2754 response
->header
.iu_type
);
2758 io_request
->io_complete_callback(io_request
,
2759 io_request
->context
);
2762 * Note that the I/O request structure CANNOT BE TOUCHED after
2763 * returning from the I/O completion callback!
2766 oq_ci
= (oq_ci
+ 1) % ctrl_info
->num_elements_per_oq
;
2769 if (num_responses
) {
2770 queue_group
->oq_ci_copy
= oq_ci
;
2771 writel(oq_ci
, queue_group
->oq_ci
);
2774 return num_responses
;
2777 static inline unsigned int pqi_num_elements_free(unsigned int pi
,
2778 unsigned int ci
, unsigned int elements_in_queue
)
2780 unsigned int num_elements_used
;
2783 num_elements_used
= pi
- ci
;
2785 num_elements_used
= elements_in_queue
- ci
+ pi
;
2787 return elements_in_queue
- num_elements_used
- 1;
2790 static void pqi_send_event_ack(struct pqi_ctrl_info
*ctrl_info
,
2791 struct pqi_event_acknowledge_request
*iu
, size_t iu_length
)
2795 unsigned long flags
;
2797 struct pqi_queue_group
*queue_group
;
2799 queue_group
= &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
];
2800 put_unaligned_le16(queue_group
->oq_id
, &iu
->header
.response_queue_id
);
2803 spin_lock_irqsave(&queue_group
->submit_lock
[RAID_PATH
], flags
);
2805 iq_pi
= queue_group
->iq_pi_copy
[RAID_PATH
];
2806 iq_ci
= readl(queue_group
->iq_ci
[RAID_PATH
]);
2808 if (pqi_num_elements_free(iq_pi
, iq_ci
,
2809 ctrl_info
->num_elements_per_iq
))
2812 spin_unlock_irqrestore(
2813 &queue_group
->submit_lock
[RAID_PATH
], flags
);
2815 if (pqi_ctrl_offline(ctrl_info
))
2819 next_element
= queue_group
->iq_element_array
[RAID_PATH
] +
2820 (iq_pi
* PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
2822 memcpy(next_element
, iu
, iu_length
);
2824 iq_pi
= (iq_pi
+ 1) % ctrl_info
->num_elements_per_iq
;
2825 queue_group
->iq_pi_copy
[RAID_PATH
] = iq_pi
;
2828 * This write notifies the controller that an IU is available to be
2831 writel(iq_pi
, queue_group
->iq_pi
[RAID_PATH
]);
2833 spin_unlock_irqrestore(&queue_group
->submit_lock
[RAID_PATH
], flags
);
2836 static void pqi_acknowledge_event(struct pqi_ctrl_info
*ctrl_info
,
2837 struct pqi_event
*event
)
2839 struct pqi_event_acknowledge_request request
;
2841 memset(&request
, 0, sizeof(request
));
2843 request
.header
.iu_type
= PQI_REQUEST_IU_ACKNOWLEDGE_VENDOR_EVENT
;
2844 put_unaligned_le16(sizeof(request
) - PQI_REQUEST_HEADER_LENGTH
,
2845 &request
.header
.iu_length
);
2846 request
.event_type
= event
->event_type
;
2847 request
.event_id
= event
->event_id
;
2848 request
.additional_event_id
= event
->additional_event_id
;
2850 pqi_send_event_ack(ctrl_info
, &request
, sizeof(request
));
2853 static void pqi_event_worker(struct work_struct
*work
)
2856 struct pqi_ctrl_info
*ctrl_info
;
2857 struct pqi_event
*event
;
2859 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, event_work
);
2861 pqi_ctrl_busy(ctrl_info
);
2862 pqi_wait_if_ctrl_blocked(ctrl_info
, NO_TIMEOUT
);
2863 if (pqi_ctrl_offline(ctrl_info
))
2866 pqi_schedule_rescan_worker_delayed(ctrl_info
);
2868 event
= ctrl_info
->events
;
2869 for (i
= 0; i
< PQI_NUM_SUPPORTED_EVENTS
; i
++) {
2870 if (event
->pending
) {
2871 event
->pending
= false;
2872 pqi_acknowledge_event(ctrl_info
, event
);
2878 pqi_ctrl_unbusy(ctrl_info
);
2881 #define PQI_HEARTBEAT_TIMER_INTERVAL (10 * HZ)
2883 static void pqi_heartbeat_timer_handler(struct timer_list
*t
)
2886 u32 heartbeat_count
;
2887 struct pqi_ctrl_info
*ctrl_info
= from_timer(ctrl_info
, t
,
2890 pqi_check_ctrl_health(ctrl_info
);
2891 if (pqi_ctrl_offline(ctrl_info
))
2894 num_interrupts
= atomic_read(&ctrl_info
->num_interrupts
);
2895 heartbeat_count
= pqi_read_heartbeat_counter(ctrl_info
);
2897 if (num_interrupts
== ctrl_info
->previous_num_interrupts
) {
2898 if (heartbeat_count
== ctrl_info
->previous_heartbeat_count
) {
2899 dev_err(&ctrl_info
->pci_dev
->dev
,
2900 "no heartbeat detected - last heartbeat count: %u\n",
2902 pqi_take_ctrl_offline(ctrl_info
);
2906 ctrl_info
->previous_num_interrupts
= num_interrupts
;
2909 ctrl_info
->previous_heartbeat_count
= heartbeat_count
;
2910 mod_timer(&ctrl_info
->heartbeat_timer
,
2911 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
);
2914 static void pqi_start_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
2916 if (!ctrl_info
->heartbeat_counter
)
2919 ctrl_info
->previous_num_interrupts
=
2920 atomic_read(&ctrl_info
->num_interrupts
);
2921 ctrl_info
->previous_heartbeat_count
=
2922 pqi_read_heartbeat_counter(ctrl_info
);
2924 ctrl_info
->heartbeat_timer
.expires
=
2925 jiffies
+ PQI_HEARTBEAT_TIMER_INTERVAL
;
2926 add_timer(&ctrl_info
->heartbeat_timer
);
2929 static inline void pqi_stop_heartbeat_timer(struct pqi_ctrl_info
*ctrl_info
)
2931 del_timer_sync(&ctrl_info
->heartbeat_timer
);
2934 static inline int pqi_event_type_to_event_index(unsigned int event_type
)
2938 for (index
= 0; index
< ARRAY_SIZE(pqi_supported_event_types
); index
++)
2939 if (event_type
== pqi_supported_event_types
[index
])
2945 static inline bool pqi_is_supported_event(unsigned int event_type
)
2947 return pqi_event_type_to_event_index(event_type
) != -1;
2950 static unsigned int pqi_process_event_intr(struct pqi_ctrl_info
*ctrl_info
)
2952 unsigned int num_events
;
2955 struct pqi_event_queue
*event_queue
;
2956 struct pqi_event_response
*response
;
2957 struct pqi_event
*event
;
2960 event_queue
= &ctrl_info
->event_queue
;
2962 oq_ci
= event_queue
->oq_ci_copy
;
2965 oq_pi
= readl(event_queue
->oq_pi
);
2970 response
= event_queue
->oq_element_array
+
2971 (oq_ci
* PQI_EVENT_OQ_ELEMENT_LENGTH
);
2974 pqi_event_type_to_event_index(response
->event_type
);
2976 if (event_index
>= 0) {
2977 if (response
->request_acknowlege
) {
2978 event
= &ctrl_info
->events
[event_index
];
2979 event
->pending
= true;
2980 event
->event_type
= response
->event_type
;
2981 event
->event_id
= response
->event_id
;
2982 event
->additional_event_id
=
2983 response
->additional_event_id
;
2987 oq_ci
= (oq_ci
+ 1) % PQI_NUM_EVENT_QUEUE_ELEMENTS
;
2991 event_queue
->oq_ci_copy
= oq_ci
;
2992 writel(oq_ci
, event_queue
->oq_ci
);
2993 schedule_work(&ctrl_info
->event_work
);
2999 #define PQI_LEGACY_INTX_MASK 0x1
3001 static inline void pqi_configure_legacy_intx(struct pqi_ctrl_info
*ctrl_info
,
3005 struct pqi_device_registers __iomem
*pqi_registers
;
3006 volatile void __iomem
*register_addr
;
3008 pqi_registers
= ctrl_info
->pqi_registers
;
3011 register_addr
= &pqi_registers
->legacy_intx_mask_clear
;
3013 register_addr
= &pqi_registers
->legacy_intx_mask_set
;
3015 intx_mask
= readl(register_addr
);
3016 intx_mask
|= PQI_LEGACY_INTX_MASK
;
3017 writel(intx_mask
, register_addr
);
3020 static void pqi_change_irq_mode(struct pqi_ctrl_info
*ctrl_info
,
3021 enum pqi_irq_mode new_mode
)
3023 switch (ctrl_info
->irq_mode
) {
3029 pqi_configure_legacy_intx(ctrl_info
, true);
3030 sis_enable_intx(ctrl_info
);
3039 pqi_configure_legacy_intx(ctrl_info
, false);
3040 sis_enable_msix(ctrl_info
);
3045 pqi_configure_legacy_intx(ctrl_info
, false);
3052 sis_enable_msix(ctrl_info
);
3055 pqi_configure_legacy_intx(ctrl_info
, true);
3056 sis_enable_intx(ctrl_info
);
3064 ctrl_info
->irq_mode
= new_mode
;
3067 #define PQI_LEGACY_INTX_PENDING 0x1
3069 static inline bool pqi_is_valid_irq(struct pqi_ctrl_info
*ctrl_info
)
3074 switch (ctrl_info
->irq_mode
) {
3080 readl(&ctrl_info
->pqi_registers
->legacy_intx_status
);
3081 if (intx_status
& PQI_LEGACY_INTX_PENDING
)
3095 static irqreturn_t
pqi_irq_handler(int irq
, void *data
)
3097 struct pqi_ctrl_info
*ctrl_info
;
3098 struct pqi_queue_group
*queue_group
;
3099 unsigned int num_responses_handled
;
3102 ctrl_info
= queue_group
->ctrl_info
;
3104 if (!pqi_is_valid_irq(ctrl_info
))
3107 num_responses_handled
= pqi_process_io_intr(ctrl_info
, queue_group
);
3109 if (irq
== ctrl_info
->event_irq
)
3110 num_responses_handled
+= pqi_process_event_intr(ctrl_info
);
3112 if (num_responses_handled
)
3113 atomic_inc(&ctrl_info
->num_interrupts
);
3115 pqi_start_io(ctrl_info
, queue_group
, RAID_PATH
, NULL
);
3116 pqi_start_io(ctrl_info
, queue_group
, AIO_PATH
, NULL
);
3121 static int pqi_request_irqs(struct pqi_ctrl_info
*ctrl_info
)
3123 struct pci_dev
*pci_dev
= ctrl_info
->pci_dev
;
3127 ctrl_info
->event_irq
= pci_irq_vector(pci_dev
, 0);
3129 for (i
= 0; i
< ctrl_info
->num_msix_vectors_enabled
; i
++) {
3130 rc
= request_irq(pci_irq_vector(pci_dev
, i
), pqi_irq_handler
, 0,
3131 DRIVER_NAME_SHORT
, &ctrl_info
->queue_groups
[i
]);
3133 dev_err(&pci_dev
->dev
,
3134 "irq %u init failed with error %d\n",
3135 pci_irq_vector(pci_dev
, i
), rc
);
3138 ctrl_info
->num_msix_vectors_initialized
++;
3144 static void pqi_free_irqs(struct pqi_ctrl_info
*ctrl_info
)
3148 for (i
= 0; i
< ctrl_info
->num_msix_vectors_initialized
; i
++)
3149 free_irq(pci_irq_vector(ctrl_info
->pci_dev
, i
),
3150 &ctrl_info
->queue_groups
[i
]);
3152 ctrl_info
->num_msix_vectors_initialized
= 0;
3155 static int pqi_enable_msix_interrupts(struct pqi_ctrl_info
*ctrl_info
)
3157 int num_vectors_enabled
;
3159 num_vectors_enabled
= pci_alloc_irq_vectors(ctrl_info
->pci_dev
,
3160 PQI_MIN_MSIX_VECTORS
, ctrl_info
->num_queue_groups
,
3161 PCI_IRQ_MSIX
| PCI_IRQ_AFFINITY
);
3162 if (num_vectors_enabled
< 0) {
3163 dev_err(&ctrl_info
->pci_dev
->dev
,
3164 "MSI-X init failed with error %d\n",
3165 num_vectors_enabled
);
3166 return num_vectors_enabled
;
3169 ctrl_info
->num_msix_vectors_enabled
= num_vectors_enabled
;
3170 ctrl_info
->irq_mode
= IRQ_MODE_MSIX
;
3174 static void pqi_disable_msix_interrupts(struct pqi_ctrl_info
*ctrl_info
)
3176 if (ctrl_info
->num_msix_vectors_enabled
) {
3177 pci_free_irq_vectors(ctrl_info
->pci_dev
);
3178 ctrl_info
->num_msix_vectors_enabled
= 0;
3182 static int pqi_alloc_operational_queues(struct pqi_ctrl_info
*ctrl_info
)
3185 size_t alloc_length
;
3186 size_t element_array_length_per_iq
;
3187 size_t element_array_length_per_oq
;
3188 void *element_array
;
3189 void __iomem
*next_queue_index
;
3190 void *aligned_pointer
;
3191 unsigned int num_inbound_queues
;
3192 unsigned int num_outbound_queues
;
3193 unsigned int num_queue_indexes
;
3194 struct pqi_queue_group
*queue_group
;
3196 element_array_length_per_iq
=
3197 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
*
3198 ctrl_info
->num_elements_per_iq
;
3199 element_array_length_per_oq
=
3200 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
*
3201 ctrl_info
->num_elements_per_oq
;
3202 num_inbound_queues
= ctrl_info
->num_queue_groups
* 2;
3203 num_outbound_queues
= ctrl_info
->num_queue_groups
;
3204 num_queue_indexes
= (ctrl_info
->num_queue_groups
* 3) + 1;
3206 aligned_pointer
= NULL
;
3208 for (i
= 0; i
< num_inbound_queues
; i
++) {
3209 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3210 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3211 aligned_pointer
+= element_array_length_per_iq
;
3214 for (i
= 0; i
< num_outbound_queues
; i
++) {
3215 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3216 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3217 aligned_pointer
+= element_array_length_per_oq
;
3220 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3221 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3222 aligned_pointer
+= PQI_NUM_EVENT_QUEUE_ELEMENTS
*
3223 PQI_EVENT_OQ_ELEMENT_LENGTH
;
3225 for (i
= 0; i
< num_queue_indexes
; i
++) {
3226 aligned_pointer
= PTR_ALIGN(aligned_pointer
,
3227 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3228 aligned_pointer
+= sizeof(pqi_index_t
);
3231 alloc_length
= (size_t)aligned_pointer
+
3232 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
;
3234 alloc_length
+= PQI_EXTRA_SGL_MEMORY
;
3236 ctrl_info
->queue_memory_base
=
3237 dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
3239 &ctrl_info
->queue_memory_base_dma_handle
, GFP_KERNEL
);
3241 if (!ctrl_info
->queue_memory_base
)
3244 ctrl_info
->queue_memory_length
= alloc_length
;
3246 element_array
= PTR_ALIGN(ctrl_info
->queue_memory_base
,
3247 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3249 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3250 queue_group
= &ctrl_info
->queue_groups
[i
];
3251 queue_group
->iq_element_array
[RAID_PATH
] = element_array
;
3252 queue_group
->iq_element_array_bus_addr
[RAID_PATH
] =
3253 ctrl_info
->queue_memory_base_dma_handle
+
3254 (element_array
- ctrl_info
->queue_memory_base
);
3255 element_array
+= element_array_length_per_iq
;
3256 element_array
= PTR_ALIGN(element_array
,
3257 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3258 queue_group
->iq_element_array
[AIO_PATH
] = element_array
;
3259 queue_group
->iq_element_array_bus_addr
[AIO_PATH
] =
3260 ctrl_info
->queue_memory_base_dma_handle
+
3261 (element_array
- ctrl_info
->queue_memory_base
);
3262 element_array
+= element_array_length_per_iq
;
3263 element_array
= PTR_ALIGN(element_array
,
3264 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3267 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3268 queue_group
= &ctrl_info
->queue_groups
[i
];
3269 queue_group
->oq_element_array
= element_array
;
3270 queue_group
->oq_element_array_bus_addr
=
3271 ctrl_info
->queue_memory_base_dma_handle
+
3272 (element_array
- ctrl_info
->queue_memory_base
);
3273 element_array
+= element_array_length_per_oq
;
3274 element_array
= PTR_ALIGN(element_array
,
3275 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3278 ctrl_info
->event_queue
.oq_element_array
= element_array
;
3279 ctrl_info
->event_queue
.oq_element_array_bus_addr
=
3280 ctrl_info
->queue_memory_base_dma_handle
+
3281 (element_array
- ctrl_info
->queue_memory_base
);
3282 element_array
+= PQI_NUM_EVENT_QUEUE_ELEMENTS
*
3283 PQI_EVENT_OQ_ELEMENT_LENGTH
;
3285 next_queue_index
= (void __iomem
*)PTR_ALIGN(element_array
,
3286 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3288 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3289 queue_group
= &ctrl_info
->queue_groups
[i
];
3290 queue_group
->iq_ci
[RAID_PATH
] = next_queue_index
;
3291 queue_group
->iq_ci_bus_addr
[RAID_PATH
] =
3292 ctrl_info
->queue_memory_base_dma_handle
+
3294 (void __iomem
*)ctrl_info
->queue_memory_base
);
3295 next_queue_index
+= sizeof(pqi_index_t
);
3296 next_queue_index
= PTR_ALIGN(next_queue_index
,
3297 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3298 queue_group
->iq_ci
[AIO_PATH
] = next_queue_index
;
3299 queue_group
->iq_ci_bus_addr
[AIO_PATH
] =
3300 ctrl_info
->queue_memory_base_dma_handle
+
3302 (void __iomem
*)ctrl_info
->queue_memory_base
);
3303 next_queue_index
+= sizeof(pqi_index_t
);
3304 next_queue_index
= PTR_ALIGN(next_queue_index
,
3305 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3306 queue_group
->oq_pi
= next_queue_index
;
3307 queue_group
->oq_pi_bus_addr
=
3308 ctrl_info
->queue_memory_base_dma_handle
+
3310 (void __iomem
*)ctrl_info
->queue_memory_base
);
3311 next_queue_index
+= sizeof(pqi_index_t
);
3312 next_queue_index
= PTR_ALIGN(next_queue_index
,
3313 PQI_OPERATIONAL_INDEX_ALIGNMENT
);
3316 ctrl_info
->event_queue
.oq_pi
= next_queue_index
;
3317 ctrl_info
->event_queue
.oq_pi_bus_addr
=
3318 ctrl_info
->queue_memory_base_dma_handle
+
3320 (void __iomem
*)ctrl_info
->queue_memory_base
);
3325 static void pqi_init_operational_queues(struct pqi_ctrl_info
*ctrl_info
)
3328 u16 next_iq_id
= PQI_MIN_OPERATIONAL_QUEUE_ID
;
3329 u16 next_oq_id
= PQI_MIN_OPERATIONAL_QUEUE_ID
;
3332 * Initialize the backpointers to the controller structure in
3333 * each operational queue group structure.
3335 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++)
3336 ctrl_info
->queue_groups
[i
].ctrl_info
= ctrl_info
;
3339 * Assign IDs to all operational queues. Note that the IDs
3340 * assigned to operational IQs are independent of the IDs
3341 * assigned to operational OQs.
3343 ctrl_info
->event_queue
.oq_id
= next_oq_id
++;
3344 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3345 ctrl_info
->queue_groups
[i
].iq_id
[RAID_PATH
] = next_iq_id
++;
3346 ctrl_info
->queue_groups
[i
].iq_id
[AIO_PATH
] = next_iq_id
++;
3347 ctrl_info
->queue_groups
[i
].oq_id
= next_oq_id
++;
3351 * Assign MSI-X table entry indexes to all queues. Note that the
3352 * interrupt for the event queue is shared with the first queue group.
3354 ctrl_info
->event_queue
.int_msg_num
= 0;
3355 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++)
3356 ctrl_info
->queue_groups
[i
].int_msg_num
= i
;
3358 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
3359 spin_lock_init(&ctrl_info
->queue_groups
[i
].submit_lock
[0]);
3360 spin_lock_init(&ctrl_info
->queue_groups
[i
].submit_lock
[1]);
3361 INIT_LIST_HEAD(&ctrl_info
->queue_groups
[i
].request_list
[0]);
3362 INIT_LIST_HEAD(&ctrl_info
->queue_groups
[i
].request_list
[1]);
3366 static int pqi_alloc_admin_queues(struct pqi_ctrl_info
*ctrl_info
)
3368 size_t alloc_length
;
3369 struct pqi_admin_queues_aligned
*admin_queues_aligned
;
3370 struct pqi_admin_queues
*admin_queues
;
3372 alloc_length
= sizeof(struct pqi_admin_queues_aligned
) +
3373 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
;
3375 ctrl_info
->admin_queue_memory_base
=
3376 dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
3378 &ctrl_info
->admin_queue_memory_base_dma_handle
,
3381 if (!ctrl_info
->admin_queue_memory_base
)
3384 ctrl_info
->admin_queue_memory_length
= alloc_length
;
3386 admin_queues
= &ctrl_info
->admin_queues
;
3387 admin_queues_aligned
= PTR_ALIGN(ctrl_info
->admin_queue_memory_base
,
3388 PQI_QUEUE_ELEMENT_ARRAY_ALIGNMENT
);
3389 admin_queues
->iq_element_array
=
3390 &admin_queues_aligned
->iq_element_array
;
3391 admin_queues
->oq_element_array
=
3392 &admin_queues_aligned
->oq_element_array
;
3393 admin_queues
->iq_ci
= &admin_queues_aligned
->iq_ci
;
3394 admin_queues
->oq_pi
=
3395 (pqi_index_t __iomem
*)&admin_queues_aligned
->oq_pi
;
3397 admin_queues
->iq_element_array_bus_addr
=
3398 ctrl_info
->admin_queue_memory_base_dma_handle
+
3399 (admin_queues
->iq_element_array
-
3400 ctrl_info
->admin_queue_memory_base
);
3401 admin_queues
->oq_element_array_bus_addr
=
3402 ctrl_info
->admin_queue_memory_base_dma_handle
+
3403 (admin_queues
->oq_element_array
-
3404 ctrl_info
->admin_queue_memory_base
);
3405 admin_queues
->iq_ci_bus_addr
=
3406 ctrl_info
->admin_queue_memory_base_dma_handle
+
3407 ((void *)admin_queues
->iq_ci
-
3408 ctrl_info
->admin_queue_memory_base
);
3409 admin_queues
->oq_pi_bus_addr
=
3410 ctrl_info
->admin_queue_memory_base_dma_handle
+
3411 ((void __iomem
*)admin_queues
->oq_pi
-
3412 (void __iomem
*)ctrl_info
->admin_queue_memory_base
);
3417 #define PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES HZ
3418 #define PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS 1
3420 static int pqi_create_admin_queues(struct pqi_ctrl_info
*ctrl_info
)
3422 struct pqi_device_registers __iomem
*pqi_registers
;
3423 struct pqi_admin_queues
*admin_queues
;
3424 unsigned long timeout
;
3428 pqi_registers
= ctrl_info
->pqi_registers
;
3429 admin_queues
= &ctrl_info
->admin_queues
;
3431 writeq((u64
)admin_queues
->iq_element_array_bus_addr
,
3432 &pqi_registers
->admin_iq_element_array_addr
);
3433 writeq((u64
)admin_queues
->oq_element_array_bus_addr
,
3434 &pqi_registers
->admin_oq_element_array_addr
);
3435 writeq((u64
)admin_queues
->iq_ci_bus_addr
,
3436 &pqi_registers
->admin_iq_ci_addr
);
3437 writeq((u64
)admin_queues
->oq_pi_bus_addr
,
3438 &pqi_registers
->admin_oq_pi_addr
);
3440 reg
= PQI_ADMIN_IQ_NUM_ELEMENTS
|
3441 (PQI_ADMIN_OQ_NUM_ELEMENTS
) << 8 |
3442 (admin_queues
->int_msg_num
<< 16);
3443 writel(reg
, &pqi_registers
->admin_iq_num_elements
);
3444 writel(PQI_CREATE_ADMIN_QUEUE_PAIR
,
3445 &pqi_registers
->function_and_status_code
);
3447 timeout
= PQI_ADMIN_QUEUE_CREATE_TIMEOUT_JIFFIES
+ jiffies
;
3449 status
= readb(&pqi_registers
->function_and_status_code
);
3450 if (status
== PQI_STATUS_IDLE
)
3452 if (time_after(jiffies
, timeout
))
3454 msleep(PQI_ADMIN_QUEUE_CREATE_POLL_INTERVAL_MSECS
);
3458 * The offset registers are not initialized to the correct
3459 * offsets until *after* the create admin queue pair command
3460 * completes successfully.
3462 admin_queues
->iq_pi
= ctrl_info
->iomem_base
+
3463 PQI_DEVICE_REGISTERS_OFFSET
+
3464 readq(&pqi_registers
->admin_iq_pi_offset
);
3465 admin_queues
->oq_ci
= ctrl_info
->iomem_base
+
3466 PQI_DEVICE_REGISTERS_OFFSET
+
3467 readq(&pqi_registers
->admin_oq_ci_offset
);
3472 static void pqi_submit_admin_request(struct pqi_ctrl_info
*ctrl_info
,
3473 struct pqi_general_admin_request
*request
)
3475 struct pqi_admin_queues
*admin_queues
;
3479 admin_queues
= &ctrl_info
->admin_queues
;
3480 iq_pi
= admin_queues
->iq_pi_copy
;
3482 next_element
= admin_queues
->iq_element_array
+
3483 (iq_pi
* PQI_ADMIN_IQ_ELEMENT_LENGTH
);
3485 memcpy(next_element
, request
, sizeof(*request
));
3487 iq_pi
= (iq_pi
+ 1) % PQI_ADMIN_IQ_NUM_ELEMENTS
;
3488 admin_queues
->iq_pi_copy
= iq_pi
;
3491 * This write notifies the controller that an IU is available to be
3494 writel(iq_pi
, admin_queues
->iq_pi
);
3497 #define PQI_ADMIN_REQUEST_TIMEOUT_SECS 60
3499 static int pqi_poll_for_admin_response(struct pqi_ctrl_info
*ctrl_info
,
3500 struct pqi_general_admin_response
*response
)
3502 struct pqi_admin_queues
*admin_queues
;
3505 unsigned long timeout
;
3507 admin_queues
= &ctrl_info
->admin_queues
;
3508 oq_ci
= admin_queues
->oq_ci_copy
;
3510 timeout
= (PQI_ADMIN_REQUEST_TIMEOUT_SECS
* HZ
) + jiffies
;
3513 oq_pi
= readl(admin_queues
->oq_pi
);
3516 if (time_after(jiffies
, timeout
)) {
3517 dev_err(&ctrl_info
->pci_dev
->dev
,
3518 "timed out waiting for admin response\n");
3521 if (!sis_is_firmware_running(ctrl_info
))
3523 usleep_range(1000, 2000);
3526 memcpy(response
, admin_queues
->oq_element_array
+
3527 (oq_ci
* PQI_ADMIN_OQ_ELEMENT_LENGTH
), sizeof(*response
));
3529 oq_ci
= (oq_ci
+ 1) % PQI_ADMIN_OQ_NUM_ELEMENTS
;
3530 admin_queues
->oq_ci_copy
= oq_ci
;
3531 writel(oq_ci
, admin_queues
->oq_ci
);
3536 static void pqi_start_io(struct pqi_ctrl_info
*ctrl_info
,
3537 struct pqi_queue_group
*queue_group
, enum pqi_io_path path
,
3538 struct pqi_io_request
*io_request
)
3540 struct pqi_io_request
*next
;
3545 unsigned long flags
;
3546 unsigned int num_elements_needed
;
3547 unsigned int num_elements_to_end_of_queue
;
3549 struct pqi_iu_header
*request
;
3551 spin_lock_irqsave(&queue_group
->submit_lock
[path
], flags
);
3554 io_request
->queue_group
= queue_group
;
3555 list_add_tail(&io_request
->request_list_entry
,
3556 &queue_group
->request_list
[path
]);
3559 iq_pi
= queue_group
->iq_pi_copy
[path
];
3561 list_for_each_entry_safe(io_request
, next
,
3562 &queue_group
->request_list
[path
], request_list_entry
) {
3564 request
= io_request
->iu
;
3566 iu_length
= get_unaligned_le16(&request
->iu_length
) +
3567 PQI_REQUEST_HEADER_LENGTH
;
3568 num_elements_needed
=
3569 DIV_ROUND_UP(iu_length
,
3570 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3572 iq_ci
= readl(queue_group
->iq_ci
[path
]);
3574 if (num_elements_needed
> pqi_num_elements_free(iq_pi
, iq_ci
,
3575 ctrl_info
->num_elements_per_iq
))
3578 put_unaligned_le16(queue_group
->oq_id
,
3579 &request
->response_queue_id
);
3581 next_element
= queue_group
->iq_element_array
[path
] +
3582 (iq_pi
* PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3584 num_elements_to_end_of_queue
=
3585 ctrl_info
->num_elements_per_iq
- iq_pi
;
3587 if (num_elements_needed
<= num_elements_to_end_of_queue
) {
3588 memcpy(next_element
, request
, iu_length
);
3590 copy_count
= num_elements_to_end_of_queue
*
3591 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
;
3592 memcpy(next_element
, request
, copy_count
);
3593 memcpy(queue_group
->iq_element_array
[path
],
3594 (u8
*)request
+ copy_count
,
3595 iu_length
- copy_count
);
3598 iq_pi
= (iq_pi
+ num_elements_needed
) %
3599 ctrl_info
->num_elements_per_iq
;
3601 list_del(&io_request
->request_list_entry
);
3604 if (iq_pi
!= queue_group
->iq_pi_copy
[path
]) {
3605 queue_group
->iq_pi_copy
[path
] = iq_pi
;
3607 * This write notifies the controller that one or more IUs are
3608 * available to be processed.
3610 writel(iq_pi
, queue_group
->iq_pi
[path
]);
3613 spin_unlock_irqrestore(&queue_group
->submit_lock
[path
], flags
);
3616 #define PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS 10
3618 static int pqi_wait_for_completion_io(struct pqi_ctrl_info
*ctrl_info
,
3619 struct completion
*wait
)
3624 if (wait_for_completion_io_timeout(wait
,
3625 PQI_WAIT_FOR_COMPLETION_IO_TIMEOUT_SECS
* HZ
)) {
3630 pqi_check_ctrl_health(ctrl_info
);
3631 if (pqi_ctrl_offline(ctrl_info
)) {
3640 static void pqi_raid_synchronous_complete(struct pqi_io_request
*io_request
,
3643 struct completion
*waiting
= context
;
3648 static int pqi_process_raid_io_error_synchronous(struct pqi_raid_error_info
3653 switch (error_info
->data_out_result
) {
3654 case PQI_DATA_IN_OUT_GOOD
:
3655 if (error_info
->status
== SAM_STAT_GOOD
)
3658 case PQI_DATA_IN_OUT_UNDERFLOW
:
3659 if (error_info
->status
== SAM_STAT_GOOD
||
3660 error_info
->status
== SAM_STAT_CHECK_CONDITION
)
3663 case PQI_DATA_IN_OUT_ABORTED
:
3664 rc
= PQI_CMD_STATUS_ABORTED
;
3671 static int pqi_submit_raid_request_synchronous(struct pqi_ctrl_info
*ctrl_info
,
3672 struct pqi_iu_header
*request
, unsigned int flags
,
3673 struct pqi_raid_error_info
*error_info
, unsigned long timeout_msecs
)
3676 struct pqi_io_request
*io_request
;
3677 unsigned long start_jiffies
;
3678 unsigned long msecs_blocked
;
3680 DECLARE_COMPLETION_ONSTACK(wait
);
3683 * Note that specifying PQI_SYNC_FLAGS_INTERRUPTABLE and a timeout value
3684 * are mutually exclusive.
3687 if (flags
& PQI_SYNC_FLAGS_INTERRUPTABLE
) {
3688 if (down_interruptible(&ctrl_info
->sync_request_sem
))
3689 return -ERESTARTSYS
;
3691 if (timeout_msecs
== NO_TIMEOUT
) {
3692 down(&ctrl_info
->sync_request_sem
);
3694 start_jiffies
= jiffies
;
3695 if (down_timeout(&ctrl_info
->sync_request_sem
,
3696 msecs_to_jiffies(timeout_msecs
)))
3699 jiffies_to_msecs(jiffies
- start_jiffies
);
3700 if (msecs_blocked
>= timeout_msecs
) {
3704 timeout_msecs
-= msecs_blocked
;
3708 pqi_ctrl_busy(ctrl_info
);
3709 timeout_msecs
= pqi_wait_if_ctrl_blocked(ctrl_info
, timeout_msecs
);
3710 if (timeout_msecs
== 0) {
3711 pqi_ctrl_unbusy(ctrl_info
);
3716 if (pqi_ctrl_offline(ctrl_info
)) {
3717 pqi_ctrl_unbusy(ctrl_info
);
3722 io_request
= pqi_alloc_io_request(ctrl_info
);
3724 put_unaligned_le16(io_request
->index
,
3725 &(((struct pqi_raid_path_request
*)request
)->request_id
));
3727 if (request
->iu_type
== PQI_REQUEST_IU_RAID_PATH_IO
)
3728 ((struct pqi_raid_path_request
*)request
)->error_index
=
3729 ((struct pqi_raid_path_request
*)request
)->request_id
;
3731 iu_length
= get_unaligned_le16(&request
->iu_length
) +
3732 PQI_REQUEST_HEADER_LENGTH
;
3733 memcpy(io_request
->iu
, request
, iu_length
);
3735 io_request
->io_complete_callback
= pqi_raid_synchronous_complete
;
3736 io_request
->context
= &wait
;
3738 pqi_start_io(ctrl_info
,
3739 &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
], RAID_PATH
,
3742 pqi_ctrl_unbusy(ctrl_info
);
3744 if (timeout_msecs
== NO_TIMEOUT
) {
3745 pqi_wait_for_completion_io(ctrl_info
, &wait
);
3747 if (!wait_for_completion_io_timeout(&wait
,
3748 msecs_to_jiffies(timeout_msecs
))) {
3749 dev_warn(&ctrl_info
->pci_dev
->dev
,
3750 "command timed out\n");
3756 if (io_request
->error_info
)
3757 memcpy(error_info
, io_request
->error_info
,
3758 sizeof(*error_info
));
3760 memset(error_info
, 0, sizeof(*error_info
));
3761 } else if (rc
== 0 && io_request
->error_info
) {
3762 rc
= pqi_process_raid_io_error_synchronous(
3763 io_request
->error_info
);
3766 pqi_free_io_request(io_request
);
3769 up(&ctrl_info
->sync_request_sem
);
3774 static int pqi_validate_admin_response(
3775 struct pqi_general_admin_response
*response
, u8 expected_function_code
)
3777 if (response
->header
.iu_type
!= PQI_RESPONSE_IU_GENERAL_ADMIN
)
3780 if (get_unaligned_le16(&response
->header
.iu_length
) !=
3781 PQI_GENERAL_ADMIN_IU_LENGTH
)
3784 if (response
->function_code
!= expected_function_code
)
3787 if (response
->status
!= PQI_GENERAL_ADMIN_STATUS_SUCCESS
)
3793 static int pqi_submit_admin_request_synchronous(
3794 struct pqi_ctrl_info
*ctrl_info
,
3795 struct pqi_general_admin_request
*request
,
3796 struct pqi_general_admin_response
*response
)
3800 pqi_submit_admin_request(ctrl_info
, request
);
3802 rc
= pqi_poll_for_admin_response(ctrl_info
, response
);
3805 rc
= pqi_validate_admin_response(response
,
3806 request
->function_code
);
3811 static int pqi_report_device_capability(struct pqi_ctrl_info
*ctrl_info
)
3814 struct pqi_general_admin_request request
;
3815 struct pqi_general_admin_response response
;
3816 struct pqi_device_capability
*capability
;
3817 struct pqi_iu_layer_descriptor
*sop_iu_layer_descriptor
;
3819 capability
= kmalloc(sizeof(*capability
), GFP_KERNEL
);
3823 memset(&request
, 0, sizeof(request
));
3825 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3826 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3827 &request
.header
.iu_length
);
3828 request
.function_code
=
3829 PQI_GENERAL_ADMIN_FUNCTION_REPORT_DEVICE_CAPABILITY
;
3830 put_unaligned_le32(sizeof(*capability
),
3831 &request
.data
.report_device_capability
.buffer_length
);
3833 rc
= pqi_map_single(ctrl_info
->pci_dev
,
3834 &request
.data
.report_device_capability
.sg_descriptor
,
3835 capability
, sizeof(*capability
),
3836 PCI_DMA_FROMDEVICE
);
3840 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
3843 pqi_pci_unmap(ctrl_info
->pci_dev
,
3844 &request
.data
.report_device_capability
.sg_descriptor
, 1,
3845 PCI_DMA_FROMDEVICE
);
3850 if (response
.status
!= PQI_GENERAL_ADMIN_STATUS_SUCCESS
) {
3855 ctrl_info
->max_inbound_queues
=
3856 get_unaligned_le16(&capability
->max_inbound_queues
);
3857 ctrl_info
->max_elements_per_iq
=
3858 get_unaligned_le16(&capability
->max_elements_per_iq
);
3859 ctrl_info
->max_iq_element_length
=
3860 get_unaligned_le16(&capability
->max_iq_element_length
)
3862 ctrl_info
->max_outbound_queues
=
3863 get_unaligned_le16(&capability
->max_outbound_queues
);
3864 ctrl_info
->max_elements_per_oq
=
3865 get_unaligned_le16(&capability
->max_elements_per_oq
);
3866 ctrl_info
->max_oq_element_length
=
3867 get_unaligned_le16(&capability
->max_oq_element_length
)
3870 sop_iu_layer_descriptor
=
3871 &capability
->iu_layer_descriptors
[PQI_PROTOCOL_SOP
];
3873 ctrl_info
->max_inbound_iu_length_per_firmware
=
3875 &sop_iu_layer_descriptor
->max_inbound_iu_length
);
3876 ctrl_info
->inbound_spanning_supported
=
3877 sop_iu_layer_descriptor
->inbound_spanning_supported
;
3878 ctrl_info
->outbound_spanning_supported
=
3879 sop_iu_layer_descriptor
->outbound_spanning_supported
;
3887 static int pqi_validate_device_capability(struct pqi_ctrl_info
*ctrl_info
)
3889 if (ctrl_info
->max_iq_element_length
<
3890 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) {
3891 dev_err(&ctrl_info
->pci_dev
->dev
,
3892 "max. inbound queue element length of %d is less than the required length of %d\n",
3893 ctrl_info
->max_iq_element_length
,
3894 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3898 if (ctrl_info
->max_oq_element_length
<
3899 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
) {
3900 dev_err(&ctrl_info
->pci_dev
->dev
,
3901 "max. outbound queue element length of %d is less than the required length of %d\n",
3902 ctrl_info
->max_oq_element_length
,
3903 PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
);
3907 if (ctrl_info
->max_inbound_iu_length_per_firmware
<
3908 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) {
3909 dev_err(&ctrl_info
->pci_dev
->dev
,
3910 "max. inbound IU length of %u is less than the min. required length of %d\n",
3911 ctrl_info
->max_inbound_iu_length_per_firmware
,
3912 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
3916 if (!ctrl_info
->inbound_spanning_supported
) {
3917 dev_err(&ctrl_info
->pci_dev
->dev
,
3918 "the controller does not support inbound spanning\n");
3922 if (ctrl_info
->outbound_spanning_supported
) {
3923 dev_err(&ctrl_info
->pci_dev
->dev
,
3924 "the controller supports outbound spanning but this driver does not\n");
3931 static int pqi_create_event_queue(struct pqi_ctrl_info
*ctrl_info
)
3934 struct pqi_event_queue
*event_queue
;
3935 struct pqi_general_admin_request request
;
3936 struct pqi_general_admin_response response
;
3938 event_queue
= &ctrl_info
->event_queue
;
3941 * Create OQ (Outbound Queue - device to host queue) to dedicate
3944 memset(&request
, 0, sizeof(request
));
3945 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3946 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3947 &request
.header
.iu_length
);
3948 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ
;
3949 put_unaligned_le16(event_queue
->oq_id
,
3950 &request
.data
.create_operational_oq
.queue_id
);
3951 put_unaligned_le64((u64
)event_queue
->oq_element_array_bus_addr
,
3952 &request
.data
.create_operational_oq
.element_array_addr
);
3953 put_unaligned_le64((u64
)event_queue
->oq_pi_bus_addr
,
3954 &request
.data
.create_operational_oq
.pi_addr
);
3955 put_unaligned_le16(PQI_NUM_EVENT_QUEUE_ELEMENTS
,
3956 &request
.data
.create_operational_oq
.num_elements
);
3957 put_unaligned_le16(PQI_EVENT_OQ_ELEMENT_LENGTH
/ 16,
3958 &request
.data
.create_operational_oq
.element_length
);
3959 request
.data
.create_operational_oq
.queue_protocol
= PQI_PROTOCOL_SOP
;
3960 put_unaligned_le16(event_queue
->int_msg_num
,
3961 &request
.data
.create_operational_oq
.int_msg_num
);
3963 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
3968 event_queue
->oq_ci
= ctrl_info
->iomem_base
+
3969 PQI_DEVICE_REGISTERS_OFFSET
+
3971 &response
.data
.create_operational_oq
.oq_ci_offset
);
3976 static int pqi_create_queue_group(struct pqi_ctrl_info
*ctrl_info
,
3977 unsigned int group_number
)
3980 struct pqi_queue_group
*queue_group
;
3981 struct pqi_general_admin_request request
;
3982 struct pqi_general_admin_response response
;
3984 queue_group
= &ctrl_info
->queue_groups
[group_number
];
3987 * Create IQ (Inbound Queue - host to device queue) for
3990 memset(&request
, 0, sizeof(request
));
3991 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
3992 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
3993 &request
.header
.iu_length
);
3994 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ
;
3995 put_unaligned_le16(queue_group
->iq_id
[RAID_PATH
],
3996 &request
.data
.create_operational_iq
.queue_id
);
3998 (u64
)queue_group
->iq_element_array_bus_addr
[RAID_PATH
],
3999 &request
.data
.create_operational_iq
.element_array_addr
);
4000 put_unaligned_le64((u64
)queue_group
->iq_ci_bus_addr
[RAID_PATH
],
4001 &request
.data
.create_operational_iq
.ci_addr
);
4002 put_unaligned_le16(ctrl_info
->num_elements_per_iq
,
4003 &request
.data
.create_operational_iq
.num_elements
);
4004 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
/ 16,
4005 &request
.data
.create_operational_iq
.element_length
);
4006 request
.data
.create_operational_iq
.queue_protocol
= PQI_PROTOCOL_SOP
;
4008 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4011 dev_err(&ctrl_info
->pci_dev
->dev
,
4012 "error creating inbound RAID queue\n");
4016 queue_group
->iq_pi
[RAID_PATH
] = ctrl_info
->iomem_base
+
4017 PQI_DEVICE_REGISTERS_OFFSET
+
4019 &response
.data
.create_operational_iq
.iq_pi_offset
);
4022 * Create IQ (Inbound Queue - host to device queue) for
4023 * Advanced I/O (AIO) path.
4025 memset(&request
, 0, sizeof(request
));
4026 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
4027 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
4028 &request
.header
.iu_length
);
4029 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_IQ
;
4030 put_unaligned_le16(queue_group
->iq_id
[AIO_PATH
],
4031 &request
.data
.create_operational_iq
.queue_id
);
4032 put_unaligned_le64((u64
)queue_group
->
4033 iq_element_array_bus_addr
[AIO_PATH
],
4034 &request
.data
.create_operational_iq
.element_array_addr
);
4035 put_unaligned_le64((u64
)queue_group
->iq_ci_bus_addr
[AIO_PATH
],
4036 &request
.data
.create_operational_iq
.ci_addr
);
4037 put_unaligned_le16(ctrl_info
->num_elements_per_iq
,
4038 &request
.data
.create_operational_iq
.num_elements
);
4039 put_unaligned_le16(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
/ 16,
4040 &request
.data
.create_operational_iq
.element_length
);
4041 request
.data
.create_operational_iq
.queue_protocol
= PQI_PROTOCOL_SOP
;
4043 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4046 dev_err(&ctrl_info
->pci_dev
->dev
,
4047 "error creating inbound AIO queue\n");
4051 queue_group
->iq_pi
[AIO_PATH
] = ctrl_info
->iomem_base
+
4052 PQI_DEVICE_REGISTERS_OFFSET
+
4054 &response
.data
.create_operational_iq
.iq_pi_offset
);
4057 * Designate the 2nd IQ as the AIO path. By default, all IQs are
4058 * assumed to be for RAID path I/O unless we change the queue's
4061 memset(&request
, 0, sizeof(request
));
4062 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
4063 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
4064 &request
.header
.iu_length
);
4065 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CHANGE_IQ_PROPERTY
;
4066 put_unaligned_le16(queue_group
->iq_id
[AIO_PATH
],
4067 &request
.data
.change_operational_iq_properties
.queue_id
);
4068 put_unaligned_le32(PQI_IQ_PROPERTY_IS_AIO_QUEUE
,
4069 &request
.data
.change_operational_iq_properties
.vendor_specific
);
4071 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4074 dev_err(&ctrl_info
->pci_dev
->dev
,
4075 "error changing queue property\n");
4080 * Create OQ (Outbound Queue - device to host queue).
4082 memset(&request
, 0, sizeof(request
));
4083 request
.header
.iu_type
= PQI_REQUEST_IU_GENERAL_ADMIN
;
4084 put_unaligned_le16(PQI_GENERAL_ADMIN_IU_LENGTH
,
4085 &request
.header
.iu_length
);
4086 request
.function_code
= PQI_GENERAL_ADMIN_FUNCTION_CREATE_OQ
;
4087 put_unaligned_le16(queue_group
->oq_id
,
4088 &request
.data
.create_operational_oq
.queue_id
);
4089 put_unaligned_le64((u64
)queue_group
->oq_element_array_bus_addr
,
4090 &request
.data
.create_operational_oq
.element_array_addr
);
4091 put_unaligned_le64((u64
)queue_group
->oq_pi_bus_addr
,
4092 &request
.data
.create_operational_oq
.pi_addr
);
4093 put_unaligned_le16(ctrl_info
->num_elements_per_oq
,
4094 &request
.data
.create_operational_oq
.num_elements
);
4095 put_unaligned_le16(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
/ 16,
4096 &request
.data
.create_operational_oq
.element_length
);
4097 request
.data
.create_operational_oq
.queue_protocol
= PQI_PROTOCOL_SOP
;
4098 put_unaligned_le16(queue_group
->int_msg_num
,
4099 &request
.data
.create_operational_oq
.int_msg_num
);
4101 rc
= pqi_submit_admin_request_synchronous(ctrl_info
, &request
,
4104 dev_err(&ctrl_info
->pci_dev
->dev
,
4105 "error creating outbound queue\n");
4109 queue_group
->oq_ci
= ctrl_info
->iomem_base
+
4110 PQI_DEVICE_REGISTERS_OFFSET
+
4112 &response
.data
.create_operational_oq
.oq_ci_offset
);
4117 static int pqi_create_queues(struct pqi_ctrl_info
*ctrl_info
)
4122 rc
= pqi_create_event_queue(ctrl_info
);
4124 dev_err(&ctrl_info
->pci_dev
->dev
,
4125 "error creating event queue\n");
4129 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
4130 rc
= pqi_create_queue_group(ctrl_info
, i
);
4132 dev_err(&ctrl_info
->pci_dev
->dev
,
4133 "error creating queue group number %u/%u\n",
4134 i
, ctrl_info
->num_queue_groups
);
4142 #define PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH \
4143 (offsetof(struct pqi_event_config, descriptors) + \
4144 (PQI_MAX_EVENT_DESCRIPTORS * sizeof(struct pqi_event_descriptor)))
4146 static int pqi_configure_events(struct pqi_ctrl_info
*ctrl_info
,
4151 struct pqi_event_config
*event_config
;
4152 struct pqi_event_descriptor
*event_descriptor
;
4153 struct pqi_general_management_request request
;
4155 event_config
= kmalloc(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4160 memset(&request
, 0, sizeof(request
));
4162 request
.header
.iu_type
= PQI_REQUEST_IU_REPORT_VENDOR_EVENT_CONFIG
;
4163 put_unaligned_le16(offsetof(struct pqi_general_management_request
,
4164 data
.report_event_configuration
.sg_descriptors
[1]) -
4165 PQI_REQUEST_HEADER_LENGTH
, &request
.header
.iu_length
);
4166 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4167 &request
.data
.report_event_configuration
.buffer_length
);
4169 rc
= pqi_map_single(ctrl_info
->pci_dev
,
4170 request
.data
.report_event_configuration
.sg_descriptors
,
4171 event_config
, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4172 PCI_DMA_FROMDEVICE
);
4176 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
4177 0, NULL
, NO_TIMEOUT
);
4179 pqi_pci_unmap(ctrl_info
->pci_dev
,
4180 request
.data
.report_event_configuration
.sg_descriptors
, 1,
4181 PCI_DMA_FROMDEVICE
);
4186 for (i
= 0; i
< event_config
->num_event_descriptors
; i
++) {
4187 event_descriptor
= &event_config
->descriptors
[i
];
4188 if (enable_events
&&
4189 pqi_is_supported_event(event_descriptor
->event_type
))
4190 put_unaligned_le16(ctrl_info
->event_queue
.oq_id
,
4191 &event_descriptor
->oq_id
);
4193 put_unaligned_le16(0, &event_descriptor
->oq_id
);
4196 memset(&request
, 0, sizeof(request
));
4198 request
.header
.iu_type
= PQI_REQUEST_IU_SET_VENDOR_EVENT_CONFIG
;
4199 put_unaligned_le16(offsetof(struct pqi_general_management_request
,
4200 data
.report_event_configuration
.sg_descriptors
[1]) -
4201 PQI_REQUEST_HEADER_LENGTH
, &request
.header
.iu_length
);
4202 put_unaligned_le32(PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4203 &request
.data
.report_event_configuration
.buffer_length
);
4205 rc
= pqi_map_single(ctrl_info
->pci_dev
,
4206 request
.data
.report_event_configuration
.sg_descriptors
,
4207 event_config
, PQI_REPORT_EVENT_CONFIG_BUFFER_LENGTH
,
4212 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
, 0,
4215 pqi_pci_unmap(ctrl_info
->pci_dev
,
4216 request
.data
.report_event_configuration
.sg_descriptors
, 1,
4220 kfree(event_config
);
4225 static inline int pqi_enable_events(struct pqi_ctrl_info
*ctrl_info
)
4227 return pqi_configure_events(ctrl_info
, true);
4230 static inline int pqi_disable_events(struct pqi_ctrl_info
*ctrl_info
)
4232 return pqi_configure_events(ctrl_info
, false);
4235 static void pqi_free_all_io_requests(struct pqi_ctrl_info
*ctrl_info
)
4239 size_t sg_chain_buffer_length
;
4240 struct pqi_io_request
*io_request
;
4242 if (!ctrl_info
->io_request_pool
)
4245 dev
= &ctrl_info
->pci_dev
->dev
;
4246 sg_chain_buffer_length
= ctrl_info
->sg_chain_buffer_length
;
4247 io_request
= ctrl_info
->io_request_pool
;
4249 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
4250 kfree(io_request
->iu
);
4251 if (!io_request
->sg_chain_buffer
)
4253 dma_free_coherent(dev
, sg_chain_buffer_length
,
4254 io_request
->sg_chain_buffer
,
4255 io_request
->sg_chain_buffer_dma_handle
);
4259 kfree(ctrl_info
->io_request_pool
);
4260 ctrl_info
->io_request_pool
= NULL
;
4263 static inline int pqi_alloc_error_buffer(struct pqi_ctrl_info
*ctrl_info
)
4265 ctrl_info
->error_buffer
= dma_zalloc_coherent(&ctrl_info
->pci_dev
->dev
,
4266 ctrl_info
->error_buffer_length
,
4267 &ctrl_info
->error_buffer_dma_handle
, GFP_KERNEL
);
4269 if (!ctrl_info
->error_buffer
)
4275 static int pqi_alloc_io_resources(struct pqi_ctrl_info
*ctrl_info
)
4278 void *sg_chain_buffer
;
4279 size_t sg_chain_buffer_length
;
4280 dma_addr_t sg_chain_buffer_dma_handle
;
4282 struct pqi_io_request
*io_request
;
4284 ctrl_info
->io_request_pool
=
4285 kcalloc(ctrl_info
->max_io_slots
,
4286 sizeof(ctrl_info
->io_request_pool
[0]), GFP_KERNEL
);
4288 if (!ctrl_info
->io_request_pool
) {
4289 dev_err(&ctrl_info
->pci_dev
->dev
,
4290 "failed to allocate I/O request pool\n");
4294 dev
= &ctrl_info
->pci_dev
->dev
;
4295 sg_chain_buffer_length
= ctrl_info
->sg_chain_buffer_length
;
4296 io_request
= ctrl_info
->io_request_pool
;
4298 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
4300 kmalloc(ctrl_info
->max_inbound_iu_length
, GFP_KERNEL
);
4302 if (!io_request
->iu
) {
4303 dev_err(&ctrl_info
->pci_dev
->dev
,
4304 "failed to allocate IU buffers\n");
4308 sg_chain_buffer
= dma_alloc_coherent(dev
,
4309 sg_chain_buffer_length
, &sg_chain_buffer_dma_handle
,
4312 if (!sg_chain_buffer
) {
4313 dev_err(&ctrl_info
->pci_dev
->dev
,
4314 "failed to allocate PQI scatter-gather chain buffers\n");
4318 io_request
->index
= i
;
4319 io_request
->sg_chain_buffer
= sg_chain_buffer
;
4320 io_request
->sg_chain_buffer_dma_handle
=
4321 sg_chain_buffer_dma_handle
;
4328 pqi_free_all_io_requests(ctrl_info
);
4334 * Calculate required resources that are sized based on max. outstanding
4335 * requests and max. transfer size.
4338 static void pqi_calculate_io_resources(struct pqi_ctrl_info
*ctrl_info
)
4340 u32 max_transfer_size
;
4343 ctrl_info
->scsi_ml_can_queue
=
4344 ctrl_info
->max_outstanding_requests
- PQI_RESERVED_IO_SLOTS
;
4345 ctrl_info
->max_io_slots
= ctrl_info
->max_outstanding_requests
;
4347 ctrl_info
->error_buffer_length
=
4348 ctrl_info
->max_io_slots
* PQI_ERROR_BUFFER_ELEMENT_LENGTH
;
4351 max_transfer_size
= min(ctrl_info
->max_transfer_size
,
4352 PQI_MAX_TRANSFER_SIZE_KDUMP
);
4354 max_transfer_size
= min(ctrl_info
->max_transfer_size
,
4355 PQI_MAX_TRANSFER_SIZE
);
4357 max_sg_entries
= max_transfer_size
/ PAGE_SIZE
;
4359 /* +1 to cover when the buffer is not page-aligned. */
4362 max_sg_entries
= min(ctrl_info
->max_sg_entries
, max_sg_entries
);
4364 max_transfer_size
= (max_sg_entries
- 1) * PAGE_SIZE
;
4366 ctrl_info
->sg_chain_buffer_length
=
4367 (max_sg_entries
* sizeof(struct pqi_sg_descriptor
)) +
4368 PQI_EXTRA_SGL_MEMORY
;
4369 ctrl_info
->sg_tablesize
= max_sg_entries
;
4370 ctrl_info
->max_sectors
= max_transfer_size
/ 512;
4373 static void pqi_calculate_queue_resources(struct pqi_ctrl_info
*ctrl_info
)
4375 int num_queue_groups
;
4376 u16 num_elements_per_iq
;
4377 u16 num_elements_per_oq
;
4379 if (reset_devices
) {
4380 num_queue_groups
= 1;
4383 int max_queue_groups
;
4385 max_queue_groups
= min(ctrl_info
->max_inbound_queues
/ 2,
4386 ctrl_info
->max_outbound_queues
- 1);
4387 max_queue_groups
= min(max_queue_groups
, PQI_MAX_QUEUE_GROUPS
);
4389 num_cpus
= num_online_cpus();
4390 num_queue_groups
= min(num_cpus
, ctrl_info
->max_msix_vectors
);
4391 num_queue_groups
= min(num_queue_groups
, max_queue_groups
);
4394 ctrl_info
->num_queue_groups
= num_queue_groups
;
4395 ctrl_info
->max_hw_queue_index
= num_queue_groups
- 1;
4398 * Make sure that the max. inbound IU length is an even multiple
4399 * of our inbound element length.
4401 ctrl_info
->max_inbound_iu_length
=
4402 (ctrl_info
->max_inbound_iu_length_per_firmware
/
4403 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) *
4404 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
;
4406 num_elements_per_iq
=
4407 (ctrl_info
->max_inbound_iu_length
/
4408 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
4410 /* Add one because one element in each queue is unusable. */
4411 num_elements_per_iq
++;
4413 num_elements_per_iq
= min(num_elements_per_iq
,
4414 ctrl_info
->max_elements_per_iq
);
4416 num_elements_per_oq
= ((num_elements_per_iq
- 1) * 2) + 1;
4417 num_elements_per_oq
= min(num_elements_per_oq
,
4418 ctrl_info
->max_elements_per_oq
);
4420 ctrl_info
->num_elements_per_iq
= num_elements_per_iq
;
4421 ctrl_info
->num_elements_per_oq
= num_elements_per_oq
;
4423 ctrl_info
->max_sg_per_iu
=
4424 ((ctrl_info
->max_inbound_iu_length
-
4425 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
) /
4426 sizeof(struct pqi_sg_descriptor
)) +
4427 PQI_MAX_EMBEDDED_SG_DESCRIPTORS
;
4430 static inline void pqi_set_sg_descriptor(
4431 struct pqi_sg_descriptor
*sg_descriptor
, struct scatterlist
*sg
)
4433 u64 address
= (u64
)sg_dma_address(sg
);
4434 unsigned int length
= sg_dma_len(sg
);
4436 put_unaligned_le64(address
, &sg_descriptor
->address
);
4437 put_unaligned_le32(length
, &sg_descriptor
->length
);
4438 put_unaligned_le32(0, &sg_descriptor
->flags
);
4441 static int pqi_build_raid_sg_list(struct pqi_ctrl_info
*ctrl_info
,
4442 struct pqi_raid_path_request
*request
, struct scsi_cmnd
*scmd
,
4443 struct pqi_io_request
*io_request
)
4449 unsigned int num_sg_in_iu
;
4450 unsigned int max_sg_per_iu
;
4451 struct scatterlist
*sg
;
4452 struct pqi_sg_descriptor
*sg_descriptor
;
4454 sg_count
= scsi_dma_map(scmd
);
4458 iu_length
= offsetof(struct pqi_raid_path_request
, sg_descriptors
) -
4459 PQI_REQUEST_HEADER_LENGTH
;
4464 sg
= scsi_sglist(scmd
);
4465 sg_descriptor
= request
->sg_descriptors
;
4466 max_sg_per_iu
= ctrl_info
->max_sg_per_iu
- 1;
4472 pqi_set_sg_descriptor(sg_descriptor
, sg
);
4479 if (i
== max_sg_per_iu
) {
4481 (u64
)io_request
->sg_chain_buffer_dma_handle
,
4482 &sg_descriptor
->address
);
4483 put_unaligned_le32((sg_count
- num_sg_in_iu
)
4484 * sizeof(*sg_descriptor
),
4485 &sg_descriptor
->length
);
4486 put_unaligned_le32(CISS_SG_CHAIN
,
4487 &sg_descriptor
->flags
);
4490 sg_descriptor
= io_request
->sg_chain_buffer
;
4495 put_unaligned_le32(CISS_SG_LAST
, &sg_descriptor
->flags
);
4496 request
->partial
= chained
;
4497 iu_length
+= num_sg_in_iu
* sizeof(*sg_descriptor
);
4500 put_unaligned_le16(iu_length
, &request
->header
.iu_length
);
4505 static int pqi_build_aio_sg_list(struct pqi_ctrl_info
*ctrl_info
,
4506 struct pqi_aio_path_request
*request
, struct scsi_cmnd
*scmd
,
4507 struct pqi_io_request
*io_request
)
4513 unsigned int num_sg_in_iu
;
4514 unsigned int max_sg_per_iu
;
4515 struct scatterlist
*sg
;
4516 struct pqi_sg_descriptor
*sg_descriptor
;
4518 sg_count
= scsi_dma_map(scmd
);
4522 iu_length
= offsetof(struct pqi_aio_path_request
, sg_descriptors
) -
4523 PQI_REQUEST_HEADER_LENGTH
;
4529 sg
= scsi_sglist(scmd
);
4530 sg_descriptor
= request
->sg_descriptors
;
4531 max_sg_per_iu
= ctrl_info
->max_sg_per_iu
- 1;
4536 pqi_set_sg_descriptor(sg_descriptor
, sg
);
4543 if (i
== max_sg_per_iu
) {
4545 (u64
)io_request
->sg_chain_buffer_dma_handle
,
4546 &sg_descriptor
->address
);
4547 put_unaligned_le32((sg_count
- num_sg_in_iu
)
4548 * sizeof(*sg_descriptor
),
4549 &sg_descriptor
->length
);
4550 put_unaligned_le32(CISS_SG_CHAIN
,
4551 &sg_descriptor
->flags
);
4554 sg_descriptor
= io_request
->sg_chain_buffer
;
4559 put_unaligned_le32(CISS_SG_LAST
, &sg_descriptor
->flags
);
4560 request
->partial
= chained
;
4561 iu_length
+= num_sg_in_iu
* sizeof(*sg_descriptor
);
4564 put_unaligned_le16(iu_length
, &request
->header
.iu_length
);
4565 request
->num_sg_descriptors
= num_sg_in_iu
;
4570 static void pqi_raid_io_complete(struct pqi_io_request
*io_request
,
4573 struct scsi_cmnd
*scmd
;
4575 scmd
= io_request
->scmd
;
4576 pqi_free_io_request(io_request
);
4577 scsi_dma_unmap(scmd
);
4578 pqi_scsi_done(scmd
);
4581 static int pqi_raid_submit_scsi_cmd_with_io_request(
4582 struct pqi_ctrl_info
*ctrl_info
, struct pqi_io_request
*io_request
,
4583 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4584 struct pqi_queue_group
*queue_group
)
4588 struct pqi_raid_path_request
*request
;
4590 io_request
->io_complete_callback
= pqi_raid_io_complete
;
4591 io_request
->scmd
= scmd
;
4593 request
= io_request
->iu
;
4595 offsetof(struct pqi_raid_path_request
, sg_descriptors
));
4597 request
->header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
4598 put_unaligned_le32(scsi_bufflen(scmd
), &request
->buffer_length
);
4599 request
->task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
4600 put_unaligned_le16(io_request
->index
, &request
->request_id
);
4601 request
->error_index
= request
->request_id
;
4602 memcpy(request
->lun_number
, device
->scsi3addr
,
4603 sizeof(request
->lun_number
));
4605 cdb_length
= min_t(size_t, scmd
->cmd_len
, sizeof(request
->cdb
));
4606 memcpy(request
->cdb
, scmd
->cmnd
, cdb_length
);
4608 switch (cdb_length
) {
4613 /* No bytes in the Additional CDB bytes field */
4614 request
->additional_cdb_bytes_usage
=
4615 SOP_ADDITIONAL_CDB_BYTES_0
;
4618 /* 4 bytes in the Additional cdb field */
4619 request
->additional_cdb_bytes_usage
=
4620 SOP_ADDITIONAL_CDB_BYTES_4
;
4623 /* 8 bytes in the Additional cdb field */
4624 request
->additional_cdb_bytes_usage
=
4625 SOP_ADDITIONAL_CDB_BYTES_8
;
4628 /* 12 bytes in the Additional cdb field */
4629 request
->additional_cdb_bytes_usage
=
4630 SOP_ADDITIONAL_CDB_BYTES_12
;
4634 /* 16 bytes in the Additional cdb field */
4635 request
->additional_cdb_bytes_usage
=
4636 SOP_ADDITIONAL_CDB_BYTES_16
;
4640 switch (scmd
->sc_data_direction
) {
4642 request
->data_direction
= SOP_READ_FLAG
;
4644 case DMA_FROM_DEVICE
:
4645 request
->data_direction
= SOP_WRITE_FLAG
;
4648 request
->data_direction
= SOP_NO_DIRECTION_FLAG
;
4650 case DMA_BIDIRECTIONAL
:
4651 request
->data_direction
= SOP_BIDIRECTIONAL
;
4654 dev_err(&ctrl_info
->pci_dev
->dev
,
4655 "unknown data direction: %d\n",
4656 scmd
->sc_data_direction
);
4660 rc
= pqi_build_raid_sg_list(ctrl_info
, request
, scmd
, io_request
);
4662 pqi_free_io_request(io_request
);
4663 return SCSI_MLQUEUE_HOST_BUSY
;
4666 pqi_start_io(ctrl_info
, queue_group
, RAID_PATH
, io_request
);
4671 static inline int pqi_raid_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
4672 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4673 struct pqi_queue_group
*queue_group
)
4675 struct pqi_io_request
*io_request
;
4677 io_request
= pqi_alloc_io_request(ctrl_info
);
4679 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info
, io_request
,
4680 device
, scmd
, queue_group
);
4683 static inline void pqi_schedule_bypass_retry(struct pqi_ctrl_info
*ctrl_info
)
4685 if (!pqi_ctrl_blocked(ctrl_info
))
4686 schedule_work(&ctrl_info
->raid_bypass_retry_work
);
4689 static bool pqi_raid_bypass_retry_needed(struct pqi_io_request
*io_request
)
4691 struct scsi_cmnd
*scmd
;
4692 struct pqi_scsi_dev
*device
;
4693 struct pqi_ctrl_info
*ctrl_info
;
4695 if (!io_request
->raid_bypass
)
4698 scmd
= io_request
->scmd
;
4699 if ((scmd
->result
& 0xff) == SAM_STAT_GOOD
)
4701 if (host_byte(scmd
->result
) == DID_NO_CONNECT
)
4704 device
= scmd
->device
->hostdata
;
4705 if (pqi_device_offline(device
))
4708 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4709 if (pqi_ctrl_offline(ctrl_info
))
4715 static inline void pqi_add_to_raid_bypass_retry_list(
4716 struct pqi_ctrl_info
*ctrl_info
,
4717 struct pqi_io_request
*io_request
, bool at_head
)
4719 unsigned long flags
;
4721 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4723 list_add(&io_request
->request_list_entry
,
4724 &ctrl_info
->raid_bypass_retry_list
);
4726 list_add_tail(&io_request
->request_list_entry
,
4727 &ctrl_info
->raid_bypass_retry_list
);
4728 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4731 static void pqi_queued_raid_bypass_complete(struct pqi_io_request
*io_request
,
4734 struct scsi_cmnd
*scmd
;
4736 scmd
= io_request
->scmd
;
4737 pqi_free_io_request(io_request
);
4738 pqi_scsi_done(scmd
);
4741 static void pqi_queue_raid_bypass_retry(struct pqi_io_request
*io_request
)
4743 struct scsi_cmnd
*scmd
;
4744 struct pqi_ctrl_info
*ctrl_info
;
4746 io_request
->io_complete_callback
= pqi_queued_raid_bypass_complete
;
4747 scmd
= io_request
->scmd
;
4749 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4751 pqi_add_to_raid_bypass_retry_list(ctrl_info
, io_request
, false);
4752 pqi_schedule_bypass_retry(ctrl_info
);
4755 static int pqi_retry_raid_bypass(struct pqi_io_request
*io_request
)
4757 struct scsi_cmnd
*scmd
;
4758 struct pqi_scsi_dev
*device
;
4759 struct pqi_ctrl_info
*ctrl_info
;
4760 struct pqi_queue_group
*queue_group
;
4762 scmd
= io_request
->scmd
;
4763 device
= scmd
->device
->hostdata
;
4764 if (pqi_device_in_reset(device
)) {
4765 pqi_free_io_request(io_request
);
4766 set_host_byte(scmd
, DID_RESET
);
4767 pqi_scsi_done(scmd
);
4771 ctrl_info
= shost_to_hba(scmd
->device
->host
);
4772 queue_group
= io_request
->queue_group
;
4774 pqi_reinit_io_request(io_request
);
4776 return pqi_raid_submit_scsi_cmd_with_io_request(ctrl_info
, io_request
,
4777 device
, scmd
, queue_group
);
4780 static inline struct pqi_io_request
*pqi_next_queued_raid_bypass_request(
4781 struct pqi_ctrl_info
*ctrl_info
)
4783 unsigned long flags
;
4784 struct pqi_io_request
*io_request
;
4786 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4787 io_request
= list_first_entry_or_null(
4788 &ctrl_info
->raid_bypass_retry_list
,
4789 struct pqi_io_request
, request_list_entry
);
4791 list_del(&io_request
->request_list_entry
);
4792 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4797 static void pqi_retry_raid_bypass_requests(struct pqi_ctrl_info
*ctrl_info
)
4800 struct pqi_io_request
*io_request
;
4802 pqi_ctrl_busy(ctrl_info
);
4805 if (pqi_ctrl_blocked(ctrl_info
))
4807 io_request
= pqi_next_queued_raid_bypass_request(ctrl_info
);
4810 rc
= pqi_retry_raid_bypass(io_request
);
4812 pqi_add_to_raid_bypass_retry_list(ctrl_info
, io_request
,
4814 pqi_schedule_bypass_retry(ctrl_info
);
4819 pqi_ctrl_unbusy(ctrl_info
);
4822 static void pqi_raid_bypass_retry_worker(struct work_struct
*work
)
4824 struct pqi_ctrl_info
*ctrl_info
;
4826 ctrl_info
= container_of(work
, struct pqi_ctrl_info
,
4827 raid_bypass_retry_work
);
4828 pqi_retry_raid_bypass_requests(ctrl_info
);
4831 static void pqi_clear_all_queued_raid_bypass_retries(
4832 struct pqi_ctrl_info
*ctrl_info
)
4834 unsigned long flags
;
4836 spin_lock_irqsave(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4837 INIT_LIST_HEAD(&ctrl_info
->raid_bypass_retry_list
);
4838 spin_unlock_irqrestore(&ctrl_info
->raid_bypass_retry_list_lock
, flags
);
4841 static void pqi_aio_io_complete(struct pqi_io_request
*io_request
,
4844 struct scsi_cmnd
*scmd
;
4846 scmd
= io_request
->scmd
;
4847 scsi_dma_unmap(scmd
);
4848 if (io_request
->status
== -EAGAIN
)
4849 set_host_byte(scmd
, DID_IMM_RETRY
);
4850 else if (pqi_raid_bypass_retry_needed(io_request
)) {
4851 pqi_queue_raid_bypass_retry(io_request
);
4854 pqi_free_io_request(io_request
);
4855 pqi_scsi_done(scmd
);
4858 static inline int pqi_aio_submit_scsi_cmd(struct pqi_ctrl_info
*ctrl_info
,
4859 struct pqi_scsi_dev
*device
, struct scsi_cmnd
*scmd
,
4860 struct pqi_queue_group
*queue_group
)
4862 return pqi_aio_submit_io(ctrl_info
, scmd
, device
->aio_handle
,
4863 scmd
->cmnd
, scmd
->cmd_len
, queue_group
, NULL
, false);
4866 static int pqi_aio_submit_io(struct pqi_ctrl_info
*ctrl_info
,
4867 struct scsi_cmnd
*scmd
, u32 aio_handle
, u8
*cdb
,
4868 unsigned int cdb_length
, struct pqi_queue_group
*queue_group
,
4869 struct pqi_encryption_info
*encryption_info
, bool raid_bypass
)
4872 struct pqi_io_request
*io_request
;
4873 struct pqi_aio_path_request
*request
;
4875 io_request
= pqi_alloc_io_request(ctrl_info
);
4876 io_request
->io_complete_callback
= pqi_aio_io_complete
;
4877 io_request
->scmd
= scmd
;
4878 io_request
->raid_bypass
= raid_bypass
;
4880 request
= io_request
->iu
;
4882 offsetof(struct pqi_raid_path_request
, sg_descriptors
));
4884 request
->header
.iu_type
= PQI_REQUEST_IU_AIO_PATH_IO
;
4885 put_unaligned_le32(aio_handle
, &request
->nexus_id
);
4886 put_unaligned_le32(scsi_bufflen(scmd
), &request
->buffer_length
);
4887 request
->task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
4888 put_unaligned_le16(io_request
->index
, &request
->request_id
);
4889 request
->error_index
= request
->request_id
;
4890 if (cdb_length
> sizeof(request
->cdb
))
4891 cdb_length
= sizeof(request
->cdb
);
4892 request
->cdb_length
= cdb_length
;
4893 memcpy(request
->cdb
, cdb
, cdb_length
);
4895 switch (scmd
->sc_data_direction
) {
4897 request
->data_direction
= SOP_READ_FLAG
;
4899 case DMA_FROM_DEVICE
:
4900 request
->data_direction
= SOP_WRITE_FLAG
;
4903 request
->data_direction
= SOP_NO_DIRECTION_FLAG
;
4905 case DMA_BIDIRECTIONAL
:
4906 request
->data_direction
= SOP_BIDIRECTIONAL
;
4909 dev_err(&ctrl_info
->pci_dev
->dev
,
4910 "unknown data direction: %d\n",
4911 scmd
->sc_data_direction
);
4915 if (encryption_info
) {
4916 request
->encryption_enable
= true;
4917 put_unaligned_le16(encryption_info
->data_encryption_key_index
,
4918 &request
->data_encryption_key_index
);
4919 put_unaligned_le32(encryption_info
->encrypt_tweak_lower
,
4920 &request
->encrypt_tweak_lower
);
4921 put_unaligned_le32(encryption_info
->encrypt_tweak_upper
,
4922 &request
->encrypt_tweak_upper
);
4925 rc
= pqi_build_aio_sg_list(ctrl_info
, request
, scmd
, io_request
);
4927 pqi_free_io_request(io_request
);
4928 return SCSI_MLQUEUE_HOST_BUSY
;
4931 pqi_start_io(ctrl_info
, queue_group
, AIO_PATH
, io_request
);
4936 static inline u16
pqi_get_hw_queue(struct pqi_ctrl_info
*ctrl_info
,
4937 struct scsi_cmnd
*scmd
)
4941 hw_queue
= blk_mq_unique_tag_to_hwq(blk_mq_unique_tag(scmd
->request
));
4942 if (hw_queue
> ctrl_info
->max_hw_queue_index
)
4949 * This function gets called just before we hand the completed SCSI request
4953 void pqi_prep_for_scsi_done(struct scsi_cmnd
*scmd
)
4955 struct pqi_scsi_dev
*device
;
4957 device
= scmd
->device
->hostdata
;
4958 atomic_dec(&device
->scsi_cmds_outstanding
);
4961 static int pqi_scsi_queue_command(struct Scsi_Host
*shost
,
4962 struct scsi_cmnd
*scmd
)
4965 struct pqi_ctrl_info
*ctrl_info
;
4966 struct pqi_scsi_dev
*device
;
4968 struct pqi_queue_group
*queue_group
;
4971 device
= scmd
->device
->hostdata
;
4972 ctrl_info
= shost_to_hba(shost
);
4974 atomic_inc(&device
->scsi_cmds_outstanding
);
4976 if (pqi_ctrl_offline(ctrl_info
)) {
4977 set_host_byte(scmd
, DID_NO_CONNECT
);
4978 pqi_scsi_done(scmd
);
4982 pqi_ctrl_busy(ctrl_info
);
4983 if (pqi_ctrl_blocked(ctrl_info
) || pqi_device_in_reset(device
)) {
4984 rc
= SCSI_MLQUEUE_HOST_BUSY
;
4989 * This is necessary because the SML doesn't zero out this field during
4994 hw_queue
= pqi_get_hw_queue(ctrl_info
, scmd
);
4995 queue_group
= &ctrl_info
->queue_groups
[hw_queue
];
4997 if (pqi_is_logical_device(device
)) {
4998 raid_bypassed
= false;
4999 if (device
->raid_bypass_enabled
&&
5000 !blk_rq_is_passthrough(scmd
->request
)) {
5001 rc
= pqi_raid_bypass_submit_scsi_cmd(ctrl_info
, device
,
5003 if (rc
== 0 || rc
== SCSI_MLQUEUE_HOST_BUSY
)
5004 raid_bypassed
= true;
5007 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5010 if (device
->aio_enabled
)
5011 rc
= pqi_aio_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5014 rc
= pqi_raid_submit_scsi_cmd(ctrl_info
, device
, scmd
,
5019 pqi_ctrl_unbusy(ctrl_info
);
5021 atomic_dec(&device
->scsi_cmds_outstanding
);
5026 static int pqi_wait_until_queued_io_drained(struct pqi_ctrl_info
*ctrl_info
,
5027 struct pqi_queue_group
*queue_group
)
5030 unsigned long flags
;
5033 for (path
= 0; path
< 2; path
++) {
5036 &queue_group
->submit_lock
[path
], flags
);
5038 list_empty(&queue_group
->request_list
[path
]);
5039 spin_unlock_irqrestore(
5040 &queue_group
->submit_lock
[path
], flags
);
5043 pqi_check_ctrl_health(ctrl_info
);
5044 if (pqi_ctrl_offline(ctrl_info
))
5046 usleep_range(1000, 2000);
5053 static int pqi_wait_until_inbound_queues_empty(struct pqi_ctrl_info
*ctrl_info
)
5058 struct pqi_queue_group
*queue_group
;
5062 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5063 queue_group
= &ctrl_info
->queue_groups
[i
];
5065 rc
= pqi_wait_until_queued_io_drained(ctrl_info
, queue_group
);
5069 for (path
= 0; path
< 2; path
++) {
5070 iq_pi
= queue_group
->iq_pi_copy
[path
];
5073 iq_ci
= readl(queue_group
->iq_ci
[path
]);
5076 pqi_check_ctrl_health(ctrl_info
);
5077 if (pqi_ctrl_offline(ctrl_info
))
5079 usleep_range(1000, 2000);
5087 static void pqi_fail_io_queued_for_device(struct pqi_ctrl_info
*ctrl_info
,
5088 struct pqi_scsi_dev
*device
)
5092 struct pqi_queue_group
*queue_group
;
5093 unsigned long flags
;
5094 struct pqi_io_request
*io_request
;
5095 struct pqi_io_request
*next
;
5096 struct scsi_cmnd
*scmd
;
5097 struct pqi_scsi_dev
*scsi_device
;
5099 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
5100 queue_group
= &ctrl_info
->queue_groups
[i
];
5102 for (path
= 0; path
< 2; path
++) {
5104 &queue_group
->submit_lock
[path
], flags
);
5106 list_for_each_entry_safe(io_request
, next
,
5107 &queue_group
->request_list
[path
],
5108 request_list_entry
) {
5109 scmd
= io_request
->scmd
;
5113 scsi_device
= scmd
->device
->hostdata
;
5114 if (scsi_device
!= device
)
5117 list_del(&io_request
->request_list_entry
);
5118 set_host_byte(scmd
, DID_RESET
);
5119 pqi_scsi_done(scmd
);
5122 spin_unlock_irqrestore(
5123 &queue_group
->submit_lock
[path
], flags
);
5128 static int pqi_device_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
,
5129 struct pqi_scsi_dev
*device
)
5131 while (atomic_read(&device
->scsi_cmds_outstanding
)) {
5132 pqi_check_ctrl_health(ctrl_info
);
5133 if (pqi_ctrl_offline(ctrl_info
))
5135 usleep_range(1000, 2000);
5141 static int pqi_ctrl_wait_for_pending_io(struct pqi_ctrl_info
*ctrl_info
)
5144 unsigned long flags
;
5145 struct pqi_scsi_dev
*device
;
5150 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5151 list_for_each_entry(device
, &ctrl_info
->scsi_device_list
,
5152 scsi_device_list_entry
) {
5153 if (atomic_read(&device
->scsi_cmds_outstanding
)) {
5158 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
5164 pqi_check_ctrl_health(ctrl_info
);
5165 if (pqi_ctrl_offline(ctrl_info
))
5168 usleep_range(1000, 2000);
5174 static void pqi_lun_reset_complete(struct pqi_io_request
*io_request
,
5177 struct completion
*waiting
= context
;
5182 #define PQI_LUN_RESET_TIMEOUT_SECS 10
5184 static int pqi_wait_for_lun_reset_completion(struct pqi_ctrl_info
*ctrl_info
,
5185 struct pqi_scsi_dev
*device
, struct completion
*wait
)
5190 if (wait_for_completion_io_timeout(wait
,
5191 PQI_LUN_RESET_TIMEOUT_SECS
* HZ
)) {
5196 pqi_check_ctrl_health(ctrl_info
);
5197 if (pqi_ctrl_offline(ctrl_info
)) {
5206 static int pqi_lun_reset(struct pqi_ctrl_info
*ctrl_info
,
5207 struct pqi_scsi_dev
*device
)
5210 struct pqi_io_request
*io_request
;
5211 DECLARE_COMPLETION_ONSTACK(wait
);
5212 struct pqi_task_management_request
*request
;
5214 io_request
= pqi_alloc_io_request(ctrl_info
);
5215 io_request
->io_complete_callback
= pqi_lun_reset_complete
;
5216 io_request
->context
= &wait
;
5218 request
= io_request
->iu
;
5219 memset(request
, 0, sizeof(*request
));
5221 request
->header
.iu_type
= PQI_REQUEST_IU_TASK_MANAGEMENT
;
5222 put_unaligned_le16(sizeof(*request
) - PQI_REQUEST_HEADER_LENGTH
,
5223 &request
->header
.iu_length
);
5224 put_unaligned_le16(io_request
->index
, &request
->request_id
);
5225 memcpy(request
->lun_number
, device
->scsi3addr
,
5226 sizeof(request
->lun_number
));
5227 request
->task_management_function
= SOP_TASK_MANAGEMENT_LUN_RESET
;
5229 pqi_start_io(ctrl_info
,
5230 &ctrl_info
->queue_groups
[PQI_DEFAULT_QUEUE_GROUP
], RAID_PATH
,
5233 rc
= pqi_wait_for_lun_reset_completion(ctrl_info
, device
, &wait
);
5235 rc
= io_request
->status
;
5237 pqi_free_io_request(io_request
);
5242 /* Performs a reset at the LUN level. */
5244 static int pqi_device_reset(struct pqi_ctrl_info
*ctrl_info
,
5245 struct pqi_scsi_dev
*device
)
5249 rc
= pqi_lun_reset(ctrl_info
, device
);
5251 rc
= pqi_device_wait_for_pending_io(ctrl_info
, device
);
5253 return rc
== 0 ? SUCCESS
: FAILED
;
5256 static int pqi_eh_device_reset_handler(struct scsi_cmnd
*scmd
)
5259 struct Scsi_Host
*shost
;
5260 struct pqi_ctrl_info
*ctrl_info
;
5261 struct pqi_scsi_dev
*device
;
5263 shost
= scmd
->device
->host
;
5264 ctrl_info
= shost_to_hba(shost
);
5265 device
= scmd
->device
->hostdata
;
5267 dev_err(&ctrl_info
->pci_dev
->dev
,
5268 "resetting scsi %d:%d:%d:%d\n",
5269 shost
->host_no
, device
->bus
, device
->target
, device
->lun
);
5271 pqi_check_ctrl_health(ctrl_info
);
5272 if (pqi_ctrl_offline(ctrl_info
)) {
5277 mutex_lock(&ctrl_info
->lun_reset_mutex
);
5279 pqi_ctrl_block_requests(ctrl_info
);
5280 pqi_ctrl_wait_until_quiesced(ctrl_info
);
5281 pqi_fail_io_queued_for_device(ctrl_info
, device
);
5282 rc
= pqi_wait_until_inbound_queues_empty(ctrl_info
);
5283 pqi_device_reset_start(device
);
5284 pqi_ctrl_unblock_requests(ctrl_info
);
5289 rc
= pqi_device_reset(ctrl_info
, device
);
5291 pqi_device_reset_done(device
);
5293 mutex_unlock(&ctrl_info
->lun_reset_mutex
);
5296 dev_err(&ctrl_info
->pci_dev
->dev
,
5297 "reset of scsi %d:%d:%d:%d: %s\n",
5298 shost
->host_no
, device
->bus
, device
->target
, device
->lun
,
5299 rc
== SUCCESS
? "SUCCESS" : "FAILED");
5304 static int pqi_slave_alloc(struct scsi_device
*sdev
)
5306 struct pqi_scsi_dev
*device
;
5307 unsigned long flags
;
5308 struct pqi_ctrl_info
*ctrl_info
;
5309 struct scsi_target
*starget
;
5310 struct sas_rphy
*rphy
;
5312 ctrl_info
= shost_to_hba(sdev
->host
);
5314 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5316 if (sdev_channel(sdev
) == PQI_PHYSICAL_DEVICE_BUS
) {
5317 starget
= scsi_target(sdev
);
5318 rphy
= target_to_rphy(starget
);
5319 device
= pqi_find_device_by_sas_rphy(ctrl_info
, rphy
);
5321 device
->target
= sdev_id(sdev
);
5322 device
->lun
= sdev
->lun
;
5323 device
->target_lun_valid
= true;
5326 device
= pqi_find_scsi_dev(ctrl_info
, sdev_channel(sdev
),
5327 sdev_id(sdev
), sdev
->lun
);
5331 sdev
->hostdata
= device
;
5332 device
->sdev
= sdev
;
5333 if (device
->queue_depth
) {
5334 device
->advertised_queue_depth
= device
->queue_depth
;
5335 scsi_change_queue_depth(sdev
,
5336 device
->advertised_queue_depth
);
5340 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5345 static int pqi_map_queues(struct Scsi_Host
*shost
)
5347 struct pqi_ctrl_info
*ctrl_info
= shost_to_hba(shost
);
5349 return blk_mq_pci_map_queues(&shost
->tag_set
, ctrl_info
->pci_dev
, 0);
5352 static int pqi_getpciinfo_ioctl(struct pqi_ctrl_info
*ctrl_info
,
5355 struct pci_dev
*pci_dev
;
5356 u32 subsystem_vendor
;
5357 u32 subsystem_device
;
5358 cciss_pci_info_struct pciinfo
;
5363 pci_dev
= ctrl_info
->pci_dev
;
5365 pciinfo
.domain
= pci_domain_nr(pci_dev
->bus
);
5366 pciinfo
.bus
= pci_dev
->bus
->number
;
5367 pciinfo
.dev_fn
= pci_dev
->devfn
;
5368 subsystem_vendor
= pci_dev
->subsystem_vendor
;
5369 subsystem_device
= pci_dev
->subsystem_device
;
5370 pciinfo
.board_id
= ((subsystem_device
<< 16) & 0xffff0000) |
5373 if (copy_to_user(arg
, &pciinfo
, sizeof(pciinfo
)))
5379 static int pqi_getdrivver_ioctl(void __user
*arg
)
5386 version
= (DRIVER_MAJOR
<< 28) | (DRIVER_MINOR
<< 24) |
5387 (DRIVER_RELEASE
<< 16) | DRIVER_REVISION
;
5389 if (copy_to_user(arg
, &version
, sizeof(version
)))
5395 struct ciss_error_info
{
5398 size_t sense_data_length
;
5401 static void pqi_error_info_to_ciss(struct pqi_raid_error_info
*pqi_error_info
,
5402 struct ciss_error_info
*ciss_error_info
)
5404 int ciss_cmd_status
;
5405 size_t sense_data_length
;
5407 switch (pqi_error_info
->data_out_result
) {
5408 case PQI_DATA_IN_OUT_GOOD
:
5409 ciss_cmd_status
= CISS_CMD_STATUS_SUCCESS
;
5411 case PQI_DATA_IN_OUT_UNDERFLOW
:
5412 ciss_cmd_status
= CISS_CMD_STATUS_DATA_UNDERRUN
;
5414 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW
:
5415 ciss_cmd_status
= CISS_CMD_STATUS_DATA_OVERRUN
;
5417 case PQI_DATA_IN_OUT_PROTOCOL_ERROR
:
5418 case PQI_DATA_IN_OUT_BUFFER_ERROR
:
5419 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_DESCRIPTOR_AREA
:
5420 case PQI_DATA_IN_OUT_BUFFER_OVERFLOW_BRIDGE
:
5421 case PQI_DATA_IN_OUT_ERROR
:
5422 ciss_cmd_status
= CISS_CMD_STATUS_PROTOCOL_ERROR
;
5424 case PQI_DATA_IN_OUT_HARDWARE_ERROR
:
5425 case PQI_DATA_IN_OUT_PCIE_FABRIC_ERROR
:
5426 case PQI_DATA_IN_OUT_PCIE_COMPLETION_TIMEOUT
:
5427 case PQI_DATA_IN_OUT_PCIE_COMPLETER_ABORT_RECEIVED
:
5428 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST_RECEIVED
:
5429 case PQI_DATA_IN_OUT_PCIE_ECRC_CHECK_FAILED
:
5430 case PQI_DATA_IN_OUT_PCIE_UNSUPPORTED_REQUEST
:
5431 case PQI_DATA_IN_OUT_PCIE_ACS_VIOLATION
:
5432 case PQI_DATA_IN_OUT_PCIE_TLP_PREFIX_BLOCKED
:
5433 case PQI_DATA_IN_OUT_PCIE_POISONED_MEMORY_READ
:
5434 ciss_cmd_status
= CISS_CMD_STATUS_HARDWARE_ERROR
;
5436 case PQI_DATA_IN_OUT_UNSOLICITED_ABORT
:
5437 ciss_cmd_status
= CISS_CMD_STATUS_UNSOLICITED_ABORT
;
5439 case PQI_DATA_IN_OUT_ABORTED
:
5440 ciss_cmd_status
= CISS_CMD_STATUS_ABORTED
;
5442 case PQI_DATA_IN_OUT_TIMEOUT
:
5443 ciss_cmd_status
= CISS_CMD_STATUS_TIMEOUT
;
5446 ciss_cmd_status
= CISS_CMD_STATUS_TARGET_STATUS
;
5451 get_unaligned_le16(&pqi_error_info
->sense_data_length
);
5452 if (sense_data_length
== 0)
5454 get_unaligned_le16(&pqi_error_info
->response_data_length
);
5455 if (sense_data_length
)
5456 if (sense_data_length
> sizeof(pqi_error_info
->data
))
5457 sense_data_length
= sizeof(pqi_error_info
->data
);
5459 ciss_error_info
->scsi_status
= pqi_error_info
->status
;
5460 ciss_error_info
->command_status
= ciss_cmd_status
;
5461 ciss_error_info
->sense_data_length
= sense_data_length
;
5464 static int pqi_passthru_ioctl(struct pqi_ctrl_info
*ctrl_info
, void __user
*arg
)
5467 char *kernel_buffer
= NULL
;
5469 size_t sense_data_length
;
5470 IOCTL_Command_struct iocommand
;
5471 struct pqi_raid_path_request request
;
5472 struct pqi_raid_error_info pqi_error_info
;
5473 struct ciss_error_info ciss_error_info
;
5475 if (pqi_ctrl_offline(ctrl_info
))
5479 if (!capable(CAP_SYS_RAWIO
))
5481 if (copy_from_user(&iocommand
, arg
, sizeof(iocommand
)))
5483 if (iocommand
.buf_size
< 1 &&
5484 iocommand
.Request
.Type
.Direction
!= XFER_NONE
)
5486 if (iocommand
.Request
.CDBLen
> sizeof(request
.cdb
))
5488 if (iocommand
.Request
.Type
.Type
!= TYPE_CMD
)
5491 switch (iocommand
.Request
.Type
.Direction
) {
5495 case XFER_READ
| XFER_WRITE
:
5501 if (iocommand
.buf_size
> 0) {
5502 kernel_buffer
= kmalloc(iocommand
.buf_size
, GFP_KERNEL
);
5505 if (iocommand
.Request
.Type
.Direction
& XFER_WRITE
) {
5506 if (copy_from_user(kernel_buffer
, iocommand
.buf
,
5507 iocommand
.buf_size
)) {
5512 memset(kernel_buffer
, 0, iocommand
.buf_size
);
5516 memset(&request
, 0, sizeof(request
));
5518 request
.header
.iu_type
= PQI_REQUEST_IU_RAID_PATH_IO
;
5519 iu_length
= offsetof(struct pqi_raid_path_request
, sg_descriptors
) -
5520 PQI_REQUEST_HEADER_LENGTH
;
5521 memcpy(request
.lun_number
, iocommand
.LUN_info
.LunAddrBytes
,
5522 sizeof(request
.lun_number
));
5523 memcpy(request
.cdb
, iocommand
.Request
.CDB
, iocommand
.Request
.CDBLen
);
5524 request
.additional_cdb_bytes_usage
= SOP_ADDITIONAL_CDB_BYTES_0
;
5526 switch (iocommand
.Request
.Type
.Direction
) {
5528 request
.data_direction
= SOP_NO_DIRECTION_FLAG
;
5531 request
.data_direction
= SOP_WRITE_FLAG
;
5534 request
.data_direction
= SOP_READ_FLAG
;
5536 case XFER_READ
| XFER_WRITE
:
5537 request
.data_direction
= SOP_BIDIRECTIONAL
;
5541 request
.task_attribute
= SOP_TASK_ATTRIBUTE_SIMPLE
;
5543 if (iocommand
.buf_size
> 0) {
5544 put_unaligned_le32(iocommand
.buf_size
, &request
.buffer_length
);
5546 rc
= pqi_map_single(ctrl_info
->pci_dev
,
5547 &request
.sg_descriptors
[0], kernel_buffer
,
5548 iocommand
.buf_size
, PCI_DMA_BIDIRECTIONAL
);
5552 iu_length
+= sizeof(request
.sg_descriptors
[0]);
5555 put_unaligned_le16(iu_length
, &request
.header
.iu_length
);
5557 rc
= pqi_submit_raid_request_synchronous(ctrl_info
, &request
.header
,
5558 PQI_SYNC_FLAGS_INTERRUPTABLE
, &pqi_error_info
, NO_TIMEOUT
);
5560 if (iocommand
.buf_size
> 0)
5561 pqi_pci_unmap(ctrl_info
->pci_dev
, request
.sg_descriptors
, 1,
5562 PCI_DMA_BIDIRECTIONAL
);
5564 memset(&iocommand
.error_info
, 0, sizeof(iocommand
.error_info
));
5567 pqi_error_info_to_ciss(&pqi_error_info
, &ciss_error_info
);
5568 iocommand
.error_info
.ScsiStatus
= ciss_error_info
.scsi_status
;
5569 iocommand
.error_info
.CommandStatus
=
5570 ciss_error_info
.command_status
;
5571 sense_data_length
= ciss_error_info
.sense_data_length
;
5572 if (sense_data_length
) {
5573 if (sense_data_length
>
5574 sizeof(iocommand
.error_info
.SenseInfo
))
5576 sizeof(iocommand
.error_info
.SenseInfo
);
5577 memcpy(iocommand
.error_info
.SenseInfo
,
5578 pqi_error_info
.data
, sense_data_length
);
5579 iocommand
.error_info
.SenseLen
= sense_data_length
;
5583 if (copy_to_user(arg
, &iocommand
, sizeof(iocommand
))) {
5588 if (rc
== 0 && iocommand
.buf_size
> 0 &&
5589 (iocommand
.Request
.Type
.Direction
& XFER_READ
)) {
5590 if (copy_to_user(iocommand
.buf
, kernel_buffer
,
5591 iocommand
.buf_size
)) {
5597 kfree(kernel_buffer
);
5602 static int pqi_ioctl(struct scsi_device
*sdev
, int cmd
, void __user
*arg
)
5605 struct pqi_ctrl_info
*ctrl_info
;
5607 ctrl_info
= shost_to_hba(sdev
->host
);
5610 case CCISS_DEREGDISK
:
5611 case CCISS_REGNEWDISK
:
5613 rc
= pqi_scan_scsi_devices(ctrl_info
);
5615 case CCISS_GETPCIINFO
:
5616 rc
= pqi_getpciinfo_ioctl(ctrl_info
, arg
);
5618 case CCISS_GETDRIVVER
:
5619 rc
= pqi_getdrivver_ioctl(arg
);
5621 case CCISS_PASSTHRU
:
5622 rc
= pqi_passthru_ioctl(ctrl_info
, arg
);
5632 static ssize_t
pqi_version_show(struct device
*dev
,
5633 struct device_attribute
*attr
, char *buffer
)
5636 struct Scsi_Host
*shost
;
5637 struct pqi_ctrl_info
*ctrl_info
;
5639 shost
= class_to_shost(dev
);
5640 ctrl_info
= shost_to_hba(shost
);
5642 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5643 " driver: %s\n", DRIVER_VERSION BUILD_TIMESTAMP
);
5645 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5646 "firmware: %s\n", ctrl_info
->firmware_version
);
5651 static ssize_t
pqi_host_rescan_store(struct device
*dev
,
5652 struct device_attribute
*attr
, const char *buffer
, size_t count
)
5654 struct Scsi_Host
*shost
= class_to_shost(dev
);
5656 pqi_scan_start(shost
);
5661 static ssize_t
pqi_lockup_action_show(struct device
*dev
,
5662 struct device_attribute
*attr
, char *buffer
)
5667 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
5668 if (pqi_lockup_actions
[i
].action
== pqi_lockup_action
)
5669 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5670 "[%s] ", pqi_lockup_actions
[i
].name
);
5672 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
,
5673 "%s ", pqi_lockup_actions
[i
].name
);
5676 count
+= snprintf(buffer
+ count
, PAGE_SIZE
- count
, "\n");
5681 static ssize_t
pqi_lockup_action_store(struct device
*dev
,
5682 struct device_attribute
*attr
, const char *buffer
, size_t count
)
5686 char action_name_buffer
[32];
5688 strlcpy(action_name_buffer
, buffer
, sizeof(action_name_buffer
));
5689 action_name
= strstrip(action_name_buffer
);
5691 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
5692 if (strcmp(action_name
, pqi_lockup_actions
[i
].name
) == 0) {
5693 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
5701 static DEVICE_ATTR(version
, 0444, pqi_version_show
, NULL
);
5702 static DEVICE_ATTR(rescan
, 0200, NULL
, pqi_host_rescan_store
);
5703 static DEVICE_ATTR(lockup_action
, 0644,
5704 pqi_lockup_action_show
, pqi_lockup_action_store
);
5706 static struct device_attribute
*pqi_shost_attrs
[] = {
5709 &dev_attr_lockup_action
,
5713 static ssize_t
pqi_sas_address_show(struct device
*dev
,
5714 struct device_attribute
*attr
, char *buffer
)
5716 struct pqi_ctrl_info
*ctrl_info
;
5717 struct scsi_device
*sdev
;
5718 struct pqi_scsi_dev
*device
;
5719 unsigned long flags
;
5722 sdev
= to_scsi_device(dev
);
5723 ctrl_info
= shost_to_hba(sdev
->host
);
5725 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5727 device
= sdev
->hostdata
;
5728 if (pqi_is_logical_device(device
)) {
5729 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
,
5733 sas_address
= device
->sas_address
;
5735 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5737 return snprintf(buffer
, PAGE_SIZE
, "0x%016llx\n", sas_address
);
5740 static ssize_t
pqi_ssd_smart_path_enabled_show(struct device
*dev
,
5741 struct device_attribute
*attr
, char *buffer
)
5743 struct pqi_ctrl_info
*ctrl_info
;
5744 struct scsi_device
*sdev
;
5745 struct pqi_scsi_dev
*device
;
5746 unsigned long flags
;
5748 sdev
= to_scsi_device(dev
);
5749 ctrl_info
= shost_to_hba(sdev
->host
);
5751 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5753 device
= sdev
->hostdata
;
5754 buffer
[0] = device
->raid_bypass_enabled
? '1' : '0';
5758 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5763 static ssize_t
pqi_raid_level_show(struct device
*dev
,
5764 struct device_attribute
*attr
, char *buffer
)
5766 struct pqi_ctrl_info
*ctrl_info
;
5767 struct scsi_device
*sdev
;
5768 struct pqi_scsi_dev
*device
;
5769 unsigned long flags
;
5772 sdev
= to_scsi_device(dev
);
5773 ctrl_info
= shost_to_hba(sdev
->host
);
5775 spin_lock_irqsave(&ctrl_info
->scsi_device_list_lock
, flags
);
5777 device
= sdev
->hostdata
;
5779 if (pqi_is_logical_device(device
))
5780 raid_level
= pqi_raid_level_to_string(device
->raid_level
);
5784 spin_unlock_irqrestore(&ctrl_info
->scsi_device_list_lock
, flags
);
5786 return snprintf(buffer
, PAGE_SIZE
, "%s\n", raid_level
);
5789 static DEVICE_ATTR(sas_address
, 0444, pqi_sas_address_show
, NULL
);
5790 static DEVICE_ATTR(ssd_smart_path_enabled
, 0444,
5791 pqi_ssd_smart_path_enabled_show
, NULL
);
5792 static DEVICE_ATTR(raid_level
, 0444, pqi_raid_level_show
, NULL
);
5794 static struct device_attribute
*pqi_sdev_attrs
[] = {
5795 &dev_attr_sas_address
,
5796 &dev_attr_ssd_smart_path_enabled
,
5797 &dev_attr_raid_level
,
5801 static struct scsi_host_template pqi_driver_template
= {
5802 .module
= THIS_MODULE
,
5803 .name
= DRIVER_NAME_SHORT
,
5804 .proc_name
= DRIVER_NAME_SHORT
,
5805 .queuecommand
= pqi_scsi_queue_command
,
5806 .scan_start
= pqi_scan_start
,
5807 .scan_finished
= pqi_scan_finished
,
5809 .use_clustering
= ENABLE_CLUSTERING
,
5810 .eh_device_reset_handler
= pqi_eh_device_reset_handler
,
5812 .slave_alloc
= pqi_slave_alloc
,
5813 .map_queues
= pqi_map_queues
,
5814 .sdev_attrs
= pqi_sdev_attrs
,
5815 .shost_attrs
= pqi_shost_attrs
,
5818 static int pqi_register_scsi(struct pqi_ctrl_info
*ctrl_info
)
5821 struct Scsi_Host
*shost
;
5823 shost
= scsi_host_alloc(&pqi_driver_template
, sizeof(ctrl_info
));
5825 dev_err(&ctrl_info
->pci_dev
->dev
,
5826 "scsi_host_alloc failed for controller %u\n",
5827 ctrl_info
->ctrl_id
);
5832 shost
->n_io_port
= 0;
5833 shost
->this_id
= -1;
5834 shost
->max_channel
= PQI_MAX_BUS
;
5835 shost
->max_cmd_len
= MAX_COMMAND_SIZE
;
5836 shost
->max_lun
= ~0;
5838 shost
->max_sectors
= ctrl_info
->max_sectors
;
5839 shost
->can_queue
= ctrl_info
->scsi_ml_can_queue
;
5840 shost
->cmd_per_lun
= shost
->can_queue
;
5841 shost
->sg_tablesize
= ctrl_info
->sg_tablesize
;
5842 shost
->transportt
= pqi_sas_transport_template
;
5843 shost
->irq
= pci_irq_vector(ctrl_info
->pci_dev
, 0);
5844 shost
->unique_id
= shost
->irq
;
5845 shost
->nr_hw_queues
= ctrl_info
->num_queue_groups
;
5846 shost
->hostdata
[0] = (unsigned long)ctrl_info
;
5848 rc
= scsi_add_host(shost
, &ctrl_info
->pci_dev
->dev
);
5850 dev_err(&ctrl_info
->pci_dev
->dev
,
5851 "scsi_add_host failed for controller %u\n",
5852 ctrl_info
->ctrl_id
);
5856 rc
= pqi_add_sas_host(shost
, ctrl_info
);
5858 dev_err(&ctrl_info
->pci_dev
->dev
,
5859 "add SAS host failed for controller %u\n",
5860 ctrl_info
->ctrl_id
);
5864 ctrl_info
->scsi_host
= shost
;
5869 scsi_remove_host(shost
);
5871 scsi_host_put(shost
);
5876 static void pqi_unregister_scsi(struct pqi_ctrl_info
*ctrl_info
)
5878 struct Scsi_Host
*shost
;
5880 pqi_delete_sas_host(ctrl_info
);
5882 shost
= ctrl_info
->scsi_host
;
5886 scsi_remove_host(shost
);
5887 scsi_host_put(shost
);
5890 static int pqi_wait_for_pqi_reset_completion(struct pqi_ctrl_info
*ctrl_info
)
5893 struct pqi_device_registers __iomem
*pqi_registers
;
5894 unsigned long timeout
;
5895 unsigned int timeout_msecs
;
5896 union pqi_reset_register reset_reg
;
5898 pqi_registers
= ctrl_info
->pqi_registers
;
5899 timeout_msecs
= readw(&pqi_registers
->max_reset_timeout
) * 100;
5900 timeout
= msecs_to_jiffies(timeout_msecs
) + jiffies
;
5903 msleep(PQI_RESET_POLL_INTERVAL_MSECS
);
5904 reset_reg
.all_bits
= readl(&pqi_registers
->device_reset
);
5905 if (reset_reg
.bits
.reset_action
== PQI_RESET_ACTION_COMPLETED
)
5907 pqi_check_ctrl_health(ctrl_info
);
5908 if (pqi_ctrl_offline(ctrl_info
)) {
5912 if (time_after(jiffies
, timeout
)) {
5921 static int pqi_reset(struct pqi_ctrl_info
*ctrl_info
)
5924 union pqi_reset_register reset_reg
;
5926 if (ctrl_info
->pqi_reset_quiesce_supported
) {
5927 rc
= sis_pqi_reset_quiesce(ctrl_info
);
5929 dev_err(&ctrl_info
->pci_dev
->dev
,
5930 "PQI reset failed during quiesce with error %d\n",
5936 reset_reg
.all_bits
= 0;
5937 reset_reg
.bits
.reset_type
= PQI_RESET_TYPE_HARD_RESET
;
5938 reset_reg
.bits
.reset_action
= PQI_RESET_ACTION_RESET
;
5940 writel(reset_reg
.all_bits
, &ctrl_info
->pqi_registers
->device_reset
);
5942 rc
= pqi_wait_for_pqi_reset_completion(ctrl_info
);
5944 dev_err(&ctrl_info
->pci_dev
->dev
,
5945 "PQI reset failed with error %d\n", rc
);
5950 static int pqi_get_ctrl_firmware_version(struct pqi_ctrl_info
*ctrl_info
)
5953 struct bmic_identify_controller
*identify
;
5955 identify
= kmalloc(sizeof(*identify
), GFP_KERNEL
);
5959 rc
= pqi_identify_controller(ctrl_info
, identify
);
5963 memcpy(ctrl_info
->firmware_version
, identify
->firmware_version
,
5964 sizeof(identify
->firmware_version
));
5965 ctrl_info
->firmware_version
[sizeof(identify
->firmware_version
)] = '\0';
5966 snprintf(ctrl_info
->firmware_version
+
5967 strlen(ctrl_info
->firmware_version
),
5968 sizeof(ctrl_info
->firmware_version
),
5969 "-%u", get_unaligned_le16(&identify
->firmware_build_number
));
5977 static int pqi_process_config_table(struct pqi_ctrl_info
*ctrl_info
)
5981 void __iomem
*table_iomem_addr
;
5982 struct pqi_config_table
*config_table
;
5983 struct pqi_config_table_section_header
*section
;
5985 table_length
= ctrl_info
->config_table_length
;
5987 config_table
= kmalloc(table_length
, GFP_KERNEL
);
5988 if (!config_table
) {
5989 dev_err(&ctrl_info
->pci_dev
->dev
,
5990 "failed to allocate memory for PQI configuration table\n");
5995 * Copy the config table contents from I/O memory space into the
5998 table_iomem_addr
= ctrl_info
->iomem_base
+
5999 ctrl_info
->config_table_offset
;
6000 memcpy_fromio(config_table
, table_iomem_addr
, table_length
);
6003 get_unaligned_le32(&config_table
->first_section_offset
);
6005 while (section_offset
) {
6006 section
= (void *)config_table
+ section_offset
;
6008 switch (get_unaligned_le16(§ion
->section_id
)) {
6009 case PQI_CONFIG_TABLE_SECTION_HEARTBEAT
:
6010 if (pqi_disable_heartbeat
)
6011 dev_warn(&ctrl_info
->pci_dev
->dev
,
6012 "heartbeat disabled by module parameter\n");
6014 ctrl_info
->heartbeat_counter
=
6018 struct pqi_config_table_heartbeat
,
6024 get_unaligned_le16(§ion
->next_section_offset
);
6027 kfree(config_table
);
6032 /* Switches the controller from PQI mode back into SIS mode. */
6034 static int pqi_revert_to_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
6038 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_NONE
);
6039 rc
= pqi_reset(ctrl_info
);
6042 rc
= sis_reenable_sis_mode(ctrl_info
);
6044 dev_err(&ctrl_info
->pci_dev
->dev
,
6045 "re-enabling SIS mode failed with error %d\n", rc
);
6048 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
6054 * If the controller isn't already in SIS mode, this function forces it into
6058 static int pqi_force_sis_mode(struct pqi_ctrl_info
*ctrl_info
)
6060 if (!sis_is_firmware_running(ctrl_info
))
6063 if (pqi_get_ctrl_mode(ctrl_info
) == SIS_MODE
)
6066 if (sis_is_kernel_up(ctrl_info
)) {
6067 pqi_save_ctrl_mode(ctrl_info
, SIS_MODE
);
6071 return pqi_revert_to_sis_mode(ctrl_info
);
6074 static int pqi_ctrl_init(struct pqi_ctrl_info
*ctrl_info
)
6078 rc
= pqi_force_sis_mode(ctrl_info
);
6083 * Wait until the controller is ready to start accepting SIS
6086 rc
= sis_wait_for_ctrl_ready(ctrl_info
);
6091 * Get the controller properties. This allows us to determine
6092 * whether or not it supports PQI mode.
6094 rc
= sis_get_ctrl_properties(ctrl_info
);
6096 dev_err(&ctrl_info
->pci_dev
->dev
,
6097 "error obtaining controller properties\n");
6101 rc
= sis_get_pqi_capabilities(ctrl_info
);
6103 dev_err(&ctrl_info
->pci_dev
->dev
,
6104 "error obtaining controller capabilities\n");
6108 if (reset_devices
) {
6109 if (ctrl_info
->max_outstanding_requests
>
6110 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
)
6111 ctrl_info
->max_outstanding_requests
=
6112 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
;
6114 if (ctrl_info
->max_outstanding_requests
>
6115 PQI_MAX_OUTSTANDING_REQUESTS
)
6116 ctrl_info
->max_outstanding_requests
=
6117 PQI_MAX_OUTSTANDING_REQUESTS
;
6120 pqi_calculate_io_resources(ctrl_info
);
6122 rc
= pqi_alloc_error_buffer(ctrl_info
);
6124 dev_err(&ctrl_info
->pci_dev
->dev
,
6125 "failed to allocate PQI error buffer\n");
6130 * If the function we are about to call succeeds, the
6131 * controller will transition from legacy SIS mode
6134 rc
= sis_init_base_struct_addr(ctrl_info
);
6136 dev_err(&ctrl_info
->pci_dev
->dev
,
6137 "error initializing PQI mode\n");
6141 /* Wait for the controller to complete the SIS -> PQI transition. */
6142 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
6144 dev_err(&ctrl_info
->pci_dev
->dev
,
6145 "transition to PQI mode failed\n");
6149 /* From here on, we are running in PQI mode. */
6150 ctrl_info
->pqi_mode_enabled
= true;
6151 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
6153 rc
= pqi_process_config_table(ctrl_info
);
6157 rc
= pqi_alloc_admin_queues(ctrl_info
);
6159 dev_err(&ctrl_info
->pci_dev
->dev
,
6160 "failed to allocate admin queues\n");
6164 rc
= pqi_create_admin_queues(ctrl_info
);
6166 dev_err(&ctrl_info
->pci_dev
->dev
,
6167 "error creating admin queues\n");
6171 rc
= pqi_report_device_capability(ctrl_info
);
6173 dev_err(&ctrl_info
->pci_dev
->dev
,
6174 "obtaining device capability failed\n");
6178 rc
= pqi_validate_device_capability(ctrl_info
);
6182 pqi_calculate_queue_resources(ctrl_info
);
6184 rc
= pqi_enable_msix_interrupts(ctrl_info
);
6188 if (ctrl_info
->num_msix_vectors_enabled
< ctrl_info
->num_queue_groups
) {
6189 ctrl_info
->max_msix_vectors
=
6190 ctrl_info
->num_msix_vectors_enabled
;
6191 pqi_calculate_queue_resources(ctrl_info
);
6194 rc
= pqi_alloc_io_resources(ctrl_info
);
6198 rc
= pqi_alloc_operational_queues(ctrl_info
);
6200 dev_err(&ctrl_info
->pci_dev
->dev
,
6201 "failed to allocate operational queues\n");
6205 pqi_init_operational_queues(ctrl_info
);
6207 rc
= pqi_request_irqs(ctrl_info
);
6211 rc
= pqi_create_queues(ctrl_info
);
6215 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
6217 ctrl_info
->controller_online
= true;
6218 pqi_start_heartbeat_timer(ctrl_info
);
6220 rc
= pqi_enable_events(ctrl_info
);
6222 dev_err(&ctrl_info
->pci_dev
->dev
,
6223 "error enabling events\n");
6227 /* Register with the SCSI subsystem. */
6228 rc
= pqi_register_scsi(ctrl_info
);
6232 rc
= pqi_get_ctrl_firmware_version(ctrl_info
);
6234 dev_err(&ctrl_info
->pci_dev
->dev
,
6235 "error obtaining firmware version\n");
6239 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
6241 dev_err(&ctrl_info
->pci_dev
->dev
,
6242 "error updating host wellness\n");
6246 pqi_schedule_update_time_worker(ctrl_info
);
6248 pqi_scan_scsi_devices(ctrl_info
);
6253 static void pqi_reinit_queues(struct pqi_ctrl_info
*ctrl_info
)
6256 struct pqi_admin_queues
*admin_queues
;
6257 struct pqi_event_queue
*event_queue
;
6259 admin_queues
= &ctrl_info
->admin_queues
;
6260 admin_queues
->iq_pi_copy
= 0;
6261 admin_queues
->oq_ci_copy
= 0;
6262 writel(0, admin_queues
->oq_pi
);
6264 for (i
= 0; i
< ctrl_info
->num_queue_groups
; i
++) {
6265 ctrl_info
->queue_groups
[i
].iq_pi_copy
[RAID_PATH
] = 0;
6266 ctrl_info
->queue_groups
[i
].iq_pi_copy
[AIO_PATH
] = 0;
6267 ctrl_info
->queue_groups
[i
].oq_ci_copy
= 0;
6269 writel(0, ctrl_info
->queue_groups
[i
].iq_ci
[RAID_PATH
]);
6270 writel(0, ctrl_info
->queue_groups
[i
].iq_ci
[AIO_PATH
]);
6271 writel(0, ctrl_info
->queue_groups
[i
].oq_pi
);
6274 event_queue
= &ctrl_info
->event_queue
;
6275 writel(0, event_queue
->oq_pi
);
6276 event_queue
->oq_ci_copy
= 0;
6279 static int pqi_ctrl_init_resume(struct pqi_ctrl_info
*ctrl_info
)
6283 rc
= pqi_force_sis_mode(ctrl_info
);
6288 * Wait until the controller is ready to start accepting SIS
6291 rc
= sis_wait_for_ctrl_ready_resume(ctrl_info
);
6296 * If the function we are about to call succeeds, the
6297 * controller will transition from legacy SIS mode
6300 rc
= sis_init_base_struct_addr(ctrl_info
);
6302 dev_err(&ctrl_info
->pci_dev
->dev
,
6303 "error initializing PQI mode\n");
6307 /* Wait for the controller to complete the SIS -> PQI transition. */
6308 rc
= pqi_wait_for_pqi_mode_ready(ctrl_info
);
6310 dev_err(&ctrl_info
->pci_dev
->dev
,
6311 "transition to PQI mode failed\n");
6315 /* From here on, we are running in PQI mode. */
6316 ctrl_info
->pqi_mode_enabled
= true;
6317 pqi_save_ctrl_mode(ctrl_info
, PQI_MODE
);
6319 pqi_reinit_queues(ctrl_info
);
6321 rc
= pqi_create_admin_queues(ctrl_info
);
6323 dev_err(&ctrl_info
->pci_dev
->dev
,
6324 "error creating admin queues\n");
6328 rc
= pqi_create_queues(ctrl_info
);
6332 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_MSIX
);
6334 ctrl_info
->controller_online
= true;
6335 pqi_start_heartbeat_timer(ctrl_info
);
6336 pqi_ctrl_unblock_requests(ctrl_info
);
6338 rc
= pqi_enable_events(ctrl_info
);
6340 dev_err(&ctrl_info
->pci_dev
->dev
,
6341 "error enabling events\n");
6345 rc
= pqi_write_driver_version_to_host_wellness(ctrl_info
);
6347 dev_err(&ctrl_info
->pci_dev
->dev
,
6348 "error updating host wellness\n");
6352 pqi_schedule_update_time_worker(ctrl_info
);
6354 pqi_scan_scsi_devices(ctrl_info
);
6359 static inline int pqi_set_pcie_completion_timeout(struct pci_dev
*pci_dev
,
6362 return pcie_capability_clear_and_set_word(pci_dev
, PCI_EXP_DEVCTL2
,
6363 PCI_EXP_DEVCTL2_COMP_TIMEOUT
, timeout
);
6366 static int pqi_pci_init(struct pqi_ctrl_info
*ctrl_info
)
6371 rc
= pci_enable_device(ctrl_info
->pci_dev
);
6373 dev_err(&ctrl_info
->pci_dev
->dev
,
6374 "failed to enable PCI device\n");
6378 if (sizeof(dma_addr_t
) > 4)
6379 mask
= DMA_BIT_MASK(64);
6381 mask
= DMA_BIT_MASK(32);
6383 rc
= dma_set_mask_and_coherent(&ctrl_info
->pci_dev
->dev
, mask
);
6385 dev_err(&ctrl_info
->pci_dev
->dev
, "failed to set DMA mask\n");
6386 goto disable_device
;
6389 rc
= pci_request_regions(ctrl_info
->pci_dev
, DRIVER_NAME_SHORT
);
6391 dev_err(&ctrl_info
->pci_dev
->dev
,
6392 "failed to obtain PCI resources\n");
6393 goto disable_device
;
6396 ctrl_info
->iomem_base
= ioremap_nocache(pci_resource_start(
6397 ctrl_info
->pci_dev
, 0),
6398 sizeof(struct pqi_ctrl_registers
));
6399 if (!ctrl_info
->iomem_base
) {
6400 dev_err(&ctrl_info
->pci_dev
->dev
,
6401 "failed to map memory for controller registers\n");
6403 goto release_regions
;
6406 #define PCI_EXP_COMP_TIMEOUT_65_TO_210_MS 0x6
6408 /* Increase the PCIe completion timeout. */
6409 rc
= pqi_set_pcie_completion_timeout(ctrl_info
->pci_dev
,
6410 PCI_EXP_COMP_TIMEOUT_65_TO_210_MS
);
6412 dev_err(&ctrl_info
->pci_dev
->dev
,
6413 "failed to set PCIe completion timeout\n");
6414 goto release_regions
;
6417 /* Enable bus mastering. */
6418 pci_set_master(ctrl_info
->pci_dev
);
6420 ctrl_info
->registers
= ctrl_info
->iomem_base
;
6421 ctrl_info
->pqi_registers
= &ctrl_info
->registers
->pqi_registers
;
6423 pci_set_drvdata(ctrl_info
->pci_dev
, ctrl_info
);
6428 pci_release_regions(ctrl_info
->pci_dev
);
6430 pci_disable_device(ctrl_info
->pci_dev
);
6435 static void pqi_cleanup_pci_init(struct pqi_ctrl_info
*ctrl_info
)
6437 iounmap(ctrl_info
->iomem_base
);
6438 pci_release_regions(ctrl_info
->pci_dev
);
6439 if (pci_is_enabled(ctrl_info
->pci_dev
))
6440 pci_disable_device(ctrl_info
->pci_dev
);
6441 pci_set_drvdata(ctrl_info
->pci_dev
, NULL
);
6444 static struct pqi_ctrl_info
*pqi_alloc_ctrl_info(int numa_node
)
6446 struct pqi_ctrl_info
*ctrl_info
;
6448 ctrl_info
= kzalloc_node(sizeof(struct pqi_ctrl_info
),
6449 GFP_KERNEL
, numa_node
);
6453 mutex_init(&ctrl_info
->scan_mutex
);
6454 mutex_init(&ctrl_info
->lun_reset_mutex
);
6456 INIT_LIST_HEAD(&ctrl_info
->scsi_device_list
);
6457 spin_lock_init(&ctrl_info
->scsi_device_list_lock
);
6459 INIT_WORK(&ctrl_info
->event_work
, pqi_event_worker
);
6460 atomic_set(&ctrl_info
->num_interrupts
, 0);
6462 INIT_DELAYED_WORK(&ctrl_info
->rescan_work
, pqi_rescan_worker
);
6463 INIT_DELAYED_WORK(&ctrl_info
->update_time_work
, pqi_update_time_worker
);
6465 timer_setup(&ctrl_info
->heartbeat_timer
, pqi_heartbeat_timer_handler
, 0);
6466 INIT_WORK(&ctrl_info
->ctrl_offline_work
, pqi_ctrl_offline_worker
);
6468 sema_init(&ctrl_info
->sync_request_sem
,
6469 PQI_RESERVED_IO_SLOTS_SYNCHRONOUS_REQUESTS
);
6470 init_waitqueue_head(&ctrl_info
->block_requests_wait
);
6472 INIT_LIST_HEAD(&ctrl_info
->raid_bypass_retry_list
);
6473 spin_lock_init(&ctrl_info
->raid_bypass_retry_list_lock
);
6474 INIT_WORK(&ctrl_info
->raid_bypass_retry_work
,
6475 pqi_raid_bypass_retry_worker
);
6477 ctrl_info
->ctrl_id
= atomic_inc_return(&pqi_controller_count
) - 1;
6478 ctrl_info
->irq_mode
= IRQ_MODE_NONE
;
6479 ctrl_info
->max_msix_vectors
= PQI_MAX_MSIX_VECTORS
;
6484 static inline void pqi_free_ctrl_info(struct pqi_ctrl_info
*ctrl_info
)
6489 static void pqi_free_interrupts(struct pqi_ctrl_info
*ctrl_info
)
6491 pqi_free_irqs(ctrl_info
);
6492 pqi_disable_msix_interrupts(ctrl_info
);
6495 static void pqi_free_ctrl_resources(struct pqi_ctrl_info
*ctrl_info
)
6497 pqi_stop_heartbeat_timer(ctrl_info
);
6498 pqi_free_interrupts(ctrl_info
);
6499 if (ctrl_info
->queue_memory_base
)
6500 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6501 ctrl_info
->queue_memory_length
,
6502 ctrl_info
->queue_memory_base
,
6503 ctrl_info
->queue_memory_base_dma_handle
);
6504 if (ctrl_info
->admin_queue_memory_base
)
6505 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6506 ctrl_info
->admin_queue_memory_length
,
6507 ctrl_info
->admin_queue_memory_base
,
6508 ctrl_info
->admin_queue_memory_base_dma_handle
);
6509 pqi_free_all_io_requests(ctrl_info
);
6510 if (ctrl_info
->error_buffer
)
6511 dma_free_coherent(&ctrl_info
->pci_dev
->dev
,
6512 ctrl_info
->error_buffer_length
,
6513 ctrl_info
->error_buffer
,
6514 ctrl_info
->error_buffer_dma_handle
);
6515 if (ctrl_info
->iomem_base
)
6516 pqi_cleanup_pci_init(ctrl_info
);
6517 pqi_free_ctrl_info(ctrl_info
);
6520 static void pqi_remove_ctrl(struct pqi_ctrl_info
*ctrl_info
)
6522 pqi_cancel_rescan_worker(ctrl_info
);
6523 pqi_cancel_update_time_worker(ctrl_info
);
6524 pqi_remove_all_scsi_devices(ctrl_info
);
6525 pqi_unregister_scsi(ctrl_info
);
6526 if (ctrl_info
->pqi_mode_enabled
)
6527 pqi_revert_to_sis_mode(ctrl_info
);
6528 pqi_free_ctrl_resources(ctrl_info
);
6531 static void pqi_perform_lockup_action(void)
6533 switch (pqi_lockup_action
) {
6535 panic("FATAL: Smart Family Controller lockup detected");
6538 emergency_restart();
6546 static struct pqi_raid_error_info pqi_ctrl_offline_raid_error_info
= {
6547 .data_out_result
= PQI_DATA_IN_OUT_HARDWARE_ERROR
,
6548 .status
= SAM_STAT_CHECK_CONDITION
,
6551 static void pqi_fail_all_outstanding_requests(struct pqi_ctrl_info
*ctrl_info
)
6554 struct pqi_io_request
*io_request
;
6555 struct scsi_cmnd
*scmd
;
6557 for (i
= 0; i
< ctrl_info
->max_io_slots
; i
++) {
6558 io_request
= &ctrl_info
->io_request_pool
[i
];
6559 if (atomic_read(&io_request
->refcount
) == 0)
6562 scmd
= io_request
->scmd
;
6564 set_host_byte(scmd
, DID_NO_CONNECT
);
6566 io_request
->status
= -ENXIO
;
6567 io_request
->error_info
=
6568 &pqi_ctrl_offline_raid_error_info
;
6571 io_request
->io_complete_callback(io_request
,
6572 io_request
->context
);
6576 static void pqi_take_ctrl_offline_deferred(struct pqi_ctrl_info
*ctrl_info
)
6578 pqi_perform_lockup_action();
6579 pqi_stop_heartbeat_timer(ctrl_info
);
6580 pqi_free_interrupts(ctrl_info
);
6581 pqi_cancel_rescan_worker(ctrl_info
);
6582 pqi_cancel_update_time_worker(ctrl_info
);
6583 pqi_ctrl_wait_until_quiesced(ctrl_info
);
6584 pqi_fail_all_outstanding_requests(ctrl_info
);
6585 pqi_clear_all_queued_raid_bypass_retries(ctrl_info
);
6586 pqi_ctrl_unblock_requests(ctrl_info
);
6589 static void pqi_ctrl_offline_worker(struct work_struct
*work
)
6591 struct pqi_ctrl_info
*ctrl_info
;
6593 ctrl_info
= container_of(work
, struct pqi_ctrl_info
, ctrl_offline_work
);
6594 pqi_take_ctrl_offline_deferred(ctrl_info
);
6597 static void pqi_take_ctrl_offline(struct pqi_ctrl_info
*ctrl_info
)
6599 if (!ctrl_info
->controller_online
)
6602 ctrl_info
->controller_online
= false;
6603 ctrl_info
->pqi_mode_enabled
= false;
6604 pqi_ctrl_block_requests(ctrl_info
);
6605 if (!pqi_disable_ctrl_shutdown
)
6606 sis_shutdown_ctrl(ctrl_info
);
6607 pci_disable_device(ctrl_info
->pci_dev
);
6608 dev_err(&ctrl_info
->pci_dev
->dev
, "controller offline\n");
6609 schedule_work(&ctrl_info
->ctrl_offline_work
);
6612 static void pqi_print_ctrl_info(struct pci_dev
*pci_dev
,
6613 const struct pci_device_id
*id
)
6615 char *ctrl_description
;
6617 if (id
->driver_data
)
6618 ctrl_description
= (char *)id
->driver_data
;
6620 ctrl_description
= "Microsemi Smart Family Controller";
6622 dev_info(&pci_dev
->dev
, "%s found\n", ctrl_description
);
6625 static int pqi_pci_probe(struct pci_dev
*pci_dev
,
6626 const struct pci_device_id
*id
)
6630 struct pqi_ctrl_info
*ctrl_info
;
6632 pqi_print_ctrl_info(pci_dev
, id
);
6634 if (pqi_disable_device_id_wildcards
&&
6635 id
->subvendor
== PCI_ANY_ID
&&
6636 id
->subdevice
== PCI_ANY_ID
) {
6637 dev_warn(&pci_dev
->dev
,
6638 "controller not probed because device ID wildcards are disabled\n");
6642 if (id
->subvendor
== PCI_ANY_ID
|| id
->subdevice
== PCI_ANY_ID
)
6643 dev_warn(&pci_dev
->dev
,
6644 "controller device ID matched using wildcards\n");
6646 node
= dev_to_node(&pci_dev
->dev
);
6647 if (node
== NUMA_NO_NODE
)
6648 set_dev_node(&pci_dev
->dev
, 0);
6650 ctrl_info
= pqi_alloc_ctrl_info(node
);
6652 dev_err(&pci_dev
->dev
,
6653 "failed to allocate controller info block\n");
6657 ctrl_info
->pci_dev
= pci_dev
;
6659 rc
= pqi_pci_init(ctrl_info
);
6663 rc
= pqi_ctrl_init(ctrl_info
);
6670 pqi_remove_ctrl(ctrl_info
);
6675 static void pqi_pci_remove(struct pci_dev
*pci_dev
)
6677 struct pqi_ctrl_info
*ctrl_info
;
6679 ctrl_info
= pci_get_drvdata(pci_dev
);
6683 pqi_remove_ctrl(ctrl_info
);
6686 static void pqi_shutdown(struct pci_dev
*pci_dev
)
6689 struct pqi_ctrl_info
*ctrl_info
;
6691 ctrl_info
= pci_get_drvdata(pci_dev
);
6696 * Write all data in the controller's battery-backed cache to
6699 rc
= pqi_flush_cache(ctrl_info
, SHUTDOWN
);
6700 pqi_free_interrupts(ctrl_info
);
6701 pqi_reset(ctrl_info
);
6706 dev_warn(&pci_dev
->dev
,
6707 "unable to flush controller cache\n");
6710 static void pqi_process_lockup_action_param(void)
6714 if (!pqi_lockup_action_param
)
6717 for (i
= 0; i
< ARRAY_SIZE(pqi_lockup_actions
); i
++) {
6718 if (strcmp(pqi_lockup_action_param
,
6719 pqi_lockup_actions
[i
].name
) == 0) {
6720 pqi_lockup_action
= pqi_lockup_actions
[i
].action
;
6725 pr_warn("%s: invalid lockup action setting \"%s\" - supported settings: none, reboot, panic\n",
6726 DRIVER_NAME_SHORT
, pqi_lockup_action_param
);
6729 static void pqi_process_module_params(void)
6731 pqi_process_lockup_action_param();
6734 static __maybe_unused
int pqi_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
6736 struct pqi_ctrl_info
*ctrl_info
;
6738 ctrl_info
= pci_get_drvdata(pci_dev
);
6740 pqi_disable_events(ctrl_info
);
6741 pqi_cancel_update_time_worker(ctrl_info
);
6742 pqi_cancel_rescan_worker(ctrl_info
);
6743 pqi_wait_until_scan_finished(ctrl_info
);
6744 pqi_wait_until_lun_reset_finished(ctrl_info
);
6745 pqi_flush_cache(ctrl_info
, SUSPEND
);
6746 pqi_ctrl_block_requests(ctrl_info
);
6747 pqi_ctrl_wait_until_quiesced(ctrl_info
);
6748 pqi_wait_until_inbound_queues_empty(ctrl_info
);
6749 pqi_ctrl_wait_for_pending_io(ctrl_info
);
6750 pqi_stop_heartbeat_timer(ctrl_info
);
6752 if (state
.event
== PM_EVENT_FREEZE
)
6755 pci_save_state(pci_dev
);
6756 pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
));
6758 ctrl_info
->controller_online
= false;
6759 ctrl_info
->pqi_mode_enabled
= false;
6764 static __maybe_unused
int pqi_resume(struct pci_dev
*pci_dev
)
6767 struct pqi_ctrl_info
*ctrl_info
;
6769 ctrl_info
= pci_get_drvdata(pci_dev
);
6771 if (pci_dev
->current_state
!= PCI_D0
) {
6772 ctrl_info
->max_hw_queue_index
= 0;
6773 pqi_free_interrupts(ctrl_info
);
6774 pqi_change_irq_mode(ctrl_info
, IRQ_MODE_INTX
);
6775 rc
= request_irq(pci_irq_vector(pci_dev
, 0), pqi_irq_handler
,
6776 IRQF_SHARED
, DRIVER_NAME_SHORT
,
6777 &ctrl_info
->queue_groups
[0]);
6779 dev_err(&ctrl_info
->pci_dev
->dev
,
6780 "irq %u init failed with error %d\n",
6784 pqi_start_heartbeat_timer(ctrl_info
);
6785 pqi_ctrl_unblock_requests(ctrl_info
);
6789 pci_set_power_state(pci_dev
, PCI_D0
);
6790 pci_restore_state(pci_dev
);
6792 return pqi_ctrl_init_resume(ctrl_info
);
6795 /* Define the PCI IDs for the controllers that we support. */
6796 static const struct pci_device_id pqi_pci_id_table
[] = {
6798 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6802 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6806 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6810 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6814 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6818 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6822 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6826 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6830 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6834 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6838 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6842 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6846 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6850 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6854 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6858 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6862 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6866 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6870 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6871 PCI_VENDOR_ID_ADAPTEC2
, 0x0110)
6874 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6875 PCI_VENDOR_ID_ADAPTEC2
, 0x0608)
6878 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6879 PCI_VENDOR_ID_ADAPTEC2
, 0x0800)
6882 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6883 PCI_VENDOR_ID_ADAPTEC2
, 0x0801)
6886 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6887 PCI_VENDOR_ID_ADAPTEC2
, 0x0802)
6890 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6891 PCI_VENDOR_ID_ADAPTEC2
, 0x0803)
6894 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6895 PCI_VENDOR_ID_ADAPTEC2
, 0x0804)
6898 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6899 PCI_VENDOR_ID_ADAPTEC2
, 0x0805)
6902 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6903 PCI_VENDOR_ID_ADAPTEC2
, 0x0806)
6906 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6907 PCI_VENDOR_ID_ADAPTEC2
, 0x0807)
6910 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6911 PCI_VENDOR_ID_ADAPTEC2
, 0x0900)
6914 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6915 PCI_VENDOR_ID_ADAPTEC2
, 0x0901)
6918 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6919 PCI_VENDOR_ID_ADAPTEC2
, 0x0902)
6922 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6923 PCI_VENDOR_ID_ADAPTEC2
, 0x0903)
6926 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6927 PCI_VENDOR_ID_ADAPTEC2
, 0x0904)
6930 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6931 PCI_VENDOR_ID_ADAPTEC2
, 0x0905)
6934 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6935 PCI_VENDOR_ID_ADAPTEC2
, 0x0906)
6938 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6939 PCI_VENDOR_ID_ADAPTEC2
, 0x0907)
6942 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6943 PCI_VENDOR_ID_ADAPTEC2
, 0x0908)
6946 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6947 PCI_VENDOR_ID_ADAPTEC2
, 0x090a)
6950 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6951 PCI_VENDOR_ID_ADAPTEC2
, 0x1200)
6954 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6955 PCI_VENDOR_ID_ADAPTEC2
, 0x1201)
6958 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6959 PCI_VENDOR_ID_ADAPTEC2
, 0x1202)
6962 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6963 PCI_VENDOR_ID_ADAPTEC2
, 0x1280)
6966 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6967 PCI_VENDOR_ID_ADAPTEC2
, 0x1281)
6970 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6971 PCI_VENDOR_ID_ADAPTEC2
, 0x1282)
6974 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6975 PCI_VENDOR_ID_ADAPTEC2
, 0x1300)
6978 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6979 PCI_VENDOR_ID_ADAPTEC2
, 0x1301)
6982 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6983 PCI_VENDOR_ID_ADAPTEC2
, 0x1302)
6986 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6987 PCI_VENDOR_ID_ADAPTEC2
, 0x1303)
6990 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6991 PCI_VENDOR_ID_ADAPTEC2
, 0x1380)
6994 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6995 PCI_VENDOR_ID_ADVANTECH
, 0x8312)
6998 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
6999 PCI_VENDOR_ID_DELL
, 0x1fe0)
7002 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7003 PCI_VENDOR_ID_HP
, 0x0600)
7006 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7007 PCI_VENDOR_ID_HP
, 0x0601)
7010 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7011 PCI_VENDOR_ID_HP
, 0x0602)
7014 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7015 PCI_VENDOR_ID_HP
, 0x0603)
7018 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7019 PCI_VENDOR_ID_HP
, 0x0609)
7022 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7023 PCI_VENDOR_ID_HP
, 0x0650)
7026 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7027 PCI_VENDOR_ID_HP
, 0x0651)
7030 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7031 PCI_VENDOR_ID_HP
, 0x0652)
7034 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7035 PCI_VENDOR_ID_HP
, 0x0653)
7038 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7039 PCI_VENDOR_ID_HP
, 0x0654)
7042 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7043 PCI_VENDOR_ID_HP
, 0x0655)
7046 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7047 PCI_VENDOR_ID_HP
, 0x0700)
7050 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7051 PCI_VENDOR_ID_HP
, 0x0701)
7054 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7055 PCI_VENDOR_ID_HP
, 0x1001)
7058 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7059 PCI_VENDOR_ID_HP
, 0x1100)
7062 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7063 PCI_VENDOR_ID_HP
, 0x1101)
7066 PCI_DEVICE_SUB(PCI_VENDOR_ID_ADAPTEC2
, 0x028f,
7067 PCI_ANY_ID
, PCI_ANY_ID
)
7072 MODULE_DEVICE_TABLE(pci
, pqi_pci_id_table
);
7074 static struct pci_driver pqi_pci_driver
= {
7075 .name
= DRIVER_NAME_SHORT
,
7076 .id_table
= pqi_pci_id_table
,
7077 .probe
= pqi_pci_probe
,
7078 .remove
= pqi_pci_remove
,
7079 .shutdown
= pqi_shutdown
,
7080 #if defined(CONFIG_PM)
7081 .suspend
= pqi_suspend
,
7082 .resume
= pqi_resume
,
7086 static int __init
pqi_init(void)
7090 pr_info(DRIVER_NAME
"\n");
7092 pqi_sas_transport_template
=
7093 sas_attach_transport(&pqi_sas_transport_functions
);
7094 if (!pqi_sas_transport_template
)
7097 pqi_process_module_params();
7099 rc
= pci_register_driver(&pqi_pci_driver
);
7101 sas_release_transport(pqi_sas_transport_template
);
7106 static void __exit
pqi_cleanup(void)
7108 pci_unregister_driver(&pqi_pci_driver
);
7109 sas_release_transport(pqi_sas_transport_template
);
7112 module_init(pqi_init
);
7113 module_exit(pqi_cleanup
);
7115 static void __attribute__((unused
)) verify_structures(void)
7117 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7118 sis_host_to_ctrl_doorbell
) != 0x20);
7119 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7120 sis_interrupt_mask
) != 0x34);
7121 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7122 sis_ctrl_to_host_doorbell
) != 0x9c);
7123 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7124 sis_ctrl_to_host_doorbell_clear
) != 0xa0);
7125 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7126 sis_driver_scratch
) != 0xb0);
7127 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7128 sis_firmware_status
) != 0xbc);
7129 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7130 sis_mailbox
) != 0x1000);
7131 BUILD_BUG_ON(offsetof(struct pqi_ctrl_registers
,
7132 pqi_registers
) != 0x4000);
7134 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7136 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7138 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7139 response_queue_id
) != 0x4);
7140 BUILD_BUG_ON(offsetof(struct pqi_iu_header
,
7142 BUILD_BUG_ON(sizeof(struct pqi_iu_header
) != 0x8);
7144 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7146 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7147 service_response
) != 0x1);
7148 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7149 data_present
) != 0x2);
7150 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7152 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7153 residual_count
) != 0x4);
7154 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7155 data_length
) != 0x8);
7156 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7158 BUILD_BUG_ON(offsetof(struct pqi_aio_error_info
,
7160 BUILD_BUG_ON(sizeof(struct pqi_aio_error_info
) != 0x10c);
7162 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7163 data_in_result
) != 0x0);
7164 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7165 data_out_result
) != 0x1);
7166 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7168 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7170 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7171 status_qualifier
) != 0x6);
7172 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7173 sense_data_length
) != 0x8);
7174 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7175 response_data_length
) != 0xa);
7176 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7177 data_in_transferred
) != 0xc);
7178 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7179 data_out_transferred
) != 0x10);
7180 BUILD_BUG_ON(offsetof(struct pqi_raid_error_info
,
7182 BUILD_BUG_ON(sizeof(struct pqi_raid_error_info
) != 0x114);
7184 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7186 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7187 function_and_status_code
) != 0x8);
7188 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7189 max_admin_iq_elements
) != 0x10);
7190 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7191 max_admin_oq_elements
) != 0x11);
7192 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7193 admin_iq_element_length
) != 0x12);
7194 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7195 admin_oq_element_length
) != 0x13);
7196 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7197 max_reset_timeout
) != 0x14);
7198 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7199 legacy_intx_status
) != 0x18);
7200 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7201 legacy_intx_mask_set
) != 0x1c);
7202 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7203 legacy_intx_mask_clear
) != 0x20);
7204 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7205 device_status
) != 0x40);
7206 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7207 admin_iq_pi_offset
) != 0x48);
7208 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7209 admin_oq_ci_offset
) != 0x50);
7210 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7211 admin_iq_element_array_addr
) != 0x58);
7212 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7213 admin_oq_element_array_addr
) != 0x60);
7214 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7215 admin_iq_ci_addr
) != 0x68);
7216 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7217 admin_oq_pi_addr
) != 0x70);
7218 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7219 admin_iq_num_elements
) != 0x78);
7220 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7221 admin_oq_num_elements
) != 0x79);
7222 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7223 admin_queue_int_msg_num
) != 0x7a);
7224 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7225 device_error
) != 0x80);
7226 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7227 error_details
) != 0x88);
7228 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7229 device_reset
) != 0x90);
7230 BUILD_BUG_ON(offsetof(struct pqi_device_registers
,
7231 power_action
) != 0x94);
7232 BUILD_BUG_ON(sizeof(struct pqi_device_registers
) != 0x100);
7234 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7235 header
.iu_type
) != 0);
7236 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7237 header
.iu_length
) != 2);
7238 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7239 header
.work_area
) != 6);
7240 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7242 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7243 function_code
) != 10);
7244 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7245 data
.report_device_capability
.buffer_length
) != 44);
7246 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7247 data
.report_device_capability
.sg_descriptor
) != 48);
7248 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7249 data
.create_operational_iq
.queue_id
) != 12);
7250 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7251 data
.create_operational_iq
.element_array_addr
) != 16);
7252 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7253 data
.create_operational_iq
.ci_addr
) != 24);
7254 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7255 data
.create_operational_iq
.num_elements
) != 32);
7256 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7257 data
.create_operational_iq
.element_length
) != 34);
7258 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7259 data
.create_operational_iq
.queue_protocol
) != 36);
7260 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7261 data
.create_operational_oq
.queue_id
) != 12);
7262 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7263 data
.create_operational_oq
.element_array_addr
) != 16);
7264 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7265 data
.create_operational_oq
.pi_addr
) != 24);
7266 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7267 data
.create_operational_oq
.num_elements
) != 32);
7268 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7269 data
.create_operational_oq
.element_length
) != 34);
7270 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7271 data
.create_operational_oq
.queue_protocol
) != 36);
7272 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7273 data
.create_operational_oq
.int_msg_num
) != 40);
7274 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7275 data
.create_operational_oq
.coalescing_count
) != 42);
7276 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7277 data
.create_operational_oq
.min_coalescing_time
) != 44);
7278 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7279 data
.create_operational_oq
.max_coalescing_time
) != 48);
7280 BUILD_BUG_ON(offsetof(struct pqi_general_admin_request
,
7281 data
.delete_operational_queue
.queue_id
) != 12);
7282 BUILD_BUG_ON(sizeof(struct pqi_general_admin_request
) != 64);
7283 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7284 data
.create_operational_iq
) != 64 - 11);
7285 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7286 data
.create_operational_oq
) != 64 - 11);
7287 BUILD_BUG_ON(FIELD_SIZEOF(struct pqi_general_admin_request
,
7288 data
.delete_operational_queue
) != 64 - 11);
7290 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7291 header
.iu_type
) != 0);
7292 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7293 header
.iu_length
) != 2);
7294 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7295 header
.work_area
) != 6);
7296 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7298 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7299 function_code
) != 10);
7300 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7302 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7303 data
.create_operational_iq
.status_descriptor
) != 12);
7304 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7305 data
.create_operational_iq
.iq_pi_offset
) != 16);
7306 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7307 data
.create_operational_oq
.status_descriptor
) != 12);
7308 BUILD_BUG_ON(offsetof(struct pqi_general_admin_response
,
7309 data
.create_operational_oq
.oq_ci_offset
) != 16);
7310 BUILD_BUG_ON(sizeof(struct pqi_general_admin_response
) != 64);
7312 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7313 header
.iu_type
) != 0);
7314 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7315 header
.iu_length
) != 2);
7316 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7317 header
.response_queue_id
) != 4);
7318 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7319 header
.work_area
) != 6);
7320 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7322 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7324 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7325 buffer_length
) != 12);
7326 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7328 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7329 protocol_specific
) != 24);
7330 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7331 error_index
) != 27);
7332 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7334 BUILD_BUG_ON(offsetof(struct pqi_raid_path_request
,
7335 sg_descriptors
) != 64);
7336 BUILD_BUG_ON(sizeof(struct pqi_raid_path_request
) !=
7337 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
7339 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7340 header
.iu_type
) != 0);
7341 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7342 header
.iu_length
) != 2);
7343 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7344 header
.response_queue_id
) != 4);
7345 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7346 header
.work_area
) != 6);
7347 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7349 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7351 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7352 buffer_length
) != 16);
7353 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7354 data_encryption_key_index
) != 22);
7355 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7356 encrypt_tweak_lower
) != 24);
7357 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7358 encrypt_tweak_upper
) != 28);
7359 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7361 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7362 error_index
) != 48);
7363 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7364 num_sg_descriptors
) != 50);
7365 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7367 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7369 BUILD_BUG_ON(offsetof(struct pqi_aio_path_request
,
7370 sg_descriptors
) != 64);
7371 BUILD_BUG_ON(sizeof(struct pqi_aio_path_request
) !=
7372 PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
);
7374 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7375 header
.iu_type
) != 0);
7376 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7377 header
.iu_length
) != 2);
7378 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7380 BUILD_BUG_ON(offsetof(struct pqi_io_response
,
7381 error_index
) != 10);
7383 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7384 header
.iu_type
) != 0);
7385 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7386 header
.iu_length
) != 2);
7387 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7388 header
.response_queue_id
) != 4);
7389 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7391 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7392 data
.report_event_configuration
.buffer_length
) != 12);
7393 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7394 data
.report_event_configuration
.sg_descriptors
) != 16);
7395 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7396 data
.set_event_configuration
.global_event_oq_id
) != 10);
7397 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7398 data
.set_event_configuration
.buffer_length
) != 12);
7399 BUILD_BUG_ON(offsetof(struct pqi_general_management_request
,
7400 data
.set_event_configuration
.sg_descriptors
) != 16);
7402 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
7403 max_inbound_iu_length
) != 6);
7404 BUILD_BUG_ON(offsetof(struct pqi_iu_layer_descriptor
,
7405 max_outbound_iu_length
) != 14);
7406 BUILD_BUG_ON(sizeof(struct pqi_iu_layer_descriptor
) != 16);
7408 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7410 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7411 iq_arbitration_priority_support_bitmask
) != 8);
7412 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7413 maximum_aw_a
) != 9);
7414 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7415 maximum_aw_b
) != 10);
7416 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7417 maximum_aw_c
) != 11);
7418 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7419 max_inbound_queues
) != 16);
7420 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7421 max_elements_per_iq
) != 18);
7422 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7423 max_iq_element_length
) != 24);
7424 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7425 min_iq_element_length
) != 26);
7426 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7427 max_outbound_queues
) != 30);
7428 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7429 max_elements_per_oq
) != 32);
7430 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7431 intr_coalescing_time_granularity
) != 34);
7432 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7433 max_oq_element_length
) != 36);
7434 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7435 min_oq_element_length
) != 38);
7436 BUILD_BUG_ON(offsetof(struct pqi_device_capability
,
7437 iu_layer_descriptors
) != 64);
7438 BUILD_BUG_ON(sizeof(struct pqi_device_capability
) != 576);
7440 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
7442 BUILD_BUG_ON(offsetof(struct pqi_event_descriptor
,
7444 BUILD_BUG_ON(sizeof(struct pqi_event_descriptor
) != 4);
7446 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
7447 num_event_descriptors
) != 2);
7448 BUILD_BUG_ON(offsetof(struct pqi_event_config
,
7451 BUILD_BUG_ON(PQI_NUM_SUPPORTED_EVENTS
!=
7452 ARRAY_SIZE(pqi_supported_event_types
));
7454 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7455 header
.iu_type
) != 0);
7456 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7457 header
.iu_length
) != 2);
7458 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7460 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7462 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7463 additional_event_id
) != 12);
7464 BUILD_BUG_ON(offsetof(struct pqi_event_response
,
7466 BUILD_BUG_ON(sizeof(struct pqi_event_response
) != 32);
7468 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7469 header
.iu_type
) != 0);
7470 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7471 header
.iu_length
) != 2);
7472 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7474 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7476 BUILD_BUG_ON(offsetof(struct pqi_event_acknowledge_request
,
7477 additional_event_id
) != 12);
7478 BUILD_BUG_ON(sizeof(struct pqi_event_acknowledge_request
) != 16);
7480 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7481 header
.iu_type
) != 0);
7482 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7483 header
.iu_length
) != 2);
7484 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7486 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7488 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7490 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7491 protocol_specific
) != 24);
7492 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7493 outbound_queue_id_to_manage
) != 26);
7494 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7495 request_id_to_manage
) != 28);
7496 BUILD_BUG_ON(offsetof(struct pqi_task_management_request
,
7497 task_management_function
) != 30);
7498 BUILD_BUG_ON(sizeof(struct pqi_task_management_request
) != 32);
7500 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7501 header
.iu_type
) != 0);
7502 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7503 header
.iu_length
) != 2);
7504 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7506 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7508 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7509 additional_response_info
) != 12);
7510 BUILD_BUG_ON(offsetof(struct pqi_task_management_response
,
7511 response_code
) != 15);
7512 BUILD_BUG_ON(sizeof(struct pqi_task_management_response
) != 16);
7514 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7515 configured_logical_drive_count
) != 0);
7516 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7517 configuration_signature
) != 1);
7518 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7519 firmware_version
) != 5);
7520 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7521 extended_logical_unit_count
) != 154);
7522 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7523 firmware_build_number
) != 190);
7524 BUILD_BUG_ON(offsetof(struct bmic_identify_controller
,
7525 controller_mode
) != 292);
7527 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7528 phys_bay_in_box
) != 115);
7529 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7530 device_type
) != 120);
7531 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7532 redundant_path_present_map
) != 1736);
7533 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7534 active_path_number
) != 1738);
7535 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7536 alternate_paths_phys_connector
) != 1739);
7537 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7538 alternate_paths_phys_box_on_port
) != 1755);
7539 BUILD_BUG_ON(offsetof(struct bmic_identify_physical_device
,
7540 current_queue_depth_limit
) != 1796);
7541 BUILD_BUG_ON(sizeof(struct bmic_identify_physical_device
) != 2560);
7543 BUILD_BUG_ON(PQI_ADMIN_IQ_NUM_ELEMENTS
> 255);
7544 BUILD_BUG_ON(PQI_ADMIN_OQ_NUM_ELEMENTS
> 255);
7545 BUILD_BUG_ON(PQI_ADMIN_IQ_ELEMENT_LENGTH
%
7546 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7547 BUILD_BUG_ON(PQI_ADMIN_OQ_ELEMENT_LENGTH
%
7548 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7549 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
> 1048560);
7550 BUILD_BUG_ON(PQI_OPERATIONAL_IQ_ELEMENT_LENGTH
%
7551 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7552 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
> 1048560);
7553 BUILD_BUG_ON(PQI_OPERATIONAL_OQ_ELEMENT_LENGTH
%
7554 PQI_QUEUE_ELEMENT_LENGTH_ALIGNMENT
!= 0);
7556 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>= PQI_MAX_OUTSTANDING_REQUESTS
);
7557 BUILD_BUG_ON(PQI_RESERVED_IO_SLOTS
>=
7558 PQI_MAX_OUTSTANDING_REQUESTS_KDUMP
);