blob: c330fd50d5cbe2f96024c423030f117abfdc9312 [file] [log] [blame]
Damien Zammit43a1f782015-08-19 15:16:59 +10001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2007-2009 coresystems GmbH
5## Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
6##
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
17config NORTHBRIDGE_INTEL_X4X
18 bool
19
20if NORTHBRIDGE_INTEL_X4X
21
22config NORTHBRIDGE_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select HAVE_DEBUG_RAM_SETUP
25 select MMCONF_SUPPORT
26 select MMCONF_SUPPORT_DEFAULT
27 select VGA
28 select INTEL_GMA_ACPI
29 select LATE_CBMEM_INIT
30
31config BOOTBLOCK_NORTHBRIDGE_INIT
32 string
33 default "northbridge/intel/x4x/bootblock.c"
34
35config VGA_BIOS_ID
36 string
37 default "8086,2e32"
38
39endif