Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1 | /* |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 2 | * Copyright (C) 2004-2009 Freescale Semiconductor, Inc. |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <mpc83xx.h> |
| 25 | #include <ioports.h> |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 26 | #include <asm/io.h> |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 27 | #ifdef CONFIG_USB_EHCI_FSL |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 28 | #include <usb/ehci-fsl.h> |
| 29 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 30 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 33 | #ifdef CONFIG_QE |
| 34 | extern qe_iop_conf_t qe_iop_conf_tab[]; |
| 35 | extern void qe_config_iopin(u8 port, u8 pin, int dir, |
| 36 | int open_drain, int assign); |
| 37 | extern void qe_init(uint qe_base); |
| 38 | extern void qe_reset(void); |
| 39 | |
| 40 | static void config_qe_ioports(void) |
| 41 | { |
| 42 | u8 port, pin; |
| 43 | int dir, open_drain, assign; |
| 44 | int i; |
| 45 | |
| 46 | for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) { |
| 47 | port = qe_iop_conf_tab[i].port; |
| 48 | pin = qe_iop_conf_tab[i].pin; |
| 49 | dir = qe_iop_conf_tab[i].dir; |
| 50 | open_drain = qe_iop_conf_tab[i].open_drain; |
| 51 | assign = qe_iop_conf_tab[i].assign; |
| 52 | qe_config_iopin(port, pin, dir, open_drain, assign); |
| 53 | } |
| 54 | } |
| 55 | #endif |
| 56 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 57 | /* |
| 58 | * Breathe some life into the CPU... |
| 59 | * |
| 60 | * Set up the memory map, |
| 61 | * initialize a bunch of registers, |
| 62 | * initialize the UPM's |
| 63 | */ |
| 64 | void cpu_init_f (volatile immap_t * im) |
| 65 | { |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 66 | __be32 acr_mask = |
| 67 | #ifdef CONFIG_SYS_ACR_PIPE_DEP /* Arbiter pipeline depth */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 68 | ACR_PIPE_DEP | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 69 | #endif |
| 70 | #ifdef CONFIG_SYS_ACR_RPTCNT /* Arbiter repeat count */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 71 | ACR_RPTCNT | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 72 | #endif |
Heiko Schocher | a3f5da1 | 2010-01-07 08:56:00 +0100 | [diff] [blame] | 73 | #ifdef CONFIG_SYS_ACR_APARK /* Arbiter address parking mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 74 | ACR_APARK | |
Heiko Schocher | a3f5da1 | 2010-01-07 08:56:00 +0100 | [diff] [blame] | 75 | #endif |
| 76 | #ifdef CONFIG_SYS_ACR_PARKM /* Arbiter parking master */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 77 | ACR_PARKM | |
Heiko Schocher | a3f5da1 | 2010-01-07 08:56:00 +0100 | [diff] [blame] | 78 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 79 | 0; |
| 80 | __be32 acr_val = |
| 81 | #ifdef CONFIG_SYS_ACR_PIPE_DEP /* Arbiter pipeline depth */ |
| 82 | (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT) | |
| 83 | #endif |
| 84 | #ifdef CONFIG_SYS_ACR_RPTCNT /* Arbiter repeat count */ |
| 85 | (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT) | |
| 86 | #endif |
Heiko Schocher | a3f5da1 | 2010-01-07 08:56:00 +0100 | [diff] [blame] | 87 | #ifdef CONFIG_SYS_ACR_APARK /* Arbiter address parking mode */ |
| 88 | (CONFIG_SYS_ACR_APARK << ACR_APARK_SHIFT) | |
| 89 | #endif |
| 90 | #ifdef CONFIG_SYS_ACR_PARKM /* Arbiter parking master */ |
| 91 | (CONFIG_SYS_ACR_PARKM << ACR_PARKM_SHIFT) | |
| 92 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 93 | 0; |
| 94 | __be32 spcr_mask = |
| 95 | #ifdef CONFIG_SYS_SPCR_OPT /* Optimize transactions between CSB and other dev */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 96 | SPCR_OPT | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 97 | #endif |
| 98 | #ifdef CONFIG_SYS_SPCR_TSECEP /* all eTSEC's Emergency priority */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 99 | SPCR_TSECEP | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 100 | #endif |
| 101 | #ifdef CONFIG_SYS_SPCR_TSEC1EP /* TSEC1 Emergency priority */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 102 | SPCR_TSEC1EP | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 103 | #endif |
| 104 | #ifdef CONFIG_SYS_SPCR_TSEC2EP /* TSEC2 Emergency priority */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 105 | SPCR_TSEC2EP | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 106 | #endif |
| 107 | 0; |
| 108 | __be32 spcr_val = |
| 109 | #ifdef CONFIG_SYS_SPCR_OPT |
| 110 | (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT) | |
| 111 | #endif |
| 112 | #ifdef CONFIG_SYS_SPCR_TSECEP /* all eTSEC's Emergency priority */ |
| 113 | (CONFIG_SYS_SPCR_TSECEP << SPCR_TSECEP_SHIFT) | |
| 114 | #endif |
| 115 | #ifdef CONFIG_SYS_SPCR_TSEC1EP /* TSEC1 Emergency priority */ |
| 116 | (CONFIG_SYS_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT) | |
| 117 | #endif |
| 118 | #ifdef CONFIG_SYS_SPCR_TSEC2EP /* TSEC2 Emergency priority */ |
| 119 | (CONFIG_SYS_SPCR_TSEC2EP << SPCR_TSEC2EP_SHIFT) | |
| 120 | #endif |
| 121 | 0; |
| 122 | __be32 sccr_mask = |
| 123 | #ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 124 | SCCR_ENCCM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 125 | #endif |
| 126 | #ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 127 | SCCR_PCICM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 128 | #endif |
Ilya Yanok | f137104 | 2010-09-17 23:41:47 +0200 | [diff] [blame] | 129 | #ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */ |
| 130 | SCCR_PCIEXP1CM | |
| 131 | #endif |
| 132 | #ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */ |
| 133 | SCCR_PCIEXP2CM | |
| 134 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 135 | #ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 136 | SCCR_TSECCM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 137 | #endif |
| 138 | #ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 139 | SCCR_TSEC1CM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 140 | #endif |
| 141 | #ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 142 | SCCR_TSEC2CM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 143 | #endif |
| 144 | #ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 145 | SCCR_TSEC1ON | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 146 | #endif |
| 147 | #ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 148 | SCCR_TSEC2ON | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 149 | #endif |
| 150 | #ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 151 | SCCR_USBMPHCM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 152 | #endif |
| 153 | #ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 154 | SCCR_USBDRCM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 155 | #endif |
| 156 | #ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */ |
Kim Phillips | 71bd860 | 2010-05-19 17:06:46 -0500 | [diff] [blame] | 157 | SCCR_SATACM | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 158 | #endif |
| 159 | 0; |
| 160 | __be32 sccr_val = |
| 161 | #ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */ |
| 162 | (CONFIG_SYS_SCCR_ENCCM << SCCR_ENCCM_SHIFT) | |
| 163 | #endif |
| 164 | #ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */ |
| 165 | (CONFIG_SYS_SCCR_PCICM << SCCR_PCICM_SHIFT) | |
| 166 | #endif |
Ilya Yanok | f137104 | 2010-09-17 23:41:47 +0200 | [diff] [blame] | 167 | #ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */ |
| 168 | (CONFIG_SYS_SCCR_PCIEXP1CM << SCCR_PCIEXP1CM_SHIFT) | |
| 169 | #endif |
| 170 | #ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */ |
| 171 | (CONFIG_SYS_SCCR_PCIEXP2CM << SCCR_PCIEXP2CM_SHIFT) | |
| 172 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 173 | #ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */ |
| 174 | (CONFIG_SYS_SCCR_TSECCM << SCCR_TSECCM_SHIFT) | |
| 175 | #endif |
| 176 | #ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */ |
| 177 | (CONFIG_SYS_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT) | |
| 178 | #endif |
| 179 | #ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */ |
| 180 | (CONFIG_SYS_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT) | |
| 181 | #endif |
| 182 | #ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */ |
| 183 | (CONFIG_SYS_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT) | |
| 184 | #endif |
| 185 | #ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */ |
| 186 | (CONFIG_SYS_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT) | |
| 187 | #endif |
| 188 | #ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */ |
| 189 | (CONFIG_SYS_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT) | |
| 190 | #endif |
| 191 | #ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */ |
| 192 | (CONFIG_SYS_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT) | |
| 193 | #endif |
| 194 | #ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */ |
| 195 | (CONFIG_SYS_SCCR_SATACM << SCCR_SATACM_SHIFT) | |
| 196 | #endif |
| 197 | 0; |
Peter Korsgaard | 3b887ca | 2009-12-08 22:20:34 +0100 | [diff] [blame] | 198 | __be32 lcrr_mask = |
| 199 | #ifdef CONFIG_SYS_LCRR_DBYP /* PLL bypass */ |
| 200 | LCRR_DBYP | |
| 201 | #endif |
| 202 | #ifdef CONFIG_SYS_LCRR_EADC /* external address delay */ |
| 203 | LCRR_EADC | |
| 204 | #endif |
| 205 | #ifdef CONFIG_SYS_LCRR_CLKDIV /* system clock divider */ |
| 206 | LCRR_CLKDIV | |
| 207 | #endif |
| 208 | 0; |
| 209 | __be32 lcrr_val = |
| 210 | #ifdef CONFIG_SYS_LCRR_DBYP /* PLL bypass */ |
| 211 | CONFIG_SYS_LCRR_DBYP | |
| 212 | #endif |
| 213 | #ifdef CONFIG_SYS_LCRR_EADC |
| 214 | CONFIG_SYS_LCRR_EADC | |
| 215 | #endif |
| 216 | #ifdef CONFIG_SYS_LCRR_CLKDIV /* system clock divider */ |
| 217 | CONFIG_SYS_LCRR_CLKDIV | |
| 218 | #endif |
| 219 | 0; |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 220 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 221 | /* Pointer is writable since we allocated a register for it */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 223 | |
| 224 | /* Clear initial global data */ |
| 225 | memset ((void *) gd, 0, sizeof (gd_t)); |
| 226 | |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 227 | /* system performance tweaking */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 228 | clrsetbits_be32(&im->arbiter.acr, acr_mask, acr_val); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 229 | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 230 | clrsetbits_be32(&im->sysconf.spcr, spcr_mask, spcr_val); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 231 | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 232 | clrsetbits_be32(&im->clk.sccr, sccr_mask, sccr_val); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 233 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 234 | /* RSR - Reset Status Register - clear all status (4.6.1.3) */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 235 | gd->reset_status = __raw_readl(&im->reset.rsr); |
| 236 | __raw_writel(~(RSR_RES), &im->reset.rsr); |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 237 | |
Nick Spence | 4649705 | 2008-08-28 14:09:19 -0700 | [diff] [blame] | 238 | /* AER - Arbiter Event Register - store status */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 239 | gd->arbiter_event_attributes = __raw_readl(&im->arbiter.aeatr); |
| 240 | gd->arbiter_event_address = __raw_readl(&im->arbiter.aeadr); |
Nick Spence | 4649705 | 2008-08-28 14:09:19 -0700 | [diff] [blame] | 241 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 242 | /* |
| 243 | * RMR - Reset Mode Register |
| 244 | * contains checkstop reset enable (4.6.1.4) |
| 245 | */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 246 | __raw_writel(RMR_CSRE & (1<<RMR_CSRE_SHIFT), &im->reset.rmr); |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 247 | |
Peter Korsgaard | 3b887ca | 2009-12-08 22:20:34 +0100 | [diff] [blame] | 248 | /* LCRR - Clock Ratio Register (10.3.1.16) |
| 249 | * write, read, and isync per MPC8379ERM rev.1 CLKDEV field description |
| 250 | */ |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 251 | clrsetbits_be32(&im->im_lbc.lcrr, lcrr_mask, lcrr_val); |
| 252 | __raw_readl(&im->im_lbc.lcrr); |
Peter Korsgaard | 3b887ca | 2009-12-08 22:20:34 +0100 | [diff] [blame] | 253 | isync(); |
| 254 | |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 255 | /* Enable Time Base & Decrementer ( so we will have udelay() )*/ |
| 256 | setbits_be32(&im->sysconf.spcr, SPCR_TBEN); |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 257 | |
| 258 | /* System General Purpose Register */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 259 | #ifdef CONFIG_SYS_SICRH |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 260 | #if defined(CONFIG_MPC834x) || defined(CONFIG_MPC8313) |
Andre Schwarz | 846f157 | 2008-06-23 11:40:56 +0200 | [diff] [blame] | 261 | /* regarding to MPC34x manual rev.1 bits 28..29 must be preserved */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 262 | __raw_writel((im->sysconf.sicrh & 0x0000000C) | CONFIG_SYS_SICRH, |
| 263 | &im->sysconf.sicrh); |
Andre Schwarz | 846f157 | 2008-06-23 11:40:56 +0200 | [diff] [blame] | 264 | #else |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 265 | __raw_writel(CONFIG_SYS_SICRH, &im->sysconf.sicrh); |
Kumar Gala | 9260a56 | 2006-01-11 11:12:57 -0600 | [diff] [blame] | 266 | #endif |
Andre Schwarz | 846f157 | 2008-06-23 11:40:56 +0200 | [diff] [blame] | 267 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 268 | #ifdef CONFIG_SYS_SICRL |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 269 | __raw_writel(CONFIG_SYS_SICRL, &im->sysconf.sicrl); |
Kumar Gala | 9260a56 | 2006-01-11 11:12:57 -0600 | [diff] [blame] | 270 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 271 | #ifdef CONFIG_SYS_DDRCDR /* DDR control driver register */ |
| 272 | __raw_writel(CONFIG_SYS_DDRCDR, &im->sysconf.ddrcdr); |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 273 | #endif |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 274 | #ifdef CONFIG_SYS_OBIR /* Output buffer impedance register */ |
| 275 | __raw_writel(CONFIG_SYS_OBIR, &im->sysconf.obir); |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 276 | #endif |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 277 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 278 | #ifdef CONFIG_QE |
| 279 | /* Config QE ioports */ |
| 280 | config_qe_ioports(); |
| 281 | #endif |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 282 | /* Set up preliminary BR/OR regs */ |
| 283 | init_early_memctl_regs(); |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 284 | |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 285 | /* Local Access window setup */ |
| 286 | #if defined(CONFIG_SYS_LBLAWBAR0_PRELIM) && defined(CONFIG_SYS_LBLAWAR0_PRELIM) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 287 | im->sysconf.lblaw[0].bar = CONFIG_SYS_LBLAWBAR0_PRELIM; |
| 288 | im->sysconf.lblaw[0].ar = CONFIG_SYS_LBLAWAR0_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 289 | #else |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 290 | #error CONFIG_SYS_LBLAWBAR0_PRELIM & CONFIG_SYS_LBLAWAR0_PRELIM must be defined |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 291 | #endif |
| 292 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 293 | #if defined(CONFIG_SYS_LBLAWBAR1_PRELIM) && defined(CONFIG_SYS_LBLAWAR1_PRELIM) |
| 294 | im->sysconf.lblaw[1].bar = CONFIG_SYS_LBLAWBAR1_PRELIM; |
| 295 | im->sysconf.lblaw[1].ar = CONFIG_SYS_LBLAWAR1_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 296 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 297 | #if defined(CONFIG_SYS_LBLAWBAR2_PRELIM) && defined(CONFIG_SYS_LBLAWAR2_PRELIM) |
| 298 | im->sysconf.lblaw[2].bar = CONFIG_SYS_LBLAWBAR2_PRELIM; |
| 299 | im->sysconf.lblaw[2].ar = CONFIG_SYS_LBLAWAR2_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 300 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 301 | #if defined(CONFIG_SYS_LBLAWBAR3_PRELIM) && defined(CONFIG_SYS_LBLAWAR3_PRELIM) |
| 302 | im->sysconf.lblaw[3].bar = CONFIG_SYS_LBLAWBAR3_PRELIM; |
| 303 | im->sysconf.lblaw[3].ar = CONFIG_SYS_LBLAWAR3_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 304 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 305 | #if defined(CONFIG_SYS_LBLAWBAR4_PRELIM) && defined(CONFIG_SYS_LBLAWAR4_PRELIM) |
| 306 | im->sysconf.lblaw[4].bar = CONFIG_SYS_LBLAWBAR4_PRELIM; |
| 307 | im->sysconf.lblaw[4].ar = CONFIG_SYS_LBLAWAR4_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 308 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 309 | #if defined(CONFIG_SYS_LBLAWBAR5_PRELIM) && defined(CONFIG_SYS_LBLAWAR5_PRELIM) |
| 310 | im->sysconf.lblaw[5].bar = CONFIG_SYS_LBLAWBAR5_PRELIM; |
| 311 | im->sysconf.lblaw[5].ar = CONFIG_SYS_LBLAWAR5_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 312 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 313 | #if defined(CONFIG_SYS_LBLAWBAR6_PRELIM) && defined(CONFIG_SYS_LBLAWAR6_PRELIM) |
| 314 | im->sysconf.lblaw[6].bar = CONFIG_SYS_LBLAWBAR6_PRELIM; |
| 315 | im->sysconf.lblaw[6].ar = CONFIG_SYS_LBLAWAR6_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 316 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 317 | #if defined(CONFIG_SYS_LBLAWBAR7_PRELIM) && defined(CONFIG_SYS_LBLAWAR7_PRELIM) |
| 318 | im->sysconf.lblaw[7].bar = CONFIG_SYS_LBLAWBAR7_PRELIM; |
| 319 | im->sysconf.lblaw[7].ar = CONFIG_SYS_LBLAWAR7_PRELIM; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 320 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 321 | #ifdef CONFIG_SYS_GPIO1_PRELIM |
| 322 | im->gpio[0].dat = CONFIG_SYS_GPIO1_DAT; |
| 323 | im->gpio[0].dir = CONFIG_SYS_GPIO1_DIR; |
Kumar Gala | a15b44d | 2006-01-11 11:21:14 -0600 | [diff] [blame] | 324 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 325 | #ifdef CONFIG_SYS_GPIO2_PRELIM |
| 326 | im->gpio[1].dat = CONFIG_SYS_GPIO2_DAT; |
| 327 | im->gpio[1].dir = CONFIG_SYS_GPIO2_DIR; |
Kumar Gala | a15b44d | 2006-01-11 11:21:14 -0600 | [diff] [blame] | 328 | #endif |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 329 | #ifdef CONFIG_USB_EHCI_FSL |
Valeriy Glushkov | d89e1c3 | 2009-06-30 15:48:40 +0300 | [diff] [blame] | 330 | #ifndef CONFIG_MPC834x |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 331 | uint32_t temp; |
Wolfgang Denk | 1db3fca | 2010-10-24 16:07:23 +0200 | [diff] [blame^] | 332 | struct usb_ehci *ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB_ADDR; |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 333 | |
| 334 | /* Configure interface. */ |
Vivek Mahajan | db7b43e | 2009-06-24 10:08:40 +0530 | [diff] [blame] | 335 | setbits_be32(&ehci->control, REFSEL_16MHZ | UTMI_PHY_EN); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 336 | |
| 337 | /* Wait for clock to stabilize */ |
| 338 | do { |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 339 | temp = __raw_readl(&ehci->control); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 340 | udelay(1000); |
| 341 | } while (!(temp & PHY_CLK_VALID)); |
| 342 | #endif |
Valeriy Glushkov | d89e1c3 | 2009-06-30 15:48:40 +0300 | [diff] [blame] | 343 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 344 | } |
| 345 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 346 | int cpu_init_r (void) |
| 347 | { |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 348 | #ifdef CONFIG_QE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 349 | uint qe_base = CONFIG_SYS_IMMR + 0x00100000; /* QE immr base */ |
Kim Phillips | c7190f0 | 2009-09-25 18:19:44 -0500 | [diff] [blame] | 350 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 351 | qe_init(qe_base); |
| 352 | qe_reset(); |
| 353 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 354 | return 0; |
| 355 | } |
Dave Liu | 9be39a6 | 2007-06-25 10:41:56 +0800 | [diff] [blame] | 356 | |
| 357 | /* |
Nick Spence | 4649705 | 2008-08-28 14:09:19 -0700 | [diff] [blame] | 358 | * Print out the bus arbiter event |
| 359 | */ |
| 360 | #if defined(CONFIG_DISPLAY_AER_FULL) |
| 361 | static int print_83xx_arb_event(int force) |
| 362 | { |
| 363 | static char* event[] = { |
| 364 | "Address Time Out", |
| 365 | "Data Time Out", |
| 366 | "Address Only Transfer Type", |
| 367 | "External Control Word Transfer Type", |
| 368 | "Reserved Transfer Type", |
| 369 | "Transfer Error", |
| 370 | "reserved", |
| 371 | "reserved" |
| 372 | }; |
| 373 | static char* master[] = { |
| 374 | "e300 Core Data Transaction", |
| 375 | "reserved", |
| 376 | "e300 Core Instruction Fetch", |
| 377 | "reserved", |
| 378 | "TSEC1", |
| 379 | "TSEC2", |
| 380 | "USB MPH", |
| 381 | "USB DR", |
| 382 | "Encryption Core", |
| 383 | "I2C Boot Sequencer", |
| 384 | "JTAG", |
| 385 | "reserved", |
| 386 | "eSDHC", |
| 387 | "PCI1", |
| 388 | "PCI2", |
| 389 | "DMA", |
| 390 | "QUICC Engine 00", |
| 391 | "QUICC Engine 01", |
| 392 | "QUICC Engine 10", |
| 393 | "QUICC Engine 11", |
| 394 | "reserved", |
| 395 | "reserved", |
| 396 | "reserved", |
| 397 | "reserved", |
| 398 | "SATA1", |
| 399 | "SATA2", |
| 400 | "SATA3", |
| 401 | "SATA4", |
| 402 | "reserved", |
| 403 | "PCI Express 1", |
| 404 | "PCI Express 2", |
| 405 | "TDM-DMAC" |
| 406 | }; |
| 407 | static char *transfer[] = { |
| 408 | "Address-only, Clean Block", |
| 409 | "Address-only, lwarx reservation set", |
| 410 | "Single-beat or Burst write", |
| 411 | "reserved", |
| 412 | "Address-only, Flush Block", |
| 413 | "reserved", |
| 414 | "Burst write", |
| 415 | "reserved", |
| 416 | "Address-only, sync", |
| 417 | "Address-only, tlbsync", |
| 418 | "Single-beat or Burst read", |
| 419 | "Single-beat or Burst read", |
| 420 | "Address-only, Kill Block", |
| 421 | "Address-only, icbi", |
| 422 | "Burst read", |
| 423 | "reserved", |
| 424 | "Address-only, eieio", |
| 425 | "reserved", |
| 426 | "Single-beat write", |
| 427 | "reserved", |
| 428 | "ecowx - Illegal single-beat write", |
| 429 | "reserved", |
| 430 | "reserved", |
| 431 | "reserved", |
| 432 | "Address-only, TLB Invalidate", |
| 433 | "reserved", |
| 434 | "Single-beat or Burst read", |
| 435 | "reserved", |
| 436 | "eciwx - Illegal single-beat read", |
| 437 | "reserved", |
| 438 | "Burst read", |
| 439 | "reserved" |
| 440 | }; |
| 441 | |
| 442 | int etype = (gd->arbiter_event_attributes & AEATR_EVENT) |
| 443 | >> AEATR_EVENT_SHIFT; |
| 444 | int mstr_id = (gd->arbiter_event_attributes & AEATR_MSTR_ID) |
| 445 | >> AEATR_MSTR_ID_SHIFT; |
| 446 | int tbst = (gd->arbiter_event_attributes & AEATR_TBST) |
| 447 | >> AEATR_TBST_SHIFT; |
| 448 | int tsize = (gd->arbiter_event_attributes & AEATR_TSIZE) |
| 449 | >> AEATR_TSIZE_SHIFT; |
| 450 | int ttype = (gd->arbiter_event_attributes & AEATR_TTYPE) |
| 451 | >> AEATR_TTYPE_SHIFT; |
| 452 | |
| 453 | if (!force && !gd->arbiter_event_address) |
| 454 | return 0; |
| 455 | |
| 456 | puts("Arbiter Event Status:\n"); |
| 457 | printf(" Event Address: 0x%08lX\n", gd->arbiter_event_address); |
| 458 | printf(" Event Type: 0x%1x = %s\n", etype, event[etype]); |
| 459 | printf(" Master ID: 0x%02x = %s\n", mstr_id, master[mstr_id]); |
| 460 | printf(" Transfer Size: 0x%1x = %d bytes\n", (tbst<<3) | tsize, |
| 461 | tbst ? (tsize ? tsize : 8) : 16 + 8 * tsize); |
| 462 | printf(" Transfer Type: 0x%02x = %s\n", ttype, transfer[ttype]); |
| 463 | |
| 464 | return gd->arbiter_event_address; |
| 465 | } |
| 466 | |
| 467 | #elif defined(CONFIG_DISPLAY_AER_BRIEF) |
| 468 | |
| 469 | static int print_83xx_arb_event(int force) |
| 470 | { |
| 471 | if (!force && !gd->arbiter_event_address) |
| 472 | return 0; |
| 473 | |
| 474 | printf("Arbiter Event Status: AEATR=0x%08lX, AEADR=0x%08lX\n", |
| 475 | gd->arbiter_event_attributes, gd->arbiter_event_address); |
| 476 | |
| 477 | return gd->arbiter_event_address; |
| 478 | } |
| 479 | #endif /* CONFIG_DISPLAY_AER_xxxx */ |
| 480 | |
| 481 | /* |
Dave Liu | 9be39a6 | 2007-06-25 10:41:56 +0800 | [diff] [blame] | 482 | * Figure out the cause of the reset |
| 483 | */ |
| 484 | int prt_83xx_rsr(void) |
| 485 | { |
| 486 | static struct { |
| 487 | ulong mask; |
| 488 | char *desc; |
| 489 | } bits[] = { |
| 490 | { |
| 491 | RSR_SWSR, "Software Soft"}, { |
| 492 | RSR_SWHR, "Software Hard"}, { |
| 493 | RSR_JSRS, "JTAG Soft"}, { |
| 494 | RSR_CSHR, "Check Stop"}, { |
| 495 | RSR_SWRS, "Software Watchdog"}, { |
| 496 | RSR_BMRS, "Bus Monitor"}, { |
| 497 | RSR_SRS, "External/Internal Soft"}, { |
| 498 | RSR_HRS, "External/Internal Hard"} |
| 499 | }; |
| 500 | static int n = sizeof bits / sizeof bits[0]; |
| 501 | ulong rsr = gd->reset_status; |
| 502 | int i; |
| 503 | char *sep; |
| 504 | |
| 505 | puts("Reset Status:"); |
| 506 | |
| 507 | sep = " "; |
| 508 | for (i = 0; i < n; i++) |
| 509 | if (rsr & bits[i].mask) { |
| 510 | printf("%s%s", sep, bits[i].desc); |
| 511 | sep = ", "; |
| 512 | } |
Nick Spence | 4649705 | 2008-08-28 14:09:19 -0700 | [diff] [blame] | 513 | puts("\n"); |
| 514 | |
| 515 | #if defined(CONFIG_DISPLAY_AER_FULL) || defined(CONFIG_DISPLAY_AER_BRIEF) |
| 516 | print_83xx_arb_event(rsr & RSR_BMRS); |
| 517 | #endif |
| 518 | puts("\n"); |
| 519 | |
Dave Liu | 9be39a6 | 2007-06-25 10:41:56 +0800 | [diff] [blame] | 520 | return 0; |
| 521 | } |