/src/sys/arch/arm/fdt/ |
acpi_fdt.c | 68 static uint64_t smbios_table = 0; variable in typeref:typename:uint64_t 147 if (smbios_table == 0) { 151 hdr = AcpiOsMapMemory(smbios_table, 24); 174 of_getprop_uint64(chosen, "netbsd,smbios-table", &smbios_table); 176 if (smbios_table == 0) { 180 smbios_entry.hdrphys = smbios_table; 184 struct smb3hdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh)); 205 struct smbhdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh));
|
acpi_fdt.c | 68 static uint64_t smbios_table = 0; variable in typeref:typename:uint64_t 147 if (smbios_table == 0) { 151 hdr = AcpiOsMapMemory(smbios_table, 24); 174 of_getprop_uint64(chosen, "netbsd,smbios-table", &smbios_table); 176 if (smbios_table == 0) { 180 smbios_entry.hdrphys = smbios_table; 184 struct smb3hdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh)); 205 struct smbhdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh));
|
/src/sys/stand/efiboot/ |
efiacpi.c | 53 static void *smbios_table = NULL; variable in typeref:typename:void * 66 status = LibGetSystemConfigurationTable(&Smbios3TableGuid, &smbios_table); 68 status = LibGetSystemConfigurationTable(&SmbiosTableGuid, &smbios_table); 71 smbios_table = NULL; 98 return smbios_table; 122 if (smbios_table != NULL) { 123 smbios_init(smbios_table); 156 if (smbios_table) {
|
efiacpi.c | 53 static void *smbios_table = NULL; variable in typeref:typename:void * 66 status = LibGetSystemConfigurationTable(&Smbios3TableGuid, &smbios_table); 68 status = LibGetSystemConfigurationTable(&SmbiosTableGuid, &smbios_table); 71 smbios_table = NULL; 98 return smbios_table; 122 if (smbios_table != NULL) { 123 smbios_init(smbios_table); 156 if (smbios_table) {
|
efifdt.c | 689 void *smbios_table = efi_acpi_smbios(); local in function:efi_fdt_create_acpifdt 713 if (smbios_table) 714 fdt_setprop_u64(fdt, fdt_path_offset(fdt, "/chosen"), "netbsd,smbios-table", (uint64_t)(uintptr_t)smbios_table);
|
efifdt.c | 689 void *smbios_table = efi_acpi_smbios(); local in function:efi_fdt_create_acpifdt 713 if (smbios_table) 714 fdt_setprop_u64(fdt, fdt_path_offset(fdt, "/chosen"), "netbsd,smbios-table", (uint64_t)(uintptr_t)smbios_table);
|