Home
last modified time | relevance | path

Searched refs:header_type (Results 1 – 24 of 24) sorted by relevance

/OK3568_Linux_fs/kernel/net/wireless/
H A Dwext-core.c34 .header_type = IW_HEADER_TYPE_NULL,
37 .header_type = IW_HEADER_TYPE_CHAR,
41 .header_type = IW_HEADER_TYPE_PARAM,
45 .header_type = IW_HEADER_TYPE_PARAM,
49 .header_type = IW_HEADER_TYPE_FREQ,
53 .header_type = IW_HEADER_TYPE_FREQ,
57 .header_type = IW_HEADER_TYPE_UINT,
61 .header_type = IW_HEADER_TYPE_UINT,
65 .header_type = IW_HEADER_TYPE_PARAM,
68 .header_type = IW_HEADER_TYPE_PARAM,
[all …]
/OK3568_Linux_fs/kernel/drivers/pci/hotplug/
H A Dcpqphp_pci.c301 u8 header_type; in cpqhp_save_config() local
359 rc = pci_bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(device, 0), PCI_HEADER_TYPE, &header_type); in cpqhp_save_config()
364 if (header_type & 0x80) in cpqhp_save_config()
373 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_save_config()
442 …ci_bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(device, function), PCI_HEADER_TYPE, &header_type); in cpqhp_save_config()
468 u8 header_type; in cpqhp_save_slot_config() local
486 …bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(new_slot->device, 0), PCI_HEADER_TYPE, &header_type); in cpqhp_save_slot_config()
488 if (header_type & 0x80) /* Multi-function device */ in cpqhp_save_slot_config()
494 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_save_slot_config()
529 …d_config_byte(ctrl->pci_bus, PCI_DEVFN(new_slot->device, function), PCI_HEADER_TYPE, &header_type); in cpqhp_save_slot_config()
[all …]
H A Dcpqphp_ctrl.c2039 u8 device, class_code, header_type, BCR; in cpqhp_process_SS() local
2069 rc = pci_bus_read_config_byte(pci_bus, devfn, PCI_HEADER_TYPE, &header_type); in cpqhp_process_SS()
2074 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_process_SS()
/OK3568_Linux_fs/u-boot/cmd/
H A Dpci.c64 u8 header_type; in pci_bar_show() local
73 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); in pci_bar_show()
74 header_type &= 0x7f; in pci_bar_show()
76 if (header_type == PCI_HEADER_TYPE_CARDBUS) { in pci_bar_show()
79 } else if (header_type != PCI_HEADER_TYPE_NORMAL && in pci_bar_show()
80 header_type != PCI_HEADER_TYPE_BRIDGE) { in pci_bar_show()
85 bar_cnt = (header_type == PCI_HEADER_TYPE_NORMAL) ? 6 : 2; in pci_bar_show()
233 unsigned long class, header_type; in pci_header_show() local
236 dm_pci_read_config(dev, PCI_HEADER_TYPE, &header_type, PCI_SIZE_8); in pci_header_show()
242 switch (header_type & 0x7f) { in pci_header_show()
/OK3568_Linux_fs/kernel/drivers/edac/
H A Dedac_pci_sysfs.c511 u8 header_type; in edac_pci_dev_parity_clear() local
516 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); in edac_pci_dev_parity_clear()
518 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) in edac_pci_dev_parity_clear()
533 u8 header_type; in edac_pci_dev_parity_test() local
542 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); in edac_pci_dev_parity_test()
578 header_type, dev_name(&dev->dev)); in edac_pci_dev_parity_test()
580 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in edac_pci_dev_parity_test()
/OK3568_Linux_fs/u-boot/drivers/pci/
H A Dpci_auto.c30 u8 header_type; in dm_pciauto_setup_device() local
132 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); in dm_pciauto_setup_device()
133 header_type &= 0x7f; in dm_pciauto_setup_device()
134 if (header_type != PCI_HEADER_TYPE_CARDBUS) { in dm_pciauto_setup_device()
135 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ? in dm_pciauto_setup_device()
H A Dpci_auto_old.c40 u8 header_type; in pciauto_setup_device() local
142 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type); in pciauto_setup_device()
143 header_type &= 0x7f; in pciauto_setup_device()
144 if (header_type != PCI_HEADER_TYPE_CARDBUS) { in pciauto_setup_device()
145 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ? in pciauto_setup_device()
H A Dpci_common.c287 u8 header_type; in pci_hose_find_devices() local
299 &header_type); in pci_hose_find_devices()
300 found_multi = header_type & 0x80; in pci_hose_find_devices()
H A Dpci.c343 unsigned char header_type; in pci_hose_scan_bus() local
365 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type); in pci_hose_scan_bus()
373 found_multi = header_type & 0x80; in pci_hose_scan_bus()
H A Dpcie_layerscape.c476 u8 header_type; in ls_pcie_probe() local
562 header_type = readb(pcie->dbi + PCI_HEADER_TYPE); in ls_pcie_probe()
563 ep_mode = (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL; in ls_pcie_probe()
H A Dfsl_pci_init.c612 u8 header_type; in fsl_is_pci_agent() local
615 &header_type); in fsl_is_pci_agent()
616 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL; in fsl_is_pci_agent()
H A Dpci-uclass.c677 ulong header_type; in pci_bind_bus_devices() local
695 &header_type, PCI_SIZE_8); in pci_bind_bus_devices()
704 found_multi = header_type & 0x80; in pci_bind_bus_devices()
726 if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) { in pci_bind_bus_devices()
/OK3568_Linux_fs/kernel/drivers/pci/controller/dwc/
H A Dpci-layerscape.c59 u32 header_type; in ls_pcie_is_bridge() local
61 header_type = ioread8(pci->dbi_base + PCI_HEADER_TYPE); in ls_pcie_is_bridge()
62 header_type &= 0x7f; in ls_pcie_is_bridge()
64 return header_type == PCI_HEADER_TYPE_BRIDGE; in ls_pcie_is_bridge()
/OK3568_Linux_fs/kernel/arch/mips/include/asm/mach-loongson2ef/cs5536/
H A Dcs5536_pci.h67 #define CFG_PCI_CACHE_LINE_SIZE(header_type, latency_timer) \ argument
68 ((PCI_NONE_BIST << 24) | ((header_type) << 16) \
/OK3568_Linux_fs/kernel/arch/xtensa/lib/
H A Dpci-auto.c227 unsigned char header_type; in pciauto_bus_scan() local
260 if (pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type)) in pciauto_bus_scan()
264 found_multi = header_type & 0x80; in pciauto_bus_scan()
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Dvub300.c62 u8 header_type; member
77 u8 header_type; member
88 u8 header_type; member
94 u8 header_type; member
103 u8 header_type; member
114 u8 header_type; member
121 u8 header_type; member
133 u8 header_type; member
140 u8 header_type; member
483 vub300->cmnd.poll.header_type = 1; in send_irqpoll()
[all …]
/OK3568_Linux_fs/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dpci.c137 u8 header_type; in pci_mpc85xx_init() local
142 &header_type); in pci_mpc85xx_init()
/OK3568_Linux_fs/kernel/drivers/pci/controller/mobiveil/
H A Dpcie-mobiveil-host.c549 u32 header_type; in mobiveil_pcie_is_bridge() local
551 header_type = mobiveil_csr_readb(pcie, PCI_HEADER_TYPE); in mobiveil_pcie_is_bridge()
552 header_type &= 0x7f; in mobiveil_pcie_is_bridge()
554 return header_type == PCI_HEADER_TYPE_BRIDGE; in mobiveil_pcie_is_bridge()
/OK3568_Linux_fs/kernel/drivers/pci/
H A Dpci-bridge-emul.h16 u8 header_type; member
H A Dpci-bridge-emul.c288 bridge->conf.header_type = PCI_HEADER_TYPE_BRIDGE; in pci_bridge_emul_init()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dpcicfg.h119 uint8 header_type; member
355 uint8 header_type; member
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dpcicfg.h119 uint8 header_type; member
355 uint8 header_type; member
/OK3568_Linux_fs/kernel/include/net/
H A Diw_handler.h375 __u8 header_type; /* NULL, iw_point or other */ member
/OK3568_Linux_fs/kernel/drivers/net/usb/GobiNet/
H A DGobiUSBNet.c221 u8 header_type:7; member
225 u8 header_type:7;
527 ul_header->header_type = RMNET_MAP_HEADER_TYPE_CSUM_OFFLOAD; in add_qhdr_v5()
1718 if (ul_header && ul_header->header_type == RMNET_MAP_HEADER_TYPE_CSUM_OFFLOAD in _rmnet_usb_rx_handler()