blob: 72f94d6d602a1b6509049d3b709e94d1a8127f9c [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
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
Nils Jacobsdd6ad342010-05-14 09:48:05 +00008## the Free Software Foundation; version 2 of the License.
Patrick Georgi0588d192009-08-12 15:00:51 +00009##
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 Georgi0588d192009-08-12 15:00:51 +000015
Patrick Georgi0588d192009-08-12 15:00:51 +000016config NORTHBRIDGE_INTEL_I82810
17 bool
Jens Rottmann0d11f2d2010-08-26 12:46:02 +000018 select HAVE_DEBUG_RAM_SETUP
Kyösti Mälkki3bf38542014-12-18 22:22:04 +020019 select LATE_CBMEM_INIT
Patrick Georgi88f55b22009-09-25 18:43:02 +000020
Uwe Hermann63a8f2a2009-10-26 21:42:13 +000021choice
22 prompt "Onboard graphics"
23 default I810_VIDEO_MB_1MB
24 depends on NORTHBRIDGE_INTEL_I82810
25
26config I810_VIDEO_MB_OFF
27 bool "Disabled, 0KB"
28config I810_VIDEO_MB_512KB
29 bool "Enabled, 512KB"
30config I810_VIDEO_MB_1MB
31 bool "Enabled, 1MB"
32
33endchoice
34
35config VIDEO_MB
36 int
37 default 0 if I810_VIDEO_MB_OFF
38 default 512 if I810_VIDEO_MB_512KB
39 default 1 if I810_VIDEO_MB_1MB
40 depends on NORTHBRIDGE_INTEL_I82810
41
Stefan Reinauerbccbbe62010-12-19 21:20:14 +000042config VGA_BIOS_ID
Uwe Hermann81b3c0a2009-10-30 12:56:59 +000043 string
44 default "8086,7121"
45 depends on NORTHBRIDGE_INTEL_I82810