blob: 98ce6444e96420f5204529107e605d321e452799 [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
Kyösti Mälkki575e6812013-07-02 11:37:35 +030024 select MMCONF_SUPPORT
Patrick Georgi2efc8802012-11-06 11:03:53 +010025 select MMCONF_SUPPORT_DEFAULT
Vladimir Serbinenko88010112014-08-16 03:35:33 +020026 select VGA
27 select INTEL_EDID
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010028 select INTEL_GMA_ACPI
Patrick Georgi2efc8802012-11-06 11:03:53 +010029
Kyösti Mälkki35a72492013-07-01 11:21:53 +030030config BOOTBLOCK_NORTHBRIDGE_INIT
31 string
32 default "northbridge/intel/gm45/bootblock.c"
33
Vladimir Serbinenkod668cce2014-08-10 21:58:23 +020034config VGA_BIOS_ID
35 string
36 default "8086,2a42"
37
Patrick Georgi2efc8802012-11-06 11:03:53 +010038endif