Lines Matching defs:pm8001_hba_info
475 struct pm8001_hba_info { struct
476 char name[PM8001_NAME_LENGTH];
477 struct list_head list;
478 unsigned long flags;
479 spinlock_t lock;/* host-wide lock */
480 spinlock_t bitmap_lock;
481 struct pci_dev *pdev;/* our device */
482 struct device *dev;
483 struct pm8001_hba_memspace io_mem[6];
484 struct mpi_mem_req memoryMap;
485 struct encrypt encrypt_info; /* support encryption */
486 struct forensic_data forensic_info;
487 u32 fatal_bar_loc;
488 u32 forensic_last_offset;
489 u32 fatal_forensic_shift_offset;
490 u32 forensic_fatal_step;
491 u32 evtlog_ib_offset;
492 u32 evtlog_ob_offset;
493 void __iomem *msg_unit_tbl_addr;/*Message Unit Table Addr*/
494 void __iomem *main_cfg_tbl_addr;/*Main Config Table Addr*/
495 void __iomem *general_stat_tbl_addr;/*General Status Table Addr*/
496 void __iomem *inbnd_q_tbl_addr;/*Inbound Queue Config Table Addr*/
497 void __iomem *outbnd_q_tbl_addr;/*Outbound Queue Config Table Addr*/
498 void __iomem *pspa_q_tbl_addr;
500 void __iomem *ivt_tbl_addr; /*MPI IVT Table Addr */
501 void __iomem *fatal_tbl_addr; /*MPI IVT Table Addr */
502 union main_cfg_table main_cfg_tbl;
503 union general_status_table gs_tbl;
504 struct inbound_queue_table inbnd_q_tbl[PM8001_MAX_SPCV_INB_NUM];
505 struct outbound_queue_table outbnd_q_tbl[PM8001_MAX_SPCV_OUTB_NUM];
506 struct sas_phy_attribute_table phy_attr_table;
508 u8 sas_addr[SAS_ADDR_SIZE];
509 struct sas_ha_struct *sas;/* SCSI/SAS glue */
510 struct Scsi_Host *shost;
511 u32 chip_id;
512 const struct pm8001_chip_info *chip;
513 struct completion *nvmd_completion;
514 int tags_num;
515 unsigned long *tags;
516 struct pm8001_phy phy[PM8001_MAX_PHYS];
540 struct pm8001_hba_info *pm8001_ha; argument