blob: 8cc68530e6186ee3946830f9e811a469e3d75312 [file] [log] [blame]
Rafal Jaworowski8993e542007-07-27 14:43:59 +02001/*
Wolfgang Denk843efb12009-05-16 10:47:43 +02002 * (C) Copyright 2007-2009 DENX Software Engineering
Rafal Jaworowski8993e542007-07-27 14:43:59 +02003 *
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
21 *
22 */
23
24#include <common.h>
Rafal Jaworowski8993e542007-07-27 14:43:59 +020025#include <asm/bitops.h>
26#include <command.h>
Wolfgang Denk843efb12009-05-16 10:47:43 +020027#include <asm/io.h>
John Rigby8a490422008-08-28 13:17:07 -060028#include <asm/processor.h>
Wolfgang Denk7629f1c2009-06-14 20:58:47 +020029#include <asm/mpc512x.h>
Wolfgang Denke343ab82008-01-13 00:55:47 +010030#include <fdt_support.h>
Martha Marxf31c49d2008-05-29 14:23:25 -040031#ifdef CONFIG_MISC_INIT_R
32#include <i2c.h>
33#endif
Martha M Stana5aa3992009-09-21 14:08:00 -040034#include <net.h>
Wolfgang Denk9b55a252008-07-11 01:16:00 +020035
Stefan Roese229549a2009-06-09 16:57:47 +020036#include <linux/mtd/mtd.h>
37#include <linux/mtd/nand.h>
38
Ralph Kondziella70a4da42009-01-26 12:34:36 -070039DECLARE_GLOBAL_DATA_PTR;
40
Rafal Jaworowski8993e542007-07-27 14:43:59 +020041/* Clocks in use */
42#define SCCR1_CLOCKS_EN (CLOCK_SCCR1_CFG_EN | \
Rafal Jaworowski8993e542007-07-27 14:43:59 +020043 CLOCK_SCCR1_DDR_EN | \
Wolfgang Denk8d103072008-01-13 23:37:50 +010044 CLOCK_SCCR1_FEC_EN | \
Stefan Roese229549a2009-06-09 16:57:47 +020045 CLOCK_SCCR1_LPC_EN | \
46 CLOCK_SCCR1_NFC_EN | \
Ralph Kondziella70a4da42009-01-26 12:34:36 -070047 CLOCK_SCCR1_PATA_EN | \
John Rigby5f91db72008-02-26 09:38:14 -070048 CLOCK_SCCR1_PCI_EN | \
Stefan Roese229549a2009-06-09 16:57:47 +020049 CLOCK_SCCR1_PSC_EN(CONFIG_PSC_CONSOLE) | \
50 CLOCK_SCCR1_PSCFIFO_EN | \
Wolfgang Denk8d103072008-01-13 23:37:50 +010051 CLOCK_SCCR1_TPR_EN)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020052
Stefan Roese229549a2009-06-09 16:57:47 +020053#define SCCR2_CLOCKS_EN (CLOCK_SCCR2_DIU_EN | \
54 CLOCK_SCCR2_I2C_EN | \
55 CLOCK_SCCR2_MEM_EN | \
56 CLOCK_SCCR2_SPDIF_EN)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020057
Stefan Roese229549a2009-06-09 16:57:47 +020058void __mpc5121_nfc_select_chip(struct mtd_info *mtd, int chip);
59
60/* Active chip number set in board_nand_select_device() (mpc5121_nfc.c) */
61extern int mpc5121_nfc_chip;
62
63/* Control chips select signal on MPC5121ADS board */
64void mpc5121_nfc_select_chip(struct mtd_info *mtd, int chip)
65{
66 unsigned char *csreg = (u8 *)CONFIG_SYS_CPLD_BASE + 0x09;
67 u8 v;
68
69 v = in_8(csreg);
70 v |= 0x0F;
71
72 if (chip >= 0) {
73 __mpc5121_nfc_select_chip(mtd, 0);
74 v &= ~(1 << mpc5121_nfc_chip);
75 } else {
76 __mpc5121_nfc_select_chip(mtd, -1);
77 }
78
79 out_8(csreg, v);
80}
Rafal Jaworowski8993e542007-07-27 14:43:59 +020081
Wolfgang Denk7629f1c2009-06-14 20:58:47 +020082int board_early_init_f(void)
Rafal Jaworowski8993e542007-07-27 14:43:59 +020083{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Wolfgang Denk7629f1c2009-06-14 20:58:47 +020085 u32 spridr;
Rafal Jaworowski8993e542007-07-27 14:43:59 +020086
87 /*
88 * Initialize Local Window for the CPLD registers access (CS2 selects
89 * the CPLD chip)
90 */
Wolfgang Denk843efb12009-05-16 10:47:43 +020091 out_be32(&im->sysconf.lpcs2aw,
92 CSAW_START(CONFIG_SYS_CPLD_BASE) |
93 CSAW_STOP(CONFIG_SYS_CPLD_BASE, CONFIG_SYS_CPLD_SIZE)
94 );
95 out_be32(&im->lpc.cs_cfg[2], CONFIG_SYS_CS2_CFG);
Wolfgang Denk7629f1c2009-06-14 20:58:47 +020096 sync_law(&im->sysconf.lpcs2aw);
Rafal Jaworowski8993e542007-07-27 14:43:59 +020097
98 /*
99 * Disable Boot NOR FLASH write protect - CPLD Reg 8 NOR FLASH Control
100 *
101 * Without this the flash identification routine fails, as it needs to issue
102 * write commands in order to establish the device ID.
103 */
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200104
mark.vels@team-embedded.nl812493a2010-10-05 17:46:19 +0200105#ifdef CONFIG_MPC5121ADS_REV2
Wolfgang Denk843efb12009-05-16 10:47:43 +0200106 out_8((u8 *)(CONFIG_SYS_CPLD_BASE + 0x08), 0xC1);
Martha Marxf31c49d2008-05-29 14:23:25 -0400107#else
Wolfgang Denk843efb12009-05-16 10:47:43 +0200108 if (in_8((u8 *)(CONFIG_SYS_CPLD_BASE + 0x08)) & 0x04) {
109 out_8((u8 *)(CONFIG_SYS_CPLD_BASE + 0x08), 0xC1);
Martha Marxf31c49d2008-05-29 14:23:25 -0400110 } else {
111 /* running from Backup flash */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200112 out_8((u8 *)(CONFIG_SYS_CPLD_BASE + 0x08), 0x32);
Martha Marxf31c49d2008-05-29 14:23:25 -0400113 }
114#endif
115 /*
116 * Configure Flash Speed
117 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200118 out_be32(&im->lpc.cs_cfg[0], CONFIG_SYS_CS0_CFG);
119
120 spridr = in_be32(&im->sysconf.spridr);
121
122 if (SVR_MJREV (spridr) >= 2)
123 out_be32 (&im->lpc.altr, CONFIG_SYS_CS_ALETIMING);
124
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200125 /*
126 * Enable clocks
127 */
Wolfgang Denk843efb12009-05-16 10:47:43 +0200128 out_be32 (&im->clk.sccr[0], SCCR1_CLOCKS_EN);
129 out_be32 (&im->clk.sccr[1], SCCR2_CLOCKS_EN);
Martha Marxabfbd0ae2009-01-26 10:45:07 -0700130#if defined(CONFIG_IIM) || defined(CONFIG_CMD_FUSE)
Wolfgang Denk843efb12009-05-16 10:47:43 +0200131 setbits_be32 (&im->clk.sccr[1], CLOCK_SCCR2_IIM_EN);
Martha Marxabfbd0ae2009-01-26 10:45:07 -0700132#endif
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200133
134 return 0;
135}
136
Martha M Stana5aa3992009-09-21 14:08:00 -0400137int is_micron(void){
138
139 ushort brd_rev = *(vu_short *)(CONFIG_SYS_CPLD_BASE + 0x00);
140 uchar macaddr[6];
141 u32 brddate, macchk, ismicron;
142
143 /*
144 * MAC address has serial number with date of manufacture
145 * Boards made before Nov-08 #1180 use Micron memory;
146 * 001e59 is the STx vendor #
147 * Default is Elpida since it works for both but is slightly slower
148 */
149 ismicron = 0;
150 if (brd_rev >= 0x0400 && eth_getenv_enetaddr("ethaddr", macaddr)) {
151 brddate = (macaddr[3] << 16) + (macaddr[4] << 8) + macaddr[5];
152 macchk = (macaddr[0] << 16) + (macaddr[1] << 8) + macaddr[2];
153 debug("brddate = %d\n\t", brddate);
154
155 if (macchk == 0x001e59 && brddate <= 8111180)
156 ismicron = 1;
157 } else if (brd_rev < 0x400) {
158 ismicron = 1;
159 }
160 debug("Using %s Memory settings\n\t",
161 ismicron ? "Micron" : "Elpida");
162 return(ismicron);
163}
164
Wolfgang Denk7629f1c2009-06-14 20:58:47 +0200165phys_size_t initdram(int board_type)
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200166{
167 u32 msize = 0;
Martha M Stana5aa3992009-09-21 14:08:00 -0400168 /*
169 * Elpida MDDRC and initialization settings are an alternative
170 * to the Default Micron ones for all but the earliest Rev 4 boards
171 */
Wolfgang Denkda01f532009-10-04 22:56:08 +0200172 ddr512x_config_t elpida_mddrc_config = {
173 .ddr_sys_config = CONFIG_SYS_MDDRC_SYS_CFG_ELPIDA,
174 .ddr_time_config0 = CONFIG_SYS_MDDRC_TIME_CFG0,
175 .ddr_time_config1 = CONFIG_SYS_MDDRC_TIME_CFG1_ELPIDA,
176 .ddr_time_config2 = CONFIG_SYS_MDDRC_TIME_CFG2_ELPIDA,
Martha M Stana5aa3992009-09-21 14:08:00 -0400177 };
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200178
Martha M Stana5aa3992009-09-21 14:08:00 -0400179 u32 elpida_init_sequence[] = {
180 CONFIG_SYS_DDRCMD_NOP,
181 CONFIG_SYS_DDRCMD_NOP,
182 CONFIG_SYS_DDRCMD_NOP,
183 CONFIG_SYS_DDRCMD_NOP,
184 CONFIG_SYS_DDRCMD_NOP,
185 CONFIG_SYS_DDRCMD_NOP,
186 CONFIG_SYS_DDRCMD_NOP,
187 CONFIG_SYS_DDRCMD_NOP,
188 CONFIG_SYS_DDRCMD_NOP,
189 CONFIG_SYS_DDRCMD_NOP,
190 CONFIG_SYS_DDRCMD_PCHG_ALL,
191 CONFIG_SYS_DDRCMD_NOP,
192 CONFIG_SYS_DDRCMD_RFSH,
193 CONFIG_SYS_DDRCMD_NOP,
194 CONFIG_SYS_DDRCMD_RFSH,
195 CONFIG_SYS_DDRCMD_NOP,
196 CONFIG_SYS_DDRCMD_EM2,
197 CONFIG_SYS_DDRCMD_EM3,
198 CONFIG_SYS_DDRCMD_EN_DLL,
199 CONFIG_SYS_ELPIDA_RES_DLL,
200 CONFIG_SYS_DDRCMD_PCHG_ALL,
201 CONFIG_SYS_DDRCMD_RFSH,
202 CONFIG_SYS_DDRCMD_RFSH,
203 CONFIG_SYS_DDRCMD_RFSH,
204 CONFIG_SYS_ELPIDA_INIT_DEV_OP,
205 CONFIG_SYS_DDRCMD_NOP,
206 CONFIG_SYS_DDRCMD_NOP,
207 CONFIG_SYS_DDRCMD_NOP,
208 CONFIG_SYS_DDRCMD_NOP,
209 CONFIG_SYS_DDRCMD_NOP,
210 CONFIG_SYS_DDRCMD_NOP,
211 CONFIG_SYS_DDRCMD_NOP,
212 CONFIG_SYS_DDRCMD_NOP,
213 CONFIG_SYS_DDRCMD_NOP,
214 CONFIG_SYS_DDRCMD_NOP,
215 CONFIG_SYS_DDRCMD_OCD_DEFAULT,
216 CONFIG_SYS_ELPIDA_OCD_EXIT,
217 CONFIG_SYS_DDRCMD_NOP,
218 CONFIG_SYS_DDRCMD_NOP,
219 CONFIG_SYS_DDRCMD_NOP,
220 CONFIG_SYS_DDRCMD_NOP,
221 CONFIG_SYS_DDRCMD_NOP,
222 CONFIG_SYS_DDRCMD_NOP,
223 CONFIG_SYS_DDRCMD_NOP,
224 CONFIG_SYS_DDRCMD_NOP,
225 CONFIG_SYS_DDRCMD_NOP,
226 CONFIG_SYS_DDRCMD_NOP
227 };
228
229 if (is_micron()) {
230 msize = fixed_sdram(NULL, NULL, 0);
231 } else {
Wolfgang Denkda01f532009-10-04 22:56:08 +0200232 msize = fixed_sdram(&elpida_mddrc_config,
Martha M Stana5aa3992009-09-21 14:08:00 -0400233 elpida_init_sequence,
234 sizeof(elpida_init_sequence)/sizeof(u32));
235 }
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200236
237 return msize;
238}
239
York Sun0e1bad42008-05-05 10:20:01 -0500240int misc_init_r(void)
241{
242 u8 tmp_val;
243
244 /* Using this for DIU init before the driver in linux takes over
245 * Enable the TFP410 Encoder (I2C address 0x38)
246 */
247
248 i2c_set_bus_num(2);
249 tmp_val = 0xBF;
250 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
251 /* Verify if enabled */
252 tmp_val = 0;
253 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
254 debug("DVI Encoder Read: 0x%02lx\n", tmp_val);
255
256 tmp_val = 0x10;
257 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
258 /* Verify if enabled */
259 tmp_val = 0;
260 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
261 debug("DVI Encoder Read: 0x%02lx\n", tmp_val);
262
York Sun0e1bad42008-05-05 10:20:01 -0500263 return 0;
264}
Wolfgang Denk72601d02009-05-16 10:47:41 +0200265
Kenneth Johansson66894842008-07-15 12:13:38 +0200266static iopin_t ioregs_init[] = {
267 /* FUNC1=FEC_RX_DV Sets Next 3 to FEC pads */
268 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200269 offsetof(struct ioctrl512x, io_control_spdif_txclk), 3, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200270 IO_PIN_FMUX(1) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
271 IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
272 },
273 /* Set highest Slew on 9 PATA pins */
274 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200275 offsetof(struct ioctrl512x, io_control_pata_ce1), 9, 1,
Kenneth Johansson66894842008-07-15 12:13:38 +0200276 IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
277 IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
278 },
279 /* FUNC1=FEC_COL Sets Next 15 to FEC pads */
280 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200281 offsetof(struct ioctrl512x, io_control_psc0_0), 15, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200282 IO_PIN_FMUX(1) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
283 IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
284 },
285 /* FUNC1=SPDIF_TXCLK */
286 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200287 offsetof(struct ioctrl512x, io_control_lpc_cs1), 1, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200288 IO_PIN_FMUX(1) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
289 IO_PIN_PUE(0) | IO_PIN_ST(1) | IO_PIN_DS(3)
290 },
291 /* FUNC2=SPDIF_TX and sets Next pin to SPDIF_RX */
292 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200293 offsetof(struct ioctrl512x, io_control_i2c1_scl), 2, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200294 IO_PIN_FMUX(2) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
295 IO_PIN_PUE(0) | IO_PIN_ST(1) | IO_PIN_DS(3)
296 },
297 /* FUNC2=DIU CLK */
298 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200299 offsetof(struct ioctrl512x, io_control_psc6_0), 1, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200300 IO_PIN_FMUX(2) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
301 IO_PIN_PUE(0) | IO_PIN_ST(1) | IO_PIN_DS(3)
302 },
303 /* FUNC2=DIU_HSYNC */
304 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200305 offsetof(struct ioctrl512x, io_control_psc6_1), 1, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200306 IO_PIN_FMUX(2) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
307 IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
308 },
309 /* FUNC2=DIUVSYNC Sets Next 26 to DIU Pads */
310 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200311 offsetof(struct ioctrl512x, io_control_psc6_4), 26, 0,
Kenneth Johansson66894842008-07-15 12:13:38 +0200312 IO_PIN_FMUX(2) | IO_PIN_HOLD(0) | IO_PIN_PUD(0) |
313 IO_PIN_PUE(0) | IO_PIN_ST(0) | IO_PIN_DS(3)
314 }
315};
York Sun0e1bad42008-05-05 10:20:01 -0500316
John Rigby14d19cd2009-01-23 10:33:15 -0700317static iopin_t rev2_silicon_pci_ioregs_init[] = {
318 /* FUNC0=PCI Sets next 54 to PCI pads */
319 {
Wolfgang Denk843efb12009-05-16 10:47:43 +0200320 offsetof(struct ioctrl512x, io_control_pci_ad31), 54, 0,
John Rigby14d19cd2009-01-23 10:33:15 -0700321 IO_PIN_FMUX(0) | IO_PIN_HOLD(0) | IO_PIN_DS(0)
322 }
323};
324
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200325int checkboard (void)
326{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200327 ushort brd_rev = *(vu_short *) (CONFIG_SYS_CPLD_BASE + 0x00);
328 uchar cpld_rev = *(vu_char *) (CONFIG_SYS_CPLD_BASE + 0x02);
John Rigby14d19cd2009-01-23 10:33:15 -0700329 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Wolfgang Denk843efb12009-05-16 10:47:43 +0200330 u32 spridr = in_be32(&im->sysconf.spridr);
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200331
mark.vels@team-embedded.nl812493a2010-10-05 17:46:19 +0200332 printf ("Board: MPC5121ADS rev. 0x%04x (CPLD rev. 0x%02x)\n",
Wolfgang Denkb1b54e32007-08-02 21:27:46 +0200333 brd_rev, cpld_rev);
Kenneth Johansson66894842008-07-15 12:13:38 +0200334
Wolfgang Denk72601d02009-05-16 10:47:41 +0200335 /* initialize function mux & slew rate IO inter alia on IO Pins */
336 iopin_initialize(ioregs_init, ARRAY_SIZE(ioregs_init));
337
Wolfgang Denk843efb12009-05-16 10:47:43 +0200338 if (SVR_MJREV (spridr) >= 2)
John Rigby14d19cd2009-01-23 10:33:15 -0700339 iopin_initialize(rev2_silicon_pci_ioregs_init, 1);
John Rigby51b67d02007-08-24 18:18:43 -0600340
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200341 return 0;
342}
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +0100343
344#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
345void ft_board_setup(void *blob, bd_t *bd)
346{
347 ft_cpu_setup(blob, bd);
Grzegorz Bernacki281ff9a2008-01-08 17:16:15 +0100348}
349#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */