diff options
author | Benjamin Doron <benjamin.doron@9elements.com> | 2023-06-14 19:03:04 -0400 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-05-25 06:58:23 +0000 |
commit | 69bc2cc7dedb5647f9e8a3fa6513c46ee09c57a0 (patch) | |
tree | f28df0236d4703e1611c662f0d04af682a21a501 /src/Kconfig | |
parent | f27b22ab4e7001c4de40d721a5e0be46b8349a06 (diff) |
arch/arm64: Implement initial set of SMBIOS tables
Implement the two architectural tables: processor and cache.
Note that SoC/board code should override core-thread count
and, for spec-compliance, create CBMEM_ID_MEMINFO.
Change-Id: Iedae0f26f168bd6d3af866e35d9d39ddb01abc15
Signed-off-by: Benjamin Doron <benjamin.doron@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78285
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig index 645d16c278..1ec7552e60 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -918,8 +918,9 @@ config GENERATE_PIRQ_TABLE If unsure, say Y. config GENERATE_SMBIOS_TABLES - depends on ARCH_X86 + depends on ARCH_X86 || ARCH_ARM64 bool "Generate SMBIOS tables" + default n if ARCH_ARM64 default y help Generate SMBIOS tables for this board. |