Drop obsolete TINY_BOOTBLOCK
[coreboot.git] / src / mainboard / supermicro / h8qgi / Kconfig
1 #
2 # This file is part of the coreboot project.
3 #
4 # Copyright (C) 2011 - 2012 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_SUPERMICRO_H8QGI
21
22 config BOARD_SPECIFIC_OPTIONS
23         def_bool y
24         select ARCH_X86
25         select CPU_AMD_AGESA_FAMILY15
26         select CPU_AMD_SOCKET_G34
27         select NORTHBRIDGE_AMD_AGESA_FAMILY15_ROOT_COMPLEX
28         select NORTHBRIDGE_AMD_AGESA_FAMILY15
29         select NORTHBRIDGE_AMD_CIMX_RD890
30         select SOUTHBRIDGE_AMD_CIMX_SB700
31         select SUPERIO_WINBOND_W83627DHG
32         select SUPERIO_NUVOTON_WPCM450
33         select DRIVERS_I2C_W83795
34         select UDELAY_TSC
35         select BOARD_HAS_FADT
36         select HAVE_BUS_CONFIG
37         select HAVE_OPTION_TABLE
38         select HAVE_PIRQ_TABLE
39         select HAVE_MP_TABLE
40         select HAVE_HARD_RESET
41         select SERIAL_CPU_INIT
42         select HAVE_ACPI_TABLES
43         select BOARD_ROMSIZE_KB_2048
44         #select MMCONF_SUPPORT_DEFAULT #TODO enable it to resolve Multicore IO conflict
45
46 config MAINBOARD_DIR
47         string
48         default supermicro/h8qgi
49
50 config MAINBOARD_PART_NUMBER
51         string
52         default "H8QGI"
53
54 config HW_MEM_HOLE_SIZEK
55         hex
56         default 0x200000
57
58 config MAX_CPUS
59         int
60         default 64
61
62 config MAX_PHYSICAL_CPUS
63         int
64         default 16
65
66 config HW_MEM_HOLE_SIZE_AUTO_INC
67         bool
68         default n
69
70 config MEM_TRAIN_SEQ
71         int
72         default 2
73
74 config IRQ_SLOT_COUNT
75         int
76         default 11
77
78 config RAMTOP
79         hex
80         default 0x1000000
81
82 config HEAP_SIZE
83         hex
84         default 0xc0000
85
86 config STACK_SIZE
87         hex
88         default 0x10000
89
90 config ACPI_SSDTX_NUM
91         int
92         default 0
93
94 config RAMBASE
95         hex
96         default 0x200000
97
98 config SIO_PORT
99         hex
100         default 0x164E
101         help
102                 though UARTs are on the NUVOTON BMC, port 0x164E
103                 PS2 keyboard and mouse are on SUPERIO_WINBOND_W83627DHG, port 0x2E
104
105 config DRIVERS_PS2_KEYBOARD
106         bool
107         default y
108
109 config WARNINGS_ARE_ERRORS
110         bool
111         default n
112
113 config ONBOARD_VGA_IS_PRIMARY
114         bool
115         default y
116
117 config VGA_BIOS
118         bool
119         default n
120
121 config VGA_BIOS_ID
122         string
123         depends on VGA_BIOS
124         default "102b,0532"
125
126 endif # BOARD_SUPERMICRO_H8QGI
127