blob: cd2751ff2d225e1dcbdb7b2552445de9b466ee3d [file] [log] [blame]
Edward O'Callaghan4726a872014-01-25 07:40:39 +11001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2011 Advanced Micro Devices, Inc.
Edward O'Callaghan6e56de32014-01-25 21:46:10 +11005# Copyright (C) 2014 Edward O'Callaghan <eocallaghan@alterapraxis.com>.
Edward O'Callaghan4726a872014-01-25 07:40:39 +11006#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; version 2 of the License.
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#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19#
20
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110021if BOARD_JETWAY_NF81_T56N_LF
Edward O'Callaghan4726a872014-01-25 07:40:39 +110022
23config BOARD_SPECIFIC_OPTIONS # dummy
24 def_bool y
Edward O'Callaghan4726a872014-01-25 07:40:39 +110025 select CPU_AMD_AGESA_FAMILY14
26 select NORTHBRIDGE_AMD_AGESA_FAMILY14
27 select SOUTHBRIDGE_AMD_CIMX_SB800
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110028 select SUPERIO_FINTEK_F71869AD
Edward O'Callaghan4726a872014-01-25 07:40:39 +110029 select HAVE_OPTION_TABLE
30 select HAVE_PIRQ_TABLE
31 select HAVE_MP_TABLE
Edward O'Callaghan024822f2014-03-25 19:23:00 +110032 select HAVE_ACPI_RESUME
Edward O'Callaghan4726a872014-01-25 07:40:39 +110033 select HAVE_ACPI_TABLES
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110034 select BOARD_ROMSIZE_KB_2048
Edward O'Callaghan4726a872014-01-25 07:40:39 +110035 select GFXUMA
36
37config MAINBOARD_DIR
38 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110039 default jetway/nf81-t56n-lf
Edward O'Callaghan4726a872014-01-25 07:40:39 +110040
Edward O'Callaghan4726a872014-01-25 07:40:39 +110041config MAINBOARD_PART_NUMBER
42 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110043 default "NF81-T56N-LF"
Edward O'Callaghan4726a872014-01-25 07:40:39 +110044
45config HW_MEM_HOLE_SIZEK
46 hex
47 default 0x200000
48
49config MAX_CPUS
50 int
51 default 2
52
Edward O'Callaghan4726a872014-01-25 07:40:39 +110053config HW_MEM_HOLE_SIZE_AUTO_INC
54 bool
55 default n
56
57config IRQ_SLOT_COUNT
58 int
59 default 11
60
Edward O'Callaghan4726a872014-01-25 07:40:39 +110061config ONBOARD_VGA_IS_PRIMARY
62 bool
63 default y
64
65config VGA_BIOS
66 bool
67 default n
68
69#config VGA_BIOS_FILE
70# string "VGA BIOS path and filename"
71# depends on VGA_BIOS
72# default "rom/video/OntarioGenericVbios.bin"
73
74config VGA_BIOS_ID
75 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110076 default "1002,9806" # FUSION_G_T56N
Edward O'Callaghan4726a872014-01-25 07:40:39 +110077
78config SB800_AHCI_ROM
79 bool
80 default n
81
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110082endif # BOARD_JETWAY_NF81_T56N_LF