Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 1 | /* |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 2 | * (C) Copyright 2006-2008 |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
| 7 | * published by the Free Software Foundation; either version 2 of |
| 8 | * the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 18 | * MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
| 22 | #include <nand.h> |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 23 | #include <asm/io.h> |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 24 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 25 | static int nand_ecc_pos[] = CONFIG_SYS_NAND_ECCPOS; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 26 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 27 | #if (CONFIG_SYS_NAND_PAGE_SIZE <= 512) |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 28 | /* |
| 29 | * NAND command for small page NAND devices (512) |
| 30 | */ |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 31 | static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 32 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 33 | struct nand_chip *this = mtd->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 35 | |
Stefan Roese | e29816f | 2011-05-16 13:04:00 +0200 | [diff] [blame] | 36 | while (!this->dev_ready(mtd)) |
| 37 | ; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 38 | |
| 39 | /* Begin command latch cycle */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 40 | this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 41 | /* Set ALE and clear CLE to start address cycle */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 42 | /* Column address */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 43 | this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE); |
Scott Wood | 1dac3a5 | 2009-06-24 17:23:49 -0500 | [diff] [blame] | 44 | this->cmd_ctrl(mtd, page_addr & 0xff, NAND_CTRL_ALE); /* A[16:9] */ |
| 45 | this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff, |
| 46 | NAND_CTRL_ALE); /* A[24:17] */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_SYS_NAND_4_ADDR_CYCLE |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 48 | /* One more address cycle for devices > 32MiB */ |
Scott Wood | 1dac3a5 | 2009-06-24 17:23:49 -0500 | [diff] [blame] | 49 | this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, |
| 50 | NAND_CTRL_ALE); /* A[28:25] */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 51 | #endif |
| 52 | /* Latch in address */ |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 53 | this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * Wait a while for the data to be ready |
| 57 | */ |
Stefan Roese | a9c847c | 2011-05-04 11:44:14 +0200 | [diff] [blame] | 58 | while (!this->dev_ready(mtd)) |
| 59 | ; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 60 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 61 | return 0; |
| 62 | } |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 63 | #else |
| 64 | /* |
| 65 | * NAND command for large page NAND devices (2k) |
| 66 | */ |
| 67 | static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd) |
| 68 | { |
| 69 | struct nand_chip *this = mtd->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT; |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 71 | void (*hwctrl)(struct mtd_info *mtd, int cmd, |
| 72 | unsigned int ctrl) = this->cmd_ctrl; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 73 | |
Stefan Roese | a9c847c | 2011-05-04 11:44:14 +0200 | [diff] [blame] | 74 | while (!this->dev_ready(mtd)) |
| 75 | ; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 76 | |
| 77 | /* Emulate NAND_CMD_READOOB */ |
| 78 | if (cmd == NAND_CMD_READOOB) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | offs += CONFIG_SYS_NAND_PAGE_SIZE; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 80 | cmd = NAND_CMD_READ0; |
| 81 | } |
| 82 | |
Alex Waterman | 65a9db7 | 2011-04-06 16:01:52 -0400 | [diff] [blame] | 83 | /* Shift the offset from byte addressing to word addressing. */ |
| 84 | if (this->options & NAND_BUSWIDTH_16) |
| 85 | offs >>= 1; |
| 86 | |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 87 | /* Begin command latch cycle */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 88 | hwctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 89 | /* Set ALE and clear CLE to start address cycle */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 90 | /* Column address */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 91 | hwctrl(mtd, offs & 0xff, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 92 | NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 93 | hwctrl(mtd, (offs >> 8) & 0xff, NAND_CTRL_ALE); /* A[11:9] */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 94 | /* Row address */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 95 | hwctrl(mtd, (page_addr & 0xff), NAND_CTRL_ALE); /* A[19:12] */ |
| 96 | hwctrl(mtd, ((page_addr >> 8) & 0xff), |
Scott Wood | 1dac3a5 | 2009-06-24 17:23:49 -0500 | [diff] [blame] | 97 | NAND_CTRL_ALE); /* A[27:20] */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_NAND_5_ADDR_CYCLE |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 99 | /* One more address cycle for devices > 128MiB */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 100 | hwctrl(mtd, (page_addr >> 16) & 0x0f, |
Scott Wood | 1dac3a5 | 2009-06-24 17:23:49 -0500 | [diff] [blame] | 101 | NAND_CTRL_ALE); /* A[31:28] */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 102 | #endif |
| 103 | /* Latch in address */ |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 104 | hwctrl(mtd, NAND_CMD_READSTART, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 105 | NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Alex Waterman | 83709783 | 2011-05-04 09:10:15 -0400 | [diff] [blame] | 106 | hwctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * Wait a while for the data to be ready |
| 110 | */ |
Stefan Roese | a9c847c | 2011-05-04 11:44:14 +0200 | [diff] [blame] | 111 | while (!this->dev_ready(mtd)) |
| 112 | ; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | #endif |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 117 | |
| 118 | static int nand_is_bad_block(struct mtd_info *mtd, int block) |
| 119 | { |
| 120 | struct nand_chip *this = mtd->priv; |
| 121 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 122 | nand_command(mtd, block, 0, CONFIG_SYS_NAND_BAD_BLOCK_POS, NAND_CMD_READOOB); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 123 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 124 | /* |
Alex Waterman | eced462 | 2011-05-19 15:08:36 -0400 | [diff] [blame] | 125 | * Read one byte (or two if it's a 16 bit chip). |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 126 | */ |
Alex Waterman | eced462 | 2011-05-19 15:08:36 -0400 | [diff] [blame] | 127 | if (this->options & NAND_BUSWIDTH_16) { |
| 128 | if (readw(this->IO_ADDR_R) != 0xffff) |
| 129 | return 1; |
| 130 | } else { |
| 131 | if (readb(this->IO_ADDR_R) != 0xff) |
| 132 | return 1; |
| 133 | } |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
Heiko Schocher | dc7cd8e | 2011-07-16 00:06:49 +0000 | [diff] [blame] | 138 | #if defined(CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST) |
| 139 | static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst) |
| 140 | { |
| 141 | struct nand_chip *this = mtd->priv; |
| 142 | u_char *ecc_calc; |
| 143 | u_char *ecc_code; |
| 144 | u_char *oob_data; |
| 145 | int i; |
| 146 | int eccsize = CONFIG_SYS_NAND_ECCSIZE; |
| 147 | int eccbytes = CONFIG_SYS_NAND_ECCBYTES; |
| 148 | int eccsteps = CONFIG_SYS_NAND_ECCSTEPS; |
| 149 | uint8_t *p = dst; |
| 150 | int stat; |
| 151 | |
| 152 | /* |
| 153 | * No malloc available for now, just use some temporary locations |
| 154 | * in SDRAM |
| 155 | */ |
| 156 | ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000); |
| 157 | ecc_code = ecc_calc + 0x100; |
| 158 | oob_data = ecc_calc + 0x200; |
| 159 | |
| 160 | nand_command(mtd, block, page, 0, NAND_CMD_READOOB); |
| 161 | this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE); |
| 162 | nand_command(mtd, block, page, 0, NAND_CMD_READ0); |
| 163 | |
| 164 | /* Pick the ECC bytes out of the oob data */ |
| 165 | for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++) |
| 166 | ecc_code[i] = oob_data[nand_ecc_pos[i]]; |
| 167 | |
| 168 | |
| 169 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 170 | this->ecc.hwctl(mtd, NAND_ECC_READ); |
| 171 | this->read_buf(mtd, p, eccsize); |
| 172 | this->ecc.calculate(mtd, p, &ecc_calc[i]); |
| 173 | stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]); |
| 174 | } |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | #else |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 179 | static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst) |
| 180 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 181 | struct nand_chip *this = mtd->priv; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 182 | u_char *ecc_calc; |
| 183 | u_char *ecc_code; |
| 184 | u_char *oob_data; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 185 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 186 | int eccsize = CONFIG_SYS_NAND_ECCSIZE; |
| 187 | int eccbytes = CONFIG_SYS_NAND_ECCBYTES; |
| 188 | int eccsteps = CONFIG_SYS_NAND_ECCSTEPS; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 189 | uint8_t *p = dst; |
| 190 | int stat; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 191 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 192 | nand_command(mtd, block, page, 0, NAND_CMD_READ0); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 193 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 194 | /* No malloc available for now, just use some temporary locations |
| 195 | * in SDRAM |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 196 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 197 | ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 198 | ecc_code = ecc_calc + 0x100; |
| 199 | oob_data = ecc_calc + 0x200; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 200 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 201 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 202 | this->ecc.hwctl(mtd, NAND_ECC_READ); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 203 | this->read_buf(mtd, p, eccsize); |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 204 | this->ecc.calculate(mtd, p, &ecc_calc[i]); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 205 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 206 | this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 207 | |
| 208 | /* Pick the ECC bytes out of the oob data */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 209 | for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++) |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 210 | ecc_code[i] = oob_data[nand_ecc_pos[i]]; |
| 211 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | eccsteps = CONFIG_SYS_NAND_ECCSTEPS; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 213 | p = dst; |
| 214 | |
| 215 | for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 216 | /* No chance to do something with the possible error message |
| 217 | * from correct_data(). We just hope that all possible errors |
| 218 | * are corrected by this routine. |
| 219 | */ |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 220 | stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 221 | } |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 222 | |
| 223 | return 0; |
| 224 | } |
Heiko Schocher | dc7cd8e | 2011-07-16 00:06:49 +0000 | [diff] [blame] | 225 | #endif /* #if defined(CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST) */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 226 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 227 | static int nand_load(struct mtd_info *mtd, unsigned int offs, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 228 | unsigned int uboot_size, uchar *dst) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 229 | { |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 230 | unsigned int block, lastblock; |
| 231 | unsigned int page; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 232 | |
| 233 | /* |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 234 | * offs has to be aligned to a page address! |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 235 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | block = offs / CONFIG_SYS_NAND_BLOCK_SIZE; |
| 237 | lastblock = (offs + uboot_size - 1) / CONFIG_SYS_NAND_BLOCK_SIZE; |
| 238 | page = (offs % CONFIG_SYS_NAND_BLOCK_SIZE) / CONFIG_SYS_NAND_PAGE_SIZE; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 239 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 240 | while (block <= lastblock) { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 241 | if (!nand_is_bad_block(mtd, block)) { |
| 242 | /* |
| 243 | * Skip bad blocks |
| 244 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 245 | while (page < CONFIG_SYS_NAND_PAGE_COUNT) { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 246 | nand_read_page(mtd, block, page, dst); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 247 | dst += CONFIG_SYS_NAND_PAGE_SIZE; |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 248 | page++; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 249 | } |
| 250 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 251 | page = 0; |
| 252 | } else { |
| 253 | lastblock++; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | block++; |
| 257 | } |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
Stefan Roese | 64852d0 | 2008-06-02 14:35:44 +0200 | [diff] [blame] | 262 | /* |
| 263 | * The main entry for NAND booting. It's necessary that SDRAM is already |
| 264 | * configured and available since this code loads the main U-Boot image |
| 265 | * from NAND into SDRAM and starts it from there. |
| 266 | */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 267 | void nand_boot(void) |
| 268 | { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 269 | struct nand_chip nand_chip; |
| 270 | nand_info_t nand_info; |
| 271 | int ret; |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 272 | __attribute__((noreturn)) void (*uboot)(void); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 273 | |
| 274 | /* |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 275 | * Init board specific nand support |
| 276 | */ |
Sughosh Ganu | 48571ff | 2010-11-30 11:25:01 -0500 | [diff] [blame] | 277 | nand_chip.select_chip = NULL; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 278 | nand_info.priv = &nand_chip; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 279 | nand_chip.IO_ADDR_R = nand_chip.IO_ADDR_W = (void __iomem *)CONFIG_SYS_NAND_BASE; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 280 | nand_chip.dev_ready = NULL; /* preset to NULL */ |
Stefan Roese | a89a990 | 2011-05-04 11:44:44 +0200 | [diff] [blame] | 281 | nand_chip.options = 0; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 282 | board_nand_init(&nand_chip); |
| 283 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 284 | if (nand_chip.select_chip) |
| 285 | nand_chip.select_chip(&nand_info, 0); |
| 286 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 287 | /* |
| 288 | * Load U-Boot image from NAND into RAM |
| 289 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 290 | ret = nand_load(&nand_info, CONFIG_SYS_NAND_U_BOOT_OFFS, CONFIG_SYS_NAND_U_BOOT_SIZE, |
| 291 | (uchar *)CONFIG_SYS_NAND_U_BOOT_DST); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 292 | |
Guennadi Liakhovetski | b74ab73 | 2009-05-18 16:07:22 +0200 | [diff] [blame] | 293 | #ifdef CONFIG_NAND_ENV_DST |
| 294 | nand_load(&nand_info, CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, |
| 295 | (uchar *)CONFIG_NAND_ENV_DST); |
| 296 | |
| 297 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 298 | nand_load(&nand_info, CONFIG_ENV_OFFSET_REDUND, CONFIG_ENV_SIZE, |
| 299 | (uchar *)CONFIG_NAND_ENV_DST + CONFIG_ENV_SIZE); |
| 300 | #endif |
| 301 | #endif |
| 302 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 303 | if (nand_chip.select_chip) |
| 304 | nand_chip.select_chip(&nand_info, -1); |
| 305 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 306 | /* |
| 307 | * Jump to U-Boot image |
| 308 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 309 | uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 310 | (*uboot)(); |
| 311 | } |