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