arch/x86/boot/smbios: Add additional SMBIOS defines and enums
Change-Id: I337584d1f4ce32094c24478a99418e0775cf9ab5 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/9135 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
This commit is contained in:
parent
fef509499f
commit
821217b60f
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
* Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
|
* Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
|
@ -125,6 +126,10 @@ static int smbios_processor_name(char *start)
|
||||||
static void fill_dimm_manufacturer(uint16_t mod_id, struct smbios_type17 *t)
|
static void fill_dimm_manufacturer(uint16_t mod_id, struct smbios_type17 *t)
|
||||||
{
|
{
|
||||||
switch (mod_id) {
|
switch (mod_id) {
|
||||||
|
case 0x987f:
|
||||||
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
|
"Hynix");
|
||||||
|
break;
|
||||||
case 0xad80:
|
case 0xad80:
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Hynix/Hyundai");
|
"Hynix/Hyundai");
|
||||||
|
@ -137,10 +142,18 @@ static void fill_dimm_manufacturer(uint16_t mod_id, struct smbios_type17 *t)
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Elpida");
|
"Elpida");
|
||||||
break;
|
break;
|
||||||
default:
|
case 0xff2c:
|
||||||
t->manufacturer = smbios_add_string(t->eos,
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
"Unknown");
|
"Micron");
|
||||||
break;
|
break;
|
||||||
|
default: {
|
||||||
|
char string_buffer[256];
|
||||||
|
snprintf(string_buffer, sizeof(string_buffer),
|
||||||
|
"Unknown (%x)", mod_id);
|
||||||
|
t->manufacturer = smbios_add_string(t->eos,
|
||||||
|
string_buffer);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,23 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
|
* Copyright (C) various authors, the coreboot project
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SMBIOS_H
|
#ifndef SMBIOS_H
|
||||||
#define SMBIOS_H
|
#define SMBIOS_H
|
||||||
|
|
||||||
|
@ -34,6 +54,25 @@ u8 smbios_mainboard_enclosure_type(void);
|
||||||
#define BIOS_EXT1_CHARACTERISTICS_ACPI (1 << 0)
|
#define BIOS_EXT1_CHARACTERISTICS_ACPI (1 << 0)
|
||||||
#define BIOS_EXT2_CHARACTERISTICS_TARGET (1 << 2)
|
#define BIOS_EXT2_CHARACTERISTICS_TARGET (1 << 2)
|
||||||
|
|
||||||
|
#define BIOS_MEMORY_ECC_SINGLE_BIT_CORRECTING (1 << 3)
|
||||||
|
#define BIOS_MEMORY_ECC_DOUBLE_BIT_CORRECTING (1 << 4)
|
||||||
|
#define BIOS_MEMORY_ECC_SCRUBBING (1 << 5)
|
||||||
|
|
||||||
|
#define MEMORY_TYPE_DETAIL_OTHER (1 << 1)
|
||||||
|
#define MEMORY_TYPE_DETAIL_UNKNOWN (1 << 2)
|
||||||
|
#define MEMORY_TYPE_DETAIL_FAST_PAGED (1 << 3)
|
||||||
|
#define MEMORY_TYPE_DETAIL_STATIC_COLUMN (1 << 4)
|
||||||
|
#define MEMORY_TYPE_DETAIL_PSEUDO_STATIC (1 << 5)
|
||||||
|
#define MEMORY_TYPE_DETAIL_RAMBUS (1 << 6)
|
||||||
|
#define MEMORY_TYPE_DETAIL_SYNCHRONOUS (1 << 7)
|
||||||
|
#define MEMORY_TYPE_DETAIL_CMOS (1 << 8)
|
||||||
|
#define MEMORY_TYPE_DETAIL_EDO (1 << 9)
|
||||||
|
#define MEMORY_TYPE_DETAIL_WINDOW_DRAM (1 << 10)
|
||||||
|
#define MEMORY_TYPE_DETAIL_CACHE_DRAM (1 << 11)
|
||||||
|
#define MEMORY_TYPE_DETAIL_NON_VOLATILE (1 << 12)
|
||||||
|
#define MEMORY_TYPE_DETAIL_REGISTERED (1 << 13)
|
||||||
|
#define MEMORY_TYPE_DETAIL_UNBUFFERED (1 << 14)
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
MEMORY_FORMFACTOR_OTHER = 0x01,
|
MEMORY_FORMFACTOR_OTHER = 0x01,
|
||||||
MEMORY_FORMFACTOR_UNKNOWN = 0x02,
|
MEMORY_FORMFACTOR_UNKNOWN = 0x02,
|
||||||
|
@ -52,6 +91,68 @@ typedef enum {
|
||||||
MEMORY_FORMFACTOR_FBDIMM = 0x0f,
|
MEMORY_FORMFACTOR_FBDIMM = 0x0f,
|
||||||
} smbios_memory_form_factor;
|
} smbios_memory_form_factor;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
MEMORY_TYPE_OTHER = 0x01,
|
||||||
|
MEMORY_TYPE_UNKNOWN = 0x02,
|
||||||
|
MEMORY_TYPE_DRAM = 0x03,
|
||||||
|
MEMORY_TYPE_EDRAM = 0x04,
|
||||||
|
MEMORY_TYPE_VRAM = 0x05,
|
||||||
|
MEMORY_TYPE_SRAM = 0x06,
|
||||||
|
MEMORY_TYPE_RAM = 0x07,
|
||||||
|
MEMORY_TYPE_ROM = 0x08,
|
||||||
|
MEMORY_TYPE_FLASH = 0x09,
|
||||||
|
MEMORY_TYPE_EEPROM = 0x0a,
|
||||||
|
MEMORY_TYPE_FEPROM = 0x0b,
|
||||||
|
MEMORY_TYPE_EPROM = 0x0c,
|
||||||
|
MEMORY_TYPE_CDRAM = 0x0d,
|
||||||
|
MEMORY_TYPE_3DRAM = 0x0e,
|
||||||
|
MEMORY_TYPE_SDRAM = 0x0f,
|
||||||
|
MEMORY_TYPE_SGRAM = 0x10,
|
||||||
|
MEMORY_TYPE_RDRAM = 0x11,
|
||||||
|
MEMORY_TYPE_DDR = 0x12,
|
||||||
|
MEMORY_TYPE_DDR2 = 0x13,
|
||||||
|
MEMORY_TYPE_DDR2_FBDIMM = 0x14,
|
||||||
|
MEMORY_TYPE_DDR3 = 0x18,
|
||||||
|
MEMORY_TYPE_FBD2 = 0x19,
|
||||||
|
} smbios_memory_type;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
MEMORY_ARRAY_LOCATION_OTHER = 0x01,
|
||||||
|
MEMORY_ARRAY_LOCATION_UNKNOWN = 0x02,
|
||||||
|
MEMORY_ARRAY_LOCATION_SYSTEM_BOARD = 0x03,
|
||||||
|
MEMORY_ARRAY_LOCATION_ISA_ADD_ON = 0x04,
|
||||||
|
MEMORY_ARRAY_LOCATION_EISA_ADD_ON = 0x05,
|
||||||
|
MEMORY_ARRAY_LOCATION_PCI_ADD_ON = 0x06,
|
||||||
|
MEMORY_ARRAY_LOCATION_MCA_ADD_ON = 0x07,
|
||||||
|
MEMORY_ARRAY_LOCATION_PCMCIA_ADD_ON = 0x08,
|
||||||
|
MEMORY_ARRAY_LOCATION_PROPRIETARY_ADD_ON = 0x09,
|
||||||
|
MEMORY_ARRAY_LOCATION_NUBUS = 0x0a,
|
||||||
|
MEMORY_ARRAY_LOCATION_PC_98_C20_ADD_ON = 0xa0,
|
||||||
|
MEMORY_ARRAY_LOCATION_PC_98_C24_ADD_ON = 0xa1,
|
||||||
|
MEMORY_ARRAY_LOCATION_PC_98_E_ADD_ON = 0xa2,
|
||||||
|
MEMORY_ARRAY_LOCATION_PC_98_LOCAL_BUS_ADD_ON = 0xa3,
|
||||||
|
} smbios_memory_array_location;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
MEMORY_ARRAY_USE_OTHER = 0x01,
|
||||||
|
MEMORY_ARRAY_USE_UNKNOWN = 0x02,
|
||||||
|
MEMORY_ARRAY_USE_SYSTEM = 0x03,
|
||||||
|
MEMORY_ARRAY_USE_VIDEO = 0x04,
|
||||||
|
MEMORY_ARRAY_USE_FLASH = 0x05,
|
||||||
|
MEMORY_ARRAY_USE_NVRAM = 0x06,
|
||||||
|
MEMORY_ARRAY_USE_CACHE = 0x07,
|
||||||
|
} smbios_memory_array_use;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
MEMORY_ARRAY_ECC_OTHER = 0x01,
|
||||||
|
MEMORY_ARRAY_ECC_UNKNOWN = 0x02,
|
||||||
|
MEMORY_ARRAY_ECC_NONE = 0x03,
|
||||||
|
MEMORY_ARRAY_ECC_PARITY = 0x04,
|
||||||
|
MEMORY_ARRAY_ECC_SINGLE_BIT = 0x05,
|
||||||
|
MEMORY_ARRAY_ECC_MULTI_BIT = 0x06,
|
||||||
|
MEMORY_ARRAY_ECC_CRC = 0x07,
|
||||||
|
} smbios_memory_array_ecc;
|
||||||
|
|
||||||
#define SMBIOS_STATE_SAFE 3
|
#define SMBIOS_STATE_SAFE 3
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SMBIOS_BIOS_INFORMATION=0,
|
SMBIOS_BIOS_INFORMATION=0,
|
||||||
|
|
Loading…
Reference in New Issue