1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Marvell UMI head file
5 * Copyright 2011 Marvell. <jyli@marvell.com>
11 #define MAX_BASE_ADDRESS 6
16 #define VER_BUILD 1500
18 #define MV_DRIVER_NAME "mvumi"
19 #define PCI_DEVICE_ID_MARVELL_MV9143 0x9143
20 #define PCI_DEVICE_ID_MARVELL_MV9580 0x9580
22 #define MVUMI_INTERNAL_CMD_WAIT_TIME 45
23 #define MVUMI_INQUIRY_LENGTH 44
24 #define MVUMI_INQUIRY_UUID_OFF 36
25 #define MVUMI_INQUIRY_UUID_LEN 8
27 #define IS_DMA64 (sizeof(dma_addr_t) == 8)
29 enum mvumi_qc_result {
30 MV_QUEUE_COMMAND_RESULT_SENT = 0,
31 MV_QUEUE_COMMAND_RESULT_NO_RESOURCE,
34 struct mvumi_hw_regs {
36 void *main_int_cause_reg;
37 void *enpointa_mask_reg;
38 void *enpointb_mask_reg;
41 void *rstoutn_mask_reg;
42 void *sys_soft_rst_reg;
45 void *pciea_to_arm_drbl_reg;
46 void *arm_to_pciea_drbl_reg;
47 void *arm_to_pciea_mask_reg;
48 void *pciea_to_arm_msg0;
49 void *pciea_to_arm_msg1;
50 void *arm_to_pciea_msg0;
51 void *arm_to_pciea_msg1;
57 /* For Message Unit */
60 void *inb_aval_count_basel;
61 void *inb_aval_count_baseh;
62 void *inb_write_pointer;
63 void *inb_read_pointer;
64 void *outb_list_basel;
65 void *outb_list_baseh;
66 void *outb_copy_basel;
67 void *outb_copy_baseh;
68 void *outb_copy_pointer;
69 void *outb_read_pointer;
73 void *outb_coal_timeout;
75 /* Bit setting for HW */
80 u32 int_drbl_int_mask;
81 u32 int_main_int_mask;
82 u32 cl_pointer_toggle;
89 struct mvumi_dyn_list_entry {
96 #define SCSI_CMD_MARVELL_SPECIFIC 0xE1
97 #define CDB_CORE_MODULE 0x1
98 #define CDB_CORE_SHUTDOWN 0xB
101 DRBL_HANDSHAKE = 1 << 0,
102 DRBL_SOFT_RESET = 1 << 1,
103 DRBL_BUS_CHANGE = 1 << 2,
104 DRBL_EVENT_NOTIFY = 1 << 3,
105 DRBL_MU_RESET = 1 << 4,
106 DRBL_HANDSHAKE_ISR = DRBL_HANDSHAKE,
109 * Command flag is the flag for the CDB command itself
111 /* 1-non data; 0-data command */
112 CMD_FLAG_NON_DATA = 1 << 0,
113 CMD_FLAG_DMA = 1 << 1,
114 CMD_FLAG_PIO = 1 << 2,
115 /* 1-host read data */
116 CMD_FLAG_DATA_IN = 1 << 3,
117 /* 1-host write data */
118 CMD_FLAG_DATA_OUT = 1 << 4,
119 CMD_FLAG_PRDT_IN_HOST = 1 << 5,
122 #define APICDB0_EVENT 0xF4
123 #define APICDB1_EVENT_GETEVENT 0
124 #define APICDB1_HOST_GETEVENT 1
125 #define MAX_EVENTS_RETURNED 6
127 #define DEVICE_OFFLINE 0
128 #define DEVICE_ONLINE 1
130 struct mvumi_hotplug_event {
136 struct mvumi_driver_event {
144 u8 sense_data_length;
149 struct mvumi_event_req {
151 unsigned char reserved[3];
152 struct mvumi_driver_event events[MAX_EVENTS_RETURNED];
155 struct mvumi_events_wq {
156 struct work_struct work_q;
157 struct mvumi_hba *mhba;
162 #define HS_CAPABILITY_SUPPORT_COMPACT_SG (1U << 4)
163 #define HS_CAPABILITY_SUPPORT_PRD_HOST (1U << 5)
164 #define HS_CAPABILITY_SUPPORT_DYN_SRC (1U << 6)
165 #define HS_CAPABILITY_NEW_PAGE_IO_DEPTH_DEF (1U << 14)
167 #define MVUMI_MAX_SG_ENTRY 32
168 #define SGD_EOT (1L << 27)
169 #define SGD_EOT_CP (1L << 22)
177 struct mvumi_compact_sgl {
183 #define GET_COMPACT_SGD_SIZE(sgd) \
184 ((((struct mvumi_compact_sgl *)(sgd))->flags) & 0x3FFFFFL)
186 #define SET_COMPACT_SGD_SIZE(sgd, sz) do { \
187 (((struct mvumi_compact_sgl *)(sgd))->flags) &= ~0x3FFFFFL; \
188 (((struct mvumi_compact_sgl *)(sgd))->flags) |= (sz); \
190 #define sgd_getsz(_mhba, sgd, sz) do { \
191 if (_mhba->hba_capability & HS_CAPABILITY_SUPPORT_COMPACT_SG) \
192 (sz) = GET_COMPACT_SGD_SIZE(sgd); \
194 (sz) = (sgd)->size; \
197 #define sgd_setsz(_mhba, sgd, sz) do { \
198 if (_mhba->hba_capability & HS_CAPABILITY_SUPPORT_COMPACT_SG) \
199 SET_COMPACT_SGD_SIZE(sgd, sz); \
201 (sgd)->size = (sz); \
204 #define sgd_inc(_mhba, sgd) do { \
205 if (_mhba->hba_capability & HS_CAPABILITY_SUPPORT_COMPACT_SG) \
206 sgd = (struct mvumi_sgl *)(((unsigned char *) (sgd)) + 12); \
208 sgd = (struct mvumi_sgl *)(((unsigned char *) (sgd)) + 16); \
212 struct list_head entry;
216 unsigned short type; /* enum Resource_Type */
221 RESOURCE_CACHED_MEMORY = 0,
222 RESOURCE_UNCACHED_MEMORY
225 struct mvumi_sense_data {
231 u8 incorrect_length:1;
235 u8 additional_sense_length;
236 u8 command_specific_information[4];
237 u8 additional_sense_code;
238 u8 additional_sense_code_qualifier;
239 u8 field_replaceable_unit_code;
240 u8 sense_key_specific[3];
243 /* Request initiator must set the status to REQ_STATUS_PENDING. */
244 #define REQ_STATUS_PENDING 0x80
247 struct list_head queue_pointer;
248 struct mvumi_msg_frame *frame;
249 dma_addr_t frame_phys;
250 struct scsi_cmnd *scmd;
253 unsigned short request_id;
254 unsigned char cmd_status;
258 * the function type of the in bound frame
260 #define CL_FUN_SCSI_CMD 0x1
262 struct mvumi_msg_frame {
269 u32 data_transfer_length;
272 u8 cdb[MAX_COMMAND_SIZE];
277 * the respond flag for data_payload of the out bound frame
279 #define CL_RSP_FLAG_NODATA 0x0
280 #define CL_RSP_FLAG_SENSEDATA 0x1
282 struct mvumi_rsp_frame {
286 u8 rsp_flag; /* Indicates the type of Data_Payload.*/
291 struct mvumi_ob_data {
292 struct list_head list;
293 unsigned char data[];
296 struct version_info {
303 #define FW_MAX_DELAY 30
304 #define MVUMI_FW_BUSY (1U << 0)
305 #define MVUMI_FW_ATTACH (1U << 1)
306 #define MVUMI_FW_ALLOC (1U << 2)
309 * State is the state of the MU
311 #define FW_STATE_IDLE 0
312 #define FW_STATE_STARTING 1
313 #define FW_STATE_HANDSHAKING 2
314 #define FW_STATE_STARTED 3
315 #define FW_STATE_ABORT 4
317 #define HANDSHAKE_SIGNATURE 0x5A5A5A5AL
318 #define HANDSHAKE_READYSTATE 0x55AA5AA5L
319 #define HANDSHAKE_DONESTATE 0x55AAA55AL
321 /* HandShake Status definition */
322 #define HS_STATUS_OK 1
323 #define HS_STATUS_ERR 2
324 #define HS_STATUS_INVALID 3
326 /* HandShake State/Cmd definition */
329 #define HS_S_PAGE_ADDR 3
330 #define HS_S_QUERY_PAGE 4
331 #define HS_S_SEND_PAGE 5
334 #define HS_PAGE_VERIFY_SIZE 128
336 #define HS_GET_STATE(a) (a & 0xFFFF)
337 #define HS_GET_STATUS(a) ((a & 0xFFFF0000) >> 16)
338 #define HS_SET_STATE(a, b) (a |= (b & 0xFFFF))
339 #define HS_SET_STATUS(a, b) (a |= ((b & 0xFFFF) << 16))
341 /* handshake frame */
342 struct mvumi_hs_frame {
344 /* host information */
347 struct version_info host_ver; /* bios or driver version */
349 /* controller information */
355 /* communication list configuration */
367 u64 seconds_since1970;
370 struct mvumi_hs_header {
374 u32 frame_content[1];
378 * the page code type of the handshake header
380 #define HS_PAGE_FIRM_CAP 0x1
381 #define HS_PAGE_HOST_INFO 0x2
382 #define HS_PAGE_FIRM_CTL 0x3
383 #define HS_PAGE_CL_INFO 0x4
384 #define HS_PAGE_TOTAL 0x5
386 #define HSP_SIZE(i) sizeof(struct mvumi_hs_page##i)
388 #define HSP_MAX_SIZE ({ \
390 m1 = max(HSP_SIZE(1), HSP_SIZE(3)); \
391 m2 = max(HSP_SIZE(2), HSP_SIZE(4)); \
392 size = max(m1, m2); \
396 /* The format of the page code for Firmware capability */
397 struct mvumi_hs_page1 {
403 u16 max_devices_support;
406 u32 max_transfer_size;
407 struct version_info fw_ver;
408 u8 cl_in_max_entry_size;
409 u8 cl_out_max_entry_size;
410 u8 cl_inout_list_depth;
416 /* The format of the page code for Host information */
417 struct mvumi_hs_page2 {
425 struct version_info host_ver;
430 u64 seconds_since1970;
433 /* The format of the page code for firmware control */
434 struct mvumi_hs_page3 {
440 u32 host_bufferaddr_l;
441 u32 host_bufferaddr_h;
442 u32 host_eventaddr_l;
443 u32 host_eventaddr_h;
446 struct mvumi_hs_page4 {
461 unsigned short *stack;
466 struct mvumi_device {
467 struct list_head list;
468 struct scsi_device *sdev;
475 void *base_addr[MAX_BASE_ADDRESS];
476 u32 pci_base[MAX_BASE_ADDRESS];
478 struct list_head cmd_pool;
479 struct Scsi_Host *shost;
480 wait_queue_head_t int_cmd_wait_q;
481 struct pci_dev *pdev;
482 unsigned int unique_id;
483 atomic_t fw_outstanding;
484 struct mvumi_instance_template *instancet;
487 dma_addr_t ib_list_phys;
490 dma_addr_t ib_frame_phys;
493 dma_addr_t ob_list_phys;
496 dma_addr_t ib_shadow_phys;
499 dma_addr_t ob_shadow_phys;
501 void *handshake_page;
502 dma_addr_t handshake_page_phys;
504 unsigned int global_isr;
505 unsigned int isr_status;
507 unsigned short max_sge;
508 unsigned short max_target_id;
509 unsigned char *target_map;
511 unsigned int list_num_io;
512 unsigned int ib_max_size;
513 unsigned int ob_max_size;
514 unsigned int ib_max_size_setting;
515 unsigned int ob_max_size_setting;
516 unsigned int max_transfer_size;
517 unsigned char hba_total_pages;
518 unsigned char fw_flag;
519 unsigned char request_id_enabled;
520 unsigned char eot_flag;
521 unsigned short hba_capability;
522 unsigned short io_seq;
524 unsigned int ib_cur_slot;
525 unsigned int ob_cur_slot;
526 unsigned int fw_state;
527 struct mutex sas_discovery_mutex;
529 struct list_head ob_data_list;
530 struct list_head free_ob_list;
531 struct list_head res_list;
532 struct list_head waiting_req_list;
534 struct mvumi_tag tag_pool;
535 struct mvumi_cmd **tag_cmd;
536 struct mvumi_hw_regs *regs;
537 struct mutex device_lock;
538 struct list_head mhba_dev_list;
539 struct list_head shost_dev_list;
540 struct task_struct *dm_thread;
544 struct mvumi_instance_template {
545 void (*fire_cmd) (struct mvumi_hba *, struct mvumi_cmd *);
546 void (*enable_intr) (struct mvumi_hba *);
547 void (*disable_intr) (struct mvumi_hba *);
548 int (*clear_intr) (void *);
549 unsigned int (*read_fw_status_reg) (struct mvumi_hba *);
550 unsigned int (*check_ib_list) (struct mvumi_hba *);
551 int (*check_ob_list) (struct mvumi_hba *, unsigned int *,
553 int (*reset_host) (struct mvumi_hba *);
556 extern struct timezone sys_tz;