blob: fcaf7fde265bba7ee31d43aaba47333f1b302bb5 [file] [log] [blame]
Stefan Roese5fb692c2007-01-18 10:25:34 +01001/*
2 * Copyright (C) 2004 PaulReynolds@lhsolutions.com
3 *
4 * (C) Copyright 2007
5 * Stefan Roese, DENX Software Engineering, sr@denx.de.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <asm/processor.h>
28#include <spd_sdram.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020029#include <asm/ppc4xx-emac.h>
Ben Warren10efa022008-08-31 20:37:00 -070030#include <netdev.h>
Stefan Roese5fb692c2007-01-18 10:25:34 +010031
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032#ifdef CONFIG_SYS_INIT_SHOW_RESET_REG
Stefan Roese5fb692c2007-01-18 10:25:34 +010033void show_reset_reg(void);
34#endif
35
Wolfgang Denk1218abf2007-09-15 20:48:41 +020036DECLARE_GLOBAL_DATA_PTR;
37
Stefan Roese5fb692c2007-01-18 10:25:34 +010038int lcd_init(void);
39
40int board_early_init_f (void)
41{
42 unsigned long reg;
43 volatile unsigned int *GpioOdr;
44 volatile unsigned int *GpioTcr;
45 volatile unsigned int *GpioOr;
46
47 /*-------------------------------------------------------------------------+
48 | Initialize EBC CONFIG
49 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020050 mtebc(EBC0_CFG, EBC_CFG_LE_UNLOCK |
Stefan Roese5fb692c2007-01-18 10:25:34 +010051 EBC_CFG_PTD_ENABLE | EBC_CFG_RTC_64PERCLK |
52 EBC_CFG_ATC_PREVIOUS | EBC_CFG_DTC_PREVIOUS |
53 EBC_CFG_CTC_PREVIOUS | EBC_CFG_EMC_DEFAULT |
54 EBC_CFG_PME_DISABLE | EBC_CFG_PR_32);
55
56 /*-------------------------------------------------------------------------+
57 | 64MB FLASH. Initialize bank 0 with default values.
58 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020059 mtebc(PB0AP, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(15) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010060 EBC_BXAP_BCE_DISABLE |
61 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
62 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
63 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
64 EBC_BXAP_BEM_WRITEONLY |
65 EBC_BXAP_PEN_DISABLED);
Stefan Roesed1c3b272009-09-09 16:25:29 +020066 mtebc(PB0CR, EBC_BXCR_BAS_ENCODE(CONFIG_SYS_FLASH_BASE) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010067 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_32BIT);
68
69 /*-------------------------------------------------------------------------+
70 | FPGA. Initialize bank 1 with default values.
71 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020072 mtebc(PB1AP, EBC_BXAP_BME_DISABLED|EBC_BXAP_TWT_ENCODE(5) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010073 EBC_BXAP_BCE_DISABLE |
74 EBC_BXAP_CSN_ENCODE(1) | EBC_BXAP_OEN_ENCODE(1) |
75 EBC_BXAP_WBN_ENCODE(1) | EBC_BXAP_WBF_ENCODE(1) |
76 EBC_BXAP_TH_ENCODE(3) | EBC_BXAP_RE_DISABLED |
77 EBC_BXAP_BEM_WRITEONLY |
78 EBC_BXAP_PEN_DISABLED);
Stefan Roesed1c3b272009-09-09 16:25:29 +020079 mtebc(PB1CR, EBC_BXCR_BAS_ENCODE(0x41000000) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010080 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_8BIT);
81
82 /*-------------------------------------------------------------------------+
83 | LCM. Initialize bank 2 with default values.
84 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020085 mtebc(PB2AP, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(64) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010086 EBC_BXAP_BCE_DISABLE |
87 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
88 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
89 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
90 EBC_BXAP_BEM_WRITEONLY |
91 EBC_BXAP_PEN_DISABLED);
Stefan Roesed1c3b272009-09-09 16:25:29 +020092 mtebc(PB2CR, EBC_BXCR_BAS_ENCODE(0x42000000) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010093 EBC_BXCR_BS_1MB | EBC_BXCR_BU_RW|EBC_BXCR_BW_8BIT);
94
95 /*-------------------------------------------------------------------------+
96 | TMP. Initialize bank 3 with default values.
97 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020098 mtebc(PB3AP, EBC_BXAP_BME_DISABLED | EBC_BXAP_TWT_ENCODE(128) |
Stefan Roese5fb692c2007-01-18 10:25:34 +010099 EBC_BXAP_BCE_DISABLE |
100 EBC_BXAP_CSN_ENCODE(3) | EBC_BXAP_OEN_ENCODE(3) |
101 EBC_BXAP_WBN_ENCODE(3) | EBC_BXAP_WBF_ENCODE(3) |
102 EBC_BXAP_TH_ENCODE(7) | EBC_BXAP_RE_DISABLED |
103 EBC_BXAP_BEM_WRITEONLY |
104 EBC_BXAP_PEN_DISABLED);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200105 mtebc(PB3CR, EBC_BXCR_BAS_ENCODE(0x48000000) |
Stefan Roese5fb692c2007-01-18 10:25:34 +0100106 EBC_BXCR_BS_64MB | EBC_BXCR_BU_RW | EBC_BXCR_BW_32BIT);
107
108 /*-------------------------------------------------------------------------+
109 | Connector 4~7. Initialize bank 3~ 7 with default values.
110 +-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +0200111 mtebc(PB4AP,0);
112 mtebc(PB4CR,0);
113 mtebc(PB5AP,0);
114 mtebc(PB5CR,0);
115 mtebc(PB6AP,0);
116 mtebc(PB6CR,0);
117 mtebc(PB7AP,0);
118 mtebc(PB7CR,0);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100119
120 /*--------------------------------------------------------------------
121 * Setup the interrupt controller polarities, triggers, etc.
122 *-------------------------------------------------------------------*/
Stefan Roese5de85142008-06-26 17:36:39 +0200123 /*
124 * Because of the interrupt handling rework to handle 440GX interrupts
125 * with the common code, we needed to change names of the UIC registers.
126 * Here the new relationship:
127 *
128 * U-Boot name 440GX name
129 * -----------------------
130 * UIC0 UICB0
131 * UIC1 UIC0
132 * UIC2 UIC1
133 * UIC3 UIC2
134 */
Stefan Roese952e7762009-09-24 09:55:50 +0200135 mtdcr (UIC1SR, 0xffffffff); /* clear all */
136 mtdcr (UIC1ER, 0x00000000); /* disable all */
137 mtdcr (UIC1CR, 0x00000009); /* SMI & UIC1 crit are critical */
138 mtdcr (UIC1PR, 0xfffffe13); /* per ref-board manual */
139 mtdcr (UIC1TR, 0x01c00008); /* per ref-board manual */
140 mtdcr (UIC1VR, 0x00000001); /* int31 highest, base=0x000 */
141 mtdcr (UIC1SR, 0xffffffff); /* clear all */
Stefan Roese5fb692c2007-01-18 10:25:34 +0100142
Stefan Roese952e7762009-09-24 09:55:50 +0200143 mtdcr (UIC2SR, 0xffffffff); /* clear all */
144 mtdcr (UIC2ER, 0x00000000); /* disable all */
145 mtdcr (UIC2CR, 0x00000000); /* all non-critical */
146 mtdcr (UIC2PR, 0xffffe0ff); /* per ref-board manual */
147 mtdcr (UIC2TR, 0x00ffc000); /* per ref-board manual */
148 mtdcr (UIC2VR, 0x00000001); /* int31 highest, base=0x000 */
149 mtdcr (UIC2SR, 0xffffffff); /* clear all */
Stefan Roese5fb692c2007-01-18 10:25:34 +0100150
Stefan Roese952e7762009-09-24 09:55:50 +0200151 mtdcr (UIC3SR, 0xffffffff); /* clear all */
152 mtdcr (UIC3ER, 0x00000000); /* disable all */
153 mtdcr (UIC3CR, 0x00000000); /* all non-critical */
154 mtdcr (UIC3PR, 0xffffffff); /* per ref-board manual */
155 mtdcr (UIC3TR, 0x00ff8c0f); /* per ref-board manual */
156 mtdcr (UIC3VR, 0x00000001); /* int31 highest, base=0x000 */
157 mtdcr (UIC3SR, 0xffffffff); /* clear all */
Stefan Roese5de85142008-06-26 17:36:39 +0200158
Stefan Roese952e7762009-09-24 09:55:50 +0200159 mtdcr (UIC0SR, 0xfc000000); /* clear all */
160 mtdcr (UIC0ER, 0x00000000); /* disable all */
161 mtdcr (UIC0CR, 0x00000000); /* all non-critical */
162 mtdcr (UIC0PR, 0xfc000000); /* */
163 mtdcr (UIC0TR, 0x00000000); /* */
164 mtdcr (UIC0VR, 0x00000001); /* */
Stefan Roese5fb692c2007-01-18 10:25:34 +0100165
166 /* Enable two GPIO 10~11 and TraceA signal */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200167 mfsdr(SDR0_PFC0,reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100168 reg |= 0x00300000;
Stefan Roesed1c3b272009-09-09 16:25:29 +0200169 mtsdr(SDR0_PFC0,reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100170
Stefan Roesed1c3b272009-09-09 16:25:29 +0200171 mfsdr(SDR0_PFC1,reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100172 reg |= 0x00100000;
Stefan Roesed1c3b272009-09-09 16:25:29 +0200173 mtsdr(SDR0_PFC1,reg);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100174
175 /* Set GPIO 10 and 11 as output */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176 GpioOdr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x718);
177 GpioTcr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x704);
178 GpioOr = (volatile unsigned int*)(CONFIG_SYS_PERIPHERAL_BASE+0x700);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100179
180 *GpioOdr &= ~(0x00300000);
181 *GpioTcr |= 0x00300000;
Wolfgang Denka4012392007-01-19 23:08:39 +0100182 *GpioOr |= 0x00300000;
Stefan Roese5fb692c2007-01-18 10:25:34 +0100183
184 return 0;
185}
186
187int misc_init_r(void)
188{
189 lcd_init();
190
191 return 0;
192}
193
194int checkboard (void)
195{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000196 char buf[64];
197 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roese5fb692c2007-01-18 10:25:34 +0100198
199 printf ("Board: Taishan - AMCC PPC440GX Evaluation Board");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000200 if (i > 0) {
201 puts(", serial# ");
202 puts(buf);
Stefan Roese5fb692c2007-01-18 10:25:34 +0100203 }
204 putc ('\n');
205
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206#ifdef CONFIG_SYS_INIT_SHOW_RESET_REG
Stefan Roese5fb692c2007-01-18 10:25:34 +0100207 show_reset_reg();
208#endif
209
210 return (0);
211}
212
Ben Warren10efa022008-08-31 20:37:00 -0700213int board_eth_init(bd_t *bis)
214{
Stefan Roesecef0efa2009-02-11 09:29:33 +0100215 cpu_eth_init(bis);
Ben Warren10efa022008-08-31 20:37:00 -0700216 return pci_eth_init(bis);
217}