summaryrefslogtreecommitdiff
path: root/src/mainboard/asus/p2b/Kconfig
blob: faa9e0d5ac0b4dfcb29e8bfc7869b0c7ac04d7e4 (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
##
## This file is part of the coreboot project.
##
##
## SPDX-License-Identifier: GPL-2.0-only

if BOARD_ASUS_P2B || BOARD_ASUS_P2B_D || BOARD_ASUS_P2B_DS || BOARD_ASUS_P2B_F || BOARD_ASUS_P2B_LS

config BASE_ASUS_P2B_D
	def_bool n
	select SDRAMPWR_4DIMM
	select HAVE_MP_TABLE
	select IOAPIC
	select SMP

config BOARD_SPECIFIC_OPTIONS
	def_bool y
	select CPU_INTEL_SLOT_1
	select NORTHBRIDGE_INTEL_I440BX
	select SOUTHBRIDGE_INTEL_I82371EB
	select SUPERIO_WINBOND_W83977TF
	select HAVE_PIRQ_TABLE
	select BOARD_ROMSIZE_KB_256
	select SDRAMPWR_4DIMM if BOARD_ASUS_P2B_LS
	select HAVE_ACPI_TABLES if BOARD_ASUS_P2B || BOARD_ASUS_P2B_LS
	select BASE_ASUS_P2B_D if BOARD_ASUS_P2B_D || BOARD_ASUS_P2B_DS

config MAX_CPUS
	int
	default 2 if BASE_ASUS_P2B_D

config MAINBOARD_DIR
	string
	default "asus/p2b"

config MAINBOARD_PART_NUMBER
	string
	default "P2B" if BOARD_ASUS_P2B
	default "P2B-D" if BOARD_ASUS_P2B_D
	default "P2B-DS" if BOARD_ASUS_P2B_DS
	default "P2B-F" if BOARD_ASUS_P2B_F
	default "P2B-LS" if BOARD_ASUS_P2B_LS

config VARIANT_DIR
	string
	default "p2b" if BOARD_ASUS_P2B
	default "p2b-d" if BOARD_ASUS_P2B_D
	default "p2b-ds" if BOARD_ASUS_P2B_DS
	default "p2b-f" if BOARD_ASUS_P2B_F
	default "p2b-ls" if BOARD_ASUS_P2B_LS

config OVERRIDE_DEVICETREE
	string
	default "variants/$(CONFIG_VARIANT_DIR)/overridetree.cb"

config IRQ_SLOT_COUNT
	int
	default 8 if BOARD_ASUS_P2B_LS
	default 7 if BOARD_ASUS_P2B_F || BOARD_ASUS_P2B_DS
	default 6

endif