blob: 3216d6347dcef378696837bc693c676197b8b5af [file] [log] [blame]
wdenk1cb8e982003-03-06 21:55:29 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
Ben Warrenb1c0eaa2009-08-25 13:09:37 -070029#include <netdev.h>
wdenk1cb8e982003-03-06 21:55:29 +000030#include <s3c2410.h>
Jean-Christophe PLAGNIOL-VILLARD28c34502009-05-16 12:14:56 +020031#include <stdio_dev.h>
wdenk1cb8e982003-03-06 21:55:29 +000032#include <i2c.h>
33
34#include "vcma9.h"
35#include "../common/common_util.h"
36
Wolfgang Denkd87080b2006-03-31 18:32:53 +020037DECLARE_GLOBAL_DATA_PTR;
wdenk1cb8e982003-03-06 21:55:29 +000038
39#define FCLK_SPEED 1
40
41#if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
42#define M_MDIV 0xC3
43#define M_PDIV 0x4
44#define M_SDIV 0x1
45#elif FCLK_SPEED==1 /* Fout = 202.8MHz */
46#define M_MDIV 0xA1
47#define M_PDIV 0x3
48#define M_SDIV 0x1
49#endif
50
51#define USB_CLOCK 1
52
53#if USB_CLOCK==0
54#define U_M_MDIV 0xA1
55#define U_M_PDIV 0x3
56#define U_M_SDIV 0x1
57#elif USB_CLOCK==1
58#define U_M_MDIV 0x48
59#define U_M_PDIV 0x3
60#define U_M_SDIV 0x2
61#endif
62
63static inline void delay(unsigned long loops)
64{
65 __asm__ volatile ("1:\n"
66 "subs %0, %1, #1\n"
67 "bne 1b":"=r" (loops):"0" (loops));
68}
69
70/*
71 * Miscellaneous platform dependent initialisations
72 */
73
74int board_init(void)
75{
wdenk48b42612003-06-19 23:01:32 +000076 S3C24X0_CLOCK_POWER * const clk_power = S3C24X0_GetBase_CLOCK_POWER();
77 S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
wdenk1cb8e982003-03-06 21:55:29 +000078
79 /* to reduce PLL lock time, adjust the LOCKTIME register */
wdenk48b42612003-06-19 23:01:32 +000080 clk_power->LOCKTIME = 0xFFFFFF;
wdenk1cb8e982003-03-06 21:55:29 +000081
82 /* configure MPLL */
wdenk48b42612003-06-19 23:01:32 +000083 clk_power->MPLLCON = ((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV);
wdenk1cb8e982003-03-06 21:55:29 +000084
85 /* some delay between MPLL and UPLL */
86 delay (4000);
87
88 /* configure UPLL */
wdenk48b42612003-06-19 23:01:32 +000089 clk_power->UPLLCON = ((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV);
wdenk1cb8e982003-03-06 21:55:29 +000090
91 /* some delay between MPLL and UPLL */
92 delay (8000);
93
94 /* set up the I/O ports */
wdenk48b42612003-06-19 23:01:32 +000095 gpio->GPACON = 0x007FFFFF;
96 gpio->GPBCON = 0x002AAAAA;
97 gpio->GPBUP = 0x000002BF;
98 gpio->GPCCON = 0xAAAAAAAA;
99 gpio->GPCUP = 0x0000FFFF;
100 gpio->GPDCON = 0xAAAAAAAA;
101 gpio->GPDUP = 0x0000FFFF;
102 gpio->GPECON = 0xAAAAAAAA;
103 gpio->GPEUP = 0x000037F7;
104 gpio->GPFCON = 0x00000000;
105 gpio->GPFUP = 0x00000000;
106 gpio->GPGCON = 0xFFEAFF5A;
107 gpio->GPGUP = 0x0000F0DC;
108 gpio->GPHCON = 0x0028AAAA;
109 gpio->GPHUP = 0x00000656;
wdenk1cb8e982003-03-06 21:55:29 +0000110
111 /* setup correct IRQ modes for NIC */
wdenk48b42612003-06-19 23:01:32 +0000112 gpio->EXTINT2 = (gpio->EXTINT2 & ~(7<<8)) | (4<<8); /* rising edge mode */
113
114 /* select USB port 2 to be host or device (fix to host for now) */
115 gpio->MISCCR |= 0x08;
wdenk1cb8e982003-03-06 21:55:29 +0000116
117 /* init serial */
118 gd->baudrate = CONFIG_BAUDRATE;
119 gd->have_console = 1;
120 serial_init();
121
122 /* arch number of VCMA9-Board */
wdenk731215e2004-10-10 18:41:04 +0000123 gd->bd->bi_arch_number = MACH_TYPE_MPL_VCMA9;
wdenk1cb8e982003-03-06 21:55:29 +0000124
125 /* adress of boot parameters */
126 gd->bd->bi_boot_params = 0x30000100;
127
128 icache_enable();
129 dcache_enable();
130
131 return 0;
132}
133
wdenk1cb8e982003-03-06 21:55:29 +0000134/*
wdenk48b42612003-06-19 23:01:32 +0000135 * NAND flash initialization.
136 */
Jon Loeliger3fe00102007-07-09 18:38:39 -0500137#if defined(CONFIG_CMD_NAND)
wdenka43278a2003-09-11 19:48:06 +0000138extern ulong
wdenk48b42612003-06-19 23:01:32 +0000139nand_probe(ulong physadr);
140
141
142static inline void NF_Reset(void)
143{
144 int i;
145
146 NF_SetCE(NFCE_LOW);
147 NF_Cmd(0xFF); /* reset command */
148 for(i = 0; i < 10; i++); /* tWB = 100ns. */
149 NF_WaitRB(); /* wait 200~500us; */
150 NF_SetCE(NFCE_HIGH);
151}
152
153
154static inline void NF_Init(void)
155{
wdenk531716e2003-09-13 19:01:12 +0000156#if 0 /* a little bit too optimistic */
wdenk48b42612003-06-19 23:01:32 +0000157#define TACLS 0
158#define TWRPH0 3
159#define TWRPH1 0
wdenk531716e2003-09-13 19:01:12 +0000160#else
161#define TACLS 0
162#define TWRPH0 4
163#define TWRPH1 2
164#endif
165
wdenk48b42612003-06-19 23:01:32 +0000166 NF_Conf((1<<15)|(0<<14)|(0<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0));
wdenk8bde7f72003-06-27 21:31:46 +0000167 /*nand->NFCONF = (1<<15)|(1<<14)|(1<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0); */
168 /* 1 1 1 1, 1 xxx, r xxx, r xxx */
169 /* En 512B 4step ECCR nFCE=H tACLS tWRPH0 tWRPH1 */
wdenk48b42612003-06-19 23:01:32 +0000170
171 NF_Reset();
172}
173
174void
175nand_init(void)
176{
177 S3C2410_NAND * const nand = S3C2410_GetBase_NAND();
178
179 NF_Init();
wdenka43278a2003-09-11 19:48:06 +0000180#ifdef DEBUG
wdenk48b42612003-06-19 23:01:32 +0000181 printf("NAND flash probing at 0x%.8lX\n", (ulong)nand);
wdenka43278a2003-09-11 19:48:06 +0000182#endif
wdenk531716e2003-09-13 19:01:12 +0000183 printf ("%4lu MB\n", nand_probe((ulong)nand) >> 20);
wdenk48b42612003-06-19 23:01:32 +0000184}
185#endif
186
187/*
wdenk1cb8e982003-03-06 21:55:29 +0000188 * Get some Board/PLD Info
189 */
190
wdenk531716e2003-09-13 19:01:12 +0000191static u8 Get_PLD_ID(void)
wdenk1cb8e982003-03-06 21:55:29 +0000192{
wdenk531716e2003-09-13 19:01:12 +0000193 VCMA9_PLD * const pld = VCMA9_GetBase_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000194
wdenk531716e2003-09-13 19:01:12 +0000195 return(pld->ID);
wdenk1cb8e982003-03-06 21:55:29 +0000196}
197
wdenk531716e2003-09-13 19:01:12 +0000198static u8 Get_PLD_BOARD(void)
wdenk1cb8e982003-03-06 21:55:29 +0000199{
wdenk531716e2003-09-13 19:01:12 +0000200 VCMA9_PLD * const pld = VCMA9_GetBase_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000201
wdenk531716e2003-09-13 19:01:12 +0000202 return(pld->BOARD);
wdenk1cb8e982003-03-06 21:55:29 +0000203}
204
wdenk531716e2003-09-13 19:01:12 +0000205static u8 Get_PLD_SDRAM(void)
206{
207 VCMA9_PLD * const pld = VCMA9_GetBase_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000208
wdenk531716e2003-09-13 19:01:12 +0000209 return(pld->SDRAM);
210}
211
212static u8 Get_PLD_Version(void)
wdenk1cb8e982003-03-06 21:55:29 +0000213{
214 return((Get_PLD_ID() >> 4) & 0x0F);
215}
216
wdenk531716e2003-09-13 19:01:12 +0000217static u8 Get_PLD_Revision(void)
wdenk1cb8e982003-03-06 21:55:29 +0000218{
219 return(Get_PLD_ID() & 0x0F);
220}
221
wdenk34b30492003-09-16 21:07:28 +0000222#if 0 /* not used */
wdenk1cb8e982003-03-06 21:55:29 +0000223static int Get_Board_Config(void)
224{
wdenk531716e2003-09-13 19:01:12 +0000225 u8 config = Get_PLD_BOARD() & 0x03;
wdenk1cb8e982003-03-06 21:55:29 +0000226
227 if (config == 3)
228 return 1;
229 else
230 return 0;
231}
wdenk34b30492003-09-16 21:07:28 +0000232#endif
wdenk1cb8e982003-03-06 21:55:29 +0000233
234static uchar Get_Board_PCB(void)
235{
236 return(((Get_PLD_BOARD() >> 4) & 0x03) + 'A');
237}
238
wdenk531716e2003-09-13 19:01:12 +0000239static u8 Get_SDRAM_ChipNr(void)
240{
241 switch ((Get_PLD_SDRAM() >> 4) & 0x0F) {
242 case 0: return 4;
243 case 1: return 1;
244 case 2: return 2;
245 default: return 0;
246 }
247}
248
249static ulong Get_SDRAM_ChipSize(void)
250{
251 switch (Get_PLD_SDRAM() & 0x0F) {
252 case 0: return 16 * (1024*1024);
253 case 1: return 32 * (1024*1024);
254 case 2: return 8 * (1024*1024);
255 case 3: return 8 * (1024*1024);
256 default: return 0;
wdenk42d1f032003-10-15 23:53:47 +0000257 }
wdenk531716e2003-09-13 19:01:12 +0000258}
259static const char * Get_SDRAM_ChipGeom(void)
260{
261 switch (Get_PLD_SDRAM() & 0x0F) {
262 case 0: return "4Mx8x4";
263 case 1: return "8Mx8x4";
264 case 2: return "2Mx8x4";
265 case 3: return "4Mx8x2";
266 default: return "unknown";
267 }
268}
269
270static void Show_VCMA9_Info(char *board_name, char *serial)
271{
272 printf("Board: %s SN: %s PCB Rev: %c PLD(%d,%d)\n",
273 board_name, serial, Get_Board_PCB(), Get_PLD_Version(), Get_PLD_Revision());
274 printf("SDRAM: %d chips %s\n", Get_SDRAM_ChipNr(), Get_SDRAM_ChipGeom());
275}
276
277int dram_init(void)
278{
wdenk531716e2003-09-13 19:01:12 +0000279 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
280 gd->bd->bi_dram[0].size = Get_SDRAM_ChipSize() * Get_SDRAM_ChipNr();
281
282 return 0;
283}
284
wdenk1cb8e982003-03-06 21:55:29 +0000285/* ------------------------------------------------------------------------- */
286
287/*
288 * Check Board Identity:
289 */
290
291int checkboard(void)
292{
Wolfgang Denkfc19e362007-10-13 23:51:14 +0200293 char s[50];
wdenk1cb8e982003-03-06 21:55:29 +0000294 int i;
295 backup_t *b = (backup_t *) s;
296
wdenk1cb8e982003-03-06 21:55:29 +0000297 i = getenv_r("serial#", s, 32);
298 if ((i < 0) || strncmp (s, "VCMA9", 5)) {
299 get_backup_values (b);
300 if (strncmp (b->signature, "MPL\0", 4) != 0) {
301 puts ("### No HW ID - assuming VCMA9");
302 } else {
303 b->serial_name[5] = 0;
wdenk531716e2003-09-13 19:01:12 +0000304 Show_VCMA9_Info(b->serial_name, &b->serial_name[6]);
wdenk1cb8e982003-03-06 21:55:29 +0000305 }
306 } else {
307 s[5] = 0;
wdenk531716e2003-09-13 19:01:12 +0000308 Show_VCMA9_Info(s, &s[6]);
wdenk1cb8e982003-03-06 21:55:29 +0000309 }
wdenk531716e2003-09-13 19:01:12 +0000310 /*printf("\n");*/
wdenk1cb8e982003-03-06 21:55:29 +0000311 return(0);
312}
313
314
wdenk33149b82003-05-23 11:38:58 +0000315extern void mem_test_reloc(void);
wdenk1cb8e982003-03-06 21:55:29 +0000316
317int last_stage_init(void)
318{
wdenk33149b82003-05-23 11:38:58 +0000319 mem_test_reloc();
wdenk531716e2003-09-13 19:01:12 +0000320 checkboard();
Jean-Christophe PLAGNIOL-VILLARD28c34502009-05-16 12:14:56 +0200321 stdio_print_current_devices();
wdenk1cb8e982003-03-06 21:55:29 +0000322 check_env();
323 return 0;
324}
325
326/***************************************************************************
327 * some helping routines
328 */
wdenka2663ea2003-12-07 18:32:37 +0000329#if !CONFIG_USB_KEYBOARD
wdenk1cb8e982003-03-06 21:55:29 +0000330int overwrite_console(void)
331{
332 /* return TRUE if console should be overwritten */
333 return 0;
334}
wdenka2663ea2003-12-07 18:32:37 +0000335#endif
wdenk1cb8e982003-03-06 21:55:29 +0000336
337/************************************************************************
338* Print VCMA9 Info
339************************************************************************/
340void print_vcma9_info(void)
wdenk42d1f032003-10-15 23:53:47 +0000341{
Wolfgang Denkfc19e362007-10-13 23:51:14 +0200342 char s[50];
wdenk531716e2003-09-13 19:01:12 +0000343 int i;
wdenk42d1f032003-10-15 23:53:47 +0000344
wdenk531716e2003-09-13 19:01:12 +0000345 if ((i = getenv_r("serial#", s, 32)) < 0) {
346 puts ("### No HW ID - assuming VCMA9");
347 printf("i %d", i*24);
348 } else {
349 s[5] = 0;
350 Show_VCMA9_Info(s, &s[6]);
351 }
wdenk1cb8e982003-03-06 21:55:29 +0000352}
Ben Warrenb1c0eaa2009-08-25 13:09:37 -0700353
354#ifdef CONFIG_CMD_NET
355int board_eth_init(bd_t *bis)
356{
357 int rc = 0;
358#ifdef CONFIG_CS8900
359 rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
360#endif
361 return rc;
362}
363#endif