blob: 026deebadf6aaa5efa077a388faebb69037bf0de [file] [log] [blame]
Scott Duplichana649a962011-02-24 05:00:33 +00001#
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
Paul Menzela46a7122013-02-23 18:37:27 +010017# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Scott Duplichana649a962011-02-24 05:00:33 +000018#
19
Scott Duplichan63896e72011-02-26 17:49:49 +000020if BOARD_ASROCK_E350M1
Scott Duplichana649a962011-02-24 05:00:33 +000021
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select ARCH_X86
efdesign9805a89ab2011-06-20 17:38:49 -070025 select CPU_AMD_AGESA_FAMILY14
efdesign9805a89ab2011-06-20 17:38:49 -070026 select NORTHBRIDGE_AMD_AGESA_FAMILY14
27 select SOUTHBRIDGE_AMD_CIMX_SB800
Scott Duplichan63896e72011-02-26 17:49:49 +000028 select SUPERIO_WINBOND_W83627HF
Kerry She6209c822011-08-18 18:44:00 +080029 select SB_SUPERIO_HWM
Scott Duplichana649a962011-02-24 05:00:33 +000030 select HAVE_OPTION_TABLE
31 select HAVE_PIRQ_TABLE
32 select HAVE_MP_TABLE
Scott Duplichana649a962011-02-24 05:00:33 +000033 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
34 select LIFT_BSP_APIC_ID
Sven Schnellea2701c62012-07-29 17:42:52 +020035 select SERIAL_CPU_INIT
Scott Duplichana649a962011-02-24 05:00:33 +000036 select AMDMCT
37 select HAVE_ACPI_TABLES
38 select BOARD_ROMSIZE_KB_4096
Scott Duplichana649a962011-02-24 05:00:33 +000039 select GFXUMA
40
Scott Duplichana649a962011-02-24 05:00:33 +000041config MAINBOARD_DIR
42 string
Scott Duplichan63896e72011-02-26 17:49:49 +000043 default asrock/e350m1
Scott Duplichana649a962011-02-24 05:00:33 +000044
45config APIC_ID_OFFSET
46 hex
47 default 0x0
48
49config MAINBOARD_PART_NUMBER
50 string
Scott Duplichan63896e72011-02-26 17:49:49 +000051 default "E350M1"
Scott Duplichana649a962011-02-24 05:00:33 +000052
53config HW_MEM_HOLE_SIZEK
54 hex
55 default 0x200000
56
57config MAX_CPUS
58 int
59 default 2
60
61config MAX_PHYSICAL_CPUS
62 int
63 default 1
64
65config HW_MEM_HOLE_SIZE_AUTO_INC
66 bool
67 default n
68
69config MEM_TRAIN_SEQ
70 int
71 default 2
72
Scott Duplichana649a962011-02-24 05:00:33 +000073config IRQ_SLOT_COUNT
74 int
75 default 11
76
77config RAMTOP
78 hex
79 default 0x1000000
80
81config HEAP_SIZE
82 hex
83 default 0xc0000
84
Scott Duplichana649a962011-02-24 05:00:33 +000085config RAMBASE
86 hex
87 default 0x200000
88
89config SIO_PORT
90 hex
Scott Duplichan63896e72011-02-26 17:49:49 +000091 default 0x2e
Scott Duplichana649a962011-02-24 05:00:33 +000092
93config ONBOARD_VGA_IS_PRIMARY
94 bool
95 default y
96
Scott Duplichana649a962011-02-24 05:00:33 +000097config VGA_BIOS_ID
98 string
Scott Duplichan63896e72011-02-26 17:49:49 +000099 default "1002,9802"
Scott Duplichana649a962011-02-24 05:00:33 +0000100
101config DRIVERS_PS2_KEYBOARD
102 bool
103 default n
104
Scott Duplichan63896e72011-02-26 17:49:49 +0000105endif # BOARD_ASROCK_E350M1
Scott Duplichana649a962011-02-24 05:00:33 +0000106