blob: cb8bc77335f60e6f2626d6f2cb922e280843bceb [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001
2config CPU_INTEL_HASWELL
3 bool
4
5if CPU_INTEL_HASWELL
6
7config CPU_SPECIFIC_OPTIONS
8 def_bool y
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07009 select ARCH_BOOTBLOCK_X86_32
Stefan Reinauer77b16552015-01-14 19:51:47 +010010 select ARCH_VERSTAGE_X86_32
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070011 select ARCH_ROMSTAGE_X86_32
12 select ARCH_RAMSTAGE_X86_32
Aaron Durbin76c37002012-10-30 09:03:43 -050013 select SMP
Matt DeVillier31769d92015-04-30 01:19:16 -050014 select MMX
Aaron Durbin76c37002012-10-30 09:03:43 -050015 select SSE2
Aaron Durbin7cb1ba92013-05-01 15:39:28 -050016 select UDELAY_TSC
17 select TSC_CONSTANT_RATE
Alexandru Gagniuc66e0c4c2013-12-04 22:21:15 -060018 select SUPPORT_CPU_UCODE_IN_CBFS
Aaron Durbin76c37002012-10-30 09:03:43 -050019 #select AP_IN_SIPI_WAIT
20 select TSC_SYNC_MFENCE
Aaron Durbin6dccedd2012-12-03 16:17:40 -060021 select CPU_INTEL_FIRMWARE_INTERFACE_TABLE
Aaron Durbin014baea2014-03-28 22:01:05 -050022 select PARALLEL_MP
Matt DeVilliered6fe2f2016-12-14 16:12:43 -060023 select CPU_INTEL_COMMON
Arthur Heymans74f9fe62019-04-24 12:29:44 +020024 select NO_FIXED_XIP_ROM_SIZE
Aaron Durbin76c37002012-10-30 09:03:43 -050025
Aaron Durbin76c37002012-10-30 09:03:43 -050026config SMM_TSEG_SIZE
27 hex
28 default 0x800000
29
Aaron Durbin8ce667e2013-02-15 21:45:06 -060030config IED_REGION_SIZE
31 hex
32 default 0x400000
33
34config SMM_RESERVED_SIZE
35 hex
36 default 0x100000
37
Aaron Durbinb86113f2013-02-19 08:59:16 -060038config RESET_ON_INVALID_RAMSTAGE_CACHE
39 bool "Reset the system on S3 wake when ramstage cache invalid."
40 default n
Aaron Durbinb86113f2013-02-19 08:59:16 -060041 help
42 The haswell romstage code caches the loaded ramstage program
43 in SMM space. On S3 wake the romstage will copy over a fresh
44 ramstage that was cached in the SMM space. This option determines
45 the action to take when the ramstage cache is invalid. If selected
46 the system will reset otherwise the ramstage will be reloaded from
47 cbfs.
48
Aaron Durbin76c37002012-10-30 09:03:43 -050049endif