blob: 725c75d0ef72583c038e23d8ec854827c7691068 [file] [log] [blame]
Cristi Magherusand7e49b42009-08-26 16:55:06 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2009 Cristi Măgherușan <cristi.magherusan@net.utcluj.ro>
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
Nils Jacobsdd6ad342010-05-14 09:48:05 +00008## the Free Software Foundation; version 2 of the License.
Cristi Magherusand7e49b42009-08-26 16:55:06 +00009##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
Nils Jacobsdd6ad342010-05-14 09:48:05 +000012## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Cristi Magherusand7e49b42009-08-26 16:55:06 +000013## 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
Cristi Magherusand7e49b42009-08-26 16:55:06 +000018##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000019if BOARD_ASUS_M2V_MX_SE
Cristi Magherusand7e49b42009-08-26 16:55:06 +000020
Jens Rottmann9a684fc2010-08-30 16:36:51 +000021config BOARD_SPECIFIC_OPTIONS # dummy
22 def_bool y
Cristi Magherusand7e49b42009-08-26 16:55:06 +000023 select ARCH_X86
Cristi Magherusand7e49b42009-08-26 16:55:06 +000024 select CPU_AMD_SOCKET_AM2
Myles Watson6ea21152010-09-10 18:33:24 +000025 select DIMM_DDR2
Cristi Magherusand7e49b42009-08-26 16:55:06 +000026 select NORTHBRIDGE_AMD_AMDK8
Cristi Magherusand7e49b42009-08-26 16:55:06 +000027 select SOUTHBRIDGE_VIA_VT8237R
Kyösti Mälkki35e1c862012-02-25 17:14:20 +020028 select SOUTHBRIDGE_VIA_K8T890
29 select SOUTHBRIDGE_VIA_SUBTYPE_K8M890
Cristi Magherusand7e49b42009-08-26 16:55:06 +000030 select SUPERIO_ITE_IT8712F
Uwe Hermann120bff82009-09-29 18:15:06 +000031 select HAVE_OPTION_TABLE
32 select HAVE_ACPI_TABLES
Uwe Hermannd65509d2009-10-16 17:37:20 +000033 select BOARD_ROMSIZE_KB_512
Jonathan Kollasche5b75072010-10-07 23:02:06 +000034 select RAMINIT_SYSINFO
Myles Watson8f74c582009-10-20 16:10:04 +000035 select VGA
Rudolf Marekbcaea142010-11-22 22:00:52 +000036 select HAVE_ACPI_RESUME
Patrick Georgi00e14602010-11-05 22:59:49 +000037 select QRANK_DIMM_SUPPORT
Patrick Georgi76e81522010-11-16 21:25:29 +000038 select SET_FIDVID
Cristi Magherusand7e49b42009-08-26 16:55:06 +000039
40config MAINBOARD_DIR
41 string
42 default asus/m2v-mx_se
Cristi Magherusand7e49b42009-08-26 16:55:06 +000043
Cristi Magherusand7e49b42009-08-26 16:55:06 +000044config DCACHE_RAM_BASE
45 hex
46 default 0xcc000
Cristi Magherusand7e49b42009-08-26 16:55:06 +000047
48config DCACHE_RAM_SIZE
49 hex
50 default 0x4000
Cristi Magherusand7e49b42009-08-26 16:55:06 +000051
Cristi Magherusand7e49b42009-08-26 16:55:06 +000052config APIC_ID_OFFSET
53 hex
54 default 0x10
Cristi Magherusand7e49b42009-08-26 16:55:06 +000055
Cristi Magherusand7e49b42009-08-26 16:55:06 +000056config MAINBOARD_PART_NUMBER
57 string
58 default "M2V-MX SE"
Cristi Magherusand7e49b42009-08-26 16:55:06 +000059
60config MAX_CPUS
61 int
62 default 2
Cristi Magherusand7e49b42009-08-26 16:55:06 +000063
64config MAX_PHYSICAL_CPUS
65 int
66 default 1
Cristi Magherusand7e49b42009-08-26 16:55:06 +000067
Cristi Magherusand7e49b42009-08-26 16:55:06 +000068config HEAP_SIZE
Myles Watson079300b2009-09-17 16:59:07 +000069 hex
70 default 0x40000
Cristi Magherusand7e49b42009-08-26 16:55:06 +000071
Myles Watson74fb8f22009-09-24 15:09:11 +000072config HT_CHAIN_UNITID_BASE
73 hex
74 default 0x0
Myles Watson74fb8f22009-09-24 15:09:11 +000075
Myles Watson74fb8f22009-09-24 15:09:11 +000076config SB_HT_CHAIN_ON_BUS0
77 int
78 default 1
Myles Watson74fb8f22009-09-24 15:09:11 +000079
80config HT_CHAIN_END_UNITID_BASE
81 hex
82 default 0x20
Myles Watson74fb8f22009-09-24 15:09:11 +000083
Jens Rottmann9a684fc2010-08-30 16:36:51 +000084endif # BOARD_ASUS_M2V_MX_SE