blob: 0f3855c95ff5c6c0a4bc5d1caf78bfb2d6561be0 [file] [log] [blame]
Li Yangbc141de2006-10-03 23:17:51 -05001/*
2 * Copyright (C) Freescale Semicondutor, Inc. 2006. All rights reserved.
3 *
4 * Author: Li Yang <LeoLi@freescale.com>
5 * Yin Olivia <Hong-hua.Yin@freescale.com>
6 *
7 * Description:
Kumar Gala322d05a2007-02-17 10:13:56 -06008 * MPC8360E MDS board specific routines.
Li Yangbc141de2006-10-03 23:17:51 -05009 *
10 * Changelog:
11 * Jun 21, 2006 Initial version
12 *
Kumar Gala322d05a2007-02-17 10:13:56 -060013 * This program is free software; you can redistribute it and/or modify it
Li Yangbc141de2006-10-03 23:17:51 -050014 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 */
18
19#include <linux/stddef.h>
20#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/errno.h>
23#include <linux/reboot.h>
24#include <linux/pci.h>
25#include <linux/kdev_t.h>
26#include <linux/major.h>
27#include <linux/console.h>
28#include <linux/delay.h>
29#include <linux/seq_file.h>
30#include <linux/root_dev.h>
31#include <linux/initrd.h>
32
Li Yangf5a37b02006-10-11 19:04:22 +080033#include <asm/of_device.h>
Li Yang3b6eb6a2007-01-30 13:33:01 +080034#include <asm/of_platform.h>
Li Yangbc141de2006-10-03 23:17:51 -050035#include <asm/system.h>
36#include <asm/atomic.h>
37#include <asm/time.h>
38#include <asm/io.h>
39#include <asm/machdep.h>
40#include <asm/ipic.h>
Li Yangbc141de2006-10-03 23:17:51 -050041#include <asm/irq.h>
42#include <asm/prom.h>
43#include <asm/udbg.h>
44#include <sysdev/fsl_soc.h>
45#include <asm/qe.h>
46#include <asm/qe_ic.h>
47
48#include "mpc83xx.h"
49
50#undef DEBUG
51#ifdef DEBUG
52#define DBG(fmt...) udbg_printf(fmt)
53#else
54#define DBG(fmt...)
55#endif
56
Li Yangbc141de2006-10-03 23:17:51 -050057static u8 *bcsr_regs = NULL;
58
Li Yangbc141de2006-10-03 23:17:51 -050059/* ************************************************************************
60 *
61 * Setup the architecture
62 *
63 */
Kumar Gala322d05a2007-02-17 10:13:56 -060064static void __init mpc836x_mds_setup_arch(void)
Li Yangbc141de2006-10-03 23:17:51 -050065{
66 struct device_node *np;
67
68 if (ppc_md.progress)
Kumar Gala322d05a2007-02-17 10:13:56 -060069 ppc_md.progress("mpc836x_mds_setup_arch()", 0);
Li Yangbc141de2006-10-03 23:17:51 -050070
Li Yangbc141de2006-10-03 23:17:51 -050071 /* Map BCSR area */
72 np = of_find_node_by_name(NULL, "bcsr");
73 if (np != 0) {
74 struct resource res;
75
76 of_address_to_resource(np, 0, &res);
77 bcsr_regs = ioremap(res.start, res.end - res.start +1);
78 of_node_put(np);
79 }
80
81#ifdef CONFIG_PCI
Kumar Galac9438af2007-10-04 00:28:43 -050082 for_each_compatible_node(np, "pci", "fsl,mpc8349-pci")
Arnd Bergmann09b55f72007-06-18 01:06:54 +020083 mpc83xx_add_bridge(np);
Li Yangbc141de2006-10-03 23:17:51 -050084#endif
85
86#ifdef CONFIG_QUICC_ENGINE
87 qe_reset();
88
Li Yang06cd9392007-01-17 14:42:22 +080089 if ((np = of_find_node_by_name(NULL, "par_io")) != NULL) {
Li Yangbc141de2006-10-03 23:17:51 -050090 par_io_init(np);
91 of_node_put(np);
92
93 for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
94 par_io_of_config(np);
95 }
96
97 if ((np = of_find_compatible_node(NULL, "network", "ucc_geth"))
98 != NULL){
99 /* Reset the Ethernet PHY */
100 bcsr_regs[9] &= ~0x20;
101 udelay(1000);
102 bcsr_regs[9] |= 0x20;
103 iounmap(bcsr_regs);
104 of_node_put(np);
105 }
106
107#endif /* CONFIG_QUICC_ENGINE */
Li Yangbc141de2006-10-03 23:17:51 -0500108}
109
Kumar Galaf7993ed2007-02-17 09:56:49 -0600110static struct of_device_id mpc836x_ids[] = {
111 { .type = "soc", },
112 { .compatible = "soc", },
113 { .type = "qe", },
114 {},
115};
Li Yangf5a37b02006-10-11 19:04:22 +0800116
Kumar Galaf7993ed2007-02-17 09:56:49 -0600117static int __init mpc836x_declare_of_platform_devices(void)
118{
Kumar Gala322d05a2007-02-17 10:13:56 -0600119 if (!machine_is(mpc836x_mds))
Kumar Gala336c3c22007-02-17 09:10:44 -0600120 return 0;
121
Kumar Galaf7993ed2007-02-17 09:56:49 -0600122 /* Publish the QE devices */
123 of_platform_bus_probe(NULL, mpc836x_ids, NULL);
Li Yangf5a37b02006-10-11 19:04:22 +0800124
125 return 0;
126}
Kumar Galaf7993ed2007-02-17 09:56:49 -0600127device_initcall(mpc836x_declare_of_platform_devices);
Li Yangf5a37b02006-10-11 19:04:22 +0800128
Kumar Gala322d05a2007-02-17 10:13:56 -0600129static void __init mpc836x_mds_init_IRQ(void)
Li Yangbc141de2006-10-03 23:17:51 -0500130{
Li Yangbc141de2006-10-03 23:17:51 -0500131 struct device_node *np;
132
133 np = of_find_node_by_type(NULL, "ipic");
134 if (!np)
135 return;
136
137 ipic_init(np, 0);
138
139 /* Initialize the default interrupt mapping priorities,
140 * in case the boot rom changed something on us.
141 */
142 ipic_set_default_priority();
143 of_node_put(np);
144
145#ifdef CONFIG_QUICC_ENGINE
146 np = of_find_node_by_type(NULL, "qeic");
147 if (!np)
148 return;
149
Anton Vorontsovcccd2102007-10-05 21:47:29 +0400150 qe_ic_init(np, 0, qe_ic_cascade_low_ipic, qe_ic_cascade_high_ipic);
Li Yangbc141de2006-10-03 23:17:51 -0500151 of_node_put(np);
152#endif /* CONFIG_QUICC_ENGINE */
153}
154
155#if defined(CONFIG_I2C_MPC) && defined(CONFIG_SENSORS_DS1374)
156extern ulong ds1374_get_rtc_time(void);
157extern int ds1374_set_rtc_time(ulong);
158
159static int __init mpc8360_rtc_hookup(void)
160{
161 struct timespec tv;
162
Kumar Gala322d05a2007-02-17 10:13:56 -0600163 if (!machine_is(mpc836x_mds))
Kumar Gala336c3c22007-02-17 09:10:44 -0600164 return 0;
165
Li Yangbc141de2006-10-03 23:17:51 -0500166 ppc_md.get_rtc_time = ds1374_get_rtc_time;
167 ppc_md.set_rtc_time = ds1374_set_rtc_time;
168
169 tv.tv_nsec = 0;
170 tv.tv_sec = (ppc_md.get_rtc_time) ();
171 do_settimeofday(&tv);
172
173 return 0;
174}
175
176late_initcall(mpc8360_rtc_hookup);
177#endif
178
179/*
180 * Called very early, MMU is off, device-tree isn't unflattened
181 */
Kumar Gala322d05a2007-02-17 10:13:56 -0600182static int __init mpc836x_mds_probe(void)
Li Yangbc141de2006-10-03 23:17:51 -0500183{
Kumar Gala336c3c22007-02-17 09:10:44 -0600184 unsigned long root = of_get_flat_dt_root();
Li Yangbc141de2006-10-03 23:17:51 -0500185
Kumar Gala336c3c22007-02-17 09:10:44 -0600186 return of_flat_dt_is_compatible(root, "MPC836xMDS");
Li Yangbc141de2006-10-03 23:17:51 -0500187}
188
Kumar Gala322d05a2007-02-17 10:13:56 -0600189define_machine(mpc836x_mds) {
190 .name = "MPC836x MDS",
191 .probe = mpc836x_mds_probe,
192 .setup_arch = mpc836x_mds_setup_arch,
193 .init_IRQ = mpc836x_mds_init_IRQ,
194 .get_irq = ipic_get_irq,
195 .restart = mpc83xx_restart,
196 .time_init = mpc83xx_time_init,
Li Yangbc141de2006-10-03 23:17:51 -0500197 .calibrate_decr = generic_calibrate_decr,
Kumar Gala322d05a2007-02-17 10:13:56 -0600198 .progress = udbg_progress,
Li Yangbc141de2006-10-03 23:17:51 -0500199};