blob: aa09869436dcb8672c22e87cfc70b6d921914f8e [file] [log] [blame]
Patrick Georgi88f55b22009-09-25 18:43:02 +00001config NORTHBRIDGE_VIA_CN700
2 bool
Jens Rottmann0d11f2d2010-08-26 12:46:02 +00003 select HAVE_DEBUG_RAM_SETUP
Myles Watson53ad9f52009-09-29 21:35:48 +00004 select HAVE_HIGH_TABLES
Patrick Georgi88f55b22009-09-25 18:43:02 +00005
6config FALLBACK_SIZE
7 int
8 default 0
9 depends on NORTHBRIDGE_VIA_CN700
Patrick Georgi05238752009-10-08 15:12:31 +000010
Uwe Hermann63a8f2a2009-10-26 21:42:13 +000011# TODO: Values are from the CX700 datasheet, not sure if this matches CN700.
12# TODO: What should be the per-chipset default value here?
13choice
14 prompt "Onboard graphics"
15 default CN700_VIDEO_MB_32MB
16 depends on NORTHBRIDGE_VIA_CN700
17
18# TODO: Disabling onboard graphics is not yet supported in the code.
19config CN700_VIDEO_MB_OFF
20 bool "Disabled, 0KB"
21config CN700_VIDEO_MB_8MB
22 bool "Enabled, 8MB"
23config CN700_VIDEO_MB_16MB
24 bool "Enabled, 16MB"
25config CN700_VIDEO_MB_32MB
26 bool "Enabled, 32MB"
27config CN700_VIDEO_MB_64MB
28 bool "Enabled, 64MB"
29config CN700_VIDEO_MB_128MB
30 bool "Enabled, 128MB"
31
32endchoice
33
34config VIDEO_MB
35 int
36 default 0 if CN700_VIDEO_MB_OFF
37 default 8 if CN700_VIDEO_MB_8MB
38 default 16 if CN700_VIDEO_MB_16MB
39 default 32 if CN700_VIDEO_MB_32MB
40 default 64 if CN700_VIDEO_MB_64MB
41 default 128 if CN700_VIDEO_MB_128MB
42 depends on NORTHBRIDGE_VIA_CN700
43