/linux-6.6.21/drivers/acpi/acpica/ |
D | tbfind.c | 35 char *oem_id, char *oem_table_id, u32 *table_index) in acpi_tb_find_table() argument 52 (strlen(oem_table_id) > ACPI_OEM_TABLE_ID_SIZE)) { in acpi_tb_find_table() 61 strncpy(header.oem_table_id, oem_table_id, ACPI_OEM_TABLE_ID_SIZE); in acpi_tb_find_table() 105 && (!oem_table_id[0] in acpi_tb_find_table() 107 oem_table_id, header.oem_table_id, in acpi_tb_find_table()
|
D | tbprint.c | 75 acpi_tb_fix_string(out_header->oem_table_id, ACPI_OEM_TABLE_ID_SIZE); in acpi_tb_cleanup_table_header() 133 local_header.oem_id, local_header.oem_table_id, in acpi_tb_print_table_header()
|
D | tbxfload.c | 192 table->pointer->oem_table_id)); in ACPI_EXPORT_SYMBOL_INIT() 199 table->pointer->oem_table_id)); in ACPI_EXPORT_SYMBOL_INIT()
|
D | acapps.h | 152 u32 length, char *table_name, char *oem_table_id);
|
D | dsinit.c | 213 table->signature, table->oem_table_id, owner_id, in acpi_ds_initialize_objects()
|
D | actables.h | 65 char *oem_id, char *oem_table_id, u32 *table_index);
|
/linux-6.6.21/drivers/acpi/ |
D | spcr.c | 35 if (!memcmp(h->oem_table_id, "QDF2432 ", ACPI_OEM_TABLE_ID_SIZE)) in qdf2400_erratum_44_present() 38 if (!memcmp(h->oem_table_id, "QDF2400 ", ACPI_OEM_TABLE_ID_SIZE) && in qdf2400_erratum_44_present() 61 if (!memcmp(tb->header.oem_table_id, "XGENESPC", in xgene_8250_erratum_present() 65 if (!memcmp(tb->header.oem_table_id, "ProLiant", in xgene_8250_erratum_present()
|
D | pci_mcfg.c | 28 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1]; member 195 !memcmp(f->oem_table_id, mcfg_oem_table_id, in pci_mcfg_quirk_matches() 310 memcpy(mcfg_oem_table_id, header->oem_table_id, ACPI_OEM_TABLE_ID_SIZE); in pci_mcfg_parse()
|
D | tables.c | 537 table->signature, table->oem_table_id); in acpi_table_taint() 732 memcmp(table->oem_table_id, existing_table->oem_table_id, in acpi_table_initrd_override() 751 table->oem_table_id); in acpi_table_initrd_override() 801 table->oem_table_id); in acpi_table_initrd_scan()
|
D | acpi_configfs.c | 146 return sysfs_emit(str, "%.*s\n", ACPI_OEM_TABLE_ID_SIZE, h->oem_table_id); in acpi_table_oem_table_id_show() 185 CONFIGFS_ATTR_RO(acpi_table_, oem_table_id);
|
D | blacklist.c | 56 acpi_blacklist[i].oem_table_id, in acpi_blacklisted()
|
/linux-6.6.21/arch/x86/kernel/apic/ |
D | probe_64.c | 31 int __init default_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in default_acpi_madt_oem_check() argument 36 if ((*drv)->acpi_madt_oem_check(oem_id, oem_table_id)) { in default_acpi_madt_oem_check()
|
D | apic_numachip.c | 198 static int numachip1_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in numachip1_acpi_madt_oem_check() argument 201 (strncmp(oem_table_id, "NCONNECT", 8) != 0)) in numachip1_acpi_madt_oem_check() 209 static int numachip2_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in numachip2_acpi_madt_oem_check() argument 212 (strncmp(oem_table_id, "NCONECT2", 8) != 0)) in numachip2_acpi_madt_oem_check()
|
D | apic_flat_64.c | 26 static int flat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in flat_acpi_madt_oem_check() argument 121 static int physflat_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in physflat_acpi_madt_oem_check() argument 135 if (!strncmp(oem_id, "IBM", 3) && !strncmp(oem_table_id, "EXA", 3)) { in physflat_acpi_madt_oem_check()
|
D | x2apic_uv_x.c | 40 static u8 oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1]; variable 424 uv_stringify(sizeof(oem_table_id), oem_table_id, _oem_table_id); in uv_set_system_type() 427 oem_id, oem_table_id, uv_system_type, uv_hubless_system); in uv_set_system_type() 494 uv_stringify(sizeof(oem_table_id), oem_table_id, _oem_table_id); in uv_acpi_madt_oem_check() 497 oem_id, oem_table_id, uv_system_type, is_uv(UV_ANY), in uv_acpi_madt_oem_check() 516 return scnprintf(buf, len, "%s/%s", uv_archtype, oem_table_id); in uv_get_archtype() 1653 seq_printf(file, "%s/%s\n", uv_archtype, oem_table_id); in proc_archtype_show()
|
D | x2apic_phys.c | 39 static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in x2apic_acpi_madt_oem_check() argument
|
D | x2apic_cluster.c | 24 static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id) in x2apic_acpi_madt_oem_check() argument
|
/linux-6.6.21/sound/soc/intel/skylake/ |
D | skl-nhlt.c | 38 nhlt->header.oem_id, nhlt->header.oem_table_id, in skl_nhlt_update_topology_bin() 42 skl->pci_id, nhlt->header.oem_id, nhlt->header.oem_table_id, in skl_nhlt_update_topology_bin() 60 nhlt->header.oem_id, nhlt->header.oem_table_id, in platform_id_show()
|
/linux-6.6.21/drivers/cpufreq/ |
D | cppc_cpufreq.c | 48 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1]; member 55 .oem_table_id = "HIP07 ", 59 .oem_table_id = "HIP08 ", 955 !memcmp(wa_info[i].oem_table_id, tbl->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) && in cppc_check_hisi_workaround()
|
/linux-6.6.21/arch/x86/xen/ |
D | apic.c | 108 static int xen_madt_oem_check(char *oem_id, char *oem_table_id) in xen_madt_oem_check() argument
|
/linux-6.6.21/drivers/clocksource/ |
D | arm_arch_timer.c | 265 char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1]; member 341 .oem_table_id = "HIP05 ", 346 .oem_table_id = "HIP06 ", 351 .oem_table_id = "HIP07 ", 551 !memcmp(info->oem_table_id, table->oem_table_id, ACPI_OEM_TABLE_ID_SIZE) && in arch_timer_check_acpi_oem_erratum()
|
/linux-6.6.21/arch/ia64/kernel/ |
D | acpi.c | 275 static void __init acpi_madt_oem_check(char *oem_id, char *oem_table_id) in acpi_madt_oem_check() argument 277 if (!strncmp(oem_id, "IBM", 3) && (!strncmp(oem_table_id, "SERMOW", 6))) { in acpi_madt_oem_check() 312 acpi_madt->header.oem_table_id); in acpi_parse_madt()
|
/linux-6.6.21/arch/ia64/uv/kernel/ |
D | setup.c | 80 !strcmp(xsdt->header.oem_table_id + 4, "UV")) in uv_probe_system_type()
|
/linux-6.6.21/Documentation/ABI/testing/ |
D | configfs-acpi | 42 oem_table_id
|
/linux-6.6.21/drivers/gpu/drm/amd/amdkfd/ |
D | kfd_topology.h | 158 uint8_t oem_table_id[CRAT_OEMTABLEID_LENGTH]; member
|