blob: f05dc55e9b093be10bbe541d31235f41b3425c58 [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
25 select ARCH_X86
26 select CPU_AMD_AGESA_FAMILY14
27 select NORTHBRIDGE_AMD_AGESA_FAMILY14
28 select SOUTHBRIDGE_AMD_CIMX_SB800
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110029 select SUPERIO_FINTEK_F71869AD
Edward O'Callaghan4726a872014-01-25 07:40:39 +110030 select HAVE_OPTION_TABLE
31 select HAVE_PIRQ_TABLE
32 select HAVE_MP_TABLE
Edward O'Callaghan024822f2014-03-25 19:23:00 +110033 select HAVE_ACPI_RESUME
Edward O'Callaghan4726a872014-01-25 07:40:39 +110034 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
35 select LIFT_BSP_APIC_ID
36 select SERIAL_CPU_INIT
37 select AMDMCT
38 select HAVE_ACPI_TABLES
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110039 select BOARD_ROMSIZE_KB_2048
Edward O'Callaghan4726a872014-01-25 07:40:39 +110040 select GFXUMA
41
42config MAINBOARD_DIR
43 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110044 default jetway/nf81-t56n-lf
Edward O'Callaghan4726a872014-01-25 07:40:39 +110045
46config APIC_ID_OFFSET
47 hex
48 default 0x0
49
50config MAINBOARD_PART_NUMBER
51 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +110052 default "NF81-T56N-LF"
Edward O'Callaghan4726a872014-01-25 07:40:39 +110053
54config HW_MEM_HOLE_SIZEK
55 hex
56 default 0x200000
57
58config MAX_CPUS
59 int
60 default 2
61
62config MAX_PHYSICAL_CPUS
63 int
64 default 1
65
66config HW_MEM_HOLE_SIZE_AUTO_INC
67 bool
68 default n
69
70config IRQ_SLOT_COUNT
71 int
72 default 11
73
74config RAMTOP
75 hex
76 default 0x1000000
77
78config HEAP_SIZE
79 hex
80 default 0xc0000
81
82config RAMBASE
83 hex
84 default 0x200000
85
86config SIO_PORT
87 hex
88 default 0x4e
89
90config ONBOARD_VGA_IS_PRIMARY
91 bool
92 default y
93
94config VGA_BIOS
95 bool
96 default n
97
98#config VGA_BIOS_FILE
99# string "VGA BIOS path and filename"
100# depends on VGA_BIOS
101# default "rom/video/OntarioGenericVbios.bin"
102
103config VGA_BIOS_ID
104 string
Edward O'Callaghan6e56de32014-01-25 21:46:10 +1100105 default "1002,9806" # FUSION_G_T56N
Edward O'Callaghan4726a872014-01-25 07:40:39 +1100106
107config SB800_AHCI_ROM
108 bool
109 default n
110
111config DRIVERS_PS2_KEYBOARD
112 bool
Edward O'Callaghanb66d53a2014-03-10 01:58:37 +1100113 default y
Edward O'Callaghan4726a872014-01-25 07:40:39 +1100114
Edward O'Callaghan6e56de32014-01-25 21:46:10 +1100115endif # BOARD_JETWAY_NF81_T56N_LF