aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/via/k8t890/Kconfig
blob: 76be0c1b4ffbf5f0b5469cbd93101e7ff3702452 (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
56
57
58
config SOUTHBRIDGE_VIA_K8T890
	bool

if SOUTHBRIDGE_VIA_K8T890

config SOUTHBRIDGE_VIA_SUBTYPE_K8M800     # not tested
	def_bool n
config SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD # not tested, lspci lists B188 and 3188
	def_bool n
config SOUTHBRIDGE_VIA_SUBTYPE_K8T800     # lspci lists 0282, 1282, 2282, 3282, and 7282
	def_bool n
config SOUTHBRIDGE_VIA_SUBTYPE_K8T800PRO  # lspci lists 0282, 1282, 2282, 3282, and 7282
	def_bool n
config SOUTHBRIDGE_VIA_SUBTYPE_K8M890
	def_bool n
config SOUTHBRIDGE_VIA_SUBTYPE_K8T890
	def_bool n

config SOUTHBRIDGE_VIA_K8M890_VGA_EN
	bool "Enable onboard K8M890 graphics"
	default y
	depends on SOUTHBRIDGE_VIA_SUBTYPE_K8M890
	select VGA
	select GFXUMA

choice
	prompt "Framebuffer size"
	default K8M890_VIDEO_MB_32MB
	depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN

config K8M890_VIDEO_MB_32MB
	bool "32MB"
config K8M890_VIDEO_MB_64MB
	bool "64MB"
config K8M890_VIDEO_MB_128MB
	bool "128MB"
config K8M890_VIDEO_MB_256MB
	bool "256MB"
config K8M890_VIDEO_MB_CMOS
	bool "Use CMOS option"

endchoice

config VIDEO_MB
	int
	default 32  if K8M890_VIDEO_MB_32MB
	default 64  if K8M890_VIDEO_MB_64MB
	default 128  if K8M890_VIDEO_MB_128MB
	default 256 if K8M890_VIDEO_MB_256MB
	default -1  if K8M890_VIDEO_MB_CMOS
	depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN

config CHIPSET_BOOTBLOCK_INCLUDE
	string
	default "southbridge/via/k8t890/romstrap.inc"

endif # SOUTHBRIDGE_K8T890