diff mbox series

[2/4] p9dsu HACK: fix system-vpd eeprom

Message ID 20180424032529.18592-3-stewart@linux.ibm.com
State Accepted
Headers show
Series p9dsu platform updates | expand

Commit Message

Stewart Smith April 24, 2018, 3:25 a.m. UTC
From: Oliver O'Halloran <oohall@gmail.com>

Signed-off-by: Jim Yuan <jim.yuan@supermicro.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
---
 platforms/astbmc/p9dsu.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
diff mbox series

Patch

diff --git a/platforms/astbmc/p9dsu.c b/platforms/astbmc/p9dsu.c
index 834a8307482f..2a380f3ac934 100644
--- a/platforms/astbmc/p9dsu.c
+++ b/platforms/astbmc/p9dsu.c
@@ -24,6 +24,24 @@ 
 
 #include "astbmc.h"
 
+/*
+ * HACK: Hostboot doesn't export the correct data for the system VPD EEPROM
+ *       for this system. So we need to work around it here.
+ */
+static void p9dsu_dt_fixups(void)
+{
+	struct dt_node *n = dt_find_by_path(dt_root,
+		"/xscom@603fc00000000/i2cm@a2000/i2c-bus@0/eeprom@50");
+
+	if (n) {
+		dt_check_del_prop(n, "compatible");
+		dt_add_property_string(n, "compatible", "atmel,24c256");
+
+		dt_check_del_prop(n, "label");
+		dt_add_property_string(n, "label", "system-vpd");
+	}
+}
+
 static bool p9dsu_probe(void)
 {
 	if (!dt_node_is_compatible(dt_root, "supermicro,p9dsu"))
@@ -35,6 +53,8 @@  static bool p9dsu_probe(void)
 	/* Setup UART for use by OPAL (Linux hvc) */
 	uart_set_console_policy(UART_CONSOLE_OPAL);
 
+	p9dsu_dt_fixups();
+
 	return true;
 }