125633668dd4aa3329844cb10cac7976a9b69f82
[coreboot.git] / src / northbridge / intel / i82830 / Kconfig
1 config NORTHBRIDGE_INTEL_I82830
2         bool
3         select HAVE_DEBUG_RAM_SETUP
4         select HAVE_HIGH_TABLES
5
6 choice
7         prompt "Onboard graphics"
8         default I830_VIDEO_MB_8MB
9         depends on NORTHBRIDGE_INTEL_I82830
10
11 config I830_VIDEO_MB_OFF
12         bool "Disabled, 0KB"
13 config I830_VIDEO_MB_512KB
14         bool "Enabled, 512KB"
15 config I830_VIDEO_MB_1MB
16         bool "Enabled, 1MB"
17 config I830_VIDEO_MB_8MB
18         bool "Enabled, 8MB"
19
20 endchoice
21
22 config VIDEO_MB
23         int
24         default 0   if I830_VIDEO_MB_OFF
25         default 512 if I830_VIDEO_MB_512KB
26         default 1   if I830_VIDEO_MB_1MB
27         default 8   if I830_VIDEO_MB_8MB
28         depends on NORTHBRIDGE_INTEL_I82830
29