Searched refs:systab (Results 1 – 13 of 13) sorted by relevance
/Linux-v4.19/drivers/firmware/efi/ |
D | arm-init.c | 96 efi.systab = early_memremap_ro(efi_system_table, in uefi_init() 98 if (efi.systab == NULL) { in uefi_init() 110 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) { in uefi_init() 115 if ((efi.systab->hdr.revision >> 16) < 2) in uefi_init() 117 efi.systab->hdr.revision >> 16, in uefi_init() 118 efi.systab->hdr.revision & 0xffff); in uefi_init() 120 efi.runtime_version = efi.systab->hdr.revision; in uefi_init() 123 c16 = early_memremap_ro(efi_to_phys(efi.systab->fw_vendor), in uefi_init() 133 efi.systab->hdr.revision >> 16, in uefi_init() 134 efi.systab->hdr.revision & 0xffff, vendor); in uefi_init() [all …]
|
D | efi.c | 161 static struct kobj_attribute efi_attr_systab = __ATTR_RO_MODE(systab, 0400); 610 config_tables = early_memremap(efi.systab->tables, in efi_config_init() 611 efi.systab->nr_tables * sz); in efi_config_init() 617 ret = efi_config_parse_tables(config_tables, efi.systab->nr_tables, sz, in efi_config_init() 620 early_memunmap(config_tables, efi.systab->nr_tables * sz); in efi_config_init()
|
D | arm-runtime.c | 88 efi.systab = (void *)(unsigned long)(efi_system_table - in efi_virtmap_init()
|
D | runtime-wrappers.c | 44 efi_call_virt_pointer(efi.systab->runtime, f, args) 46 __efi_call_virt_pointer(efi.systab->runtime, f, args)
|
/Linux-v4.19/arch/x86/platform/efi/ |
D | efi.c | 380 efi.systab = &efi_systab; in efi_systab_init() 385 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) { in efi_systab_init() 389 if ((efi.systab->hdr.revision >> 16) == 0) in efi_systab_init() 391 efi.systab->hdr.revision >> 16, in efi_systab_init() 392 efi.systab->hdr.revision & 0xffff); in efi_systab_init() 401 runtime = early_memremap((unsigned long)efi.systab->runtime, in efi_runtime_init32() 425 runtime = early_memremap((unsigned long)efi.systab->runtime, in efi_runtime_init64() 491 efi_phys.systab = (efi_system_table_t *)boot_params.efi_info.efi_systab; in efi_init() 493 efi_phys.systab = (efi_system_table_t *) in efi_init() 498 if (efi_systab_init(efi_phys.systab)) in efi_init() [all …]
|
D | quirks.c | 498 for (i = 0; i < efi.systab->nr_tables; i++) { in efi_reuse_config()
|
D | efi_64.c | 643 u32 table = (u32)(unsigned long)efi.systab; \
|
/Linux-v4.19/arch/ia64/kernel/ |
D | sal.c | 96 check_versions (struct ia64_sal_systab *systab) in check_versions() argument 98 sal_revision = (systab->sal_rev_major << 8) | systab->sal_rev_minor; in check_versions() 99 sal_version = (systab->sal_b_rev_major << 8) | systab->sal_b_rev_minor; in check_versions() 307 ia64_sal_init (struct ia64_sal_systab *systab) in ia64_sal_init() argument 312 if (!systab) { in ia64_sal_init() 317 if (strncmp(systab->signature, "SST_", 4) != 0) in ia64_sal_init() 320 check_versions(systab); in ia64_sal_init() 328 systab->oem_id, systab->product_id, in ia64_sal_init() 329 systab->product_id[0] ? " " : "", in ia64_sal_init() 332 p = (char *) (systab + 1); in ia64_sal_init() [all …]
|
D | esi.c | 53 struct ia64_sal_systab *systab; in esi_init() local 58 config_tables = __va(efi.systab->tables); in esi_init() 60 for (i = 0; i < (int) efi.systab->nr_tables; ++i) { in esi_init() 70 systab = __va(esi); in esi_init() 72 if (strncmp(systab->signature, "ESIT", 4) != 0) { in esi_init() 77 p = (char *) (systab + 1); in esi_init() 78 for (i = 0; i < systab->entry_count; i++) { in esi_init() 95 esi_systab = systab; in esi_init()
|
D | efi.c | 508 efi.systab = __va(ia64_boot_param->efi_systab); in efi_init() 513 if (efi.systab == NULL) in efi_init() 515 if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) in efi_init() 517 if ((efi.systab->hdr.revision >> 16) == 0) in efi_init() 520 efi.systab->hdr.revision >> 16, in efi_init() 521 efi.systab->hdr.revision & 0xffff); in efi_init() 524 c16 = __va(efi.systab->fw_vendor); in efi_init() 532 efi.systab->hdr.revision >> 16, in efi_init() 533 efi.systab->hdr.revision & 0xffff, vendor); in efi_init() 543 runtime = __va(efi.systab->runtime); in efi_init()
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-firmware-efi | 22 What: /sys/firmware/efi/systab
|
/Linux-v4.19/arch/ia64/include/asm/sn/ |
D | sn_sal.h | 170 struct ia64_sal_systab *systab = __va(efi.sal_systab); in sn_sal_rev() local 172 return (u32)(systab->sal_b_rev_major << 8 | systab->sal_b_rev_minor); in sn_sal_rev()
|
/Linux-v4.19/include/linux/ |
D | efi.h | 940 efi_system_table_t *systab; /* EFI system table */ member
|