blob: 66c0e8b3e2d53cbedcf8f60938ac258779e178bf [file] [log] [blame]
Nico Huber1fa72d5f2020-09-24 23:33:34 +02001config SOC_EXAMPLE_MIN86
2 bool
3 help
4 This example SoC code along with the example/min86 mainboard
5 should serve as a minimal example how a buildable x86 SoC code
6 base can look like.
7
8 This can serve, for instance, as a basis to add new SoCs to
9 coreboot. Starting with a buildable commit should help with
10 the review of the actual code, and also avoid any regressions
11 when common coreboot code changes.
12
13if SOC_EXAMPLE_MIN86
14
15config SOC_SPECIFIC_OPTIONS
16 def_bool y
17 select ARCH_ALL_STAGES_X86_32
Angel Pons8e035e32021-06-22 12:58:20 +020018 select ARCH_X86
Nico Huber1fa72d5f2020-09-24 23:33:34 +020019 select NO_MONOTONIC_TIMER
20 select NO_MMCONF_SUPPORT
21 select UNKNOWN_TSC_RATE
22
23config DCACHE_BSP_STACK_SIZE # required by arch/x86/car.ld
24 default 0x100
25
26endif