blob: 83660bb77c1dbcd4cb74dbbc4e3297f9e859fd37 [file] [log] [blame]
Kerry Shehb9136ed82011-11-15 21:27:57 +08001#
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#
Kerry Shehb9136ed82011-11-15 21:27:57 +080015
16if BOARD_AMD_UNIONSTATION
17
18config BOARD_SPECIFIC_OPTIONS # dummy
19 def_bool y
Kerry Shehb9136ed82011-11-15 21:27:57 +080020 select CPU_AMD_AGESA_FAMILY14
Kerry Shehb9136ed82011-11-15 21:27:57 +080021 select NORTHBRIDGE_AMD_AGESA_FAMILY14
22 select SOUTHBRIDGE_AMD_CIMX_SB800
Kerry Shehb9136ed82011-11-15 21:27:57 +080023 select HAVE_OPTION_TABLE
24 select HAVE_PIRQ_TABLE
25 select HAVE_MP_TABLE
Kerry Shehb9136ed82011-11-15 21:27:57 +080026 select HAVE_ACPI_TABLES
27 select BOARD_ROMSIZE_KB_2048
Kerry Shehb9136ed82011-11-15 21:27:57 +080028 select GFXUMA
29 select UDELAY_LAPIC
30
Kerry Shehb9136ed82011-11-15 21:27:57 +080031config MAINBOARD_DIR
32 string
33 default amd/union_station
34
Kerry Shehb9136ed82011-11-15 21:27:57 +080035config MAINBOARD_PART_NUMBER
36 string
37 default "Unionstation"
38
39config HW_MEM_HOLE_SIZEK
40 hex
41 default 0x200000
42
43config MAX_CPUS
44 int
45 default 4
46
Kerry Shehb9136ed82011-11-15 21:27:57 +080047config HW_MEM_HOLE_SIZE_AUTO_INC
48 bool
49 default n
50
Kerry Shehb9136ed82011-11-15 21:27:57 +080051config IRQ_SLOT_COUNT
52 int
53 default 11
54
Kerry Shehb9136ed82011-11-15 21:27:57 +080055config ONBOARD_VGA_IS_PRIMARY
56 bool
57 default y
58
59config VGA_BIOS
60 bool
61 default n
62config VGA_BIOS_FILE
63 string
64 default "site-local/vgabios.bin"
65
66config VGA_BIOS_ID
67 string
68 default "1002,9802"
69
Kerry Shehb9136ed82011-11-15 21:27:57 +080070endif # BOARD_AMD_UNIONSTATION