Lines Matching defs:pm8001_hba_info

472 struct pm8001_hba_info {  struct
473 char name[PM8001_NAME_LENGTH];
474 struct list_head list;
475 unsigned long flags;
476 spinlock_t lock;/* host-wide lock */
477 spinlock_t bitmap_lock;
478 struct pci_dev *pdev;/* our device */
479 struct device *dev;
480 struct pm8001_hba_memspace io_mem[6];
481 struct mpi_mem_req memoryMap;
482 struct encrypt encrypt_info; /* support encryption */
483 struct forensic_data forensic_info;
484 u32 fatal_bar_loc;
485 u32 forensic_last_offset;
486 u32 fatal_forensic_shift_offset;
487 u32 forensic_fatal_step;
488 u32 forensic_preserved_accumulated_transfer;
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_INB_NUM];
503 struct outbound_queue_table outbnd_q_tbl[PM8001_MAX_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];
515 struct pm8001_port port[PM8001_MAX_PHYS];
516 u32 id;
517 u32 irq;
518 u32 iomb_size; /* SPC and SPCV IOMB size */
519 struct pm8001_device *devices;
520 struct pm8001_ccb_info *ccb_info;
521 u32 ccb_count;
523 int number_of_intr;/*will be used in remove()*/
524 char intr_drvname[PM8001_MAX_MSIX_VEC]
550 struct pm8001_hba_info *pm8001_ha; argument