blob: 7030985b29c5b98bdadd36f829fd25acdff0f000 [file] [log] [blame]
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001/*
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 * (C) Copyright 2005
10 * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
31#include <common.h>
32#include <s3c2410.h>
33
34#if (CONFIG_COMMANDS & CFG_CMD_NAND)
35#include <linux/mtd/nand.h>
36#endif
37
38/* ------------------------------------------------------------------------- */
39
40#define FCLK_SPEED 1
41
42#if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
43#define M_MDIV 0xC3
44#define M_PDIV 0x4
45#define M_SDIV 0x1
46#elif FCLK_SPEED==1 /* Fout = 202.8MHz */
47#define M_MDIV 0x5c
48#define M_PDIV 0x4
49#define M_SDIV 0x0
50#endif
51
52#define USB_CLOCK 1
53
54#if USB_CLOCK==0
55#define U_M_MDIV 0xA1
56#define U_M_PDIV 0x3
57#define U_M_SDIV 0x1
58#elif USB_CLOCK==1
59#define U_M_MDIV 0x48
60#define U_M_PDIV 0x3
61#define U_M_SDIV 0x2
62#endif
63
64static inline void delay (unsigned long loops)
65{
66 __asm__ volatile ("1:\n"
67 "subs %0, %1, #1\n"
68 "bne 1b":"=r" (loops):"0" (loops));
69}
70
71/*
72 * Miscellaneous platform dependent initialisations
73 */
74
75int board_init (void)
76{
77 DECLARE_GLOBAL_DATA_PTR;
78 S3C24X0_CLOCK_POWER * const clk_power = S3C24X0_GetBase_CLOCK_POWER();
79 S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
80
81 /* to reduce PLL lock time, adjust the LOCKTIME register */
82 clk_power->LOCKTIME = 0xFFFFFF;
83
84 /* configure MPLL */
85 clk_power->MPLLCON = ((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV);
86
87 /* some delay between MPLL and UPLL */
88 delay (4000);
89
90 /* configure UPLL */
91 clk_power->UPLLCON = ((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV);
92
93 /* some delay between MPLL and UPLL */
94 delay (8000);
95
96 /* set up the I/O ports */
97 gpio->GPACON = 0x007FFFFF;
98 gpio->GPBCON = 0x00044556;
99 gpio->GPBUP = 0x000007FF;
100 gpio->GPCCON = 0xAAAAAAAA;
101 gpio->GPCUP = 0x0000FFFF;
102 gpio->GPDCON = 0xAAAAAAAA;
103 gpio->GPDUP = 0x0000FFFF;
104 gpio->GPECON = 0xAAAAAAAA;
105 gpio->GPEUP = 0x0000FFFF;
106 gpio->GPFCON = 0x000055AA;
107 gpio->GPFUP = 0x000000FF;
108 gpio->GPGCON = 0xFF95FF3A;
109 gpio->GPGUP = 0x0000FFFF;
110 gpio->GPHCON = 0x0016FAAA;
111 gpio->GPHUP = 0x000007FF;
112
113 gpio->EXTINT0=0x22222222;
114 gpio->EXTINT1=0x22222222;
115 gpio->EXTINT2=0x22222222;
116
117 /* arch number of SMDK2410-Board */
118 gd->bd->bi_arch_number = MACH_TYPE_SMDK2410;
119
120 /* adress of boot parameters */
121 gd->bd->bi_boot_params = 0x30000100;
122
123 icache_enable();
124 dcache_enable();
125
126 return 0;
127}
128
129int dram_init (void)
130{
131 DECLARE_GLOBAL_DATA_PTR;
132
133 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
134 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
135
136 return 0;
137}
138
139#if (CONFIG_COMMANDS & CFG_CMD_NAND)
140extern ulong nand_probe(ulong physadr);
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
153static inline void NF_Init(void)
154{
155#if 1
156#define TACLS 0
157#define TWRPH0 3
158#define TWRPH1 0
159#else
160#define TACLS 0
161#define TWRPH0 4
162#define TWRPH1 2
163#endif
164
165 NF_Conf((1<<15)|(0<<14)|(0<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0));
166 /*nand->NFCONF = (1<<15)|(1<<14)|(1<<13)|(1<<12)|(1<<11)|(TACLS<<8)|(TWRPH0<<4)|(TWRPH1<<0); */
167 /* 1 1 1 1, 1 xxx, r xxx, r xxx */
168 /* En 512B 4step ECCR nFCE=H tACLS tWRPH0 tWRPH1 */
169
170 NF_Reset();
171}
172
173void nand_init(void)
174{
175 S3C2410_NAND * const nand = S3C2410_GetBase_NAND();
176
177 NF_Init();
178#ifdef DEBUG
179 printf("NAND flash probing at 0x%.8lX\n", (ulong)nand);
180#endif
181 printf ("%4lu MB\n", nand_probe((ulong)nand) >> 20);
182}
183#endif /* CONFIG_COMMANDS & CFG_CMD_NAND */