blob: 6d584f4e3c9a1032b98e22e8f96cb91900158edf [file] [log] [blame]
Grant Likely6b642532006-11-27 14:16:28 -07001/*
2 * Freescale Lite5200 board support
3 *
4 * Written by: Grant Likely <grant.likely@secretlab.ca>
5 *
6 * Copyright (C) Secret Lab Technologies Ltd. 2006. All rights reserved.
7 * Copyright (C) Freescale Semicondutor, Inc. 2006. All rights reserved.
8 *
9 * Description:
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
16#undef DEBUG
17
Grant Likely6b642532006-11-27 14:16:28 -070018#include <linux/init.h>
Grant Likely6b642532006-11-27 14:16:28 -070019#include <linux/pci.h>
Grant Likely9fe2e792007-10-10 09:52:00 -060020#include <linux/of.h>
Al Viroc1f807e2007-10-13 19:40:08 +010021#include <linux/root_dev.h>
22#include <linux/initrd.h>
Grant Likely6b642532006-11-27 14:16:28 -070023#include <asm/time.h>
24#include <asm/io.h>
25#include <asm/machdep.h>
Grant Likely6b642532006-11-27 14:16:28 -070026#include <asm/prom.h>
Grant Likely6b642532006-11-27 14:16:28 -070027#include <asm/mpc52xx.h>
28
29/* ************************************************************************
30 *
31 * Setup the architecture
32 *
33 */
34
Grant Likely66ffbe42008-01-24 22:25:31 -070035/* mpc5200 device tree match tables */
36static struct of_device_id mpc5200_cdm_ids[] __initdata = {
37 { .compatible = "fsl,mpc5200-cdm", },
38 { .compatible = "mpc5200-cdm", },
39 {}
40};
41
42static struct of_device_id mpc5200_gpio_ids[] __initdata = {
43 { .compatible = "fsl,mpc5200-gpio", },
44 { .compatible = "mpc5200-gpio", },
45 {}
46};
47
Grant Likely4de3b992007-10-09 14:45:28 -060048/*
49 * Fix clock configuration.
50 *
51 * Firmware is supposed to be responsible for this. If you are creating a
52 * new board port, do *NOT* duplicate this code. Fix your boot firmware
53 * to set it correctly in the first place
54 */
Grant Likely6b642532006-11-27 14:16:28 -070055static void __init
Grant Likely4de3b992007-10-09 14:45:28 -060056lite5200_fix_clock_config(void)
57{
Grant Likely75ca3992008-01-18 09:30:37 -070058 struct device_node *np;
Grant Likely4de3b992007-10-09 14:45:28 -060059 struct mpc52xx_cdm __iomem *cdm;
Grant Likely4de3b992007-10-09 14:45:28 -060060 /* Map zones */
Grant Likely66ffbe42008-01-24 22:25:31 -070061 np = of_find_matching_node(NULL, mpc5200_cdm_ids);
Grant Likely75ca3992008-01-18 09:30:37 -070062 cdm = of_iomap(np, 0);
63 of_node_put(np);
Grant Likely4de3b992007-10-09 14:45:28 -060064 if (!cdm) {
65 printk(KERN_ERR "%s() failed; expect abnormal behaviour\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +110066 __func__);
Grant Likely4de3b992007-10-09 14:45:28 -060067 return;
68 }
69
70 /* Use internal 48 Mhz */
71 out_8(&cdm->ext_48mhz_en, 0x00);
72 out_8(&cdm->fd_enable, 0x01);
73 if (in_be32(&cdm->rstcfg) & 0x40) /* Assumes 33Mhz clock */
74 out_be16(&cdm->fd_counters, 0x0001);
75 else
76 out_be16(&cdm->fd_counters, 0x5555);
77
78 /* Unmap the regs */
79 iounmap(cdm);
80}
81
82/*
83 * Fix setting of port_config register.
84 *
85 * Firmware is supposed to be responsible for this. If you are creating a
86 * new board port, do *NOT* duplicate this code. Fix your boot firmware
87 * to set it correctly in the first place
88 */
89static void __init
90lite5200_fix_port_config(void)
Grant Likely6b642532006-11-27 14:16:28 -070091{
Grant Likely75ca3992008-01-18 09:30:37 -070092 struct device_node *np;
Grant Likely6b642532006-11-27 14:16:28 -070093 struct mpc52xx_gpio __iomem *gpio;
94 u32 port_config;
95
Grant Likely66ffbe42008-01-24 22:25:31 -070096 np = of_find_matching_node(NULL, mpc5200_gpio_ids);
Grant Likely75ca3992008-01-18 09:30:37 -070097 gpio = of_iomap(np, 0);
98 of_node_put(np);
Grant Likely6b642532006-11-27 14:16:28 -070099 if (!gpio) {
Grant Likely4de3b992007-10-09 14:45:28 -0600100 printk(KERN_ERR "%s() failed. expect abnormal behavior\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100101 __func__);
Grant Likely4de3b992007-10-09 14:45:28 -0600102 return;
Grant Likely6b642532006-11-27 14:16:28 -0700103 }
104
105 /* Set port config */
106 port_config = in_be32(&gpio->port_config);
107
108 port_config &= ~0x00800000; /* 48Mhz internal, pin is GPIO */
109
110 port_config &= ~0x00007000; /* USB port : Differential mode */
111 port_config |= 0x00001000; /* USB 1 only */
112
113 port_config &= ~0x03000000; /* ATA CS is on csb_4/5 */
114 port_config |= 0x01000000;
115
116 pr_debug("port_config: old:%x new:%x\n",
117 in_be32(&gpio->port_config), port_config);
118 out_be32(&gpio->port_config, port_config);
119
120 /* Unmap zone */
Grant Likely6b642532006-11-27 14:16:28 -0700121 iounmap(gpio);
122}
123
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000124#ifdef CONFIG_PM
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000125static void lite5200_suspend_prepare(void __iomem *mbar)
126{
127 u8 pin = 1; /* GPIO_WKUP_1 (GPIO_PSC2_4) */
128 u8 level = 0; /* wakeup on low level */
129 mpc52xx_set_wakeup_gpio(pin, level);
130
131 /*
132 * power down usb port
133 * this needs to be called before of-ohci suspend code
134 */
Domen Punceree983072007-07-18 06:32:31 +1000135
136 /* set ports to "power switched" and "powered at the same time"
137 * USB Rh descriptor A: NPS = 0, PSM = 0 */
138 out_be32(mbar + 0x1048, in_be32(mbar + 0x1048) & ~0x300);
139 /* USB Rh status: LPS = 1 - turn off power */
140 out_be32(mbar + 0x1050, 0x00000001);
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000141}
142
143static void lite5200_resume_finish(void __iomem *mbar)
144{
Domen Punceree983072007-07-18 06:32:31 +1000145 /* USB Rh status: LPSC = 1 - turn on power */
146 out_be32(mbar + 0x1050, 0x00010000);
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000147}
148#endif
149
Grant Likelye3aba812007-02-12 13:36:55 -0700150static void __init lite5200_setup_arch(void)
Grant Likely6b642532006-11-27 14:16:28 -0700151{
Grant Likely6b642532006-11-27 14:16:28 -0700152 if (ppc_md.progress)
Grant Likelye3aba812007-02-12 13:36:55 -0700153 ppc_md.progress("lite5200_setup_arch()", 0);
Grant Likely6b642532006-11-27 14:16:28 -0700154
Grant Likelyc8004a22008-01-24 22:25:31 -0700155 /* Map important registers from the internal memory map */
156 mpc52xx_map_common_devices();
Grant Likely4de3b992007-10-09 14:45:28 -0600157
158 /* Some mpc5200 & mpc5200b related configuration */
159 mpc5200_setup_xlb_arbiter();
Grant Likely6b642532006-11-27 14:16:28 -0700160
Grant Likelyc8004a22008-01-24 22:25:31 -0700161 /* Fix things that firmware should have done. */
162 lite5200_fix_clock_config();
163 lite5200_fix_port_config();
Marian Balakowicz9dda78b2007-10-19 04:44:39 +1000164
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000165#ifdef CONFIG_PM
166 mpc52xx_suspend.board_suspend_prepare = lite5200_suspend_prepare;
167 mpc52xx_suspend.board_resume_finish = lite5200_resume_finish;
Domen Punceree983072007-07-18 06:32:31 +1000168 lite5200_pm_init();
Domen Puncer2e1ee1f2007-05-07 01:38:52 +1000169#endif
170
Marian Balakowiczf584bc62007-11-10 04:11:56 +1100171 mpc52xx_setup_pci();
Grant Likely6b642532006-11-27 14:16:28 -0700172}
173
Grant Likely6b642532006-11-27 14:16:28 -0700174/*
175 * Called very early, MMU is off, device-tree isn't unflattened
176 */
Grant Likelye3aba812007-02-12 13:36:55 -0700177static int __init lite5200_probe(void)
Grant Likely6b642532006-11-27 14:16:28 -0700178{
179 unsigned long node = of_get_flat_dt_root();
180 const char *model = of_get_flat_dt_prop(node, "model", NULL);
181
Grant Likelye3aba812007-02-12 13:36:55 -0700182 if (!of_flat_dt_is_compatible(node, "fsl,lite5200") &&
183 !of_flat_dt_is_compatible(node, "fsl,lite5200b"))
Grant Likely6b642532006-11-27 14:16:28 -0700184 return 0;
Grant Likelye3aba812007-02-12 13:36:55 -0700185 pr_debug("%s board found\n", model ? model : "unknown");
Grant Likely6b642532006-11-27 14:16:28 -0700186
187 return 1;
188}
189
Grant Likelye3aba812007-02-12 13:36:55 -0700190define_machine(lite5200) {
191 .name = "lite5200",
192 .probe = lite5200_probe,
193 .setup_arch = lite5200_setup_arch,
Sylvain Munaut5c334ee2007-01-02 23:29:53 +0100194 .init = mpc52xx_declare_of_platform_devices,
Grant Likely6b642532006-11-27 14:16:28 -0700195 .init_IRQ = mpc52xx_init_irq,
196 .get_irq = mpc52xx_get_irq,
Marian Balakowicz9dda78b2007-10-19 04:44:39 +1000197 .restart = mpc52xx_restart,
Grant Likely6b642532006-11-27 14:16:28 -0700198 .calibrate_decr = generic_calibrate_decr,
199};