2007-02-08 04:19:12 +00:00
|
|
|
/*
|
2008-01-25 02:45:51 +00:00
|
|
|
* arch/powerpc/platforms/83xx/mpc831x_rdb.c
|
2007-02-08 04:19:12 +00:00
|
|
|
*
|
2008-01-25 02:45:51 +00:00
|
|
|
* Description: MPC831x RDB board specific routines.
|
2007-02-08 04:19:12 +00:00
|
|
|
* This file is based on mpc834x_sys.c
|
|
|
|
* Author: Lo Wlison <r43300@freescale.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) Freescale Semiconductor, Inc. 2006. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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/pci.h>
|
2008-01-17 22:37:51 +00:00
|
|
|
#include <linux/of_platform.h>
|
2007-02-08 04:19:12 +00:00
|
|
|
|
|
|
|
#include <asm/time.h>
|
|
|
|
#include <asm/ipic.h>
|
|
|
|
#include <asm/udbg.h>
|
2008-06-26 17:07:57 +00:00
|
|
|
#include <sysdev/fsl_pci.h>
|
2007-02-08 04:19:12 +00:00
|
|
|
|
|
|
|
#include "mpc83xx.h"
|
|
|
|
|
2008-01-25 02:45:51 +00:00
|
|
|
/*
|
2007-02-08 04:19:12 +00:00
|
|
|
* Setup the architecture
|
|
|
|
*/
|
2008-01-25 02:45:51 +00:00
|
|
|
static void __init mpc831x_rdb_setup_arch(void)
|
2007-02-08 04:19:12 +00:00
|
|
|
{
|
2007-05-10 03:14:57 +00:00
|
|
|
#ifdef CONFIG_PCI
|
2007-02-08 04:19:12 +00:00
|
|
|
struct device_node *np;
|
2007-05-10 03:14:57 +00:00
|
|
|
#endif
|
2007-02-08 04:19:12 +00:00
|
|
|
|
|
|
|
if (ppc_md.progress)
|
2008-01-25 02:45:51 +00:00
|
|
|
ppc_md.progress("mpc831x_rdb_setup_arch()", 0);
|
2007-02-08 04:19:12 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_PCI
|
2007-10-04 05:28:43 +00:00
|
|
|
for_each_compatible_node(np, "pci", "fsl,mpc8349-pci")
|
2007-06-17 23:06:54 +00:00
|
|
|
mpc83xx_add_bridge(np);
|
2009-01-08 01:31:41 +00:00
|
|
|
for_each_compatible_node(np, "pci", "fsl,mpc8314-pcie")
|
|
|
|
mpc83xx_add_bridge(np);
|
2007-02-08 04:19:12 +00:00
|
|
|
#endif
|
2007-07-03 09:43:16 +00:00
|
|
|
mpc831x_usb_cfg();
|
2007-02-08 04:19:12 +00:00
|
|
|
}
|
|
|
|
|
2008-12-05 15:48:07 +00:00
|
|
|
static void __init mpc831x_rdb_init_IRQ(void)
|
2007-02-08 04:19:12 +00:00
|
|
|
{
|
|
|
|
struct device_node *np;
|
|
|
|
|
|
|
|
np = of_find_node_by_type(NULL, "ipic");
|
|
|
|
if (!np)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ipic_init(np, 0);
|
|
|
|
|
|
|
|
/* Initialize the default interrupt mapping priorities,
|
|
|
|
* in case the boot rom changed something on us.
|
|
|
|
*/
|
|
|
|
ipic_set_default_priority();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called very early, MMU is off, device-tree isn't unflattened
|
|
|
|
*/
|
2008-01-25 02:45:51 +00:00
|
|
|
static int __init mpc831x_rdb_probe(void)
|
2007-02-08 04:19:12 +00:00
|
|
|
{
|
2007-12-13 17:16:32 +00:00
|
|
|
unsigned long root = of_get_flat_dt_root();
|
2007-02-08 04:19:12 +00:00
|
|
|
|
2008-01-25 02:46:00 +00:00
|
|
|
return of_flat_dt_is_compatible(root, "MPC8313ERDB") ||
|
|
|
|
of_flat_dt_is_compatible(root, "fsl,mpc8315erdb");
|
2007-02-08 04:19:12 +00:00
|
|
|
}
|
|
|
|
|
2008-01-17 22:37:51 +00:00
|
|
|
static struct of_device_id __initdata of_bus_ids[] = {
|
|
|
|
{ .compatible = "simple-bus" },
|
2009-01-21 09:46:57 +00:00
|
|
|
{ .compatible = "gianfar" },
|
2010-05-02 17:27:05 +00:00
|
|
|
{ .compatible = "gpio-leds", },
|
2008-01-17 22:37:51 +00:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init declare_of_platform_devices(void)
|
|
|
|
{
|
|
|
|
of_platform_bus_probe(NULL, of_bus_ids, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-25 02:45:51 +00:00
|
|
|
machine_device_initcall(mpc831x_rdb, declare_of_platform_devices);
|
2008-01-17 22:37:51 +00:00
|
|
|
|
2008-01-25 02:45:51 +00:00
|
|
|
define_machine(mpc831x_rdb) {
|
|
|
|
.name = "MPC831x RDB",
|
|
|
|
.probe = mpc831x_rdb_probe,
|
|
|
|
.setup_arch = mpc831x_rdb_setup_arch,
|
|
|
|
.init_IRQ = mpc831x_rdb_init_IRQ,
|
2007-02-08 04:19:12 +00:00
|
|
|
.get_irq = ipic_get_irq,
|
|
|
|
.restart = mpc83xx_restart,
|
|
|
|
.time_init = mpc83xx_time_init,
|
|
|
|
.calibrate_decr = generic_calibrate_decr,
|
|
|
|
.progress = udbg_progress,
|
|
|
|
};
|