blob: ec2c75ba1dc92d5088b66d7e3f9f7b17e7393063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
config NORTHBRIDGE_VIA_CX700
bool
select NO_MMCONF_SUPPORT
select HAVE_DEBUG_RAM_SETUP
select HAVE_DEBUG_SMBUS
select HAVE_HARD_RESET
select IOAPIC
select SMP
select LATE_CBMEM_INIT
# TODO: What should be the per-chipset default value here?
choice
prompt "Onboard graphics"
default CX700_VIDEO_MB_32MB
depends on NORTHBRIDGE_VIA_CX700
# TODO: Setting the amount of gfx memory is not yet supported in the source code.
config CX700_VIDEO_MB_OFF
bool "Disabled, 0KB"
config CX700_VIDEO_MB_8MB
bool "Enabled, 8MB"
config CX700_VIDEO_MB_16MB
bool "Enabled, 16MB"
config CX700_VIDEO_MB_32MB
bool "Enabled, 32MB"
config CX700_VIDEO_MB_64MB
bool "Enabled, 64MB"
config CX700_VIDEO_MB_128MB
bool "Enabled, 128MB"
endchoice
if NORTHBRIDGE_VIA_CX700
config VIDEO_MB
int
default 0 if CX700_VIDEO_MB_OFF
default 8 if CX700_VIDEO_MB_8MB
default 16 if CX700_VIDEO_MB_16MB
default 32 if CX700_VIDEO_MB_32MB
default 64 if CX700_VIDEO_MB_64MB
default 128 if CX700_VIDEO_MB_128MB
config HPET_ADDRESS_OVERRIDE
def_bool y
config HPET_ADDRESS
hex
default 0xfe800000
config HPET_MIN_TICKS
hex
default 0x90
endif
|