5ba3e5c307e4bc6a9e349b99a3a62b047b3a21e0
[coreboot.git] / src / southbridge / via / k8t890 / Kconfig
1 config SOUTHBRIDGE_VIA_K8M890
2         bool
3
4 config SOUTHBRIDGE_VIA_K8T890
5         bool
6
7 config SOUTHBRIDGE_VIA_K8M890_VGA_EN
8         bool "Enable onboard K8M890 graphics"
9         default y
10         depends on SOUTHBRIDGE_VIA_K8M890
11         select VGA
12         select GFXUMA
13
14 choice
15         prompt "Framebuffer size"
16         default K8M890_VIDEO_MB_32MB
17         depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN
18
19 config K8M890_VIDEO_MB_32MB
20         bool "32MB"
21 config K8M890_VIDEO_MB_64MB
22         bool "64MB"
23 config K8M890_VIDEO_MB_128MB
24         bool "128MB"
25 config K8M890_VIDEO_MB_256MB
26         bool "256MB"
27 config K8M890_VIDEO_MB_CMOS
28         bool "Use CMOS option"
29
30 endchoice
31
32 config VIDEO_MB
33         int
34         default 32  if K8M890_VIDEO_MB_32MB
35         default 64  if K8M890_VIDEO_MB_64MB
36         default 128  if K8M890_VIDEO_MB_128MB
37         default 256 if K8M890_VIDEO_MB_256MB
38         default -1  if K8M890_VIDEO_MB_CMOS
39         depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN