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 | #define CONFIG_SYS_NAND_READ_DELAY \ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 26 | { volatile int dummy; int i; for (i=0; i<10000; i++) dummy = i; } |
| 27 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 28 | static int nand_ecc_pos[] = CONFIG_SYS_NAND_ECCPOS; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 29 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 30 | #if (CONFIG_SYS_NAND_PAGE_SIZE <= 512) |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 31 | /* |
| 32 | * NAND command for small page NAND devices (512) |
| 33 | */ |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 34 | 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] | 35 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 36 | struct nand_chip *this = mtd->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 37 | int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 38 | |
| 39 | if (this->dev_ready) |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 40 | while (!this->dev_ready(mtd)) |
| 41 | ; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 42 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 43 | CONFIG_SYS_NAND_READ_DELAY; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 44 | |
| 45 | /* Begin command latch cycle */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 46 | this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 47 | /* Set ALE and clear CLE to start address cycle */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 48 | /* Column address */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 49 | this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE); |
| 50 | this->cmd_ctrl(mtd, page_addr & 0xff, 0); /* A[16:9] */ |
| 51 | this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff, 0); /* A[24:17] */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_SYS_NAND_4_ADDR_CYCLE |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 53 | /* One more address cycle for devices > 32MiB */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 54 | this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* A[28:25] */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 55 | #endif |
| 56 | /* Latch in address */ |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 57 | this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * Wait a while for the data to be ready |
| 61 | */ |
| 62 | if (this->dev_ready) |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 63 | while (!this->dev_ready(mtd)) |
| 64 | ; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 65 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | CONFIG_SYS_NAND_READ_DELAY; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 67 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 68 | return 0; |
| 69 | } |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 70 | #else |
| 71 | /* |
| 72 | * NAND command for large page NAND devices (2k) |
| 73 | */ |
| 74 | static int nand_command(struct mtd_info *mtd, int block, int page, int offs, u8 cmd) |
| 75 | { |
| 76 | struct nand_chip *this = mtd->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | int page_addr = page + block * CONFIG_SYS_NAND_PAGE_COUNT; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 78 | |
| 79 | if (this->dev_ready) |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 80 | while (!this->dev_ready(mtd)) |
| 81 | ; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 82 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 83 | CONFIG_SYS_NAND_READ_DELAY; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 84 | |
| 85 | /* Emulate NAND_CMD_READOOB */ |
| 86 | if (cmd == NAND_CMD_READOOB) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | offs += CONFIG_SYS_NAND_PAGE_SIZE; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 88 | cmd = NAND_CMD_READ0; |
| 89 | } |
| 90 | |
| 91 | /* Begin command latch cycle */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 92 | this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 93 | /* Set ALE and clear CLE to start address cycle */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 94 | /* Column address */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 95 | this->cmd_ctrl(mtd, offs & 0xff, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 96 | NAND_CTRL_ALE | NAND_CTRL_CHANGE); /* A[7:0] */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 97 | this->cmd_ctrl(mtd, (offs >> 8) & 0xff, 0); /* A[11:9] */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 98 | /* Row address */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 99 | this->cmd_ctrl(mtd, (page_addr & 0xff), 0); /* A[19:12] */ |
| 100 | this->cmd_ctrl(mtd, ((page_addr >> 8) & 0xff), 0); /* A[27:20] */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | #ifdef CONFIG_SYS_NAND_5_ADDR_CYCLE |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 102 | /* One more address cycle for devices > 128MiB */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 103 | this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, 0); /* A[31:28] */ |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 104 | #endif |
| 105 | /* Latch in address */ |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 106 | this->cmd_ctrl(mtd, NAND_CMD_READSTART, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 107 | NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 108 | this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 109 | |
| 110 | /* |
| 111 | * Wait a while for the data to be ready |
| 112 | */ |
| 113 | if (this->dev_ready) |
Scott Wood | 4f32d77 | 2008-08-05 11:15:59 -0500 | [diff] [blame] | 114 | while (!this->dev_ready(mtd)) |
| 115 | ; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 116 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 117 | CONFIG_SYS_NAND_READ_DELAY; |
Stefan Roese | 46f3738 | 2008-04-08 10:31:00 +0200 | [diff] [blame] | 118 | |
| 119 | return 0; |
| 120 | } |
| 121 | #endif |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 122 | |
| 123 | static int nand_is_bad_block(struct mtd_info *mtd, int block) |
| 124 | { |
| 125 | struct nand_chip *this = mtd->priv; |
| 126 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | 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] | 128 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 129 | /* |
Marcel Ziswiler | 10c7382 | 2007-12-30 03:30:56 +0100 | [diff] [blame] | 130 | * Read one byte |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 131 | */ |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 132 | if (readb(this->IO_ADDR_R) != 0xff) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 133 | return 1; |
| 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static int nand_read_page(struct mtd_info *mtd, int block, int page, uchar *dst) |
| 139 | { |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 140 | struct nand_chip *this = mtd->priv; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 141 | u_char *ecc_calc; |
| 142 | u_char *ecc_code; |
| 143 | u_char *oob_data; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 144 | int i; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | int eccsize = CONFIG_SYS_NAND_ECCSIZE; |
| 146 | int eccbytes = CONFIG_SYS_NAND_ECCBYTES; |
| 147 | int eccsteps = CONFIG_SYS_NAND_ECCSTEPS; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 148 | uint8_t *p = dst; |
| 149 | int stat; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 150 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 151 | nand_command(mtd, block, page, 0, NAND_CMD_READ0); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 152 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 153 | /* No malloc available for now, just use some temporary locations |
| 154 | * in SDRAM |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 155 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | ecc_calc = (u_char *)(CONFIG_SYS_SDRAM_BASE + 0x10000); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 157 | ecc_code = ecc_calc + 0x100; |
| 158 | oob_data = ecc_calc + 0x200; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 159 | |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 160 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 161 | this->ecc.hwctl(mtd, NAND_ECC_READ); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 162 | this->read_buf(mtd, p, eccsize); |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 163 | this->ecc.calculate(mtd, p, &ecc_calc[i]); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 164 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 165 | this->read_buf(mtd, oob_data, CONFIG_SYS_NAND_OOBSIZE); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 166 | |
| 167 | /* Pick the ECC bytes out of the oob data */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 168 | for (i = 0; i < CONFIG_SYS_NAND_ECCTOTAL; i++) |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 169 | ecc_code[i] = oob_data[nand_ecc_pos[i]]; |
| 170 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 171 | eccsteps = CONFIG_SYS_NAND_ECCSTEPS; |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 172 | p = dst; |
| 173 | |
| 174 | for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 175 | /* No chance to do something with the possible error message |
| 176 | * from correct_data(). We just hope that all possible errors |
| 177 | * are corrected by this routine. |
| 178 | */ |
Stefan Roese | c568f77 | 2008-01-05 16:49:37 +0100 | [diff] [blame] | 179 | stat = this->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]); |
Stefan Roese | 42be56f | 2007-06-01 15:23:04 +0200 | [diff] [blame] | 180 | } |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 185 | static int nand_load(struct mtd_info *mtd, unsigned int offs, |
Wolfgang Denk | 4b07080 | 2008-08-14 14:41:06 +0200 | [diff] [blame] | 186 | unsigned int uboot_size, uchar *dst) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 187 | { |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 188 | unsigned int block, lastblock; |
| 189 | unsigned int page; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 190 | |
| 191 | /* |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 192 | * offs has to be aligned to a page address! |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 193 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 194 | block = offs / CONFIG_SYS_NAND_BLOCK_SIZE; |
| 195 | lastblock = (offs + uboot_size - 1) / CONFIG_SYS_NAND_BLOCK_SIZE; |
| 196 | page = (offs % CONFIG_SYS_NAND_BLOCK_SIZE) / CONFIG_SYS_NAND_PAGE_SIZE; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 197 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 198 | while (block <= lastblock) { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 199 | if (!nand_is_bad_block(mtd, block)) { |
| 200 | /* |
| 201 | * Skip bad blocks |
| 202 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 203 | while (page < CONFIG_SYS_NAND_PAGE_COUNT) { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 204 | nand_read_page(mtd, block, page, dst); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 205 | dst += CONFIG_SYS_NAND_PAGE_SIZE; |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 206 | page++; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 209 | page = 0; |
| 210 | } else { |
| 211 | lastblock++; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | block++; |
| 215 | } |
| 216 | |
| 217 | return 0; |
| 218 | } |
| 219 | |
Stefan Roese | 64852d0 | 2008-06-02 14:35:44 +0200 | [diff] [blame] | 220 | /* |
| 221 | * The main entry for NAND booting. It's necessary that SDRAM is already |
| 222 | * configured and available since this code loads the main U-Boot image |
| 223 | * from NAND into SDRAM and starts it from there. |
| 224 | */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 225 | void nand_boot(void) |
| 226 | { |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 227 | struct nand_chip nand_chip; |
| 228 | nand_info_t nand_info; |
| 229 | int ret; |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 230 | __attribute__((noreturn)) void (*uboot)(void); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 231 | |
| 232 | /* |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 233 | * Init board specific nand support |
| 234 | */ |
| 235 | nand_info.priv = &nand_chip; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | 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] | 237 | nand_chip.dev_ready = NULL; /* preset to NULL */ |
| 238 | board_nand_init(&nand_chip); |
| 239 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 240 | if (nand_chip.select_chip) |
| 241 | nand_chip.select_chip(&nand_info, 0); |
| 242 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 243 | /* |
| 244 | * Load U-Boot image from NAND into RAM |
| 245 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 246 | ret = nand_load(&nand_info, CONFIG_SYS_NAND_U_BOOT_OFFS, CONFIG_SYS_NAND_U_BOOT_SIZE, |
| 247 | (uchar *)CONFIG_SYS_NAND_U_BOOT_DST); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 248 | |
Guennadi Liakhovetski | aa64664 | 2008-08-06 21:42:07 +0200 | [diff] [blame] | 249 | if (nand_chip.select_chip) |
| 250 | nand_chip.select_chip(&nand_info, -1); |
| 251 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 252 | /* |
| 253 | * Jump to U-Boot image |
| 254 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 255 | uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 256 | (*uboot)(); |
| 257 | } |