blob: 171a1288fc679fa99d6e78212e37246ede7941c4 [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>
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +090030#include <asm/arch/s3c24x0_cpu.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{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090076 struct s3c24x0_clock_power * const clk_power =
77 s3c24x0_get_base_clock_power();
78 struct s3c24x0_gpio * const gpio = s3c24x0_get_base_gpio();
wdenk1cb8e982003-03-06 21:55:29 +000079
80 /* to reduce PLL lock time, adjust the LOCKTIME register */
C Naumand9abba82010-10-26 23:04:31 +090081 clk_power->locktime = 0xFFFFFF;
wdenk1cb8e982003-03-06 21:55:29 +000082
83 /* configure MPLL */
C Naumand9abba82010-10-26 23:04:31 +090084 clk_power->mpllcon = ((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV);
wdenk1cb8e982003-03-06 21:55:29 +000085
86 /* some delay between MPLL and UPLL */
87 delay (4000);
88
89 /* configure UPLL */
C Naumand9abba82010-10-26 23:04:31 +090090 clk_power->upllcon = ((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV);
wdenk1cb8e982003-03-06 21:55:29 +000091
92 /* some delay between MPLL and UPLL */
93 delay (8000);
94
95 /* set up the I/O ports */
C Naumand9abba82010-10-26 23:04:31 +090096 gpio->gpacon = 0x007FFFFF;
97 gpio->gpbcon = 0x002AAAAA;
98 gpio->gpbup = 0x000002BF;
99 gpio->gpccon = 0xAAAAAAAA;
100 gpio->gpcup = 0x0000FFFF;
101 gpio->gpdcon = 0xAAAAAAAA;
102 gpio->gpdup = 0x0000FFFF;
103 gpio->gpecon = 0xAAAAAAAA;
104 gpio->gpeup = 0x000037F7;
105 gpio->gpfcon = 0x00000000;
106 gpio->gpfup = 0x00000000;
107 gpio->gpgcon = 0xFFEAFF5A;
108 gpio->gpgup = 0x0000F0DC;
109 gpio->gphcon = 0x0028AAAA;
110 gpio->gphup = 0x00000656;
wdenk1cb8e982003-03-06 21:55:29 +0000111
112 /* setup correct IRQ modes for NIC */
C Naumand9abba82010-10-26 23:04:31 +0900113 /* rising edge mode */
114 gpio->extint2 = (gpio->extint2 & ~(7<<8)) | (4<<8);
wdenk48b42612003-06-19 23:01:32 +0000115
116 /* select USB port 2 to be host or device (fix to host for now) */
C Naumand9abba82010-10-26 23:04:31 +0900117 gpio->misccr |= 0x08;
wdenk1cb8e982003-03-06 21:55:29 +0000118
119 /* init serial */
120 gd->baudrate = CONFIG_BAUDRATE;
121 gd->have_console = 1;
122 serial_init();
123
124 /* arch number of VCMA9-Board */
wdenk731215e2004-10-10 18:41:04 +0000125 gd->bd->bi_arch_number = MACH_TYPE_MPL_VCMA9;
wdenk1cb8e982003-03-06 21:55:29 +0000126
127 /* adress of boot parameters */
128 gd->bd->bi_boot_params = 0x30000100;
129
130 icache_enable();
131 dcache_enable();
132
133 return 0;
134}
135
wdenk1cb8e982003-03-06 21:55:29 +0000136/*
wdenk48b42612003-06-19 23:01:32 +0000137 * NAND flash initialization.
138 */
Jon Loeliger3fe00102007-07-09 18:38:39 -0500139#if defined(CONFIG_CMD_NAND)
wdenka43278a2003-09-11 19:48:06 +0000140extern ulong
wdenk48b42612003-06-19 23:01:32 +0000141nand_probe(ulong physadr);
142
143
144static inline void NF_Reset(void)
145{
146 int i;
147
148 NF_SetCE(NFCE_LOW);
149 NF_Cmd(0xFF); /* reset command */
150 for(i = 0; i < 10; i++); /* tWB = 100ns. */
151 NF_WaitRB(); /* wait 200~500us; */
152 NF_SetCE(NFCE_HIGH);
153}
154
155
156static inline void NF_Init(void)
157{
wdenk531716e2003-09-13 19:01:12 +0000158#if 0 /* a little bit too optimistic */
wdenk48b42612003-06-19 23:01:32 +0000159#define TACLS 0
160#define TWRPH0 3
161#define TWRPH1 0
wdenk531716e2003-09-13 19:01:12 +0000162#else
163#define TACLS 0
164#define TWRPH0 4
165#define TWRPH1 2
166#endif
167
wdenk48b42612003-06-19 23:01:32 +0000168 NF_Conf((1<<15)|(0<<14)|(0<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0));
wdenk8bde7f72003-06-27 21:31:46 +0000169 /*nand->NFCONF = (1<<15)|(1<<14)|(1<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0); */
170 /* 1 1 1 1, 1 xxx, r xxx, r xxx */
171 /* En 512B 4step ECCR nFCE=H tACLS tWRPH0 tWRPH1 */
wdenk48b42612003-06-19 23:01:32 +0000172
173 NF_Reset();
174}
175
176void
177nand_init(void)
178{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900179 struct s3c2410_nand * const nand = s3c2410_get_base_nand();
wdenk48b42612003-06-19 23:01:32 +0000180
181 NF_Init();
wdenka43278a2003-09-11 19:48:06 +0000182#ifdef DEBUG
wdenk48b42612003-06-19 23:01:32 +0000183 printf("NAND flash probing at 0x%.8lX\n", (ulong)nand);
wdenka43278a2003-09-11 19:48:06 +0000184#endif
wdenk531716e2003-09-13 19:01:12 +0000185 printf ("%4lu MB\n", nand_probe((ulong)nand) >> 20);
wdenk48b42612003-06-19 23:01:32 +0000186}
187#endif
188
189/*
wdenk1cb8e982003-03-06 21:55:29 +0000190 * Get some Board/PLD Info
191 */
192
wdenk531716e2003-09-13 19:01:12 +0000193static u8 Get_PLD_ID(void)
wdenk1cb8e982003-03-06 21:55:29 +0000194{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900195 VCMA9_PLD * const pld = VCMA9_get_base_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000196
wdenk531716e2003-09-13 19:01:12 +0000197 return(pld->ID);
wdenk1cb8e982003-03-06 21:55:29 +0000198}
199
wdenk531716e2003-09-13 19:01:12 +0000200static u8 Get_PLD_BOARD(void)
wdenk1cb8e982003-03-06 21:55:29 +0000201{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900202 VCMA9_PLD * const pld = VCMA9_get_base_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000203
wdenk531716e2003-09-13 19:01:12 +0000204 return(pld->BOARD);
wdenk1cb8e982003-03-06 21:55:29 +0000205}
206
wdenk531716e2003-09-13 19:01:12 +0000207static u8 Get_PLD_SDRAM(void)
208{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900209 VCMA9_PLD * const pld = VCMA9_get_base_PLD();
wdenk42d1f032003-10-15 23:53:47 +0000210
wdenk531716e2003-09-13 19:01:12 +0000211 return(pld->SDRAM);
212}
213
214static u8 Get_PLD_Version(void)
wdenk1cb8e982003-03-06 21:55:29 +0000215{
216 return((Get_PLD_ID() >> 4) & 0x0F);
217}
218
wdenk531716e2003-09-13 19:01:12 +0000219static u8 Get_PLD_Revision(void)
wdenk1cb8e982003-03-06 21:55:29 +0000220{
221 return(Get_PLD_ID() & 0x0F);
222}
223
wdenk34b30492003-09-16 21:07:28 +0000224#if 0 /* not used */
wdenk1cb8e982003-03-06 21:55:29 +0000225static int Get_Board_Config(void)
226{
wdenk531716e2003-09-13 19:01:12 +0000227 u8 config = Get_PLD_BOARD() & 0x03;
wdenk1cb8e982003-03-06 21:55:29 +0000228
229 if (config == 3)
230 return 1;
231 else
232 return 0;
233}
wdenk34b30492003-09-16 21:07:28 +0000234#endif
wdenk1cb8e982003-03-06 21:55:29 +0000235
236static uchar Get_Board_PCB(void)
237{
238 return(((Get_PLD_BOARD() >> 4) & 0x03) + 'A');
239}
240
wdenk531716e2003-09-13 19:01:12 +0000241static u8 Get_SDRAM_ChipNr(void)
242{
243 switch ((Get_PLD_SDRAM() >> 4) & 0x0F) {
244 case 0: return 4;
245 case 1: return 1;
246 case 2: return 2;
247 default: return 0;
248 }
249}
250
251static ulong Get_SDRAM_ChipSize(void)
252{
253 switch (Get_PLD_SDRAM() & 0x0F) {
254 case 0: return 16 * (1024*1024);
255 case 1: return 32 * (1024*1024);
256 case 2: return 8 * (1024*1024);
257 case 3: return 8 * (1024*1024);
258 default: return 0;
wdenk42d1f032003-10-15 23:53:47 +0000259 }
wdenk531716e2003-09-13 19:01:12 +0000260}
261static const char * Get_SDRAM_ChipGeom(void)
262{
263 switch (Get_PLD_SDRAM() & 0x0F) {
264 case 0: return "4Mx8x4";
265 case 1: return "8Mx8x4";
266 case 2: return "2Mx8x4";
267 case 3: return "4Mx8x2";
268 default: return "unknown";
269 }
270}
271
272static void Show_VCMA9_Info(char *board_name, char *serial)
273{
274 printf("Board: %s SN: %s PCB Rev: %c PLD(%d,%d)\n",
275 board_name, serial, Get_Board_PCB(), Get_PLD_Version(), Get_PLD_Revision());
276 printf("SDRAM: %d chips %s\n", Get_SDRAM_ChipNr(), Get_SDRAM_ChipGeom());
277}
278
279int dram_init(void)
280{
wdenk531716e2003-09-13 19:01:12 +0000281 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
282 gd->bd->bi_dram[0].size = Get_SDRAM_ChipSize() * Get_SDRAM_ChipNr();
283
284 return 0;
285}
286
wdenk1cb8e982003-03-06 21:55:29 +0000287/* ------------------------------------------------------------------------- */
288
289/*
290 * Check Board Identity:
291 */
292
293int checkboard(void)
294{
Wolfgang Denkfc19e362007-10-13 23:51:14 +0200295 char s[50];
wdenk1cb8e982003-03-06 21:55:29 +0000296 int i;
297 backup_t *b = (backup_t *) s;
298
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200299 i = getenv_f("serial#", s, 32);
wdenk1cb8e982003-03-06 21:55:29 +0000300 if ((i < 0) || strncmp (s, "VCMA9", 5)) {
301 get_backup_values (b);
302 if (strncmp (b->signature, "MPL\0", 4) != 0) {
303 puts ("### No HW ID - assuming VCMA9");
304 } else {
305 b->serial_name[5] = 0;
wdenk531716e2003-09-13 19:01:12 +0000306 Show_VCMA9_Info(b->serial_name, &b->serial_name[6]);
wdenk1cb8e982003-03-06 21:55:29 +0000307 }
308 } else {
309 s[5] = 0;
wdenk531716e2003-09-13 19:01:12 +0000310 Show_VCMA9_Info(s, &s[6]);
wdenk1cb8e982003-03-06 21:55:29 +0000311 }
wdenk531716e2003-09-13 19:01:12 +0000312 /*printf("\n");*/
wdenk1cb8e982003-03-06 21:55:29 +0000313 return(0);
314}
315
316
wdenk1cb8e982003-03-06 21:55:29 +0000317int last_stage_init(void)
318{
wdenk531716e2003-09-13 19:01:12 +0000319 checkboard();
Jean-Christophe PLAGNIOL-VILLARD28c34502009-05-16 12:14:56 +0200320 stdio_print_current_devices();
wdenk1cb8e982003-03-06 21:55:29 +0000321 check_env();
322 return 0;
323}
324
325/***************************************************************************
326 * some helping routines
327 */
wdenka2663ea2003-12-07 18:32:37 +0000328#if !CONFIG_USB_KEYBOARD
wdenk1cb8e982003-03-06 21:55:29 +0000329int overwrite_console(void)
330{
331 /* return TRUE if console should be overwritten */
332 return 0;
333}
wdenka2663ea2003-12-07 18:32:37 +0000334#endif
wdenk1cb8e982003-03-06 21:55:29 +0000335
336/************************************************************************
337* Print VCMA9 Info
338************************************************************************/
339void print_vcma9_info(void)
wdenk42d1f032003-10-15 23:53:47 +0000340{
Wolfgang Denkfc19e362007-10-13 23:51:14 +0200341 char s[50];
wdenk531716e2003-09-13 19:01:12 +0000342 int i;
wdenk42d1f032003-10-15 23:53:47 +0000343
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200344 if ((i = getenv_f("serial#", s, 32)) < 0) {
wdenk531716e2003-09-13 19:01:12 +0000345 puts ("### No HW ID - assuming VCMA9");
346 printf("i %d", i*24);
347 } else {
348 s[5] = 0;
349 Show_VCMA9_Info(s, &s[6]);
350 }
wdenk1cb8e982003-03-06 21:55:29 +0000351}
Ben Warrenb1c0eaa2009-08-25 13:09:37 -0700352
353#ifdef CONFIG_CMD_NET
354int board_eth_init(bd_t *bis)
355{
356 int rc = 0;
357#ifdef CONFIG_CS8900
358 rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
359#endif
360 return rc;
361}
362#endif
David Müller (ELSOFT AG)6d754842011-05-01 21:52:50 +0000363
364/*
365 * Hardcoded flash setup:
366 * Flash 0 is a non-CFI AMD AM29F400BB flash.
367 */
368ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
369{
370 info->portwidth = FLASH_CFI_16BIT;
371 info->chipwidth = FLASH_CFI_BY16;
372 info->interface = FLASH_CFI_X16;
373 return 1;
374}