drop all duplicate copies of vgabios.c in favor
[coreboot.git] / src / northbridge / via / cn400 / Kconfig
1 config NORTHBRIDGE_VIA_CN400
2         bool
3
4 config FALLBACK_SIZE
5         int
6         default 0
7         depends on NORTHBRIDGE_VIA_CN400
8
9 # TODO: Values are from the CX700 datasheet, not sure if this matches CN400.
10 # TODO: What should be the per-chipset default value here?
11 choice
12         prompt "Onboard graphics"
13         default CN400_VIDEO_MB_32MB
14         depends on NORTHBRIDGE_VIA_CN400
15
16 # TODO: Disabling onboard graphics is not yet supported in the source code.
17 config CN400_VIDEO_MB_OFF
18         bool "Disabled, 0KB"
19 config CN400_VIDEO_MB_8MB
20         bool "Enabled, 8MB"
21 config CN400_VIDEO_MB_16MB
22         bool "Enabled, 16MB"
23 config CN400_VIDEO_MB_32MB
24         bool "Enabled, 32MB"
25 config CN400_VIDEO_MB_64MB
26         bool "Enabled, 64MB"
27 config CN400_VIDEO_MB_128MB
28         bool "Enabled, 128MB"
29
30 endchoice
31
32 config VIDEO_MB
33         int
34         default 0   if CN400_VIDEO_MB_OFF
35         default 8   if CN400_VIDEO_MB_8MB
36         default 16  if CN400_VIDEO_MB_16MB
37         default 32  if CN400_VIDEO_MB_32MB
38         default 64  if CN400_VIDEO_MB_64MB
39         default 128 if CN400_VIDEO_MB_128MB
40         depends on NORTHBRIDGE_VIA_CN400
41