Add kconfig menus for most chipset VIDEO_MB values.
[coreboot.git] / src / northbridge / intel / i82810 / Kconfig
index d55ed25cf47225cf70ee0f08556881ab56f79206..dc939b42d2b18efbd40dd1725407213f25cb7ca4 100644 (file)
@@ -22,3 +22,24 @@ config NORTHBRIDGE_INTEL_I82810
        bool
        select HAVE_HIGH_TABLES
 
+choice
+       prompt "Onboard graphics"
+       default I810_VIDEO_MB_1MB
+       depends on NORTHBRIDGE_INTEL_I82810
+
+config I810_VIDEO_MB_OFF
+       bool "Disabled, 0KB"
+config I810_VIDEO_MB_512KB
+       bool "Enabled, 512KB"
+config I810_VIDEO_MB_1MB
+       bool "Enabled, 1MB"
+
+endchoice
+
+config VIDEO_MB
+       int
+       default 0   if I810_VIDEO_MB_OFF
+       default 512 if I810_VIDEO_MB_512KB
+       default 1   if I810_VIDEO_MB_1MB
+       depends on NORTHBRIDGE_INTEL_I82810
+