blob: 7cb903bb9304d7fc793272d4717eac422a7665d5 [file] [log] [blame]
Uwe Hermann29c7dfca2010-12-13 13:44:33 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
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; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000016
17if BOARD_ASUS_M2N_E
18
19config BOARD_SPECIFIC_OPTIONS # dummy
20 def_bool y
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000021 select CPU_AMD_SOCKET_AM2
22 select DIMM_DDR2
23 select NORTHBRIDGE_AMD_AMDK8
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000024 select SOUTHBRIDGE_NVIDIA_MCP55
Kyösti Mälkki7748ee52015-02-05 15:48:38 +020025 select HT_CHAIN_DISTRIBUTE
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000026 select MCP55_USE_NIC
27 select MCP55_USE_AZA
28 select SUPERIO_ITE_IT8716F
29 select SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
Kyösti Mälkki5c3f3842014-05-08 15:27:15 +030030 select PARALLEL_CPU_INIT
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000031 select HAVE_OPTION_TABLE
32 select HAVE_MP_TABLE
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000033 select LIFT_BSP_APIC_ID
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000034 select BOARD_ROMSIZE_KB_512
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000035 select K8_ALLOCATE_IO_RANGE
36
37config MAINBOARD_DIR
38 string
39 default asus/m2n-e
40
41config DCACHE_RAM_BASE
42 hex
43 default 0xc8000
44
45config DCACHE_RAM_SIZE
46 hex
47 default 0x08000
48
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000049config APIC_ID_OFFSET
50 hex
51 default 0x10
52
53config MEM_TRAIN_SEQ
54 int
55 default 2
56
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000057config MAINBOARD_PART_NUMBER
58 string
59 default "M2N-E"
60
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000061config MAX_CPUS
62 int
63 default 2
64
65config MAX_PHYSICAL_CPUS
66 int
67 default 1
68
69config HT_CHAIN_UNITID_BASE
70 hex
71 default 0x0
72
73config HT_CHAIN_END_UNITID_BASE
74 hex
75 default 0x20
76
Uwe Hermann29c7dfca2010-12-13 13:44:33 +000077endif # BOARD_ASUS_M2N_E