blob: 8795d770b292c538620da33df5b8432a1cd1bde5 [file] [log] [blame]
Patrick Georgi88f55b22009-09-25 18:43:02 +00001config NORTHBRIDGE_VIA_CN700
2 bool
Myles Watson53ad9f52009-09-29 21:35:48 +00003 select HAVE_HIGH_TABLES
Patrick Georgi88f55b22009-09-25 18:43:02 +00004
5config FALLBACK_SIZE
6 int
7 default 0
8 depends on NORTHBRIDGE_VIA_CN700
Patrick Georgi05238752009-10-08 15:12:31 +00009
10# this is done by the northbridge's vgabios.c already
11config VGA_ROM_RUN
12 bool
13 default n
14 depends on NORTHBRIDGE_VIA_CN700
15
16config PCI_ROM_RUN
17 bool
18 default n
19 depends on NORTHBRIDGE_VIA_CN700
Uwe Hermann63a8f2a2009-10-26 21:42:13 +000020
21# TODO: Values are from the CX700 datasheet, not sure if this matches CN700.
22# TODO: What should be the per-chipset default value here?
23choice
24 prompt "Onboard graphics"
25 default CN700_VIDEO_MB_32MB
26 depends on NORTHBRIDGE_VIA_CN700
27
28# TODO: Disabling onboard graphics is not yet supported in the code.
29config CN700_VIDEO_MB_OFF
30 bool "Disabled, 0KB"
31config CN700_VIDEO_MB_8MB
32 bool "Enabled, 8MB"
33config CN700_VIDEO_MB_16MB
34 bool "Enabled, 16MB"
35config CN700_VIDEO_MB_32MB
36 bool "Enabled, 32MB"
37config CN700_VIDEO_MB_64MB
38 bool "Enabled, 64MB"
39config CN700_VIDEO_MB_128MB
40 bool "Enabled, 128MB"
41
42endchoice
43
44config VIDEO_MB
45 int
46 default 0 if CN700_VIDEO_MB_OFF
47 default 8 if CN700_VIDEO_MB_8MB
48 default 16 if CN700_VIDEO_MB_16MB
49 default 32 if CN700_VIDEO_MB_32MB
50 default 64 if CN700_VIDEO_MB_64MB
51 default 128 if CN700_VIDEO_MB_128MB
52 depends on NORTHBRIDGE_VIA_CN700
53