Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 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 | |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 18 | #include <linux/init.h> |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 19 | #include <linux/pci.h> |
Grant Likely | 9fe2e79 | 2007-10-10 09:52:00 -0600 | [diff] [blame] | 20 | #include <linux/of.h> |
Al Viro | c1f807e | 2007-10-13 19:40:08 +0100 | [diff] [blame] | 21 | #include <linux/root_dev.h> |
| 22 | #include <linux/initrd.h> |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 23 | #include <asm/time.h> |
| 24 | #include <asm/io.h> |
| 25 | #include <asm/machdep.h> |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 26 | #include <asm/prom.h> |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 27 | #include <asm/mpc52xx.h> |
| 28 | |
| 29 | /* ************************************************************************ |
| 30 | * |
| 31 | * Setup the architecture |
| 32 | * |
| 33 | */ |
| 34 | |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 35 | /* |
| 36 | * Fix clock configuration. |
| 37 | * |
| 38 | * Firmware is supposed to be responsible for this. If you are creating a |
| 39 | * new board port, do *NOT* duplicate this code. Fix your boot firmware |
| 40 | * to set it correctly in the first place |
| 41 | */ |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 42 | static void __init |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 43 | lite5200_fix_clock_config(void) |
| 44 | { |
Grant Likely | 75ca399 | 2008-01-18 09:30:37 -0700 | [diff] [blame^] | 45 | struct device_node *np; |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 46 | struct mpc52xx_cdm __iomem *cdm; |
| 47 | |
| 48 | /* Map zones */ |
Grant Likely | 75ca399 | 2008-01-18 09:30:37 -0700 | [diff] [blame^] | 49 | np = of_find_compatible_node(NULL, NULL, "mpc5200-cdm"); |
| 50 | cdm = of_iomap(np, 0); |
| 51 | of_node_put(np); |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 52 | if (!cdm) { |
| 53 | printk(KERN_ERR "%s() failed; expect abnormal behaviour\n", |
| 54 | __FUNCTION__); |
| 55 | return; |
| 56 | } |
| 57 | |
| 58 | /* Use internal 48 Mhz */ |
| 59 | out_8(&cdm->ext_48mhz_en, 0x00); |
| 60 | out_8(&cdm->fd_enable, 0x01); |
| 61 | if (in_be32(&cdm->rstcfg) & 0x40) /* Assumes 33Mhz clock */ |
| 62 | out_be16(&cdm->fd_counters, 0x0001); |
| 63 | else |
| 64 | out_be16(&cdm->fd_counters, 0x5555); |
| 65 | |
| 66 | /* Unmap the regs */ |
| 67 | iounmap(cdm); |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | * Fix setting of port_config register. |
| 72 | * |
| 73 | * Firmware is supposed to be responsible for this. If you are creating a |
| 74 | * new board port, do *NOT* duplicate this code. Fix your boot firmware |
| 75 | * to set it correctly in the first place |
| 76 | */ |
| 77 | static void __init |
| 78 | lite5200_fix_port_config(void) |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 79 | { |
Grant Likely | 75ca399 | 2008-01-18 09:30:37 -0700 | [diff] [blame^] | 80 | struct device_node *np; |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 81 | struct mpc52xx_gpio __iomem *gpio; |
| 82 | u32 port_config; |
| 83 | |
Grant Likely | 75ca399 | 2008-01-18 09:30:37 -0700 | [diff] [blame^] | 84 | np = of_find_compatible_node(NULL, NULL, "mpc5200-gpio"); |
| 85 | gpio = of_iomap(np, 0); |
| 86 | of_node_put(np); |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 87 | if (!gpio) { |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 88 | printk(KERN_ERR "%s() failed. expect abnormal behavior\n", |
| 89 | __FUNCTION__); |
| 90 | return; |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /* Set port config */ |
| 94 | port_config = in_be32(&gpio->port_config); |
| 95 | |
| 96 | port_config &= ~0x00800000; /* 48Mhz internal, pin is GPIO */ |
| 97 | |
| 98 | port_config &= ~0x00007000; /* USB port : Differential mode */ |
| 99 | port_config |= 0x00001000; /* USB 1 only */ |
| 100 | |
| 101 | port_config &= ~0x03000000; /* ATA CS is on csb_4/5 */ |
| 102 | port_config |= 0x01000000; |
| 103 | |
| 104 | pr_debug("port_config: old:%x new:%x\n", |
| 105 | in_be32(&gpio->port_config), port_config); |
| 106 | out_be32(&gpio->port_config, port_config); |
| 107 | |
| 108 | /* Unmap zone */ |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 109 | iounmap(gpio); |
| 110 | } |
| 111 | |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 112 | #ifdef CONFIG_PM |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 113 | static void lite5200_suspend_prepare(void __iomem *mbar) |
| 114 | { |
| 115 | u8 pin = 1; /* GPIO_WKUP_1 (GPIO_PSC2_4) */ |
| 116 | u8 level = 0; /* wakeup on low level */ |
| 117 | mpc52xx_set_wakeup_gpio(pin, level); |
| 118 | |
| 119 | /* |
| 120 | * power down usb port |
| 121 | * this needs to be called before of-ohci suspend code |
| 122 | */ |
Domen Puncer | ee98307 | 2007-07-18 06:32:31 +1000 | [diff] [blame] | 123 | |
| 124 | /* set ports to "power switched" and "powered at the same time" |
| 125 | * USB Rh descriptor A: NPS = 0, PSM = 0 */ |
| 126 | out_be32(mbar + 0x1048, in_be32(mbar + 0x1048) & ~0x300); |
| 127 | /* USB Rh status: LPS = 1 - turn off power */ |
| 128 | out_be32(mbar + 0x1050, 0x00000001); |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | static void lite5200_resume_finish(void __iomem *mbar) |
| 132 | { |
Domen Puncer | ee98307 | 2007-07-18 06:32:31 +1000 | [diff] [blame] | 133 | /* USB Rh status: LPSC = 1 - turn on power */ |
| 134 | out_be32(mbar + 0x1050, 0x00010000); |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 135 | } |
| 136 | #endif |
| 137 | |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 138 | static void __init lite5200_setup_arch(void) |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 139 | { |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 140 | if (ppc_md.progress) |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 141 | ppc_md.progress("lite5200_setup_arch()", 0); |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 142 | |
Grant Likely | 4de3b99 | 2007-10-09 14:45:28 -0600 | [diff] [blame] | 143 | /* Fix things that firmware should have done. */ |
| 144 | lite5200_fix_clock_config(); |
| 145 | lite5200_fix_port_config(); |
| 146 | |
| 147 | /* Some mpc5200 & mpc5200b related configuration */ |
| 148 | mpc5200_setup_xlb_arbiter(); |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 149 | |
Marian Balakowicz | 9dda78b | 2007-10-19 04:44:39 +1000 | [diff] [blame] | 150 | /* Map wdt for mpc52xx_restart() */ |
| 151 | mpc52xx_map_wdt(); |
| 152 | |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 153 | #ifdef CONFIG_PM |
| 154 | mpc52xx_suspend.board_suspend_prepare = lite5200_suspend_prepare; |
| 155 | mpc52xx_suspend.board_resume_finish = lite5200_resume_finish; |
Domen Puncer | ee98307 | 2007-07-18 06:32:31 +1000 | [diff] [blame] | 156 | lite5200_pm_init(); |
Domen Puncer | 2e1ee1f | 2007-05-07 01:38:52 +1000 | [diff] [blame] | 157 | #endif |
| 158 | |
Marian Balakowicz | f584bc6 | 2007-11-10 04:11:56 +1100 | [diff] [blame] | 159 | mpc52xx_setup_pci(); |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 162 | /* |
| 163 | * Called very early, MMU is off, device-tree isn't unflattened |
| 164 | */ |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 165 | static int __init lite5200_probe(void) |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 166 | { |
| 167 | unsigned long node = of_get_flat_dt_root(); |
| 168 | const char *model = of_get_flat_dt_prop(node, "model", NULL); |
| 169 | |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 170 | if (!of_flat_dt_is_compatible(node, "fsl,lite5200") && |
| 171 | !of_flat_dt_is_compatible(node, "fsl,lite5200b")) |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 172 | return 0; |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 173 | pr_debug("%s board found\n", model ? model : "unknown"); |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 174 | |
| 175 | return 1; |
| 176 | } |
| 177 | |
Grant Likely | e3aba81 | 2007-02-12 13:36:55 -0700 | [diff] [blame] | 178 | define_machine(lite5200) { |
| 179 | .name = "lite5200", |
| 180 | .probe = lite5200_probe, |
| 181 | .setup_arch = lite5200_setup_arch, |
Sylvain Munaut | 5c334ee | 2007-01-02 23:29:53 +0100 | [diff] [blame] | 182 | .init = mpc52xx_declare_of_platform_devices, |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 183 | .init_IRQ = mpc52xx_init_irq, |
| 184 | .get_irq = mpc52xx_get_irq, |
Marian Balakowicz | 9dda78b | 2007-10-19 04:44:39 +1000 | [diff] [blame] | 185 | .restart = mpc52xx_restart, |
Grant Likely | 6b64253 | 2006-11-27 14:16:28 -0700 | [diff] [blame] | 186 | .calibrate_decr = generic_calibrate_decr, |
| 187 | }; |