Lines Matching refs:hw_prof

232 	asd_ha->hw_prof.max_scbs = 512;  in asd_common_setup()
233 asd_ha->hw_prof.max_ddbs = ASD_MAX_DDBS; in asd_common_setup()
234 asd_ha->hw_prof.num_phys = ASD_MAX_PHYS; in asd_common_setup()
236 asd_ha->hw_prof.enabled_phys = 0xFF; in asd_common_setup()
238 asd_ha->hw_prof.phy_desc[i].max_sas_lrate = in asd_common_setup()
240 asd_ha->hw_prof.phy_desc[i].min_sas_lrate = in asd_common_setup()
242 asd_ha->hw_prof.phy_desc[i].max_sata_lrate = in asd_common_setup()
244 asd_ha->hw_prof.phy_desc[i].min_sata_lrate = in asd_common_setup()
260 asd_ha->hw_prof.addr_range = 8; in asd_aic9410_setup()
261 asd_ha->hw_prof.port_name_base = 0; in asd_aic9410_setup()
262 asd_ha->hw_prof.dev_name_base = 8; in asd_aic9410_setup()
263 asd_ha->hw_prof.sata_name_base = 16; in asd_aic9410_setup()
275 asd_ha->hw_prof.addr_range = 4; in asd_aic9405_setup()
276 asd_ha->hw_prof.port_name_base = 0; in asd_aic9405_setup()
277 asd_ha->hw_prof.dev_name_base = 4; in asd_aic9405_setup()
278 asd_ha->hw_prof.sata_name_base = 8; in asd_aic9405_setup()
296 return snprintf(buf, PAGE_SIZE, "%d\n", asd_ha->hw_prof.bios.bld); in asd_show_dev_bios_build()
304 return snprintf(buf, PAGE_SIZE, "%s\n", asd_ha->hw_prof.pcba_sn); in asd_show_dev_pcba_sn()
588 if (asd_ha->hw_prof.ddb_ext) in asd_destroy_ha_caches()
589 asd_free_coherent(asd_ha, asd_ha->hw_prof.ddb_ext); in asd_destroy_ha_caches()
590 if (asd_ha->hw_prof.scb_ext) in asd_destroy_ha_caches()
591 asd_free_coherent(asd_ha, asd_ha->hw_prof.scb_ext); in asd_destroy_ha_caches()
593 if (asd_ha->hw_prof.ddb_bitmap) in asd_destroy_ha_caches()
594 kfree(asd_ha->hw_prof.ddb_bitmap); in asd_destroy_ha_caches()
595 asd_ha->hw_prof.ddb_bitmap = NULL; in asd_destroy_ha_caches()
606 if (asd_ha->hw_prof.ue.area) { in asd_destroy_ha_caches()
607 kfree(asd_ha->hw_prof.ue.area); in asd_destroy_ha_caches()
608 asd_ha->hw_prof.ue.area = NULL; in asd_destroy_ha_caches()
694 asd_ha->sas_ha.sas_addr = &asd_ha->hw_prof.sas_addr[0]; in asd_register_sas_ha()
808 pci_name(dev), SAS_ADDR(asd_ha->hw_prof.sas_addr), in asd_pci_probe()
809 asd_ha->hw_prof.pcba_sn, asd_ha->hw_prof.max_phys, in asd_pci_probe()
810 asd_ha->hw_prof.num_phys, in asd_pci_probe()
811 asd_ha->hw_prof.flash.present ? "present" : "not present", in asd_pci_probe()
812 asd_ha->hw_prof.bios.present ? "build " : "not present", in asd_pci_probe()
813 asd_ha->hw_prof.bios.bld); in asd_pci_probe()
907 u8 phy_mask = asd_ha->hw_prof.enabled_phys; in asd_turn_off_leds()
950 err = asd_enable_phys(asd_ha, asd_ha->hw_prof.enabled_phys); in asd_scan_start()