]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/powerpc/platforms/52xx/lite5200.c
7fa0ec8d91cc2270f8d5304c3843fe5cd2d99842
[linux-2.6-omap-h63xx.git] / arch / powerpc / platforms / 52xx / lite5200.c
1 /*
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
18 #include <linux/init.h>
19 #include <linux/pci.h>
20 #include <linux/of.h>
21 #include <asm/time.h>
22 #include <asm/io.h>
23 #include <asm/machdep.h>
24 #include <asm/prom.h>
25 #include <asm/mpc52xx.h>
26
27 /* ************************************************************************
28  *
29  * Setup the architecture
30  *
31  */
32
33 static void __init
34 lite5200_setup_cpu(void)
35 {
36         struct mpc52xx_gpio __iomem *gpio;
37         u32 port_config;
38
39         /* Map zones */
40         gpio = mpc52xx_find_and_map("mpc5200-gpio");
41         if (!gpio) {
42                 printk(KERN_ERR __FILE__ ": "
43                         "Error while mapping GPIO register for port config. "
44                         "Expect some abnormal behavior\n");
45                 goto error;
46         }
47
48         /* Set port config */
49         port_config = in_be32(&gpio->port_config);
50
51         port_config &= ~0x00800000;     /* 48Mhz internal, pin is GPIO  */
52
53         port_config &= ~0x00007000;     /* USB port : Differential mode */
54         port_config |=  0x00001000;     /*            USB 1 only        */
55
56         port_config &= ~0x03000000;     /* ATA CS is on csb_4/5         */
57         port_config |=  0x01000000;
58
59         pr_debug("port_config: old:%x new:%x\n",
60                  in_be32(&gpio->port_config), port_config);
61         out_be32(&gpio->port_config, port_config);
62
63         /* Unmap zone */
64 error:
65         iounmap(gpio);
66 }
67
68 #ifdef CONFIG_PM
69 static void lite5200_suspend_prepare(void __iomem *mbar)
70 {
71         u8 pin = 1;     /* GPIO_WKUP_1 (GPIO_PSC2_4) */
72         u8 level = 0;   /* wakeup on low level */
73         mpc52xx_set_wakeup_gpio(pin, level);
74
75         /*
76          * power down usb port
77          * this needs to be called before of-ohci suspend code
78          */
79
80         /* set ports to "power switched" and "powered at the same time"
81          * USB Rh descriptor A: NPS = 0, PSM = 0 */
82         out_be32(mbar + 0x1048, in_be32(mbar + 0x1048) & ~0x300);
83         /* USB Rh status: LPS = 1 - turn off power */
84         out_be32(mbar + 0x1050, 0x00000001);
85 }
86
87 static void lite5200_resume_finish(void __iomem *mbar)
88 {
89         /* USB Rh status: LPSC = 1 - turn on power */
90         out_be32(mbar + 0x1050, 0x00010000);
91 }
92 #endif
93
94 static void __init lite5200_setup_arch(void)
95 {
96 #ifdef CONFIG_PCI
97         struct device_node *np;
98 #endif
99
100         if (ppc_md.progress)
101                 ppc_md.progress("lite5200_setup_arch()", 0);
102
103         /* CPU & Port mux setup */
104         mpc52xx_setup_cpu();    /* Generic */
105         lite5200_setup_cpu();   /* Platorm specific */
106
107 #ifdef CONFIG_PM
108         mpc52xx_suspend.board_suspend_prepare = lite5200_suspend_prepare;
109         mpc52xx_suspend.board_resume_finish = lite5200_resume_finish;
110         lite5200_pm_init();
111 #endif
112
113 #ifdef CONFIG_PCI
114         np = of_find_node_by_type(NULL, "pci");
115         if (np) {
116                 mpc52xx_add_bridge(np);
117                 of_node_put(np);
118         }
119 #endif
120
121 #ifdef CONFIG_BLK_DEV_INITRD
122         if (initrd_start)
123                 ROOT_DEV = Root_RAM0;
124         else
125 #endif
126 #ifdef  CONFIG_ROOT_NFS
127                 ROOT_DEV = Root_NFS;
128 #else
129                 ROOT_DEV = Root_HDA1;
130 #endif
131
132 }
133
134 /*
135  * Called very early, MMU is off, device-tree isn't unflattened
136  */
137 static int __init lite5200_probe(void)
138 {
139         unsigned long node = of_get_flat_dt_root();
140         const char *model = of_get_flat_dt_prop(node, "model", NULL);
141
142         if (!of_flat_dt_is_compatible(node, "fsl,lite5200") &&
143             !of_flat_dt_is_compatible(node, "fsl,lite5200b"))
144                 return 0;
145         pr_debug("%s board found\n", model ? model : "unknown");
146
147         return 1;
148 }
149
150 define_machine(lite5200) {
151         .name           = "lite5200",
152         .probe          = lite5200_probe,
153         .setup_arch     = lite5200_setup_arch,
154         .init           = mpc52xx_declare_of_platform_devices,
155         .init_IRQ       = mpc52xx_init_irq,
156         .get_irq        = mpc52xx_get_irq,
157         .calibrate_decr = generic_calibrate_decr,
158 };