blob: 1c532121243e10478b442a1a67bd3ceab468542f [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#
Scott Duplichana649a962011-02-24 05:00:33 +000015
Scott Duplichan63896e72011-02-26 17:49:49 +000016if BOARD_ASROCK_E350M1
Scott Duplichana649a962011-02-24 05:00:33 +000017
18config BOARD_SPECIFIC_OPTIONS # dummy
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010019 def_bool y
20 select CPU_AMD_AGESA_FAMILY14
21 select NORTHBRIDGE_AMD_AGESA_FAMILY14
22 select SOUTHBRIDGE_AMD_CIMX_SB800
Felix Heldc1869662014-07-19 00:21:43 +020023 select SUPERIO_NUVOTON_NCT5572D
Kerry She6209c822011-08-18 18:44:00 +080024 select SB_SUPERIO_HWM
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010025 select HAVE_OPTION_TABLE
26 select HAVE_PIRQ_TABLE
27 select HAVE_MP_TABLE
Kyösti Mälkki68825742015-10-27 14:31:18 +020028 select HAVE_ACPI_RESUME
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010029 select HAVE_ACPI_TABLES
30 select BOARD_ROMSIZE_KB_4096
31 select GFXUMA
Scott Duplichana649a962011-02-24 05:00:33 +000032
Scott Duplichana649a962011-02-24 05:00:33 +000033config MAINBOARD_DIR
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010034 string
35 default asrock/e350m1
Scott Duplichana649a962011-02-24 05:00:33 +000036
Scott Duplichana649a962011-02-24 05:00:33 +000037config MAINBOARD_PART_NUMBER
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010038 string
39 default "E350M1"
Scott Duplichana649a962011-02-24 05:00:33 +000040
41config HW_MEM_HOLE_SIZEK
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010042 hex
43 default 0x200000
Scott Duplichana649a962011-02-24 05:00:33 +000044
45config MAX_CPUS
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010046 int
47 default 2
Scott Duplichana649a962011-02-24 05:00:33 +000048
Scott Duplichana649a962011-02-24 05:00:33 +000049config HW_MEM_HOLE_SIZE_AUTO_INC
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010050 bool
51 default n
Scott Duplichana649a962011-02-24 05:00:33 +000052
Scott Duplichana649a962011-02-24 05:00:33 +000053config IRQ_SLOT_COUNT
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010054 int
55 default 11
Scott Duplichana649a962011-02-24 05:00:33 +000056
Scott Duplichana649a962011-02-24 05:00:33 +000057config ONBOARD_VGA_IS_PRIMARY
58 bool
59 default y
60
Scott Duplichana649a962011-02-24 05:00:33 +000061config VGA_BIOS_ID
Nicolas Reinecke9c2aa692015-01-04 16:23:41 +010062 string
63 default "1002,9802"
Scott Duplichana649a962011-02-24 05:00:33 +000064
Scott Duplichan63896e72011-02-26 17:49:49 +000065endif # BOARD_ASROCK_E350M1