summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/mandolin/Kconfig
blob: 6ec77bf01d4d0f55b79888c93bf0ab7c337591be (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# SPDX-License-Identifier: GPL-2.0-only

if BOARD_AMD_MANDOLIN

config BOARD_SPECIFIC_OPTIONS
	def_bool y
	select SOC_AMD_COMMON_BLOCK_USE_ESPI
	select SOC_AMD_PICASSO
	select HAVE_ACPI_TABLES
	select BOARD_ROMSIZE_KB_8192
	select AZALIA_PLUGIN_SUPPORT
	select HAVE_ACPI_RESUME

config FMDFILE
	string
	default "src/mainboard/amd/mandolin/mandolin.fmd"

config AMD_LPC_DEBUG_CARD
	bool "Enable LPC-Serial debug card on the debug header"
	default n
	select PICASSO_LPC_IOMUX
	select SUPERIO_SMSC_SIO1036
	help
	  AMD's debug card contains an SMSC SIO1036 device which provides
	  an I/O-based UART in the system.  This feature is not compatible with
	  CONFIG_HUDSON_UART enabling the memory-mapped UART in the chipset.
	  Note that Kconfig does not currently enforce this restriction.

config CBFS_SIZE
	default 0x780000
	help
	  TODO: Adjust this to maximize CBFS size

config MAINBOARD_DIR
	string
	default amd/mandolin

config MAINBOARD_PART_NUMBER
	string
	default "MANDOLIN"

config MAX_CPUS
	int
	default 8

config IRQ_SLOT_COUNT
	int
	default 11

config ONBOARD_VGA_IS_PRIMARY
	bool
	default y

config AMD_FWM_POSITION_INDEX
	int
	default 3
	help
	  TODO: might need to be adapted for better placement of files in cbfs

config MANDOLIN_HAVE_MCHP_FW
	bool "Have Microchip EC firmware?"
	default n

config MANDOLIN_MCHP_FW_FILE
	string
	depends on MANDOLIN_HAVE_MCHP_FW
	default "3rdparty/blobs/mainboard/amd/mandolin/mchp.bin"

if !AMD_LPC_DEBUG_CARD
choice MANDOLIN_LPC_IOMUX
	prompt "State of IOMux for LPC/eMMC signals"
	default MANDOLIN_IOMUX_USE_EMMC
	help
	  Mandolin is designed to use either LPC or eMMC signals.  Use this
	  selection to determine which are configured for this image.

config MANDOLIN_IOMUX_USE_LPC
	bool "LPC signals"
	help

config MANDOLIN_IOMUX_USE_EMMC
	bool "eMMC signals"

endchoice
endif # !AMD_LPC_DEBUG_CARD

config PICASSO_LPC_IOMUX
	bool
	default y if MANDOLIN_IOMUX_USE_LPC
	help
	  Picasso's LPC bus signals are MUXed with some of the EMMC signals.
	  Select this option if LPC signals are required.

#TODO: remove this hack to not break graphics in combination with SeaBIOS
config VGA_BIOS_DGPU_ID
	string
	default "1002,15d8"
	help
	  The default VGA BIOS PCI vendor/device ID should be set to the
	  result of the map_oprom_vendev() function in northbridge.c.

config VGA_BIOS_DGPU_FILE
	string
	default "3rdparty/amd_blobs/picasso/PicassoGenericVbios.bin"

endif # BOARD_AMD_MANDOLIN