xref: /aosp_15_r20/external/coreboot/src/cpu/intel/socket_FCBGA559/Kconfig (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1## SPDX-License-Identifier: GPL-2.0-only
2
3config CPU_INTEL_SOCKET_FCBGA559
4	bool
5	select CPU_INTEL_MODEL_106CX
6	select CPU_HAS_L2_ENABLE_MSR
7	help
8	  Select this socket on Intel Pineview
9
10if CPU_INTEL_SOCKET_FCBGA559
11
12config DCACHE_RAM_BASE
13	hex
14	default 0xfefc0000
15
16config DCACHE_RAM_SIZE
17	hex
18	default 0x8000
19
20config PRERAM_CBFS_CACHE_SIZE
21	default 0x0
22
23config DCACHE_BSP_STACK_SIZE
24	hex
25	default 0x2000
26	help
27	  The amount of anticipated stack usage in CAR by bootblock and
28	  other stages.
29
30config MAX_CPUS
31	int
32	default 4
33
34endif
35