blob: ced334090302fffd3ff8a8a2fb1b7125780d3188 [file] [log] [blame]
Stefan Reinauer5c554632012-04-04 00:09:50 +02001config CPU_INTEL_MODEL_206AX
2 bool
3
Nico Huber772a1542019-05-10 16:48:14 +02004if CPU_INTEL_MODEL_206AX
Stefan Reinauer5c554632012-04-04 00:09:50 +02005
6config CPU_SPECIFIC_OPTIONS
7 def_bool y
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07008 select ARCH_BOOTBLOCK_X86_32
Stefan Reinauer77b16552015-01-14 19:51:47 +01009 select ARCH_VERSTAGE_X86_32
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070010 select ARCH_ROMSTAGE_X86_32
11 select ARCH_RAMSTAGE_X86_32
Stefan Reinauer5c554632012-04-04 00:09:50 +020012 select SMP
Arthur Heymans7e6946a2019-01-21 17:55:02 +010013 select MMX
Stefan Reinauer5c554632012-04-04 00:09:50 +020014 select SSE2
Patrick Rudolphb9959e22017-06-06 10:44:29 +020015 select UDELAY_TSC
16 select TSC_CONSTANT_RATE
17 select TSC_MONOTONIC_TIMER
Alexandru Gagniuc66e0c4c2013-12-04 22:21:15 -060018 select SUPPORT_CPU_UCODE_IN_CBFS
Sven Schnelle51676b12012-07-29 19:18:03 +020019 #select AP_IN_SIPI_WAIT
Stefan Reinauer0db68202012-08-07 14:44:51 -070020 select TSC_SYNC_MFENCE
Matt DeVilliered6fe2f2016-12-14 16:12:43 -060021 select CPU_INTEL_COMMON
Arthur Heymansedbf5d92018-01-25 20:03:42 +010022 select PARALLEL_MP
Arthur Heymans74f9fe62019-04-24 12:29:44 +020023 select NO_FIXED_XIP_ROM_SIZE
Stefan Reinauer5c554632012-04-04 00:09:50 +020024
25config BOOTBLOCK_CPU_INIT
26 string
27 default "cpu/intel/model_206ax/bootblock.c"
28
Stefan Reinauer5c554632012-04-04 00:09:50 +020029config SMM_TSEG_SIZE
30 hex
31 default 0x800000
32
Arthur Heymans67031a52018-02-05 19:08:03 +010033config SMM_RESERVED_SIZE
34 hex
35 default 0x100000
36
37# Intel Enhanced Debug region must be 4MB
38config IED_REGION_SIZE
39 hex
40 default 0x400000
41
Vadim Bendebury999e94c2012-06-19 04:20:20 +000042endif