blob: ae57e5b379896e4d036639605f3c64b057543875 [file] [log] [blame]
Damien Zammitcbe7a8e2015-08-19 15:23:32 +10001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
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
16if BOARD_GIGABYTE_GA_G41M_ES2L
17
18config BOARD_SPECIFIC_OPTIONS
19 def_bool y
20 select ARCH_X86
21 select CPU_INTEL_SOCKET_LGA775
22 select NORTHBRIDGE_INTEL_X4X
23 select SOUTHBRIDGE_INTEL_I82801GX
24 select SUPERIO_ITE_IT8718F
25 select HAVE_ACPI_TABLES
26 select BOARD_ROMSIZE_KB_1024
27 select INTEL_EDID
28 select MAINBOARD_HAS_NATIVE_VGA_INIT
Arthur Heymans0de17e72016-09-05 12:07:57 +020029 select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
Damien Zammit2abd3f92016-05-21 01:56:53 +100030 select PCIEXP_ASPM
31 select PCIEXP_CLK_PM
32 select PCIEXP_L1_SUB_STATE
Damien Zammitb28a4112016-05-24 17:26:51 +100033 select REALTEK_8168_RESET
Arthur Heymans0c290a02016-06-18 23:26:46 +020034 select HAVE_OPTION_TABLE
35 select HAVE_CMOS_DEFAULT
Arthur Heymansef7e98a2016-12-30 21:07:18 +010036 select HAVE_ACPI_RESUME
Damien Zammitcbe7a8e2015-08-19 15:23:32 +100037
38config MMCONF_BASE_ADDRESS
39 hex
Damien Zammitc4d317f2016-01-26 17:15:55 +110040 default 0xe0000000
Damien Zammitcbe7a8e2015-08-19 15:23:32 +100041
42config MAINBOARD_DIR
43 string
44 default "gigabyte/ga-g41m-es2l"
45
46config MAINBOARD_PART_NUMBER
47 string
48 default "GA-G41M-ES2L"
49
Arthur Heymansc79ced02016-11-20 18:47:38 +010050config MAX_CPUS
51 int
52 default 4
53
Damien Zammitcbe7a8e2015-08-19 15:23:32 +100054endif # BOARD_GIGABYTE_GA_G41M_ES2L