blob: de1ef4505d84f463cd722e08fcbaaf8d32159895 [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##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000015if BOARD_ASUS_M2V_MX_SE
Cristi Magherusand7e49b42009-08-26 16:55:06 +000016
Jens Rottmann9a684fc2010-08-30 16:36:51 +000017config BOARD_SPECIFIC_OPTIONS # dummy
18 def_bool y
Cristi Magherusand7e49b42009-08-26 16:55:06 +000019 select CPU_AMD_SOCKET_AM2
Myles Watson6ea21152010-09-10 18:33:24 +000020 select DIMM_DDR2
Cristi Magherusand7e49b42009-08-26 16:55:06 +000021 select NORTHBRIDGE_AMD_AMDK8
Cristi Magherusand7e49b42009-08-26 16:55:06 +000022 select SOUTHBRIDGE_VIA_VT8237R
Kyösti Mälkki35e1c862012-02-25 17:14:20 +020023 select SOUTHBRIDGE_VIA_K8T890
24 select SOUTHBRIDGE_VIA_SUBTYPE_K8M890
Cristi Magherusand7e49b42009-08-26 16:55:06 +000025 select SUPERIO_ITE_IT8712F
Uwe Hermann120bff82009-09-29 18:15:06 +000026 select HAVE_OPTION_TABLE
27 select HAVE_ACPI_TABLES
Uwe Hermannd65509d2009-10-16 17:37:20 +000028 select BOARD_ROMSIZE_KB_512
Myles Watson8f74c582009-10-20 16:10:04 +000029 select VGA
Rudolf Marekbcaea142010-11-22 22:00:52 +000030 select HAVE_ACPI_RESUME
Patrick Georgi00e14602010-11-05 22:59:49 +000031 select QRANK_DIMM_SUPPORT
Patrick Georgi76e81522010-11-16 21:25:29 +000032 select SET_FIDVID
Cristi Magherusand7e49b42009-08-26 16:55:06 +000033
34config MAINBOARD_DIR
35 string
36 default asus/m2v-mx_se
Cristi Magherusand7e49b42009-08-26 16:55:06 +000037
Cristi Magherusand7e49b42009-08-26 16:55:06 +000038config DCACHE_RAM_BASE
39 hex
40 default 0xcc000
Cristi Magherusand7e49b42009-08-26 16:55:06 +000041
42config DCACHE_RAM_SIZE
43 hex
44 default 0x4000
Cristi Magherusand7e49b42009-08-26 16:55:06 +000045
Cristi Magherusand7e49b42009-08-26 16:55:06 +000046config APIC_ID_OFFSET
47 hex
48 default 0x10
Cristi Magherusand7e49b42009-08-26 16:55:06 +000049
Cristi Magherusand7e49b42009-08-26 16:55:06 +000050config MAINBOARD_PART_NUMBER
51 string
52 default "M2V-MX SE"
Cristi Magherusand7e49b42009-08-26 16:55:06 +000053
54config MAX_CPUS
55 int
56 default 2
Cristi Magherusand7e49b42009-08-26 16:55:06 +000057
58config MAX_PHYSICAL_CPUS
59 int
60 default 1
Cristi Magherusand7e49b42009-08-26 16:55:06 +000061
Myles Watson74fb8f22009-09-24 15:09:11 +000062config HT_CHAIN_UNITID_BASE
63 hex
64 default 0x0
Myles Watson74fb8f22009-09-24 15:09:11 +000065
Myles Watson74fb8f22009-09-24 15:09:11 +000066config HT_CHAIN_END_UNITID_BASE
67 hex
68 default 0x20
Myles Watson74fb8f22009-09-24 15:09:11 +000069
Jens Rottmann9a684fc2010-08-30 16:36:51 +000070endif # BOARD_ASUS_M2V_MX_SE