Merge tag 'v3.17-rc4' into sched/core, to prevent conflicts with upcoming patches...
[deliverable/linux.git] / arch / powerpc / platforms / 8xx / mpc885ads_setup.c
CommitLineData
20906ece 1/*
df34403d
VB
2 * Platform setup for the Freescale mpc885ads board
3 *
4 * Vitaly Bordug <vbordug@ru.mvista.com>
5 *
6 * Copyright 2005 MontaVista Software Inc.
7 *
20906ece
SW
8 * Heavily modified by Scott Wood <scottwood@freescale.com>
9 * Copyright 2007 Freescale Semiconductor, Inc.
10 *
df34403d
VB
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
14 */
15
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/param.h>
19#include <linux/string.h>
20#include <linux/ioport.h>
21#include <linux/device.h>
22#include <linux/delay.h>
df34403d
VB
23
24#include <linux/fs_enet_pd.h>
25#include <linux/fs_uart_pd.h>
80128ff7 26#include <linux/fsl_devices.h>
df34403d 27#include <linux/mii.h>
26a2056e
RH
28#include <linux/of_address.h>
29#include <linux/of_fdt.h>
20906ece 30#include <linux/of_platform.h>
df34403d
VB
31
32#include <asm/delay.h>
33#include <asm/io.h>
34#include <asm/machdep.h>
35#include <asm/page.h>
36#include <asm/processor.h>
df34403d 37#include <asm/time.h>
df34403d 38#include <asm/8xx_immap.h>
b5677d84 39#include <asm/cpm1.h>
df34403d 40#include <asm/fs_pd.h>
20906ece 41#include <asm/udbg.h>
df34403d 42
02753cb6 43#include "mpc885ads.h"
49b51545 44#include "mpc8xx.h"
df34403d 45
20906ece 46static u32 __iomem *bcsr, *bcsr5;
df34403d 47
20906ece
SW
48struct cpm_pin {
49 int port, pin, flags;
50};
df34403d 51
20906ece
SW
52static struct cpm_pin mpc885ads_pins[] = {
53 /* SMC1 */
54 {CPM_PORTB, 24, CPM_PIN_INPUT}, /* RX */
55 {CPM_PORTB, 25, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* TX */
df34403d 56
20906ece
SW
57 /* SMC2 */
58#ifndef CONFIG_MPC8xx_SECOND_ETH_FEC2
59 {CPM_PORTE, 21, CPM_PIN_INPUT}, /* RX */
60 {CPM_PORTE, 20, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* TX */
df34403d 61#endif
80128ff7 62
20906ece
SW
63 /* SCC3 */
64 {CPM_PORTA, 9, CPM_PIN_INPUT}, /* RX */
65 {CPM_PORTA, 8, CPM_PIN_INPUT}, /* TX */
66 {CPM_PORTC, 4, CPM_PIN_INPUT | CPM_PIN_SECONDARY | CPM_PIN_GPIO}, /* RENA */
67 {CPM_PORTC, 5, CPM_PIN_INPUT | CPM_PIN_SECONDARY | CPM_PIN_GPIO}, /* CLSN */
68 {CPM_PORTE, 27, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* TENA */
69 {CPM_PORTE, 17, CPM_PIN_INPUT}, /* CLK5 */
70 {CPM_PORTE, 16, CPM_PIN_INPUT}, /* CLK6 */
71
72 /* MII1 */
73 {CPM_PORTA, 0, CPM_PIN_INPUT},
74 {CPM_PORTA, 1, CPM_PIN_INPUT},
75 {CPM_PORTA, 2, CPM_PIN_INPUT},
76 {CPM_PORTA, 3, CPM_PIN_INPUT},
77 {CPM_PORTA, 4, CPM_PIN_OUTPUT},
78 {CPM_PORTA, 10, CPM_PIN_OUTPUT},
79 {CPM_PORTA, 11, CPM_PIN_OUTPUT},
80 {CPM_PORTB, 19, CPM_PIN_INPUT},
81 {CPM_PORTB, 31, CPM_PIN_INPUT},
82 {CPM_PORTC, 12, CPM_PIN_INPUT},
83 {CPM_PORTC, 13, CPM_PIN_INPUT},
84 {CPM_PORTE, 30, CPM_PIN_OUTPUT},
85 {CPM_PORTE, 31, CPM_PIN_OUTPUT},
86
87 /* MII2 */
88#ifdef CONFIG_MPC8xx_SECOND_ETH_FEC2
89 {CPM_PORTE, 14, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
90 {CPM_PORTE, 15, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
91 {CPM_PORTE, 16, CPM_PIN_OUTPUT},
92 {CPM_PORTE, 17, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
93 {CPM_PORTE, 18, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
94 {CPM_PORTE, 19, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
95 {CPM_PORTE, 20, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
96 {CPM_PORTE, 21, CPM_PIN_OUTPUT},
97 {CPM_PORTE, 22, CPM_PIN_OUTPUT},
98 {CPM_PORTE, 23, CPM_PIN_OUTPUT},
99 {CPM_PORTE, 24, CPM_PIN_OUTPUT},
100 {CPM_PORTE, 25, CPM_PIN_OUTPUT},
101 {CPM_PORTE, 26, CPM_PIN_OUTPUT},
102 {CPM_PORTE, 27, CPM_PIN_OUTPUT},
103 {CPM_PORTE, 28, CPM_PIN_OUTPUT},
104 {CPM_PORTE, 29, CPM_PIN_OUTPUT},
80128ff7 105#endif
a5d28c8e
JF
106 /* I2C */
107 {CPM_PORTB, 26, CPM_PIN_INPUT | CPM_PIN_OPENDRAIN},
108 {CPM_PORTB, 27, CPM_PIN_INPUT | CPM_PIN_OPENDRAIN},
20906ece 109};
df34403d 110
20906ece 111static void __init init_ioports(void)
df34403d 112{
20906ece 113 int i;
df34403d 114
20906ece
SW
115 for (i = 0; i < ARRAY_SIZE(mpc885ads_pins); i++) {
116 struct cpm_pin *pin = &mpc885ads_pins[i];
117 cpm1_set_pin(pin->port, pin->pin, pin->flags);
118 }
df34403d 119
20906ece
SW
120 cpm1_clk_setup(CPM_CLK_SMC1, CPM_BRG1, CPM_CLK_RTX);
121 cpm1_clk_setup(CPM_CLK_SMC2, CPM_BRG2, CPM_CLK_RTX);
122 cpm1_clk_setup(CPM_CLK_SCC3, CPM_CLK5, CPM_CLK_TX);
123 cpm1_clk_setup(CPM_CLK_SCC3, CPM_CLK6, CPM_CLK_RX);
df34403d 124
20906ece
SW
125 /* Set FEC1 and FEC2 to MII mode */
126 clrbits32(&mpc8xx_immr->im_cpm.cp_cptr, 0x00000180);
df34403d
VB
127}
128
20906ece 129static void __init mpc885ads_setup_arch(void)
df34403d 130{
20906ece 131 struct device_node *np;
df34403d 132
20906ece
SW
133 cpm_reset();
134 init_ioports();
df34403d 135
20906ece
SW
136 np = of_find_compatible_node(NULL, NULL, "fsl,mpc885ads-bcsr");
137 if (!np) {
138 printk(KERN_CRIT "Could not find fsl,mpc885ads-bcsr node\n");
df34403d
VB
139 return;
140 }
df34403d 141
20906ece
SW
142 bcsr = of_iomap(np, 0);
143 bcsr5 = of_iomap(np, 1);
144 of_node_put(np);
df34403d 145
20906ece 146 if (!bcsr || !bcsr5) {
df34403d
VB
147 printk(KERN_CRIT "Could not remap BCSR\n");
148 return;
149 }
150
20906ece
SW
151 clrbits32(&bcsr[1], BCSR1_RS232EN_1);
152#ifdef CONFIG_MPC8xx_SECOND_ETH_FEC2
153 setbits32(&bcsr[1], BCSR1_RS232EN_2);
154#else
155 clrbits32(&bcsr[1], BCSR1_RS232EN_2);
156#endif
df34403d 157
20906ece
SW
158 clrbits32(bcsr5, BCSR5_MII1_EN);
159 setbits32(bcsr5, BCSR5_MII1_RST);
160 udelay(1000);
161 clrbits32(bcsr5, BCSR5_MII1_RST);
df34403d 162
20906ece
SW
163#ifdef CONFIG_MPC8xx_SECOND_ETH_FEC2
164 clrbits32(bcsr5, BCSR5_MII2_EN);
165 setbits32(bcsr5, BCSR5_MII2_RST);
166 udelay(1000);
167 clrbits32(bcsr5, BCSR5_MII2_RST);
168#else
169 setbits32(bcsr5, BCSR5_MII2_EN);
170#endif
df34403d 171
20906ece
SW
172#ifdef CONFIG_MPC8xx_SECOND_ETH_SCC3
173 clrbits32(&bcsr[4], BCSR4_ETH10_RST);
174 udelay(1000);
175 setbits32(&bcsr[4], BCSR4_ETH10_RST);
df34403d 176
20906ece 177 setbits32(&bcsr[1], BCSR1_ETHEN);
df34403d 178
20906ece
SW
179 np = of_find_node_by_path("/soc@ff000000/cpm@9c0/serial@a80");
180#else
181 np = of_find_node_by_path("/soc@ff000000/cpm@9c0/ethernet@a40");
182#endif
df34403d 183
20906ece
SW
184 /* The SCC3 enet registers overlap the SMC1 registers, so
185 * one of the two must be removed from the device tree.
186 */
df34403d 187
20906ece
SW
188 if (np) {
189 of_detach_node(np);
190 of_node_put(np);
df34403d 191 }
df34403d
VB
192}
193
20906ece 194static int __init mpc885ads_probe(void)
df34403d 195{
20906ece
SW
196 unsigned long root = of_get_flat_dt_root();
197 return of_flat_dt_is_compatible(root, "fsl,mpc885ads");
df34403d
VB
198}
199
20906ece
SW
200static struct of_device_id __initdata of_bus_ids[] = {
201 { .name = "soc", },
202 { .name = "cpm", },
203 { .name = "localbus", },
204 {},
205};
df34403d 206
20906ece 207static int __init declare_of_platform_devices(void)
df34403d 208{
20906ece 209 /* Publish the QE devices */
6869e4ad 210 of_platform_bus_probe(NULL, of_bus_ids, NULL);
df34403d
VB
211
212 return 0;
213}
6869e4ad 214machine_device_initcall(mpc885_ads, declare_of_platform_devices);
20906ece
SW
215
216define_machine(mpc885_ads) {
217 .name = "Freescale MPC885 ADS",
218 .probe = mpc885ads_probe,
219 .setup_arch = mpc885ads_setup_arch,
d0a02a06 220 .init_IRQ = mpc8xx_pics_init,
20906ece
SW
221 .get_irq = mpc8xx_get_irq,
222 .restart = mpc8xx_restart,
223 .calibrate_decr = mpc8xx_calibrate_decr,
224 .set_rtc_time = mpc8xx_set_rtc_time,
225 .get_rtc_time = mpc8xx_get_rtc_time,
226 .progress = udbg_progress,
408e83a6 227};
This page took 0.508578 seconds and 5 git commands to generate.