blob: 4c5a7feec1629aacc22d1c26ab1bd843339ea56c [file] [log] [blame]
Magnus Lilja40c642b2009-06-13 20:50:01 +02001/*
2 * (C) Copyright 2009
3 * Magnus Lilja <lilja.magnus@gmail.com>
4 *
5 * (C) Copyright 2008
6 * Maxim Artamonov, <scn1874 at yandex.ru>
7 *
8 * (C) Copyright 2006-2008
9 * Stefan Roese, DENX Software Engineering, sr at denx.de.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <nand.h>
Peter Tyser61f2b382010-04-12 22:28:07 -050029#include <asm/arch/imx-regs.h>
Magnus Lilja40c642b2009-06-13 20:50:01 +020030#include <asm/io.h>
31#include <fsl_nfc.h>
32
Heiko Schocher4fff3292010-09-17 13:10:38 +020033static struct fsl_nfc_regs *const nfc = (void *)NFC_BASE_ADDR;
Magnus Lilja40c642b2009-06-13 20:50:01 +020034
35static void nfc_wait_ready(void)
36{
37 uint32_t tmp;
38
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020039 while (!(readw(&nfc->config2) & NFC_INT))
Magnus Lilja40c642b2009-06-13 20:50:01 +020040 ;
41
42 /* Reset interrupt flag */
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020043 tmp = readw(&nfc->config2);
Magnus Lilja40c642b2009-06-13 20:50:01 +020044 tmp &= ~NFC_INT;
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020045 writew(tmp, &nfc->config2);
Magnus Lilja40c642b2009-06-13 20:50:01 +020046}
47
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +020048static void nfc_nand_init(void)
Magnus Lilja40c642b2009-06-13 20:50:01 +020049{
John Rigbyf3bb63a2010-01-26 19:24:17 -070050#if defined(MXC_NFC_V1_1)
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +020051 int ecc_per_page = CONFIG_SYS_NAND_PAGE_SIZE / 512;
John Rigbyf3bb63a2010-01-26 19:24:17 -070052 int config1;
53
54 writew(CONFIG_SYS_NAND_SPARE_SIZE / 2, &nfc->spare_area_size);
55
56 /* unlocking RAM Buff */
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020057 writew(0x2, &nfc->config);
John Rigbyf3bb63a2010-01-26 19:24:17 -070058
59 /* hardware ECC checking and correct */
Benoît Thébaudeau0e55ad72012-08-13 22:49:31 +020060 config1 = readw(&nfc->config1) | NFC_ECC_EN | NFC_INT_MSK |
61 NFC_ONE_CYCLE | NFC_FP_INT;
John Rigbyf3bb63a2010-01-26 19:24:17 -070062 /*
63 * if spare size is larger that 16 bytes per 512 byte hunk
64 * then use 8 symbol correction instead of 4
65 */
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +020066 if (CONFIG_SYS_NAND_SPARE_SIZE / ecc_per_page > 16)
John Rigbyf3bb63a2010-01-26 19:24:17 -070067 config1 &= ~NFC_4_8N_ECC;
68 else
69 config1 |= NFC_4_8N_ECC;
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020070 writew(config1, &nfc->config1);
John Rigbyf3bb63a2010-01-26 19:24:17 -070071#elif defined(MXC_NFC_V1)
Magnus Lilja40c642b2009-06-13 20:50:01 +020072 /* unlocking RAM Buff */
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020073 writew(0x2, &nfc->config);
Magnus Lilja40c642b2009-06-13 20:50:01 +020074
75 /* hardware ECC checking and correct */
Benoît Thébaudeau0eee20f2012-08-13 22:49:15 +020076 writew(NFC_ECC_EN | NFC_INT_MSK, &nfc->config1);
John Rigbyf3bb63a2010-01-26 19:24:17 -070077#endif
Magnus Lilja40c642b2009-06-13 20:50:01 +020078}
79
80static void nfc_nand_command(unsigned short command)
81{
82 writew(command, &nfc->flash_cmd);
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +020083 writew(NFC_CMD, &nfc->config2);
Magnus Lilja40c642b2009-06-13 20:50:01 +020084 nfc_wait_ready();
85}
86
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +020087static void nfc_nand_address(unsigned short address)
88{
89 writew(address, &nfc->flash_addr);
90 writew(NFC_ADDR, &nfc->config2);
91 nfc_wait_ready();
92}
93
Magnus Lilja40c642b2009-06-13 20:50:01 +020094static void nfc_nand_page_address(unsigned int page_address)
95{
96 unsigned int page_count;
97
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +020098 nfc_nand_address(0x00);
Magnus Lilja40c642b2009-06-13 20:50:01 +020099
John Rigbyf3bb63a2010-01-26 19:24:17 -0700100 /* code only for large page flash */
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200101 if (CONFIG_SYS_NAND_PAGE_SIZE > 512)
102 nfc_nand_address(0x00);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200103
104 page_count = CONFIG_SYS_NAND_SIZE / CONFIG_SYS_NAND_PAGE_SIZE;
105
106 if (page_address <= page_count) {
107 page_count--; /* transform 0x01000000 to 0x00ffffff */
108 do {
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200109 nfc_nand_address(page_address & 0xff);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200110 page_address = page_address >> 8;
111 page_count = page_count >> 8;
112 } while (page_count);
113 }
John Rigbyf3bb63a2010-01-26 19:24:17 -0700114
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200115 nfc_nand_address(0x00);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200116}
117
118static void nfc_nand_data_output(void)
119{
John Rigbyf3bb63a2010-01-26 19:24:17 -0700120#ifdef NAND_MXC_2K_MULTI_CYCLE
Magnus Lilja40c642b2009-06-13 20:50:01 +0200121 int i;
John Rigbyf3bb63a2010-01-26 19:24:17 -0700122#endif
Magnus Lilja40c642b2009-06-13 20:50:01 +0200123
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +0200124 writew(0, &nfc->buf_addr);
125 writew(NFC_OUTPUT, &nfc->config2);
John Rigbyf3bb63a2010-01-26 19:24:17 -0700126 nfc_wait_ready();
127#ifdef NAND_MXC_2K_MULTI_CYCLE
Magnus Lilja40c642b2009-06-13 20:50:01 +0200128 /*
John Rigbyf3bb63a2010-01-26 19:24:17 -0700129 * This NAND controller requires multiple input commands
130 * for pages larger than 512 bytes.
Magnus Lilja40c642b2009-06-13 20:50:01 +0200131 */
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +0200132 for (i = 1; i < CONFIG_SYS_NAND_PAGE_SIZE / 512; i++) {
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +0200133 writew(i, &nfc->buf_addr);
134 writew(NFC_OUTPUT, &nfc->config2);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200135 nfc_wait_ready();
136 }
John Rigbyf3bb63a2010-01-26 19:24:17 -0700137#endif
Magnus Lilja40c642b2009-06-13 20:50:01 +0200138}
139
140static int nfc_nand_check_ecc(void)
141{
Benoît Thébaudeauc1db8dd2012-08-13 22:49:42 +0200142#if defined(MXC_NFC_V1)
Magnus Lilja40c642b2009-06-13 20:50:01 +0200143 return readw(&nfc->ecc_status_result);
Benoît Thébaudeauc1db8dd2012-08-13 22:49:42 +0200144#elif defined(MXC_NFC_V1_1)
145 return readl(&nfc->ecc_status_result);
146#endif
Magnus Lilja40c642b2009-06-13 20:50:01 +0200147}
148
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200149static void nfc_nand_read_page(unsigned int page_address)
Magnus Lilja40c642b2009-06-13 20:50:01 +0200150{
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +0200151 writew(0, &nfc->buf_addr); /* read in first 0 buffer */
Magnus Lilja40c642b2009-06-13 20:50:01 +0200152 nfc_nand_command(NAND_CMD_READ0);
153 nfc_nand_page_address(page_address);
154
John Rigbyf3bb63a2010-01-26 19:24:17 -0700155 if (CONFIG_SYS_NAND_PAGE_SIZE > 512)
Magnus Lilja40c642b2009-06-13 20:50:01 +0200156 nfc_nand_command(NAND_CMD_READSTART);
157
158 nfc_nand_data_output(); /* fill the main buffer 0 */
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200159}
160
161static int nfc_read_page(unsigned int page_address, unsigned char *buf)
162{
163 int i;
164 u32 *src;
165 u32 *dst;
166
167 nfc_nand_read_page(page_address);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200168
169 if (nfc_nand_check_ecc())
170 return -1;
171
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +0200172 src = (u32 *)&nfc->main_area[0][0];
Magnus Lilja40c642b2009-06-13 20:50:01 +0200173 dst = (u32 *)buf;
174
175 /* main copy loop from NAND-buffer to SDRAM memory */
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +0200176 for (i = 0; i < CONFIG_SYS_NAND_PAGE_SIZE / 4; i++) {
Magnus Lilja40c642b2009-06-13 20:50:01 +0200177 writel(readl(src), dst);
178 src++;
179 dst++;
180 }
181
182 return 0;
183}
184
185static int is_badblock(int pagenumber)
186{
187 int page = pagenumber;
188 u32 badblock;
189 u32 *src;
190
191 /* Check the first two pages for bad block markers */
192 for (page = pagenumber; page < pagenumber + 2; page++) {
Benoît Thébaudeau5d818a22012-08-13 22:48:56 +0200193 nfc_nand_read_page(page);
Magnus Lilja40c642b2009-06-13 20:50:01 +0200194
Benoît Thébaudeau80c8ab72012-08-13 22:48:12 +0200195 src = (u32 *)&nfc->spare_area[0][0];
Magnus Lilja40c642b2009-06-13 20:50:01 +0200196
197 /*
198 * IMPORTANT NOTE: The nand flash controller uses a non-
199 * standard layout for large page devices. This can
200 * affect the position of the bad block marker.
201 */
202 /* Get the bad block marker */
203 badblock = readl(&src[CONFIG_SYS_NAND_BAD_BLOCK_POS / 4]);
204 badblock >>= 8 * (CONFIG_SYS_NAND_BAD_BLOCK_POS % 4);
205 badblock &= 0xff;
206
207 /* bad block marker verify */
208 if (badblock != 0xff)
209 return 1; /* potential bad block */
210 }
211
212 return 0;
213}
214
215static int nand_load(unsigned int from, unsigned int size, unsigned char *buf)
216{
217 int i;
218 unsigned int page;
219 unsigned int maxpages = CONFIG_SYS_NAND_SIZE /
220 CONFIG_SYS_NAND_PAGE_SIZE;
221
Magnus Lilja40c642b2009-06-13 20:50:01 +0200222 nfc_nand_init();
223
224 /* Convert to page number */
225 page = from / CONFIG_SYS_NAND_PAGE_SIZE;
226 i = 0;
227
Benoît Thébaudeau365b2c02012-08-13 22:48:26 +0200228 while (i < size / CONFIG_SYS_NAND_PAGE_SIZE) {
Magnus Lilja40c642b2009-06-13 20:50:01 +0200229 if (nfc_read_page(page, buf) < 0)
230 return -1;
231
232 page++;
233 i++;
234 buf = buf + CONFIG_SYS_NAND_PAGE_SIZE;
235
236 /*
237 * Check if we have crossed a block boundary, and if so
238 * check for bad block.
239 */
240 if (!(page % CONFIG_SYS_NAND_PAGE_COUNT)) {
241 /*
242 * Yes, new block. See if this block is good. If not,
John Rigbyf3bb63a2010-01-26 19:24:17 -0700243 * loop until we find a good block.
Magnus Lilja40c642b2009-06-13 20:50:01 +0200244 */
245 while (is_badblock(page)) {
246 page = page + CONFIG_SYS_NAND_PAGE_COUNT;
247 /* Check i we've reached the end of flash. */
248 if (page >= maxpages)
249 return -1;
250 }
251 }
252 }
253
254 return 0;
255}
256
Wolfgang Denka9aa3922010-10-28 20:35:36 +0200257#if defined(CONFIG_ARM)
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200258void board_init_f (ulong bootflag)
259{
Wolfgang Denkc8d76ea2010-10-18 23:43:37 +0200260 relocate_code (CONFIG_SYS_TEXT_BASE - TOTAL_MALLOC_LEN, NULL,
261 CONFIG_SYS_TEXT_BASE);
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200262}
263#endif
264
Magnus Lilja40c642b2009-06-13 20:50:01 +0200265/*
266 * The main entry for NAND booting. It's necessary that SDRAM is already
267 * configured and available since this code loads the main U-Boot image
268 * from NAND into SDRAM and starts it from there.
269 */
270void nand_boot(void)
271{
272 __attribute__((noreturn)) void (*uboot)(void);
273
Magnus Lilja40c642b2009-06-13 20:50:01 +0200274 /*
275 * CONFIG_SYS_NAND_U_BOOT_OFFS and CONFIG_SYS_NAND_U_BOOT_SIZE must
276 * be aligned to full pages
277 */
278 if (!nand_load(CONFIG_SYS_NAND_U_BOOT_OFFS, CONFIG_SYS_NAND_U_BOOT_SIZE,
279 (uchar *)CONFIG_SYS_NAND_U_BOOT_DST)) {
280 /* Copy from NAND successful, start U-boot */
281 uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START;
282 uboot();
283 } else {
284 /* Unrecoverable error when copying from NAND */
285 hang();
286 }
287}
288
289/*
290 * Called in case of an exception.
291 */
292void hang(void)
293{
294 /* Loop forever */
295 while (1) ;
296}