summaryrefslogtreecommitdiff
path: root/src/cpu/amd/geode_gx2/Kconfig
blob: 1b56d5d4b16308e32408a14d3ca85c605d3052b8 (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
##
## This file is part of the coreboot project.
##
## Copyright (C) 2010 coresystems GmbH
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; version 2 of the License.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc.
##

config CPU_AMD_GEODE_GX2
	bool
	select ARCH_BOOTBLOCK_X86_32
	select ARCH_VERSTAGE_X86_32
	select ARCH_ROMSTAGE_X86_32
	select ARCH_RAMSTAGE_X86_32

if CPU_AMD_GEODE_GX2

config CPU_SPECIFIC_OPTIONS
	def_bool y

config DCACHE_RAM_BASE
	hex
	default 0xc8000

config DCACHE_RAM_SIZE
	hex
	default 0x04000

config DCACHE_BSP_STACK_SIZE
	hex
	default 0x1000

config DCACHE_BSP_STACK_SLUSH
	hex
	default 0x1000

config DCACHE_AP_STACK_SIZE
	hex
	default 0x400

config GEODE_VSA
	bool
	default y
	select PCI_OPTION_ROM_RUN_REALMODE

config GEODE_VSA_FILE
	bool "Add a VSA image"
	help
	  Select this option if you have an AMD Geode GX2 vsa that you would
	  like to add to your ROM.

	  You will be able to specify the location and file name of the
	  image later.

config VSA_FILENAME
	string "AMD Geode GX2 VSA path and filename"
	depends on GEODE_VSA_FILE
	default "gpl_vsa_gx_102.bin"
	help
	  The path and filename of the file to use as VSA.

endif # CPU_AMD_GEODE_GX2