Add a target for the ASUS A8V-E Deluxe (trivial).
[coreboot.git] / src / southbridge / via / k8t890 / Kconfig
index 34678ef4a5729fbc793e1866f28d161bfd3dc213..3626a05681f53a1807f442e6e34e85071216383b 100644 (file)
@@ -1,3 +1,44 @@
+config SOUTHBRIDGE_VIA_K8M890
+       bool
+
 config SOUTHBRIDGE_VIA_K8T890
        bool
 
+config SOUTHBRIDGE_VIA_K8M890_VGA_EN
+       bool "Enable onboard K8M890 graphics"
+       default y
+       depends on SOUTHBRIDGE_VIA_K8M890
+       select VGA
+       select GFXUMA
+
+choice
+       prompt "Framebuffer size"
+       default K8M890_VIDEO_MB_32MB
+       depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN
+
+config K8M890_VIDEO_MB_32MB
+       bool "32MB"
+config K8M890_VIDEO_MB_64MB
+       bool "64MB"
+config K8M890_VIDEO_MB_128MB
+       bool "128MB"
+config K8M890_VIDEO_MB_256MB
+       bool "256MB"
+config K8M890_VIDEO_MB_CMOS
+       bool "Use CMOS option"
+
+endchoice
+
+config VIDEO_MB
+       int
+       default 32  if K8M890_VIDEO_MB_32MB
+       default 64  if K8M890_VIDEO_MB_64MB
+       default 128  if K8M890_VIDEO_MB_128MB
+       default 256 if K8M890_VIDEO_MB_256MB
+       default -1  if K8M890_VIDEO_MB_CMOS
+       depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN
+
+config ID_SECTION_OFFSET
+       hex
+       default 0x80 if SOUTHBRIDGE_VIA_K8M890 || SOUTHBRIDGE_VIA_K8T890
+