diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-10-14 13:12:01 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-10-15 14:11:22 +0000 |
commit | 5f7910d220572f879b218de1bcb9dc9cd112d521 (patch) | |
tree | 03946465d7c80df1197ead2e1ad25c8a5267b527 /src/mainboard/asus/p5qc/Kconfig | |
parent | 7f922b0f6ad9b63c06e6243b0a485b05b36befb9 (diff) | |
download | coreboot-5f7910d220572f879b218de1bcb9dc9cd112d521.tar.xz |
mb/asus/p5q_pro: Add mainboard
This mainboard is quite similar to the p5qc. The main differences being a second
PEG slot, the IDE slot and being DDR2 only.
The following was tested:
- both PEG slots populated (coreboot sets legacy VGA decoding on the GPU in the
black slot)
- USB
- Ethernet NIC
- PS2 Keyboard
- COM1
- S3 resume
Change-Id: I49a4bca4256e2a905aff3252eca76387c81152c1
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/29102
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/asus/p5qc/Kconfig')
-rw-r--r-- | src/mainboard/asus/p5qc/Kconfig | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/mainboard/asus/p5qc/Kconfig b/src/mainboard/asus/p5qc/Kconfig index cf71b641cc..2bcee16c9a 100644 --- a/src/mainboard/asus/p5qc/Kconfig +++ b/src/mainboard/asus/p5qc/Kconfig @@ -14,7 +14,7 @@ # GNU General Public License for more details. # -if BOARD_ASUS_P5QC +if BOARD_ASUS_P5QC || BOARD_ASUS_P5Q_PRO config BOARD_SPECIFIC_OPTIONS def_bool y @@ -34,9 +34,20 @@ config MAINBOARD_DIR string default "asus/p5qc" +config VARIANT_DIR + string + default "p5qc" if BOARD_ASUS_P5QC + default "p5q_pro" if BOARD_ASUS_P5Q_PRO + config MAINBOARD_PART_NUMBER string - default "P5QC" + default "P5QC" if BOARD_ASUS_P5QC + default "P5Q-PRO" if BOARD_ASUS_P5Q_PRO + +config DEVICETREE + string + default "variants/p5qc/devicetree.cb" if BOARD_ASUS_P5QC + default "variants/p5q_pro/devicetree.cb" if BOARD_ASUS_P5Q_PRO config MAX_CPUS int |