CONFIG_DEBUG_RAM_SETUP and CONFIG_DEBUG_SMBUS are only available if the board /
[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_HIGH_TABLES
6         select HAVE_HARD_RESET
7         select IOAPIC
8         select SMP
9
10 # TODO: What should be the per-chipset default value here?
11 choice
12         prompt "Onboard graphics"
13         default CX700_VIDEO_MB_32MB
14         depends on NORTHBRIDGE_VIA_CX700
15
16 # TODO: Setting the amount of gfx memory is not yet supported in the source code.
17 config CX700_VIDEO_MB_OFF
18         bool "Disabled, 0KB"
19 config CX700_VIDEO_MB_8MB
20         bool "Enabled, 8MB"
21 config CX700_VIDEO_MB_16MB
22         bool "Enabled, 16MB"
23 config CX700_VIDEO_MB_32MB
24         bool "Enabled, 32MB"
25 config CX700_VIDEO_MB_64MB
26         bool "Enabled, 64MB"
27 config CX700_VIDEO_MB_128MB
28         bool "Enabled, 128MB"
29
30 endchoice
31
32 config VIDEO_MB
33         int
34         default 0   if CX700_VIDEO_MB_OFF
35         default 8   if CX700_VIDEO_MB_8MB
36         default 16  if CX700_VIDEO_MB_16MB
37         default 32  if CX700_VIDEO_MB_32MB
38         default 64  if CX700_VIDEO_MB_64MB
39         default 128 if CX700_VIDEO_MB_128MB
40         depends on NORTHBRIDGE_VIA_CX700
41