drop three unneeded config variables:
[coreboot.git] / src / northbridge / via / cn700 / Kconfig
1 config NORTHBRIDGE_VIA_CN700
2         bool
3         select HAVE_DEBUG_RAM_SETUP
4
5 config FALLBACK_SIZE
6         int
7         default 0
8         depends on NORTHBRIDGE_VIA_CN700
9
10 # TODO: Values are from the CX700 datasheet, not sure if this matches CN700.
11 # TODO: What should be the per-chipset default value here?
12 choice
13         prompt "Onboard graphics"
14         default CN700_VIDEO_MB_32MB
15         depends on NORTHBRIDGE_VIA_CN700
16
17 # TODO: Disabling onboard graphics is not yet supported in the code.
18 config CN700_VIDEO_MB_OFF
19         bool "Disabled, 0KB"
20 config CN700_VIDEO_MB_8MB
21         bool "Enabled, 8MB"
22 config CN700_VIDEO_MB_16MB
23         bool "Enabled, 16MB"
24 config CN700_VIDEO_MB_32MB
25         bool "Enabled, 32MB"
26 config CN700_VIDEO_MB_64MB
27         bool "Enabled, 64MB"
28 config CN700_VIDEO_MB_128MB
29         bool "Enabled, 128MB"
30
31 endchoice
32
33 config VIDEO_MB
34         int
35         default 0   if CN700_VIDEO_MB_OFF
36         default 8   if CN700_VIDEO_MB_8MB
37         default 16  if CN700_VIDEO_MB_16MB
38         default 32  if CN700_VIDEO_MB_32MB
39         default 64  if CN700_VIDEO_MB_64MB
40         default 128 if CN700_VIDEO_MB_128MB
41         depends on NORTHBRIDGE_VIA_CN700
42