aboutsummaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-10-05 09:38:22 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-10-05 09:38:22 +1100
commit37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0 (patch)
treef5598e78dd9fd5a045c734b7efaf2914f721a84c /platforms
parent28a6f224aa085366b6de90d282531440aba41abd (diff)
downloadskiboot-37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0.zip
skiboot-37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0.tar.gz
skiboot-37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0.tar.bz2
platform: Add Habanero platform
For now identical to Palmetto. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/astbmc/Makefile.inc2
-rw-r--r--platforms/astbmc/habanero.c52
2 files changed, 53 insertions, 1 deletions
diff --git a/platforms/astbmc/Makefile.inc b/platforms/astbmc/Makefile.inc
index b796868..ea53e12 100644
--- a/platforms/astbmc/Makefile.inc
+++ b/platforms/astbmc/Makefile.inc
@@ -1,6 +1,6 @@
SUBDIRS += $(PLATDIR)/astbmc
-ASTBMC_OBJS = palmetto.o pnor.o common.o
+ASTBMC_OBJS = palmetto.o habanero.o pnor.o common.o
ASTBMC = $(PLATDIR)/astbmc/built-in.o
$(ASTBMC): $(ASTBMC_OBJS:%=$(PLATDIR)/astbmc/%)
diff --git a/platforms/astbmc/habanero.c b/platforms/astbmc/habanero.c
new file mode 100644
index 0000000..2a8d0b2
--- /dev/null
+++ b/platforms/astbmc/habanero.c
@@ -0,0 +1,52 @@
+/* Copyright 2013-2014 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#include <skiboot.h>
+#include <device.h>
+#include <console.h>
+#include <chip.h>
+
+#include "astbmc.h"
+
+static bool habanero_probe(void)
+{
+ const char *model;
+
+ if (!dt_node_is_compatible(dt_root, "ibm,powernv"))
+ return false;
+
+ /* Temporary ... eventually we'll get that in compatible */
+ model = dt_prop_get_def(dt_root, "model", NULL);
+ if ((!model || !strstr(model, "habanero")) &&
+ (!dt_node_is_compatible(dt_root, "ibm,habanero")))
+ return false;
+
+ /* Lot of common early inits here */
+ astbmc_early_init();
+
+ return true;
+}
+
+
+DECLARE_PLATFORM(habanero) = {
+ .name = "Habanero",
+ .probe = habanero_probe,
+ .init = astbmc_init,
+ .external_irq = astbmc_ext_irq,
+ .cec_power_down = astbmc_ipmi_power_down,
+ .cec_reboot = astbmc_ipmi_reboot,
+};