Add constants for fast path resume copying
[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 MAINBOARD_DIR
47         string
48         default asrock/e350m1
49
50 config APIC_ID_OFFSET
51         hex
52         default 0x0
53
54 config MAINBOARD_PART_NUMBER
55         string
56         default "E350M1"
57
58 config HW_MEM_HOLE_SIZEK
59         hex
60         default 0x200000
61
62 config MAX_CPUS
63         int
64         default 2
65
66 config MAX_PHYSICAL_CPUS
67         int
68         default 1
69
70 config HW_MEM_HOLE_SIZE_AUTO_INC
71         bool
72         default n
73
74 config MEM_TRAIN_SEQ
75         int
76         default 2
77
78 config IRQ_SLOT_COUNT
79         int
80         default 11
81
82 config RAMTOP
83         hex
84         default 0x1000000
85
86 config HEAP_SIZE
87         hex
88         default 0xc0000
89
90 config STACK_SIZE
91         hex
92         default 0x10000
93
94 config ACPI_SSDTX_NUM
95         int
96         default 0
97
98 config RAMBASE
99         hex
100         default 0x200000
101
102 config SIO_PORT
103         hex
104         default 0x2e
105
106 config ONBOARD_VGA_IS_PRIMARY
107         bool
108         default y
109
110 config VGA_BIOS_ID
111         string
112         default "1002,9802"
113
114 config DRIVERS_PS2_KEYBOARD
115         bool
116         default n
117
118 config WARNINGS_ARE_ERRORS
119         bool
120         default n
121
122 endif # BOARD_ASROCK_E350M1
123