blob: eebfd81c751974e5a82bfd0678a029bba1b65ab8 [file] [log] [blame]
Kim Phillips38f66f92008-01-24 20:47:11 -06001/*
2 * arch/powerpc/platforms/83xx/mpc837x_rdb.c
3 *
4 * Copyright (C) 2007 Freescale Semicondutor, Inc. All rights reserved.
5 *
6 * MPC837x RDB board specific routines
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/pci.h>
15#include <linux/of_platform.h>
16
17#include <asm/time.h>
18#include <asm/ipic.h>
19#include <asm/udbg.h>
Anton Vorontsov89f37292009-07-25 01:42:30 +040020#include <sysdev/fsl_soc.h>
John Rigby76fe1ff2008-06-26 11:07:57 -060021#include <sysdev/fsl_pci.h>
Kim Phillips38f66f92008-01-24 20:47:11 -060022
23#include "mpc83xx.h"
24
Anton Vorontsov89f37292009-07-25 01:42:30 +040025static void mpc837x_rdb_sd_cfg(void)
26{
27 void __iomem *im;
28
29 im = ioremap(get_immrbase(), 0x1000);
30 if (!im) {
31 WARN_ON(1);
32 return;
33 }
34
35 /*
36 * On RDB boards (in contrast to MDS) USBB pins are used for SD only,
37 * so we can safely mux them away from the USB block.
38 */
39 clrsetbits_be32(im + MPC83XX_SICRL_OFFS, MPC837X_SICRL_USBB_MASK,
40 MPC837X_SICRL_SD);
41 clrsetbits_be32(im + MPC83XX_SICRH_OFFS, MPC837X_SICRH_SPI_MASK,
42 MPC837X_SICRH_SD);
43 iounmap(im);
44}
45
Kim Phillips38f66f92008-01-24 20:47:11 -060046/* ************************************************************************
47 *
48 * Setup the architecture
49 *
50 */
51static void __init mpc837x_rdb_setup_arch(void)
52{
53#ifdef CONFIG_PCI
54 struct device_node *np;
55#endif
56
57 if (ppc_md.progress)
58 ppc_md.progress("mpc837x_rdb_setup_arch()", 0);
59
60#ifdef CONFIG_PCI
61 for_each_compatible_node(np, "pci", "fsl,mpc8349-pci")
62 mpc83xx_add_bridge(np);
Anton Vorontsov0585a152009-01-08 04:31:41 +030063 for_each_compatible_node(np, "pci", "fsl,mpc8314-pcie")
64 mpc83xx_add_bridge(np);
Kim Phillips38f66f92008-01-24 20:47:11 -060065#endif
66 mpc837x_usb_cfg();
Anton Vorontsov89f37292009-07-25 01:42:30 +040067 mpc837x_rdb_sd_cfg();
Kim Phillips38f66f92008-01-24 20:47:11 -060068}
69
70static struct of_device_id mpc837x_ids[] = {
71 { .type = "soc", },
72 { .compatible = "soc", },
Anton Vorontsov9c432792008-03-18 18:43:59 +030073 { .compatible = "simple-bus", },
Anton Vorontsov70b3adb2009-03-19 21:01:45 +030074 { .compatible = "gianfar", },
Anton Vorontsov6971df42010-05-02 21:27:05 +040075 { .compatible = "gpio-leds", },
Kim Phillips38f66f92008-01-24 20:47:11 -060076 {},
77};
78
79static int __init mpc837x_declare_of_platform_devices(void)
80{
Grant Likely2dc11582010-08-06 09:25:50 -060081 /* Publish platform_device */
Kim Phillips38f66f92008-01-24 20:47:11 -060082 of_platform_bus_probe(NULL, mpc837x_ids, NULL);
83
84 return 0;
85}
86machine_device_initcall(mpc837x_rdb, mpc837x_declare_of_platform_devices);
87
Grant Likelya4f740c2010-10-30 11:49:09 -040088static const char *board[] __initdata = {
89 "fsl,mpc8377rdb",
90 "fsl,mpc8378rdb",
91 "fsl,mpc8379rdb",
92 "fsl,mpc8377wlan",
93 NULL
94};
95
Kim Phillips38f66f92008-01-24 20:47:11 -060096/*
97 * Called very early, MMU is off, device-tree isn't unflattened
98 */
99static int __init mpc837x_rdb_probe(void)
100{
Grant Likelya4f740c2010-10-30 11:49:09 -0400101 return of_flat_dt_match(of_get_flat_dt_root(), board);
Kim Phillips38f66f92008-01-24 20:47:11 -0600102}
103
104define_machine(mpc837x_rdb) {
Anton Vorontsovfda4bd92009-07-25 01:42:17 +0400105 .name = "MPC837x RDB/WLAN",
Kim Phillips38f66f92008-01-24 20:47:11 -0600106 .probe = mpc837x_rdb_probe,
107 .setup_arch = mpc837x_rdb_setup_arch,
Dmitry Eremin-Solenikovd4fb5eb2011-07-22 23:55:42 +0400108 .init_IRQ = mpc83xx_ipic_init_IRQ,
Kim Phillips38f66f92008-01-24 20:47:11 -0600109 .get_irq = ipic_get_irq,
110 .restart = mpc83xx_restart,
111 .time_init = mpc83xx_time_init,
112 .calibrate_decr = generic_calibrate_decr,
113 .progress = udbg_progress,
114};