aboutsummaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorReza Arbab <arbab@linux.ibm.com>2021-08-04 12:51:05 +0530
committerVasant Hegde <hegdevasant@linux.vnet.ibm.com>2021-08-06 12:24:11 +0530
commit283e99e5c2749ae4b49936a064d8ea2cc9d29735 (patch)
tree01f3fbbb62f6ae4e92429b0cbe5f28e8d0d1ccb7 /platforms
parenteb9047292b0d3604ed31c09e8d0501615c8ce8a8 (diff)
downloadskiboot-283e99e5c2749ae4b49936a064d8ea2cc9d29735.zip
skiboot-283e99e5c2749ae4b49936a064d8ea2cc9d29735.tar.gz
skiboot-283e99e5c2749ae4b49936a064d8ea2cc9d29735.tar.bz2
platforms/astbmc: Add ast2600
Signed-off-by: Reza Arbab <arbab@linux.ibm.com> Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/astbmc/astbmc.h2
-rw-r--r--platforms/astbmc/common.c19
2 files changed, 19 insertions, 2 deletions
diff --git a/platforms/astbmc/astbmc.h b/platforms/astbmc/astbmc.h
index 86631bc..00f2212 100644
--- a/platforms/astbmc/astbmc.h
+++ b/platforms/astbmc/astbmc.h
@@ -87,9 +87,11 @@ static struct slot_table_entry st_name[] = \
extern const struct bmc_hw_config bmc_hw_ast2400;
extern const struct bmc_hw_config bmc_hw_ast2500;
+extern const struct bmc_hw_config bmc_hw_ast2600;
extern const struct bmc_platform bmc_plat_ast2400_ami;
extern const struct bmc_platform bmc_plat_ast2500_ami;
extern const struct bmc_platform bmc_plat_ast2500_openbmc;
+extern const struct bmc_platform bmc_plat_ast2600_openbmc;
extern void astbmc_early_init(void);
extern int64_t astbmc_ipmi_reboot(void);
diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c
index d96e070..83ef70a 100644
--- a/platforms/astbmc/common.c
+++ b/platforms/astbmc/common.c
@@ -266,8 +266,9 @@ static void astbmc_fixup_dt_mbox(struct dt_node *lpc)
* can indicate they support mbox using the scratch register, or ipmi
* by configuring the hiomap ipmi command. If neither are configured
* for P8 then skiboot will drive the flash controller directly.
+ * XXX P10
*/
- if (proc_gen != proc_gen_p9 && !ast_scratch_reg_is_mbox())
+ if (proc_gen == proc_gen_p8 && !ast_scratch_reg_is_mbox())
return;
/* First check if the mbox interface is already there */
@@ -478,7 +479,7 @@ void astbmc_early_init(void)
* never MBOX. Thus only populate the MBOX node on P9 to allow
* fallback.
*/
- if (proc_gen == proc_gen_p9) {
+ if (proc_gen >= proc_gen_p9) {
astbmc_fixup_dt_mbox(dt_find_primary_lpc());
ast_setup_sio_mbox(MBOX_IO_BASE, MBOX_LPC_IRQ);
}
@@ -530,6 +531,14 @@ const struct bmc_hw_config bmc_hw_ast2500 = {
.mcr_scu_strap = 0x00000000,
};
+/* XXX P10: Update with Rainier values */
+const struct bmc_hw_config bmc_hw_ast2600 = {
+ .scu_revision_id = 0x05000303,
+ .mcr_configuration = 0x11200756,
+ .mcr_scu_mpll = 0x1008405F,
+ .mcr_scu_strap = 0x000030E0,
+};
+
const struct bmc_platform bmc_plat_ast2400_ami = {
.name = "ast2400:ami",
.hw = &bmc_hw_ast2400,
@@ -547,3 +556,9 @@ const struct bmc_platform bmc_plat_ast2500_openbmc = {
.hw = &bmc_hw_ast2500,
.sw = &bmc_sw_openbmc,
};
+
+const struct bmc_platform bmc_plat_ast2600_openbmc = {
+ .name = "ast2600:openbmc",
+ .hw = &bmc_hw_ast2600,
+ .sw = &bmc_sw_openbmc,
+};