Add constants for fast path resume copying
[coreboot.git] / src / northbridge / intel / i855 / Kconfig
1 config NORTHBRIDGE_INTEL_I855
2         bool
3         select HAVE_DEBUG_RAM_SETUP
4
5 choice
6         prompt "Onboard graphics"
7         default I855_VIDEO_MB_8MB
8         depends on NORTHBRIDGE_INTEL_I855
9
10 config I855_VIDEO_MB_OFF
11         bool "Disabled, 0KB"
12 config I855_VIDEO_MB_1MB
13         bool "Enabled, 1MB"
14 config I855_VIDEO_MB_4MB
15         bool "Enabled, 4MB"
16 config I855_VIDEO_MB_8MB
17         bool "Enabled, 8MB"
18 config I855_VIDEO_MB_16MB
19         bool "Enabled, 16MB"
20 config I855_VIDEO_MB_32MB
21         bool "Enabled, 32MB"
22
23 endchoice
24
25 config VIDEO_MB
26         int
27         default 0   if I855_VIDEO_MB_OFF
28         default 1   if I855_VIDEO_MB_1MB
29         default 4   if I855_VIDEO_MB_4MB
30         default 8   if I855_VIDEO_MB_8MB
31         default 16  if I855_VIDEO_MB_16MB
32         default 32  if I855_VIDEO_MB_32MB
33         depends on NORTHBRIDGE_INTEL_I855