Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004-2006 Freescale Semiconductor, Inc. |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 3 | * Copyright (C) 2007-2009 DENX Software Engineering |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | * Derived from the MPC83xx code. |
| 24 | * |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 28 | #include <asm/io.h> |
Anatolij Gustschin | 3fdce77 | 2013-02-08 00:03:43 +0000 | [diff] [blame] | 29 | #include <asm/mpc512x.h> |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 30 | #include <asm/processor.h> |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 31 | |
| 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
| 34 | /* |
| 35 | * Set up the memory map, initialize registers, |
| 36 | */ |
| 37 | void cpu_init_f (volatile immap_t * im) |
| 38 | { |
| 39 | u32 ips_div; |
| 40 | |
| 41 | /* Pointer is writable since we allocated a register for it */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 43 | |
| 44 | /* Clear initial global data */ |
| 45 | memset ((void *) gd, 0, sizeof (gd_t)); |
| 46 | |
Anatolij Gustschin | 3fdce77 | 2013-02-08 00:03:43 +0000 | [diff] [blame] | 47 | /* Local Window and chip select configuration */ |
| 48 | #if defined(CONFIG_SYS_CS0_START) && defined(CONFIG_SYS_CS0_SIZE) |
| 49 | out_be32(&im->sysconf.lpcs0aw, |
| 50 | CSAW_START(CONFIG_SYS_CS0_START) | |
| 51 | CSAW_STOP(CONFIG_SYS_CS0_START, CONFIG_SYS_CS0_SIZE)); |
| 52 | sync_law(&im->sysconf.lpcs0aw); |
| 53 | #endif |
| 54 | #if defined(CONFIG_SYS_CS0_CFG) |
| 55 | out_be32(&im->lpc.cs_cfg[0], CONFIG_SYS_CS0_CFG); |
| 56 | #endif |
| 57 | |
| 58 | #if defined(CONFIG_SYS_CS1_START) && defined(CONFIG_SYS_CS1_SIZE) |
| 59 | out_be32(&im->sysconf.lpcs1aw, |
| 60 | CSAW_START(CONFIG_SYS_CS1_START) | |
| 61 | CSAW_STOP(CONFIG_SYS_CS1_START, CONFIG_SYS_CS1_SIZE)); |
| 62 | sync_law(&im->sysconf.lpcs1aw); |
| 63 | #endif |
| 64 | #if defined(CONFIG_SYS_CS1_CFG) |
| 65 | out_be32(&im->lpc.cs_cfg[1], CONFIG_SYS_CS1_CFG); |
| 66 | #endif |
| 67 | |
| 68 | #if defined(CONFIG_SYS_CS2_START) && (defined CONFIG_SYS_CS2_SIZE) |
| 69 | out_be32(&im->sysconf.lpcs2aw, |
| 70 | CSAW_START(CONFIG_SYS_CS2_START) | |
| 71 | CSAW_STOP(CONFIG_SYS_CS2_START, CONFIG_SYS_CS2_SIZE)); |
| 72 | sync_law(&im->sysconf.lpcs2aw); |
| 73 | #endif |
| 74 | #if defined(CONFIG_SYS_CS2_CFG) |
| 75 | out_be32(&im->lpc.cs_cfg[2], CONFIG_SYS_CS2_CFG); |
| 76 | #endif |
| 77 | |
| 78 | #if defined(CONFIG_SYS_CS3_START) && defined(CONFIG_SYS_CS3_SIZE) |
| 79 | out_be32(&im->sysconf.lpcs3aw, |
| 80 | CSAW_START(CONFIG_SYS_CS3_START) | |
| 81 | CSAW_STOP(CONFIG_SYS_CS3_START, CONFIG_SYS_CS3_SIZE)); |
| 82 | sync_law(&im->sysconf.lpcs3aw); |
| 83 | #endif |
| 84 | #if defined(CONFIG_SYS_CS3_CFG) |
| 85 | out_be32(&im->lpc.cs_cfg[3], CONFIG_SYS_CS3_CFG); |
| 86 | #endif |
| 87 | |
| 88 | #if defined(CONFIG_SYS_CS4_START) && defined(CONFIG_SYS_CS4_SIZE) |
| 89 | out_be32(&im->sysconf.lpcs4aw, |
| 90 | CSAW_START(CONFIG_SYS_CS4_START) | |
| 91 | CSAW_STOP(CONFIG_SYS_CS4_START, CONFIG_SYS_CS4_SIZE)); |
| 92 | sync_law(&im->sysconf.lpcs4aw); |
| 93 | #endif |
| 94 | #if defined(CONFIG_SYS_CS4_CFG) |
| 95 | out_be32(&im->lpc.cs_cfg[4], CONFIG_SYS_CS4_CFG); |
| 96 | #endif |
| 97 | |
| 98 | #if defined(CONFIG_SYS_CS5_START) && defined(CONFIG_SYS_CS5_SIZE) |
| 99 | out_be32(&im->sysconf.lpcs5aw, |
| 100 | CSAW_START(CONFIG_SYS_CS5_START) | |
| 101 | CSAW_STOP(CONFIG_SYS_CS5_START, CONFIG_SYS_CS5_SIZE)); |
| 102 | sync_law(&im->sysconf.lpcs5aw); |
| 103 | #endif |
| 104 | #if defined(CONFIG_SYS_CS5_CFG) |
| 105 | out_be32(&im->lpc.cs_cfg[5], CONFIG_SYS_CS5_CFG); |
| 106 | #endif |
| 107 | |
| 108 | #if defined(CONFIG_SYS_CS6_START) && defined(CONFIG_SYS_CS6_SIZE) |
| 109 | out_be32(&im->sysconf.lpcs6aw, |
| 110 | CSAW_START(CONFIG_SYS_CS6_START) | |
| 111 | CSAW_STOP(CONFIG_SYS_CS6_START, CONFIG_SYS_CS6_SIZE)); |
| 112 | sync_law(&im->sysconf.lpcs6aw); |
| 113 | #endif |
| 114 | #if defined(CONFIG_SYS_CS6_CFG) |
| 115 | out_be32(&im->lpc.cs_cfg[6], CONFIG_SYS_CS6_CFG); |
| 116 | #endif |
| 117 | |
| 118 | #if defined(CONFIG_SYS_CS7_START) && defined(CONFIG_SYS_CS7_SIZE) |
| 119 | out_be32(&im->sysconf.lpcs7aw, |
| 120 | CSAW_START(CONFIG_SYS_CS7_START) | |
| 121 | CSAW_STOP(CONFIG_SYS_CS7_START, CONFIG_SYS_CS7_SIZE)); |
| 122 | sync_law(&im->sysconf.lpcs7aw); |
| 123 | #endif |
| 124 | #if defined(CONFIG_SYS_CS7_CFG) |
| 125 | out_be32(&im->lpc.cs_cfg[7], CONFIG_SYS_CS7_CFG); |
| 126 | #endif |
| 127 | |
| 128 | #if defined CONFIG_SYS_CS_ALETIMING |
| 129 | if (SVR_MJREV(in_be32(&im->sysconf.spridr)) >= 2) |
| 130 | out_be32(&im->lpc.altr, CONFIG_SYS_CS_ALETIMING); |
| 131 | #endif |
| 132 | #if defined CONFIG_SYS_CS_BURST |
| 133 | out_be32(&im->lpc.cs_bcr, CONFIG_SYS_CS_BURST); |
| 134 | #endif |
| 135 | #if defined CONFIG_SYS_CS_DEADCYCLE |
| 136 | out_be32(&im->lpc.cs_dccr, CONFIG_SYS_CS_DEADCYCLE); |
| 137 | #endif |
| 138 | #if defined CONFIG_SYS_CS_HOLDCYCLE |
| 139 | out_be32(&im->lpc.cs_hccr, CONFIG_SYS_CS_HOLDCYCLE); |
| 140 | #endif |
| 141 | |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 142 | /* system performance tweaking */ |
| 143 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | #ifdef CONFIG_SYS_ACR_PIPE_DEP |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 145 | /* Arbiter pipeline depth */ |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 146 | out_be32(&im->arbiter.acr, |
| 147 | (im->arbiter.acr & ~ACR_PIPE_DEP) | |
| 148 | (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT) |
| 149 | ); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 150 | #endif |
| 151 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 152 | #ifdef CONFIG_SYS_ACR_RPTCNT |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 153 | /* Arbiter repeat count */ |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 154 | out_be32(im->arbiter.acr, |
| 155 | (im->arbiter.acr & ~(ACR_RPTCNT)) | |
| 156 | (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT) |
| 157 | ); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 158 | #endif |
| 159 | |
| 160 | /* RSR - Reset Status Register - clear all status */ |
Simon Glass | 4d6eaa3 | 2012-12-13 20:48:56 +0000 | [diff] [blame] | 161 | gd->arch.reset_status = im->reset.rsr; |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 162 | out_be32(&im->reset.rsr, ~RSR_RES); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 163 | |
| 164 | /* |
| 165 | * RMR - Reset Mode Register - enable checkstop reset |
| 166 | */ |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 167 | out_be32(&im->reset.rmr, RMR_CSRE & (1 << RMR_CSRE_SHIFT)); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 168 | |
| 169 | /* Set IPS-CSB divider: IPS = 1/2 CSB */ |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 170 | ips_div = in_be32(&im->clk.scfr[0]); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 171 | ips_div &= ~(SCFR1_IPS_DIV_MASK); |
| 172 | ips_div |= SCFR1_IPS_DIV << SCFR1_IPS_DIV_SHIFT; |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 173 | out_be32(&im->clk.scfr[0], ips_div); |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 174 | |
Anatolij Gustschin | db20e91 | 2013-02-08 00:03:46 +0000 | [diff] [blame] | 175 | #ifdef SCFR1_LPC_DIV |
| 176 | clrsetbits_be32(&im->clk.scfr[0], SCFR1_LPC_DIV_MASK, |
| 177 | SCFR1_LPC_DIV << SCFR1_LPC_DIV_SHIFT); |
| 178 | #endif |
| 179 | |
| 180 | #ifdef SCFR1_NFC_DIV |
| 181 | clrsetbits_be32(&im->clk.scfr[0], SCFR1_NFC_DIV_MASK, |
| 182 | SCFR1_NFC_DIV << SCFR1_NFC_DIV_SHIFT); |
| 183 | #endif |
| 184 | |
| 185 | #ifdef SCFR1_DIU_DIV |
| 186 | clrsetbits_be32(&im->clk.scfr[0], SCFR1_DIU_DIV_MASK, |
| 187 | SCFR1_DIU_DIV << SCFR1_DIU_DIV_SHIFT); |
| 188 | #endif |
| 189 | |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 190 | /* |
| 191 | * Enable Time Base/Decrementer |
| 192 | * |
| 193 | * NOTICE: TB needs to be enabled as early as possible in order to |
| 194 | * have udelay() working; if not enabled, usually leads to a hang, like |
Wolfgang Denk | 530181f | 2007-08-02 21:27:46 +0200 | [diff] [blame] | 195 | * during FLASH chip identification etc. |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 196 | */ |
Wolfgang Denk | b853995 | 2009-05-16 10:47:43 +0200 | [diff] [blame] | 197 | setbits_be32(&im->sysconf.spcr, SPCR_TBEN); |
Anatolij Gustschin | c936642 | 2013-02-08 00:03:45 +0000 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * Enable clocks |
| 201 | */ |
| 202 | out_be32(&im->clk.sccr[0], SCCR1_CLOCKS_EN); |
| 203 | out_be32(&im->clk.sccr[1], SCCR2_CLOCKS_EN); |
Benoît Thébaudeau | 8ac3711 | 2013-04-23 10:17:42 +0000 | [diff] [blame^] | 204 | #if defined(CONFIG_FSL_IIM) || defined(CONFIG_CMD_FUSE) |
Anatolij Gustschin | c936642 | 2013-02-08 00:03:45 +0000 | [diff] [blame] | 205 | setbits_be32(&im->clk.sccr[1], CLOCK_SCCR2_IIM_EN); |
| 206 | #endif |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | int cpu_init_r (void) |
| 210 | { |
| 211 | return 0; |
| 212 | } |