summaryrefslogtreecommitdiff
path: root/src/cpu/amd/model_10xxx/Kconfig
blob: 30c2486e679d7c340e4ec964c3350381b1640cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
config CPU_AMD_MODEL_10XXX
	bool
	select ARCH_X86
	select SSE
	select SSE2
	select MMCONF_SUPPORT_DEFAULT
	select TSC_SYNC_LFENCE
	select UDELAY_LAPIC

if CPU_AMD_MODEL_10XXX

config NUM_IPI_STARTS
	int
	default 1

config CPU_ADDR_BITS
	int
	default 48

config DCACHE_RAM_BASE
	hex
	default 0xc4000

config DCACHE_RAM_SIZE
	hex
	default 0x0c000

config UDELAY_IO
	bool
	default n

config SET_FIDVID
	bool
	default y

config MAX_PHYSICAL_CPUS
	int
	default 1

config LIFT_BSP_APIC_ID
	bool
	default n

if SET_FIDVID
config SET_FIDVID_DEBUG
	bool
	default y

config SET_FIDVID_STORE_AP_APICID_AT_FIRST
	bool
	default y

config SET_FIDVID_CORE0_ONLY
	bool
	default n

# 0: all cores
# 1: core 0 only
# 2: all but core 0
config SET_FIDVID_CORE_RANGE
	int
	default 0

endif	# SET_FIDVID

config UDELAY_LAPIC_FIXED_FSB
	int
	default 200

config UPDATE_CPU_MICROCODE
	bool
	default y

config UPDATE_CPU_MICROCODE
	bool "Update CPU microcode"
	default y
	depends on EXPERT && CPU_AMD_MODEL_10XXX
	help
	  Select this to apply patches to the CPU microcode provided by
	  AMD without source, and distributed with coreboot, to address
	  issues in the CPU post production.

	  Microcode updates distributed with coreboot are not necessarily
	  the latest version available from AMD. Updates are only applied
	  if they are newer than the microcode already in your CPU.

	  Unselect this to let Fam10h CPUs run with microcode as shipped
	  from factory. No binary microcode patches will be included in the
	  coreboot image in that case, which can help with creating an image
	  for which complete source code is available, which in turn might
	  simplify license compliance.

	  Microcode updates intend to solve issues that have been discovered
	  after CPU production. The common case is that systems work as
	  intended with updated microcode, but we have also seen cases where
	  issues were solved by not applying the microcode updates.

	  Note that some operating system include these same microcode
	  patches, so you may need to also disable microcode updates in
	  your operating system in order for this option to matter.

endif	# CPU_AMD_MODEL_10XXX