Change-Id: Ie7bc4f3ae00bb9601001dbb71e7c3c84fd4f759a Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80596 Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
25 lines
667 B
Plaintext
25 lines
667 B
Plaintext
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config SOC_EXAMPLE_MIN86
|
|
bool
|
|
select ARCH_X86
|
|
select NO_MONOTONIC_TIMER
|
|
select NO_ECAM_MMCONF_SUPPORT
|
|
select UNKNOWN_TSC_RATE
|
|
help
|
|
This example SoC code along with the example/min86 mainboard
|
|
should serve as a minimal example how a buildable x86 SoC code
|
|
base can look like.
|
|
|
|
This can serve, for instance, as a basis to add new SoCs to
|
|
coreboot. Starting with a buildable commit should help with
|
|
the review of the actual code, and also avoid any regressions
|
|
when common coreboot code changes.
|
|
|
|
if SOC_EXAMPLE_MIN86
|
|
|
|
config DCACHE_BSP_STACK_SIZE # required by arch/x86/car.ld
|
|
default 0x100
|
|
|
|
endif
|