blob: 38b23c0dd23ac1220c35a57850110c57d243e118 [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
18 select NO_MONOTONIC_TIMER
19 select NO_MMCONF_SUPPORT
20 select UNKNOWN_TSC_RATE
21
22config DCACHE_BSP_STACK_SIZE # required by arch/x86/car.ld
23 default 0x100
24
25endif