summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/padmelon/Kconfig
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-10-14 17:48:22 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-10-15 16:53:19 +0000
commitf0d62cefe855017a9e3f47aa3b0fc187ef8a5931 (patch)
treec7c12feb32e8d439da668f943c85bf29c9c41249 /src/mainboard/amd/padmelon/Kconfig
parent68eb439d80919d54247114c8c6035a65a97eadc8 (diff)
downloadcoreboot-f0d62cefe855017a9e3f47aa3b0fc187ef8a5931.tar.gz
mb/amd/padmelon: rename to pademelon
This AMD reference board is called Pademelon and not Padmelon, so fix the name in coreboot. Also update the corresponding documentation. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Id1c7331f5f3c34dc7ec4bc5a1f5fe3d12d503474 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68426 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/mainboard/amd/padmelon/Kconfig')
-rw-r--r--src/mainboard/amd/padmelon/Kconfig74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/mainboard/amd/padmelon/Kconfig b/src/mainboard/amd/padmelon/Kconfig
deleted file mode 100644
index 08bc797e2c..0000000000
--- a/src/mainboard/amd/padmelon/Kconfig
+++ /dev/null
@@ -1,74 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0-only
-
-if BOARD_AMD_PADMELON
-
-config BOARD_SPECIFIC_OPTIONS
- def_bool y
- select SOC_AMD_STONEYRIDGE
- select AMD_APU_PKG_FP4
- select BOARD_ROMSIZE_KB_8192
- select DRIVERS_I2C_GENERIC
- select HAVE_ACPI_TABLES
- select GFXUMA
- select STONEYRIDGE_LEGACY_FREE
- select ONBOARD_VGA_IS_PRIMARY
- select SUPERIO_FINTEK_F81803A
- select SUPERIO_FINTEK_COMMON_PRE_RAM
- select SUPERIO_FINTEK_FAN_CONTROL
- select SUPERIO_FINTEK_FAN_API_CALL
- select AZALIA_PLUGIN_SUPPORT
-
-config MAINBOARD_DIR
- default "amd/padmelon"
-
-config MAINBOARD_PART_NUMBER
- default "Padmelon"
-
-choice
- prompt "SOC used in padmelon board"
- default PADMELON_MERLIN_FALCON
-
-config PADMELON_MERLIN_FALCON
- bool "Merlin Falcon"
- select AMD_APU_MERLINFALCON
-
-config PADMELON_PRAIRIE_FALCON
- bool "Prairie Falcon"
- select AMD_APU_PRAIRIEFALCON
-
-endchoice
-
-
-config OVERRIDE_DEVICETREE
- default "override-merlinfalcon.cb" if PADMELON_MERLIN_FALCON
- default "override-prairiefalcon.cb" if PADMELON_PRAIRIE_FALCON
-
-config MAX_CPUS
- int
- default 4
-
-config IRQ_SLOT_COUNT
- int
- default 11
-
-config VGA_BIOS
- default y if USE_AMD_BLOBS
-
-config HWM_PORT
- hex
- default 0x0225
- help
- HWM base address must be an odd address. Hardware monitor used
- addresses are HWM_PORT for index an HWM_PORT + 1 for data.
- If changed, make sure fan_init.c IO window setting. The HWM
- (Hardware Monitor) is used for fan control within padmelon.
-
-if !EM100
-config EFS_SPI_READ_MODE
- default 4 # Dual IO (1-2-2)
-
-config EFS_SPI_SPEED
- default 0 # 66MHz
-endif
-
-endif # BOARD_AMD_PADMELON