diff options
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/amd/opensil/stub/Makefile.mk | 2 | ||||
-rw-r--r-- | src/vendorcode/amd/opensil/stub/mpio/Makefile.mk | 3 | ||||
-rw-r--r-- | src/vendorcode/amd/opensil/stub/mpio/chip.c | 8 | ||||
-rw-r--r-- | src/vendorcode/amd/opensil/stub/mpio/chip.h | 74 |
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; +}; |