blob: f7ffa87ead8cf38086d873d6968f8ab9ba659bbb [file] [log] [blame]
Damien Zammit62477932015-05-03 21:34:38 +10001##
2## This file is part of the coreboot project.
3##
Damien Zammit62477932015-05-03 21:34:38 +10004##
5## This program is free software; you can redistribute it and/or modify
6## it under the terms of the GNU General Public License as published by
7## the Free Software Foundation; version 2 of the License.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12## GNU General Public License for more details.
13##
14
15config NORTHBRIDGE_INTEL_PINEVIEW
16 bool
17
18if NORTHBRIDGE_INTEL_PINEVIEW
19
20config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
21 def_bool y
Damien Zammit62477932015-05-03 21:34:38 +100022 select HAVE_DEBUG_RAM_SETUP
Damien Zammit51fdb922016-01-18 18:34:52 +110023 select VGA
24 select MAINBOARD_HAS_NATIVE_VGA_INIT
Nico Huberce642f02017-05-19 15:08:21 +020025 select HAVE_VGA_TEXT_FRAMEBUFFER if MAINBOARD_DO_NATIVE_VGA_INIT
Nico Huberd4ebeaf2017-05-22 13:49:22 +020026 select INTEL_EDID if MAINBOARD_DO_NATIVE_VGA_INIT
Patrick Rudolphbb98b382017-09-30 09:13:53 +020027 select INTEL_GMA_ACPI
Arthur Heymans84fdda32018-04-10 15:18:38 +020028 select PARALLEL_MP
Damien Zammit51fdb922016-01-18 18:34:52 +110029
Damien Zammit62477932015-05-03 21:34:38 +100030config VGA_BIOS_ID
31 string
32 default "8086,a001"
33
Arthur Heymanseb6f2f52018-08-19 23:08:10 +020034config MMCONF_BASE_ADDRESS
35 hex
36 default 0xe0000000
37
Arthur Heymans20f71362018-04-10 16:15:09 +020038config SMM_RESERVED_SIZE
39 hex
40 default 0x80000
41
Damien Zammit62477932015-05-03 21:34:38 +100042endif