summaryrefslogtreecommitdiff
path: root/src/mainboard/cwwk/adl/Kconfig
diff options
context:
space:
mode:
authorBrandon Weeks <me@brandonweeks.com>2024-01-09 13:29:19 -0800
committerFelix Held <felix-coreboot@felixheld.de>2024-05-23 12:36:46 +0000
commitc8b379bb7928a0e9c1e2dc42217e807c46a009e8 (patch)
tree52ec838120a3382c7f51b1ab43fc2c2c986d6fb7 /src/mainboard/cwwk/adl/Kconfig
parent57e36a3320837729b6b20b0c4e44572898d0860f (diff)
mb/cwwk: Add CWWK CW-ADL-4L-V1.0 board
This board is the CWWK variant based upon Alder Lake with 4 2.5 GbE ports, similar boards are available in other port configurations. As a low cost, relatively high performance board with 4 NICs, it is well suited for networking or 'homelab' tasks. CPU: Intel N100 or N350 Memory: DDR5-4800 SODIMM (max 16 GB) NIC: 4x Intel I226-V 2.5 GbE Expansion: - M.2 2230 E key - M.2 2280 M key - USB 2.0 header - Fan header External ports: - DC power - 4x Ethernet - Display Port - HDMI - 4x USB 2.0 - Micro SD Working: - Boots Debian 12 with SeaBIOS and EDK II payloads - Serial port - External USB ports - DisplayPort / HDMI - 4x Intel I226 2.5 GbE NICs - M.2 ports - Micro SD slot - ACPI S3 Not working / not tested: - Fan (ITE IT8613E) - Audio - S0ix - Internal USB ports VBT extracted from vendor UEFI firmware version ADLN 0.01 x64 (04/04/2023 11:42:38). Change-Id: Ice9174d95c10afc6a22ddd15fb3be4fa38d329be Signed-off-by: Brandon Weeks <me@brandonweeks.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81595 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/cwwk/adl/Kconfig')
-rw-r--r--src/mainboard/cwwk/adl/Kconfig27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mainboard/cwwk/adl/Kconfig b/src/mainboard/cwwk/adl/Kconfig
new file mode 100644
index 0000000000..9ab67e3b47
--- /dev/null
+++ b/src/mainboard/cwwk/adl/Kconfig
@@ -0,0 +1,27 @@
+## SPDX-License-Identifier: GPL-2.0-or-later
+
+if BOARD_CWWK_ADL_N
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select BOARD_ROMSIZE_KB_16384
+ select DRIVERS_UART_8250IO
+ select HAVE_ACPI_RESUME
+ select HAVE_ACPI_TABLES
+ select INTEL_GMA_HAVE_VBT
+ select SOC_INTEL_ALDERLAKE_PCH_N
+ select SUPERIO_ITE_IT8613E
+
+config MAINBOARD_DIR
+ default "cwwk/adl"
+
+config MAINBOARD_PART_NUMBER
+ default "CW-AL-4L-V1.0"
+
+config DIMM_MAX
+ default 2
+
+config NO_POST
+ default y
+
+endif