[POWERPC] kill isa_{io,mem}_base definitions for !PCI
[pandora-kernel.git] / arch / powerpc / platforms / 83xx / mpc834x_mds.c
1 /*
2  * arch/powerpc/platforms/83xx/mpc834x_mds.c
3  *
4  * MPC834x MDS board specific routines
5  *
6  * Maintainer: Kumar Gala <galak@kernel.crashing.org>
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/stddef.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/errno.h>
18 #include <linux/reboot.h>
19 #include <linux/pci.h>
20 #include <linux/kdev_t.h>
21 #include <linux/major.h>
22 #include <linux/console.h>
23 #include <linux/delay.h>
24 #include <linux/seq_file.h>
25 #include <linux/root_dev.h>
26
27 #include <asm/system.h>
28 #include <asm/atomic.h>
29 #include <asm/time.h>
30 #include <asm/io.h>
31 #include <asm/machdep.h>
32 #include <asm/ipic.h>
33 #include <asm/bootinfo.h>
34 #include <asm/irq.h>
35 #include <asm/prom.h>
36 #include <asm/udbg.h>
37 #include <sysdev/fsl_soc.h>
38
39 #include "mpc83xx.h"
40
41 #define BCSR5_INT_USB           0x02
42 /* Note: This is only for PB, not for PB+PIB
43  * On PB only port0 is connected using ULPI */
44 static int mpc834x_usb_cfg(void)
45 {
46         unsigned long sccr, sicrl;
47         void __iomem *immap;
48         void __iomem *bcsr_regs = NULL;
49         u8 bcsr5;
50         struct device_node *np = NULL;
51         int port0_is_dr = 0;
52
53         if ((np = of_find_compatible_node(NULL, "usb", "fsl-usb2-dr")) != NULL)
54                 port0_is_dr = 1;
55         if ((np = of_find_compatible_node(NULL, "usb", "fsl-usb2-mph")) != NULL){
56                 if (port0_is_dr) {
57                         printk(KERN_WARNING
58                                 "There is only one USB port on PB board! \n");
59                         return -1;
60                 } else if (!port0_is_dr)
61                         /* No usb port enabled */
62                         return -1;
63         }
64
65         immap = ioremap(get_immrbase(), 0x1000);
66         if (!immap)
67                 return -1;
68
69         /* Configure clock */
70         sccr = in_be32(immap + MPC83XX_SCCR_OFFS);
71         if (port0_is_dr)
72                 sccr |= MPC83XX_SCCR_USB_DRCM_11;  /* 1:3 */
73         else
74                 sccr |= MPC83XX_SCCR_USB_MPHCM_11; /* 1:3 */
75         out_be32(immap + MPC83XX_SCCR_OFFS, sccr);
76
77         /* Configure Pin */
78         sicrl = in_be32(immap + MPC83XX_SICRL_OFFS);
79         /* set port0 only */
80         if (port0_is_dr)
81                 sicrl |= MPC83XX_SICRL_USB0;
82         else
83                 sicrl &= ~(MPC83XX_SICRL_USB0);
84         out_be32(immap + MPC83XX_SICRL_OFFS, sicrl);
85
86         iounmap(immap);
87
88         /* Map BCSR area */
89         np = of_find_node_by_name(NULL, "bcsr");
90         if (np != 0) {
91                 struct resource res;
92
93                 of_address_to_resource(np, 0, &res);
94                 bcsr_regs = ioremap(res.start, res.end - res.start + 1);
95                 of_node_put(np);
96         }
97         if (!bcsr_regs)
98                 return -1;
99
100         /*
101          * if Processor Board is plugged into PIB board,
102          * force to use the PHY on Processor Board
103          */
104         bcsr5 = in_8(bcsr_regs + 5);
105         if (!(bcsr5 & BCSR5_INT_USB))
106                 out_8(bcsr_regs + 5, (bcsr5 | BCSR5_INT_USB));
107         iounmap(bcsr_regs);
108         return 0;
109 }
110
111 /* ************************************************************************
112  *
113  * Setup the architecture
114  *
115  */
116 static void __init mpc834x_mds_setup_arch(void)
117 {
118 #ifdef CONFIG_PCI
119         struct device_node *np;
120 #endif
121
122         if (ppc_md.progress)
123                 ppc_md.progress("mpc834x_mds_setup_arch()", 0);
124
125 #ifdef CONFIG_PCI
126         for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
127                 mpc83xx_add_bridge(np);
128
129         ppc_md.pci_exclude_device = mpc83xx_exclude_device;
130 #endif
131
132         mpc834x_usb_cfg();
133 }
134
135 static void __init mpc834x_mds_init_IRQ(void)
136 {
137         struct device_node *np;
138
139         np = of_find_node_by_type(NULL, "ipic");
140         if (!np)
141                 return;
142
143         ipic_init(np, 0);
144
145         /* Initialize the default interrupt mapping priorities,
146          * in case the boot rom changed something on us.
147          */
148         ipic_set_default_priority();
149 }
150
151 #if defined(CONFIG_I2C_MPC) && defined(CONFIG_SENSORS_DS1374)
152 extern ulong ds1374_get_rtc_time(void);
153 extern int ds1374_set_rtc_time(ulong);
154
155 static int __init mpc834x_rtc_hookup(void)
156 {
157         struct timespec tv;
158
159         if (!machine_is(mpc834x_mds))
160                 return 0;
161
162         ppc_md.get_rtc_time = ds1374_get_rtc_time;
163         ppc_md.set_rtc_time = ds1374_set_rtc_time;
164
165         tv.tv_nsec = 0;
166         tv.tv_sec = (ppc_md.get_rtc_time) ();
167         do_settimeofday(&tv);
168
169         return 0;
170 }
171
172 late_initcall(mpc834x_rtc_hookup);
173 #endif
174
175 /*
176  * Called very early, MMU is off, device-tree isn't unflattened
177  */
178 static int __init mpc834x_mds_probe(void)
179 {
180         unsigned long root = of_get_flat_dt_root();
181
182         return of_flat_dt_is_compatible(root, "MPC834xMDS");
183 }
184
185 define_machine(mpc834x_mds) {
186         .name                   = "MPC834x MDS",
187         .probe                  = mpc834x_mds_probe,
188         .setup_arch             = mpc834x_mds_setup_arch,
189         .init_IRQ               = mpc834x_mds_init_IRQ,
190         .get_irq                = ipic_get_irq,
191         .restart                = mpc83xx_restart,
192         .time_init              = mpc83xx_time_init,
193         .calibrate_decr         = generic_calibrate_decr,
194         .progress               = udbg_progress,
195 };