Lines Matching defs:pm8001_hba_info

470 struct pm8001_hba_info {  struct
471 char name[PM8001_NAME_LENGTH];
472 struct list_head list;
473 unsigned long flags;
474 spinlock_t lock;/* host-wide lock */
475 spinlock_t bitmap_lock;
476 struct pci_dev *pdev;/* our device */
477 struct device *dev;
478 struct pm8001_hba_memspace io_mem[6];
479 struct mpi_mem_req memoryMap;
480 struct encrypt encrypt_info; /* support encryption */
481 struct forensic_data forensic_info;
482 u32 fatal_bar_loc;
483 u32 forensic_last_offset;
484 u32 fatal_forensic_shift_offset;
485 u32 forensic_fatal_step;
486 u32 forensic_preserved_accumulated_transfer;
487 u32 evtlog_ib_offset;
488 u32 evtlog_ob_offset;
489 void __iomem *msg_unit_tbl_addr;/*Message Unit Table Addr*/
490 void __iomem *main_cfg_tbl_addr;/*Main Config Table Addr*/
491 void __iomem *general_stat_tbl_addr;/*General Status Table Addr*/
492 void __iomem *inbnd_q_tbl_addr;/*Inbound Queue Config Table Addr*/
493 void __iomem *outbnd_q_tbl_addr;/*Outbound Queue Config Table Addr*/
494 void __iomem *pspa_q_tbl_addr;
496 void __iomem *ivt_tbl_addr; /*MPI IVT Table Addr */
497 void __iomem *fatal_tbl_addr; /*MPI IVT Table Addr */
498 union main_cfg_table main_cfg_tbl;
499 union general_status_table gs_tbl;
500 struct inbound_queue_table inbnd_q_tbl[PM8001_MAX_INB_NUM];
501 struct outbound_queue_table outbnd_q_tbl[PM8001_MAX_OUTB_NUM];
502 struct sas_phy_attribute_table phy_attr_table;
504 u8 sas_addr[SAS_ADDR_SIZE];
505 struct sas_ha_struct *sas;/* SCSI/SAS glue */
506 struct Scsi_Host *shost;
507 u32 chip_id;
508 const struct pm8001_chip_info *chip;
509 struct completion *nvmd_completion;
510 int tags_num;
511 unsigned long *tags;
512 struct pm8001_phy phy[PM8001_MAX_PHYS];
513 struct pm8001_port port[PM8001_MAX_PHYS];
514 u32 id;
515 u32 irq;
516 u32 iomb_size; /* SPC and SPCV IOMB size */
517 struct pm8001_device *devices;
518 struct pm8001_ccb_info *ccb_info;
520 int number_of_intr;/*will be used in remove()*/
521 char intr_drvname[PM8001_MAX_MSIX_VEC]
547 struct pm8001_hba_info *pm8001_ha; argument