/drivers/pci/hotplug/ |
D | fakephp.c | 203 u8 hdr_type; in pci_rescan_slot() local 206 if (!pci_read_config_byte(temp, PCI_HEADER_TYPE, &hdr_type)) { in pci_rescan_slot() 207 temp->hdr_type = hdr_type & 0x7f; in pci_rescan_slot() 220 if (!(hdr_type & 0x80)) in pci_rescan_slot() 225 if (pci_read_config_byte(temp, PCI_HEADER_TYPE, &hdr_type)) in pci_rescan_slot() 227 temp->hdr_type = hdr_type & 0x7f; in pci_rescan_slot()
|
D | shpchp_pci.c | 44 if (!(dev->hdr_type == PCI_HEADER_TYPE_NORMAL || in program_fw_provided_values() 45 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && in program_fw_provided_values() 129 if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) || in shpchp_configure_device() 130 (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) { in shpchp_configure_device() 188 if (temp->hdr_type == PCI_HEADER_TYPE_BRIDGE) { in shpchp_unconfigure_device()
|
D | pciehp_pci.c | 144 if (!(dev->hdr_type == PCI_HEADER_TYPE_NORMAL || in program_fw_provided_values() 145 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && in program_fw_provided_values() 225 if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) || in pciehp_configure_device() 226 (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) { in pciehp_configure_device() 265 if (temp->hdr_type == PCI_HEADER_TYPE_BRIDGE && presence) { in pciehp_unconfigure_device()
|
D | rpadlpar_core.c | 158 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || in dlpar_pci_add_bus() 159 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) in dlpar_pci_add_bus() 194 if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) { in dlpar_add_pci_slot() 196 __func__, dev->hdr_type, drc_name); in dlpar_add_pci_slot()
|
D | ibmphp_pci.c | 86 u8 hdr_type, device, sec_number; in ibmphp_configure_card() local 129 pci_bus_read_config_byte (ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type); in ibmphp_configure_card() 133 debug ("hrd_type = %x, class = %x, class_code %x\n", hdr_type, class, class_code); in ibmphp_configure_card() 144 switch (hdr_type) { in ibmphp_configure_card() 146 …("single device case.... vendor id = %x, hdr_type = %x, class = %x\n", vendor_id, hdr_type, class); in ibmphp_configure_card() 311 err ("MAJOR PROBLEM!!!!, header type not supported? %x\n", hdr_type); in ibmphp_configure_card() 1080 u8 hdr_type; in scan_behind_bridge() local 1116 pci_bus_read_config_byte (ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type); in scan_behind_bridge() 1119 debug ("hdr_type behind the bridge is %x\n", hdr_type); in scan_behind_bridge() 1120 if (hdr_type & PCI_HEADER_TYPE_BRIDGE) { in scan_behind_bridge() [all …]
|
D | cpci_hotplug_pci.c | 291 if ((dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) || in cpci_configure_slot() 292 (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)) { in cpci_configure_slot()
|
D | acpiphp_glue.c | 1068 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || in enable_device() 1069 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { in enable_device() 1098 if (func->pci_dev->hdr_type != PCI_HEADER_TYPE_BRIDGE && in enable_device() 1099 func->pci_dev->hdr_type != PCI_HEADER_TYPE_CARDBUS) in enable_device() 1309 if (!(dev->hdr_type == PCI_HEADER_TYPE_NORMAL || in program_hpp() 1310 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE && in program_hpp()
|
D | cpcihp_generic.c | 163 if(!dev || dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) { in cpcihp_generic_init()
|
D | ibmphp_res.c | 1929 u8 sec_busno, device, function, hdr_type, start_io_address, end_io_address; in update_bridge_ranges() local 1955 pci_bus_read_config_byte (ibmphp_pci_bus, devfn, PCI_HEADER_TYPE, &hdr_type); in update_bridge_ranges() 1957 switch (hdr_type) { in update_bridge_ranges()
|
D | sgi_hotplug.c | 400 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) { in enable_slot()
|
D | ibmphp_core.c | 853 if (!(flag) && (func->dev->hdr_type == PCI_HEADER_TYPE_BRIDGE)) { in ibm_configure_device()
|
D | cpqphp_pci.c | 109 if (func->pci_dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_configure_device()
|
/drivers/pci/ |
D | probe.c | 479 int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS); in pci_scan_bridge() 704 dev->vendor, dev->device, class, dev->hdr_type); in pci_setup_device() 713 switch (dev->hdr_type) { /* header type */ in pci_setup_device() 772 "ignoring device\n", dev->hdr_type); in pci_setup_device() 777 "type %02x)\n", class, dev->hdr_type); in pci_setup_device() 896 u8 hdr_type; in pci_scan_device() local 923 if (pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type)) in pci_scan_device() 935 dev->hdr_type = hdr_type & 0x7f; in pci_scan_device() 936 dev->multifunction = !!(hdr_type & 0x80); in pci_scan_device() 1085 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || in pci_scan_child_bus() [all …]
|
D | pci.c | 138 unsigned int devfn, u8 hdr_type) in __pci_bus_find_cap_start() argument 146 switch (hdr_type) { in __pci_bus_find_cap_start() 182 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type); in pci_find_capability() 205 u8 hdr_type; in pci_bus_find_capability() local 207 pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type); in pci_bus_find_capability() 209 pos = __pci_bus_find_cap_start(bus, devfn, hdr_type & 0x7f); in pci_bus_find_capability() 329 pos = __pci_bus_find_cap_start(dev->bus, dev->devfn, dev->hdr_type); in pci_find_ht_capability()
|
D | proc.c | 63 else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) in proc_bus_pci_read()
|
D | pci-sysfs.c | 255 } else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) { in pci_read_config()
|
D | quirks.c | 1379 pdev->hdr_type = hdr & 0x7f; in quirk_jmicron_ata()
|
/drivers/pci/pcie/aer/ |
D | aerdrv_core.c | 161 if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE) { in find_device_iter() 221 !(dev->hdr_type & PCI_HEADER_TYPE_BRIDGE)) { in report_error_detected() 319 if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE) { in broadcast_error_message() 392 if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE) in reset_link() 639 } else if (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE || in get_device_error_info()
|
/drivers/pcmcia/ |
D | cardbus.c | 222 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE || in cb_alloc() 223 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS) in cb_alloc()
|
/drivers/infiniband/hw/mthca/ |
D | mthca_reset.c | 76 if (bridge->hdr_type == PCI_HEADER_TYPE_BRIDGE && in mthca_reset()
|
/drivers/net/sfc/ |
D | falcon_hwdefs.h | 993 #define RX_EV_HDR_TYPE_HAS_CHECKSUMS(hdr_type) \ argument 994 ((hdr_type) <= RX_EV_HDR_TYPE_UDP_IPV4_DECODE)
|
/drivers/s390/net/ |
D | qeth_core.h | 306 __u8 hdr_type; member
|
D | qeth_core_offl.c | 630 hdr->ext.hdr_type = 1; in qeth_tso_fill_header()
|