blob: 1ec219e93168b62a8264bf01ee90304f70094ec0 [file] [log] [blame]
Jens Rottmann73d49652013-02-28 09:56:20 +01001#
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#
Jens Rottmann73d49652013-02-28 09:56:20 +010015
Jens Rottmann23d13b12013-02-28 10:24:20 +010016if BOARD_LIPPERT_FRONTRUNNER_AF
Jens Rottmann73d49652013-02-28 09:56:20 +010017
18config BOARD_SPECIFIC_OPTIONS # dummy
19 def_bool y
Jens Rottmann73d49652013-02-28 09:56:20 +010020 select CPU_AMD_AGESA_FAMILY14
Jens Rottmann73d49652013-02-28 09:56:20 +010021 select NORTHBRIDGE_AMD_AGESA_FAMILY14
22 select SOUTHBRIDGE_AMD_CIMX_SB800
Jens Rottmann23d13b12013-02-28 10:24:20 +010023 select SUPERIO_SMSC_SMSCSUPERIO
Jens Rottmann73d49652013-02-28 09:56:20 +010024 select HAVE_OPTION_TABLE
25 select HAVE_PIRQ_TABLE
26 select HAVE_MP_TABLE
Kyösti Mälkki1b6aef72014-06-06 22:57:01 +030027 # This erases 28 KB and writes 10 KB register dumps to SPI flash on every
Jens Rottmann23d13b12013-02-28 10:24:20 +010028 # boot, wasting 3 s and causing wear! Therefore disable S3 for now.
29 #select HAVE_ACPI_RESUME
Jens Rottmann73d49652013-02-28 09:56:20 +010030 select HAVE_ACPI_TABLES
31 select BOARD_ROMSIZE_KB_4096
32 select GFXUMA
33
34config MAINBOARD_DIR
35 string
Jens Rottmann23d13b12013-02-28 10:24:20 +010036 default lippert/frontrunner-af
Jens Rottmann73d49652013-02-28 09:56:20 +010037
Jens Rottmann73d49652013-02-28 09:56:20 +010038config MAINBOARD_PART_NUMBER
39 string
Jens Rottmann23d13b12013-02-28 10:24:20 +010040 default "FrontRunner-AF"
Jens Rottmann73d49652013-02-28 09:56:20 +010041
42config HW_MEM_HOLE_SIZEK
43 hex
44 default 0x200000
45
46config MAX_CPUS
47 int
Jens Rottmann069795a2013-03-04 21:13:57 +010048 default 2
Jens Rottmann73d49652013-02-28 09:56:20 +010049
Jens Rottmann73d49652013-02-28 09:56:20 +010050config HW_MEM_HOLE_SIZE_AUTO_INC
51 bool
52 default n
53
Jens Rottmann73d49652013-02-28 09:56:20 +010054config IRQ_SLOT_COUNT
55 int
56 default 11
57
Jens Rottmann73d49652013-02-28 09:56:20 +010058config ONBOARD_VGA_IS_PRIMARY
59 bool
60 default y
61
62config VGA_BIOS
63 bool
64 default n
65
66#config VGA_BIOS_FILE
67# string "VGA BIOS path and filename"
68# depends on VGA_BIOS
69# default "rom/video/OntarioGenericVbios.bin"
70
71config VGA_BIOS_ID
72 string
Jens Rottmann069795a2013-03-04 21:13:57 +010073 default "1002,9802"
Jens Rottmann73d49652013-02-28 09:56:20 +010074
75config SB800_AHCI_ROM
76 bool
77 default n
78
Jens Rottmann23d13b12013-02-28 10:24:20 +010079endif # BOARD_LIPPERT_FRONTRUNNER_AF