Home
last modified time | relevance | path

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

12

/openbmc/linux/net/wireless/
H A Dwext-core.c35 .header_type = IW_HEADER_TYPE_NULL,
38 .header_type = IW_HEADER_TYPE_CHAR,
42 .header_type = IW_HEADER_TYPE_PARAM,
46 .header_type = IW_HEADER_TYPE_PARAM,
50 .header_type = IW_HEADER_TYPE_FREQ,
54 .header_type = IW_HEADER_TYPE_FREQ,
58 .header_type = IW_HEADER_TYPE_UINT,
62 .header_type = IW_HEADER_TYPE_UINT,
66 .header_type = IW_HEADER_TYPE_PARAM,
69 .header_type = IW_HEADER_TYPE_PARAM,
[all …]
/openbmc/u-boot/board/synopsys/axs10x/
H A Dheaderize-axs.py32 def arg_verify(uboot_bin_filename, uboot_elf_filename, header_type): argument
41 if header_type not in ("v1", "v2"):
42 print("unknown header type: " + header_type)
64 header_type = "v2"
81 if opt in ('-t', "--header-type"): header_type = arg
87 arg_verify(uboot_bin_filename, uboot_elf_filename, header_type)
94 if header_type == "v2":
/openbmc/linux/drivers/pci/hotplug/
H A Dcpqphp_pci.c308 u8 header_type; in cpqhp_save_config() local
366 rc = pci_bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(device, 0), PCI_HEADER_TYPE, &header_type); in cpqhp_save_config()
371 if (header_type & 0x80) in cpqhp_save_config()
380 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_save_config()
449 …ci_bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(device, function), PCI_HEADER_TYPE, &header_type); in cpqhp_save_config()
475 u8 header_type; in cpqhp_save_slot_config() local
493 …bus_read_config_byte(ctrl->pci_bus, PCI_DEVFN(new_slot->device, 0), PCI_HEADER_TYPE, &header_type); in cpqhp_save_slot_config()
495 if (header_type & 0x80) /* Multi-function device */ in cpqhp_save_slot_config()
501 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_save_slot_config()
536 …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.c2030 u8 device, class_code, header_type, BCR; in cpqhp_process_SS() local
2057 rc = pci_bus_read_config_byte(pci_bus, devfn, PCI_HEADER_TYPE, &header_type); in cpqhp_process_SS()
2062 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in cpqhp_process_SS()
/openbmc/u-boot/cmd/
H A Dpci.c97 u8 header_type; in pci_bar_show() local
106 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); in pci_bar_show()
108 if (header_type == PCI_HEADER_TYPE_CARDBUS) { in pci_bar_show()
113 bar_cnt = (header_type == PCI_HEADER_TYPE_NORMAL) ? 6 : 2; in pci_bar_show()
267 unsigned long class, header_type; in pci_header_show() local
270 dm_pci_read_config(dev, PCI_HEADER_TYPE, &header_type, PCI_SIZE_8); in pci_header_show()
272 u8 class, header_type; in pci_header_show()
275 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); in pci_header_show()
282 switch (header_type & 0x03) { in pci_header_show()
395 unsigned char header_type; in pciinfo() local
[all …]
/openbmc/linux/drivers/edac/
H A Dedac_pci_sysfs.c517 u8 header_type; in edac_pci_dev_parity_clear() local
522 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); in edac_pci_dev_parity_clear()
524 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) in edac_pci_dev_parity_clear()
539 u8 header_type; in edac_pci_dev_parity_test() local
548 pci_read_config_byte(dev, PCI_HEADER_TYPE, &header_type); in edac_pci_dev_parity_test()
584 header_type, dev_name(&dev->dev)); in edac_pci_dev_parity_test()
586 if ((header_type & 0x7F) == PCI_HEADER_TYPE_BRIDGE) { in edac_pci_dev_parity_test()
/openbmc/u-boot/drivers/pci/
H A Dpci_auto.c29 u8 header_type; in dm_pciauto_setup_device() local
131 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); in dm_pciauto_setup_device()
132 header_type &= 0x7f; in dm_pciauto_setup_device()
133 if (header_type != PCI_HEADER_TYPE_CARDBUS) { in dm_pciauto_setup_device()
134 rom_addr = (header_type == PCI_HEADER_TYPE_NORMAL) ? in dm_pciauto_setup_device()
H A Dpci_auto_old.c39 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.c286 u8 header_type; in pci_hose_find_devices() local
298 &header_type); in pci_hose_find_devices()
299 found_multi = header_type & 0x80; in pci_hose_find_devices()
H A Dpci-uclass.c759 ulong header_type; in pci_bind_bus_devices() local
788 &header_type, PCI_SIZE_8); in pci_bind_bus_devices()
791 found_multi = header_type & 0x80; in pci_bind_bus_devices()
813 if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) { in pci_bind_bus_devices()
1391 u8 header_type; in dm_pci_find_capability() local
1398 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type); in dm_pci_find_capability()
1399 if ((header_type & 0x7f) == PCI_HEADER_TYPE_CARDBUS) in dm_pci_find_capability()
H A Dpci.c339 unsigned char header_type; in pci_hose_scan_bus() local
361 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type); in pci_hose_scan_bus()
369 found_multi = header_type & 0x80; in pci_hose_scan_bus()
H A Dfsl_pci_init.c617 u8 header_type; in fsl_is_pci_agent() local
620 &header_type); in fsl_is_pci_agent()
621 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL; in fsl_is_pci_agent()
/openbmc/linux/drivers/pci/controller/dwc/
H A Dpci-layerscape.c58 u32 header_type; in ls_pcie_is_bridge() local
60 header_type = ioread8(pci->dbi_base + PCI_HEADER_TYPE); in ls_pcie_is_bridge()
61 header_type &= 0x7f; in ls_pcie_is_bridge()
63 return header_type == PCI_HEADER_TYPE_BRIDGE; in ls_pcie_is_bridge()
/openbmc/linux/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) \
/openbmc/linux/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()
/openbmc/linux/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 …]
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dpci.c136 u8 header_type; in pci_mpc85xx_init() local
141 &header_type); in pci_mpc85xx_init()
/openbmc/linux/drivers/pci/controller/mobiveil/
H A Dpcie-mobiveil-host.c539 u32 header_type; in mobiveil_pcie_is_bridge() local
541 header_type = mobiveil_csr_readb(pcie, PCI_HEADER_TYPE); in mobiveil_pcie_is_bridge()
542 header_type &= 0x7f; in mobiveil_pcie_is_bridge()
544 return header_type == PCI_HEADER_TYPE_BRIDGE; in mobiveil_pcie_is_bridge()
/openbmc/qemu/migration/
H A Dmigration.c2280 uint16_t header_len, header_type; in source_return_path_thread() local
2294 header_type = qemu_get_be16(rp); in source_return_path_thread()
2302 if (header_type >= MIG_RP_MSG_MAX || in source_return_path_thread()
2303 header_type == MIG_RP_MSG_INVALID) { in source_return_path_thread()
2305 header_type, header_len); in source_return_path_thread()
2309 if ((rp_cmd_args[header_type].len != -1 && in source_return_path_thread()
2310 header_len != rp_cmd_args[header_type].len) || in source_return_path_thread()
2314 rp_cmd_args[header_type].name, header_type, header_len, in source_return_path_thread()
2315 (size_t)rp_cmd_args[header_type].len); in source_return_path_thread()
2324 header_type, res, header_len); in source_return_path_thread()
[all …]
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/
H A Dintel_gsc_binary_headers.h116 u32 header_type; /* 0x4 for manifest type */ member
/openbmc/linux/net/sched/
H A Dact_pedit.c332 static int pedit_l4_skb_offset(struct sk_buff *skb, int *hoffset, const int header_type) in pedit_l4_skb_offset() argument
349 ret = ipv6_find_hdr(skb, hoffset, header_type, NULL, NULL) == header_type ? 0 : -EINVAL; in pedit_l4_skb_offset()
/openbmc/linux/drivers/pci/
H A Dpci-bridge-emul.h16 u8 header_type; member
H A Dpci-bridge-emul.c355 bridge->conf.header_type = PCI_HEADER_TYPE_BRIDGE; in pci_bridge_emul_init()
/openbmc/linux/include/net/
H A Diw_handler.h375 __u8 header_type; /* NULL, iw_point or other */ member
/openbmc/linux/drivers/net/dsa/sja1105/
H A Dsja1105_static_config.h220 u64 header_type; member

12