Commit 8c1449bd authored by Josh Boyer's avatar Josh Boyer

[POWERPC] Bamboo board support

Add support for the AMCC Bamboo board
Signed-off-by: default avatarJosh Boyer <jwboyer@linux.vnet.ibm.com>
Acked-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
parent 142b58ee
This diff is collapsed.
#config BAMBOO config BAMBOO
# bool "Bamboo" bool "Bamboo"
# depends on 44x depends on 44x
# default n default n
# select 440EP select 440EP
# help help
# This option enables support for the IBM PPC440EP evaluation board. This option enables support for the IBM PPC440EP evaluation board.
config EBONY config EBONY
bool "Ebony" bool "Ebony"
...@@ -35,6 +35,7 @@ config 440EP ...@@ -35,6 +35,7 @@ config 440EP
bool bool
select PPC_FPU select PPC_FPU
select IBM440EP_ERR42 select IBM440EP_ERR42
# select IBM_NEW_EMAC_ZMII
config 440GP config 440GP
bool bool
......
obj-$(CONFIG_44x) := misc_44x.o obj-$(CONFIG_44x) := misc_44x.o
obj-$(CONFIG_EBONY) += ebony.o obj-$(CONFIG_EBONY) += ebony.o
obj-$(CONFIG_BAMBOO) += bamboo.o
/*
* Bamboo board specific routines
*
* Wade Farnsworth <wfarnsworth@mvista.com>
* Copyright 2004 MontaVista Software Inc.
*
* Rewritten and ported to the merged powerpc tree:
* Josh Boyer <jwboyer@linux.vnet.ibm.com>
* Copyright 2007 IBM Corporation
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*/
#include <linux/init.h>
#include <asm/machdep.h>
#include <asm/prom.h>
#include <asm/udbg.h>
#include <asm/time.h>
#include <asm/uic.h>
#include <asm/of_platform.h>
#include "44x.h"
static struct of_device_id bamboo_of_bus[] = {
{ .compatible = "ibm,plb", },
{ .compatible = "ibm,opb", },
{ .compatible = "ibm,ebc", },
{},
};
static int __init bamboo_device_probe(void)
{
if (!machine_is(bamboo))
return 0;
of_platform_bus_probe(NULL, bamboo_of_bus, NULL);
return 0;
}
device_initcall(bamboo_device_probe);
static int __init bamboo_probe(void)
{
unsigned long root = of_get_flat_dt_root();
if (!of_flat_dt_is_compatible(root, "amcc,bamboo"))
return 0;
return 1;
}
static void __init bamboo_setup_arch(void)
{
}
define_machine(bamboo) {
.name = "Bamboo",
.probe = bamboo_probe,
.setup_arch = bamboo_setup_arch,
.progress = udbg_progress,
.init_IRQ = uic_init_tree,
.get_irq = uic_get_irq,
.restart = ppc44x_reset_system,
.calibrate_decr = generic_calibrate_decr,
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment