/u-boot/scripts/kconfig/ |
A D | qconf.h | 19 class ConfigView; 20 class ConfigList; 21 class ConfigItem; 22 class ConfigLineEdit; 23 class ConfigMainWindow; 42 class ConfigList : public QTreeWidget { 44 typedef class QTreeWidget Parent; 194 typedef class QLineEdit Parent; 208 class ConfigView : public QWidget { 210 typedef class QWidget Parent; [all …]
|
/u-boot/drivers/pci/ |
A D | pci_common.c | 19 const char *pci_class_str(u8 class) in pci_class_str() argument 21 switch (class) { in pci_class_str() 328 uint32_t class; in pci_find_class() local 333 PCI_CLASS_REVISION, &class); in pci_find_class() 334 if (class >> 16 == 0xffff) in pci_find_class() 342 &class); in pci_find_class() 343 class >>= 8; in pci_find_class() 345 if (class != find_class) in pci_find_class()
|
A D | pci_auto.c | 35 u16 class; in dm_pciauto_setup_device() local 151 dm_pci_read_config16(dev, PCI_CLASS_DEVICE, &class); in dm_pciauto_setup_device() 152 if (class == PCI_CLASS_DISPLAY_VGA) in dm_pciauto_setup_device() 308 unsigned short class; in dm_pciauto_config_device() local 317 dm_pci_read_config16(dev, PCI_CLASS_DEVICE, &class); in dm_pciauto_config_device() 319 switch (class) { in dm_pciauto_config_device()
|
A D | pci.c | 288 unsigned short class, in pci_find_config() argument 300 (table->class == PCI_ANY_ID || table->class == class) && in pci_find_config() 343 unsigned short vendor, device, class; in pci_hose_scan_bus() local 380 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class); in pci_hose_scan_bus() 383 board_pci_fixup_dev(hose, dev, vendor, device, class); in pci_hose_scan_bus() 395 vendor, device, pci_class_str(class >> 8)); in pci_hose_scan_bus() 403 cfg = pci_find_config(hose, class, vendor, device, in pci_hose_scan_bus()
|
A D | pci_auto_old.c | 44 u16 class; in pciauto_setup_device() local 148 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class); in pciauto_setup_device() 149 if (class == PCI_CLASS_DISPLAY_VGA) in pciauto_setup_device() 309 unsigned short class; in pciauto_config_device() local 316 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class); in pciauto_config_device() 318 switch (class) { in pciauto_config_device()
|
A D | pci-uclass.c | 268 if (pplat->class == find_class && !index--) { in dm_pci_find_class() 554 if (pplat->class == (PCI_CLASS_DISPLAY_VGA << 8)) in pci_auto_config_devices() 670 !((id->class ^ find->class) & id->class_mask)) in pci_match_one_id() 806 ulong class; in pci_bind_bus_devices() local 834 class >>= 8; in pci_bind_bus_devices() 848 find_id.class = class; in pci_bind_bus_devices() 869 pplat->class = class; in pci_bind_bus_devices() 1739 ulong class; in pci_sriov_init() local 1742 &class, PCI_SIZE_16); in pci_sriov_init() 1756 find_id.class = class; in pci_sriov_init() [all …]
|
A D | pci_rom.c | 136 if (pplat->class != rom_class) { in pci_rom_probe() 138 rom_class, pplat->class); in pci_rom_probe() 247 if (((pplat->class >> 8) ^ PCI_CLASS_DISPLAY_VGA) & 0xff00) { in dm_pci_run_vga_bios() 248 debug("%s: Class %#x, should be %#x\n", __func__, pplat->class, in dm_pci_run_vga_bios()
|
A D | pcie_iproc.c | 1126 u32 link_status, class; in iproc_pcie_check_link() local 1135 4, &class); in iproc_pcie_check_link() 1136 class &= ~PCI_CLASS_BRIDGE_MASK; in iproc_pcie_check_link() 1137 class |= (PCI_CLASS_BRIDGE_PCI << PCI_CLASS_BRIDGE_SHIFT); in iproc_pcie_check_link() 1140 4, class); in iproc_pcie_check_link()
|
/u-boot/doc/driver-model/ |
A D | bind.rst | 27 bind <class> <index> <driver> 30 unbind <class> <index> 31 unbind <class> <index> <driver> 35 - <class> is one of the class available in the list given by the "dm uclass"
|
/u-boot/cmd/ |
A D | pci.c | 268 unsigned long class, header_type; in pci_header_show() local 270 dm_pci_read_config(dev, PCI_CLASS_CODE, &class, PCI_SIZE_8); in pci_header_show() 273 u8 class, header_type; in pci_header_show() 275 pci_read_config_byte(dev, PCI_CLASS_CODE, &class); in pci_header_show() 280 pci_class_str(class)); in pci_header_show() 321 ulong class, subclass; in pci_header_show_brief() local 325 dm_pci_read_config(dev, PCI_CLASS_CODE, &class, PCI_SIZE_8); in pci_header_show_brief() 330 pci_class_str(class), subclass); in pci_header_show_brief() 370 u8 class, subclass; in pci_header_show_brief() local 374 pci_read_config_byte(dev, PCI_CLASS_CODE, &class); in pci_header_show_brief() [all …]
|
/u-boot/doc/device-tree-bindings/sysinfo/ |
A D | sysinfo.txt | 10 class
|
/u-boot/drivers/remoteproc/ |
A D | rproc-elf-loader.c | 52 char class; local 65 class = ehdr->e_ident[EI_CLASS]; 67 if (!IS_ELF(*ehdr) || ehdr->e_type != ET_EXEC || class != ELFCLASS32) { 109 char class; local 121 class = ehdr->e_ident[EI_CLASS]; 123 if (!IS_ELF(*ehdr) || ehdr->e_type != ET_EXEC || class != ELFCLASS64) {
|
/u-boot/include/dm/ |
A D | uclass.h | 102 int (*init)(struct uclass *class); 103 int (*destroy)(struct uclass *class);
|
/u-boot/drivers/usb/gadget/ |
A D | ep0.c | 318 int class = 0; in ep0_get_descriptor() 326 class)) in ep0_get_descriptor() 347 int class = 0; in ep0_get_descriptor() 353 bAlternateSetting, class)) in ep0_get_descriptor()
|
/u-boot/tools/ |
A D | asn1_compiler.c | 692 enum asn1_class class : 8; 864 element->class = ASN1_UNIV; in parse_type() 876 element->class = ASN1_UNIV; in parse_type() 880 element->class = ASN1_APPL; in parse_type() 884 element->class = ASN1_CONT; in parse_type() 887 element->class = ASN1_PRIV; in parse_type() 944 element->class = ASN1_UNIV; in parse_type() 1220 else if (e->class == ASN1_UNIV) in dump_element() 1222 asn1_classes[e->class], in dump_element() 1227 asn1_classes[e->class], in dump_element() [all …]
|
/u-boot/drivers/virtio/ |
A D | virtio_net.h | 159 __u8 class; member
|
/u-boot/tools/concurrencytest/ |
A D | README.md | 33 class SampleTestCase(unittest.TestCase):
|
/u-boot/include/linux/ |
A D | compat.h | 286 struct class *class; member
|
/u-boot/drivers/usb/gadget/udc/ |
A D | udc-core.c | 45 static struct class *udc_class; 192 udc->dev.class = udc_class; in usb_add_gadget_udc_release()
|
/u-boot/lib/efi_driver/ |
A D | efi_uclass.c | 329 static int efi_uc_init(struct uclass *class) in efi_uc_init() argument 341 static int efi_uc_destroy(struct uclass *class) in efi_uc_destroy() argument
|
/u-boot/doc/SPL/ |
A D | README.am335x-network | 60 if substring (option vendor-class-identifier, 0, 10) = "DM814x ROM" { 62 } elsif substring (option vendor-class-identifier, 0, 17) = "AM335x U-Boot SPL" { 69 May the ROM bootloader sends another "vendor-class-identifier"
|
/u-boot/scripts/dtc/pylibfdt/ |
A D | libfdt.i_shipped | 18 * a struct called fdt_property. That struct causes swig to create a class in 61 class FdtException(Exception): 124 class FdtRo(object): 127 This is a base class used by FdtRw (read-write access) and FdtSw 477 class Fdt(FdtRo): 478 """Device tree class, supporting all operations 689 class Property(bytearray): 728 class FdtSw(FdtRo): 854 class comment. 948 use the context manager as shown in the FdtSw class comment. [all …]
|
/u-boot/doc/device-tree-bindings/net/ |
A D | mdio-mux.txt | 4 by U-Boot, not optional as is in Linux. Current U-Boot MDIO MUX udevice class 18 The properties described here are sufficient for MDIO MUX DM class code, but
|
/u-boot/include/ |
A D | pci.h | 590 unsigned int class, class_mask; /* (class,subclass,prog-if) triplet */ member 598 unsigned int class; /* Class ID, or PCI_ANY_ID */ member 835 unsigned short class); 839 const char * pci_class_str(u8 class); 921 unsigned int class; member 1732 .class = (dev_class), .class_mask = (dev_class_mask), \
|
/u-boot/doc/arch/ |
A D | mips.rst | 40 * R2000/R3000 class parts are not supported
|