drop all duplicate copies of vgabios.c in favor
[coreboot.git] / src / northbridge / via / cx700 / Kconfig
1 config NORTHBRIDGE_VIA_CX700
2         bool
3         select HAVE_HIGH_TABLES
4         select HAVE_HARD_RESET
5         select IOAPIC
6         select SMP
7
8 # TODO: What should be the per-chipset default value here?
9 choice
10         prompt "Onboard graphics"
11         default CX700_VIDEO_MB_32MB
12         depends on NORTHBRIDGE_VIA_CX700
13
14 # TODO: Setting the amount of gfx memory is not yet supported in the source code.
15 config CX700_VIDEO_MB_OFF
16         bool "Disabled, 0KB"
17 config CX700_VIDEO_MB_8MB
18         bool "Enabled, 8MB"
19 config CX700_VIDEO_MB_16MB
20         bool "Enabled, 16MB"
21 config CX700_VIDEO_MB_32MB
22         bool "Enabled, 32MB"
23 config CX700_VIDEO_MB_64MB
24         bool "Enabled, 64MB"
25 config CX700_VIDEO_MB_128MB
26         bool "Enabled, 128MB"
27
28 endchoice
29
30 config VIDEO_MB
31         int
32         default 0   if CX700_VIDEO_MB_OFF
33         default 8   if CX700_VIDEO_MB_8MB
34         default 16  if CX700_VIDEO_MB_16MB
35         default 32  if CX700_VIDEO_MB_32MB
36         default 64  if CX700_VIDEO_MB_64MB
37         default 128 if CX700_VIDEO_MB_128MB
38         depends on NORTHBRIDGE_VIA_CX700
39