diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-10-05 09:38:22 +1100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-10-05 09:38:22 +1100 |
commit | 37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0 (patch) | |
tree | f5598e78dd9fd5a045c734b7efaf2914f721a84c /platforms/astbmc/habanero.c | |
parent | 28a6f224aa085366b6de90d282531440aba41abd (diff) | |
download | talos-skiboot-37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0.tar.gz talos-skiboot-37d2ac7a132fb73cd83cd9c978e0e3e30325a6e0.zip |
platform: Add Habanero platform
For now identical to Palmetto.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'platforms/astbmc/habanero.c')
-rw-r--r-- | platforms/astbmc/habanero.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/platforms/astbmc/habanero.c b/platforms/astbmc/habanero.c new file mode 100644 index 00000000..2a8d0b2a --- /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, +}; |