Get rid of the old romstage-as-bootblock ROM layout
[coreboot.git] / src / mainboard / asrock / e350m1 / Kconfig
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2011 Advanced Micro Devices, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 #
19
20 if BOARD_ASROCK_E350M1
21
22 config BOARD_SPECIFIC_OPTIONS # dummy
23         def_bool y
24   select ARCH_X86
25   select CPU_AMD_AGESA_FAMILY14
26   select NORTHBRIDGE_AMD_AGESA_FAMILY14_ROOT_COMPLEX
27   select NORTHBRIDGE_AMD_AGESA_FAMILY14
28   select SOUTHBRIDGE_AMD_CIMX_SB800
29         select SUPERIO_WINBOND_W83627HF
30         select SB_SUPERIO_HWM
31   select BOARD_HAS_FADT
32         select HAVE_BUS_CONFIG
33         select HAVE_OPTION_TABLE
34         select HAVE_PIRQ_TABLE
35         select HAVE_MP_TABLE
36         select HAVE_MAINBOARD_RESOURCES
37         select HAVE_HARD_RESET
38         select SB_HT_CHAIN_UNITID_OFFSET_ONLY
39         select LIFT_BSP_APIC_ID
40   select SERIAL_CPU_INIT
41   select AMDMCT
42         select HAVE_ACPI_TABLES
43   select BOARD_ROMSIZE_KB_4096
44         select GFXUMA
45
46 config AMD_AGESA
47         bool
48         default y
49
50 config MAINBOARD_DIR
51         string
52         default asrock/e350m1
53
54 config APIC_ID_OFFSET
55         hex
56         default 0x0
57
58 config MAINBOARD_PART_NUMBER
59         string
60         default "E350M1"
61
62 config HW_MEM_HOLE_SIZEK
63         hex
64         default 0x200000
65
66 config MAX_CPUS
67         int
68         default 2
69
70 config MAX_PHYSICAL_CPUS
71         int
72         default 1
73
74 config HW_MEM_HOLE_SIZE_AUTO_INC
75         bool
76         default n
77
78 config MEM_TRAIN_SEQ
79         int
80         default 2
81
82 config IRQ_SLOT_COUNT
83         int
84         default 11
85
86 config RAMTOP
87         hex
88         default 0x1000000
89
90 config HEAP_SIZE
91         hex
92         default 0xc0000
93
94 config STACK_SIZE
95         hex
96         default 0x10000
97
98 config ACPI_SSDTX_NUM
99         int
100         default 0
101
102 config RAMBASE
103         hex
104         default 0x200000
105
106 config SIO_PORT
107         hex
108         default 0x2e
109
110 config ONBOARD_VGA_IS_PRIMARY
111         bool
112         default y
113
114 config VGA_BIOS_ID
115         string
116         default "1002,9802"
117
118 config DRIVERS_PS2_KEYBOARD
119         bool
120         default n
121
122 config WARNINGS_ARE_ERRORS
123         bool
124         default n
125
126 endif # BOARD_ASROCK_E350M1
127