blob: f1318ebc934d9cec8e23112c2ca6a4f5af8bf92b [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007-2009 coresystems GmbH
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##
Patrick Georgi2efc8802012-11-06 11:03:53 +010015
16config NORTHBRIDGE_INTEL_GM45
17 bool
18
19if NORTHBRIDGE_INTEL_GM45
20
21config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
22 def_bool y
23 select HAVE_DEBUG_RAM_SETUP
Nico Huberb31119a2017-10-29 15:29:23 +010024 select LAPIC_MONOTONIC_TIMER
Vladimir Serbinenko88010112014-08-16 03:35:33 +020025 select VGA
26 select INTEL_EDID
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010027 select INTEL_GMA_ACPI
Nico Huber561bebf2017-01-19 16:28:18 +010028 select INTEL_GMA_SSC_ALTERNATE_REF
Arthur Heymans3a4edb62018-06-03 12:42:10 +020029 select POSTCAR_STAGE
30 select POSTCAR_CONSOLE
Arthur Heymansaade90e2018-01-25 00:33:45 +010031 select SMM_TSEG
Arthur Heymans6336d4c2018-01-25 21:38:25 +010032 select PARALLEL_MP
Arthur Heymansc3e9ba02018-04-10 16:12:29 +020033 select CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
Patrick Georgi2efc8802012-11-06 11:03:53 +010034
Martin Roth59ff3402016-02-09 09:06:46 -070035config CBFS_SIZE
36 hex
37 default 0x100000
38
Kyösti Mälkki35a72492013-07-01 11:21:53 +030039config BOOTBLOCK_NORTHBRIDGE_INIT
40 string
41 default "northbridge/intel/gm45/bootblock.c"
42
Vladimir Serbinenkod668cce2014-08-10 21:58:23 +020043config VGA_BIOS_ID
44 string
45 default "8086,2a42"
46
Arthur Heymans1dcb2ac2017-05-10 13:11:11 +020047config MMCONF_BASE_ADDRESS
48 hex
49 default 0xf0000000
50
Arthur Heymansc3e9ba02018-04-10 16:12:29 +020051config SMM_RESERVED_SIZE
52 hex
53 default 0x100000
54
Patrick Georgi2efc8802012-11-06 11:03:53 +010055endif