blob: 60c2066b7eef70c46e5c669b285f481da0131fce [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
10 select ARCH_ROMSTAGE_X86_32
11 select ARCH_RAMSTAGE_X86_32
Aaron Durbin6a360042014-02-13 10:30:42 -060012 select BACKUP_DEFAULT_SMM_REGION
Aaron Durbin76c37002012-10-30 09:03:43 -050013 select SMP
14 select SSE2
Aaron Durbin7cb1ba92013-05-01 15:39:28 -050015 select UDELAY_TSC
16 select TSC_CONSTANT_RATE
Aaron Durbin76c37002012-10-30 09:03:43 -050017 select SMM_TSEG
Aaron Durbin29ffa542012-12-21 21:21:48 -060018 select SMM_MODULES
Aaron Durbin305b1f02013-01-15 08:27:05 -060019 select RELOCATABLE_MODULES
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -050020 select DYNAMIC_CBMEM
Alexandru Gagniuc66e0c4c2013-12-04 22:21:15 -060021 select SUPPORT_CPU_UCODE_IN_CBFS
Aaron Durbin76c37002012-10-30 09:03:43 -050022 #select AP_IN_SIPI_WAIT
23 select TSC_SYNC_MFENCE
Aaron Durbin6dccedd2012-12-03 16:17:40 -060024 select CPU_INTEL_FIRMWARE_INTERFACE_TABLE
Aaron Durbin014baea2014-03-28 22:01:05 -050025 select PARALLEL_MP
Aaron Durbin76c37002012-10-30 09:03:43 -050026
27config BOOTBLOCK_CPU_INIT
28 string
29 default "cpu/intel/haswell/bootblock.c"
30
31config SERIAL_CPU_INIT
32 bool
33 default n
34
35config SMM_TSEG_SIZE
36 hex
37 default 0x800000
38
Aaron Durbin8ce667e2013-02-15 21:45:06 -060039config IED_REGION_SIZE
40 hex
41 default 0x400000
42
43config SMM_RESERVED_SIZE
44 hex
45 default 0x100000
46
Aaron Durbinb86113f2013-02-19 08:59:16 -060047config RESET_ON_INVALID_RAMSTAGE_CACHE
48 bool "Reset the system on S3 wake when ramstage cache invalid."
49 default n
50 depends on RELOCATABLE_RAMSTAGE
51 help
52 The haswell romstage code caches the loaded ramstage program
53 in SMM space. On S3 wake the romstage will copy over a fresh
54 ramstage that was cached in the SMM space. This option determines
55 the action to take when the ramstage cache is invalid. If selected
56 the system will reset otherwise the ramstage will be reloaded from
57 cbfs.
58
Aaron Durbinc46cc6f2013-04-29 16:57:10 -050059config MONOTONIC_TIMER_MSR
60 def_bool n
61 depends on INTEL_LYNXPOINT_LP
62 select HAVE_MONOTONIC_TIMER
63 help
Paul Menzel4e01cfb2013-05-13 23:06:34 +020064 Provide a monotonic timer using the 24MHz MSR counter.
Aaron Durbinc46cc6f2013-04-29 16:57:10 -050065
Aaron Durbin76c37002012-10-30 09:03:43 -050066endif