Lines Matching defs:pm8001_hba_info

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