• Home
  • Raw
  • Download

Lines Matching refs:hw_prof

240 	asd_ha->hw_prof.max_scbs = 512;  in asd_common_setup()
241 asd_ha->hw_prof.max_ddbs = ASD_MAX_DDBS; in asd_common_setup()
242 asd_ha->hw_prof.num_phys = ASD_MAX_PHYS; in asd_common_setup()
244 asd_ha->hw_prof.enabled_phys = 0xFF; in asd_common_setup()
246 asd_ha->hw_prof.phy_desc[i].max_sas_lrate = in asd_common_setup()
248 asd_ha->hw_prof.phy_desc[i].min_sas_lrate = in asd_common_setup()
250 asd_ha->hw_prof.phy_desc[i].max_sata_lrate = in asd_common_setup()
252 asd_ha->hw_prof.phy_desc[i].min_sata_lrate = in asd_common_setup()
268 asd_ha->hw_prof.addr_range = 8; in asd_aic9410_setup()
269 asd_ha->hw_prof.port_name_base = 0; in asd_aic9410_setup()
270 asd_ha->hw_prof.dev_name_base = 8; in asd_aic9410_setup()
271 asd_ha->hw_prof.sata_name_base = 16; in asd_aic9410_setup()
283 asd_ha->hw_prof.addr_range = 4; in asd_aic9405_setup()
284 asd_ha->hw_prof.port_name_base = 0; in asd_aic9405_setup()
285 asd_ha->hw_prof.dev_name_base = 4; in asd_aic9405_setup()
286 asd_ha->hw_prof.sata_name_base = 8; in asd_aic9405_setup()
304 return snprintf(buf, PAGE_SIZE, "%d\n", asd_ha->hw_prof.bios.bld); in asd_show_dev_bios_build()
312 return snprintf(buf, PAGE_SIZE, "%s\n", asd_ha->hw_prof.pcba_sn); in asd_show_dev_pcba_sn()
596 if (asd_ha->hw_prof.ddb_ext) in asd_destroy_ha_caches()
597 asd_free_coherent(asd_ha, asd_ha->hw_prof.ddb_ext); in asd_destroy_ha_caches()
598 if (asd_ha->hw_prof.scb_ext) in asd_destroy_ha_caches()
599 asd_free_coherent(asd_ha, asd_ha->hw_prof.scb_ext); in asd_destroy_ha_caches()
601 if (asd_ha->hw_prof.ddb_bitmap) in asd_destroy_ha_caches()
602 kfree(asd_ha->hw_prof.ddb_bitmap); in asd_destroy_ha_caches()
603 asd_ha->hw_prof.ddb_bitmap = NULL; in asd_destroy_ha_caches()
614 if (asd_ha->hw_prof.ue.area) { in asd_destroy_ha_caches()
615 kfree(asd_ha->hw_prof.ue.area); in asd_destroy_ha_caches()
616 asd_ha->hw_prof.ue.area = NULL; in asd_destroy_ha_caches()
702 asd_ha->sas_ha.sas_addr = &asd_ha->hw_prof.sas_addr[0]; in asd_register_sas_ha()
820 pci_name(dev), SAS_ADDR(asd_ha->hw_prof.sas_addr), in asd_pci_probe()
821 asd_ha->hw_prof.pcba_sn, asd_ha->hw_prof.max_phys, in asd_pci_probe()
822 asd_ha->hw_prof.num_phys, in asd_pci_probe()
823 asd_ha->hw_prof.flash.present ? "present" : "not present", in asd_pci_probe()
824 asd_ha->hw_prof.bios.present ? "build " : "not present", in asd_pci_probe()
825 asd_ha->hw_prof.bios.bld); in asd_pci_probe()
919 u8 phy_mask = asd_ha->hw_prof.enabled_phys; in asd_turn_off_leds()
962 err = asd_enable_phys(asd_ha, asd_ha->hw_prof.enabled_phys); in asd_scan_start()