aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-02-26 21:16:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2024-03-11 14:05:16 +0000
commit7c58dd6ce898dd6b10c244849fefb710983154f2 (patch)
tree5977f715747a839fea790612002fbd4a04238e5a /src
parent0c74b7c1670ed3511b34c085557ac74f4752f5d5 (diff)
vc/amd/opensil/stub: add stub MPIO driver
Add a stub MPIO chip driver to the openSIL stub code, so that the devicetree entries needed for the MPIO chip can already be added to the mainboard's devicetree files. This driver won't do anything, but still allows the register settings in the devicetree to be set to make switching over to the actual openSIL code and the corresponding glue code easier. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ib4f5c232859b9abcd10bfa5c21e2f2c3a70b4b0e Reviewed-on: https://review.coreboot.org/c/coreboot/+/81100 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/vendorcode/amd/opensil/stub/Makefile.mk2
-rw-r--r--src/vendorcode/amd/opensil/stub/mpio/Makefile.mk3
-rw-r--r--src/vendorcode/amd/opensil/stub/mpio/chip.c8
-rw-r--r--src/vendorcode/amd/opensil/stub/mpio/chip.h74
4 files changed, 87 insertions, 0 deletions
diff --git a/src/vendorcode/amd/opensil/stub/Makefile.mk b/src/vendorcode/amd/opensil/stub/Makefile.mk
index 29ef42177b..299844d1b1 100644
--- a/src/vendorcode/amd/opensil/stub/Makefile.mk
+++ b/src/vendorcode/amd/opensil/stub/Makefile.mk
@@ -1,5 +1,7 @@
## SPDX-License-Identifier: GPL-2.0-only
+subdirs-y += mpio
+
romstage-y += romstage.c
ramstage-y += ramstage.c \ No newline at end of file
diff --git a/src/vendorcode/amd/opensil/stub/mpio/Makefile.mk b/src/vendorcode/amd/opensil/stub/mpio/Makefile.mk
new file mode 100644
index 0000000000..a8d8592e3a
--- /dev/null
+++ b/src/vendorcode/amd/opensil/stub/mpio/Makefile.mk
@@ -0,0 +1,3 @@
+## SPDX-License-Identifier: GPL-2.0-only
+
+ramstage-y += chip.c
diff --git a/src/vendorcode/amd/opensil/stub/mpio/chip.c b/src/vendorcode/amd/opensil/stub/mpio/chip.c
new file mode 100644
index 0000000000..895814ded3
--- /dev/null
+++ b/src/vendorcode/amd/opensil/stub/mpio/chip.c
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <device/device.h>
+#include "chip.h"
+
+struct chip_operations vendorcode_amd_opensil_stub_mpio_ops = {
+ .name = "AMD openSIL stub MPIO",
+};
diff --git a/src/vendorcode/amd/opensil/stub/mpio/chip.h b/src/vendorcode/amd/opensil/stub/mpio/chip.h
new file mode 100644
index 0000000000..53d22a0d07
--- /dev/null
+++ b/src/vendorcode/amd/opensil/stub/mpio/chip.h
@@ -0,0 +1,74 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <types.h>
+
+enum mpio_engine_type {
+ ENGINE_PCIE,
+ ENGINE_SATA,
+};
+
+/* Sync with PCIE_HOTPLUG_TYPE */
+enum mpio_hotplug {
+ HOTPLUG_DISABLED = 0,
+ HOTPLUG_BASIC,
+ HOTPLUG_SERVER_EXPRESS,
+ HOTPLUG_ENHANCED,
+ HOTPLUG_INBOARD,
+ HOTPLUG_SERVER_ENT_SSD,
+ HOTPLUG_UBM,
+ HOTPLUG_OCP,
+};
+
+enum pcie_link_speed {
+ GEN_MAX = 0, /* Maximum supported */
+ GEN1,
+ GEN2,
+ GEN3,
+ GEN4,
+ GEN5,
+};
+
+/* Sync with PCIE_ASPM_TYPE */
+enum pcie_aspm {
+ ASPM_DISABLED = 0,
+ ASPM_L0s,
+ ASPM_L1,
+ ASPM_L0sL1,
+};
+
+
+/* CLKREQ for PCIe type descriptors */
+enum pcie_clk_req {
+ CLK_DISABLE = 0x00,
+ CLK_REQ0,
+ CLK_REQ1,
+ CLK_REQ2,
+ CLK_REQ3,
+ CLK_REQ4,
+ CLK_REQ5,
+ CLK_REQ6,
+};
+
+enum pcie_slot_power_limit_scale {
+ SLOT_POWER_LIMIT_DIVISOR_1 = 0, /* Scale factor 1 */
+ SLOT_POWER_LIMIT_DIVISOR_10 = 1, /* Scale factor 0.1 */
+ SLOT_POWER_LIMIT_DIVISOR_100 = 2, /* Scale factor 0.01 */
+ SLOT_POWER_LIMIT_DIVISOR_1000 = 3, /* Scale factor 0.001 */
+};
+
+struct vendorcode_amd_opensil_stub_mpio_config {
+ enum mpio_engine_type type;
+ uint8_t start_lane;
+ uint8_t end_lane;
+ uint8_t gpio_group;
+ enum mpio_hotplug hotplug;
+ enum pcie_link_speed speed_capability;
+ enum pcie_aspm aspm;
+ bool aspm_l1_1;
+ bool aspm_l1_2;
+ enum pcie_clk_req clk_req;
+ bool clock_pm;
+ uint8_t slot_power_limit;
+ enum pcie_slot_power_limit_scale slot_power_limit_scale;
+ bool bmc;
+};