NAND/davinci: Fix segfault for hwecc4_infix reads
[openocd/genbsdl.git] / src / flash / nand / davinci.c
blob90219c691cb9afd54b9eef35913bbd975adee3ba
1 /***************************************************************************
2 * Copyright (C) 2009 by David Brownell *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
21 * DaVinci family NAND controller support for OpenOCD.
23 * This driver uses hardware ECC (1-bit or 4-bit) unless
24 * the chip is accessed in "raw" mode.
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
31 #include "imp.h"
32 #include "arm_io.h"
33 #include <target/target.h>
35 enum ecc {
36 HWECC1, /* all controllers support 1-bit ECC */
37 HWECC4, /* newer chips also have 4-bit ECC hardware */
38 HWECC4_INFIX, /* avoid this layout, except maybe for boot code */
41 struct davinci_nand {
42 struct target *target;
44 uint8_t chipsel; /* chipselect 0..3 == CS2..CS5 */
45 uint8_t eccmode;
47 /* Async EMIF controller base */
48 uint32_t aemif;
50 /* NAND chip addresses */
51 uint32_t data; /* without CLE or ALE */
52 uint32_t cmd; /* with CLE */
53 uint32_t addr; /* with ALE */
55 /* write acceleration */
56 struct arm_nand_data io;
58 /* page i/o for the relevant flavor of hardware ECC */
59 int (*read_page)(struct nand_device *nand, uint32_t page,
60 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
61 int (*write_page)(struct nand_device *nand, uint32_t page,
62 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
65 #define NANDFCR 0x60 /* flash control register */
66 #define NANDFSR 0x64 /* flash status register */
67 #define NANDFECC 0x70 /* 1-bit ECC data, CS0, 1st of 4 */
68 #define NAND4BITECCLOAD 0xbc /* 4-bit ECC, load saved values */
69 #define NAND4BITECC 0xc0 /* 4-bit ECC data, 1st of 4 */
70 #define NANDERRADDR 0xd0 /* 4-bit ECC err addr, 1st of 2 */
71 #define NANDERRVAL 0xd8 /* 4-bit ECC err value, 1st of 2 */
73 static int halted(struct target *target, const char *label)
75 if (target->state == TARGET_HALTED)
76 return true;
78 LOG_ERROR("Target must be halted to use NAND controller (%s)", label);
79 return false;
82 static int davinci_init(struct nand_device *nand)
84 struct davinci_nand *info = nand->controller_priv;
85 struct target *target = info->target;
86 uint32_t nandfcr;
88 if (!halted(target, "init"))
89 return ERROR_NAND_OPERATION_FAILED;
91 /* We require something else to have configured AEMIF to talk
92 * to NAND chip in this range (including timings and width).
94 target_read_u32(target, info->aemif + NANDFCR, &nandfcr);
95 if (!(nandfcr & (1 << info->chipsel))) {
96 LOG_ERROR("chip address %08" PRIx32 " not NAND-enabled?", info->data);
97 return ERROR_NAND_OPERATION_FAILED;
100 /* REVISIT verify: AxCR must be in 8-bit mode, since that's all we
101 * tested. 16 bit support should work too; but not with 4-bit ECC.
104 return ERROR_OK;
107 static int davinci_reset(struct nand_device *nand)
109 return ERROR_OK;
112 static int davinci_nand_ready(struct nand_device *nand, int timeout)
114 struct davinci_nand *info = nand->controller_priv;
115 struct target *target = info->target;
116 uint32_t nandfsr;
118 /* NOTE: return code is zero/error, else success; not ERROR_* */
120 if (!halted(target, "ready"))
121 return 0;
123 do {
124 target_read_u32(target, info->aemif + NANDFSR, &nandfsr);
126 if (nandfsr & 0x01)
127 return 1;
129 alive_sleep(1);
130 } while (timeout-- > 0);
132 return 0;
135 static int davinci_command(struct nand_device *nand, uint8_t command)
137 struct davinci_nand *info = nand->controller_priv;
138 struct target *target = info->target;
140 if (!halted(target, "command"))
141 return ERROR_NAND_OPERATION_FAILED;
143 target_write_u8(target, info->cmd, command);
144 return ERROR_OK;
147 static int davinci_address(struct nand_device *nand, uint8_t address)
149 struct davinci_nand *info = nand->controller_priv;
150 struct target *target = info->target;
152 if (!halted(target, "address"))
153 return ERROR_NAND_OPERATION_FAILED;
155 target_write_u8(target, info->addr, address);
156 return ERROR_OK;
159 static int davinci_write_data(struct nand_device *nand, uint16_t data)
161 struct davinci_nand *info = nand->controller_priv;
162 struct target *target = info->target;
164 if (!halted(target, "write_data"))
165 return ERROR_NAND_OPERATION_FAILED;
167 target_write_u8(target, info->data, data);
168 return ERROR_OK;
171 static int davinci_read_data(struct nand_device *nand, void *data)
173 struct davinci_nand *info = nand->controller_priv;
174 struct target *target = info->target;
176 if (!halted(target, "read_data"))
177 return ERROR_NAND_OPERATION_FAILED;
179 target_read_u8(target, info->data, data);
180 return ERROR_OK;
183 /* REVISIT a bit of native code should let block reads be MUCH faster */
185 static int davinci_read_block_data(struct nand_device *nand,
186 uint8_t *data, int data_size)
188 struct davinci_nand *info = nand->controller_priv;
189 struct target *target = info->target;
190 uint32_t nfdata = info->data;
191 uint32_t tmp;
193 if (!halted(target, "read_block"))
194 return ERROR_NAND_OPERATION_FAILED;
196 while (data_size >= 4) {
197 target_read_u32(target, nfdata, &tmp);
199 data[0] = tmp;
200 data[1] = tmp >> 8;
201 data[2] = tmp >> 16;
202 data[3] = tmp >> 24;
204 data_size -= 4;
205 data += 4;
208 while (data_size > 0) {
209 target_read_u8(target, nfdata, data);
211 data_size -= 1;
212 data += 1;
215 return ERROR_OK;
218 static int davinci_write_block_data(struct nand_device *nand,
219 uint8_t *data, int data_size)
221 struct davinci_nand *info = nand->controller_priv;
222 struct target *target = info->target;
223 uint32_t nfdata = info->data;
224 uint32_t tmp;
225 int status;
227 if (!halted(target, "write_block"))
228 return ERROR_NAND_OPERATION_FAILED;
230 /* try the fast way first */
231 status = arm_nandwrite(&info->io, data, data_size);
232 if (status != ERROR_NAND_NO_BUFFER)
233 return status;
235 /* else do it slowly */
236 while (data_size >= 4) {
237 tmp = le_to_h_u32(data);
238 target_write_u32(target, nfdata, tmp);
240 data_size -= 4;
241 data += 4;
244 while (data_size > 0) {
245 target_write_u8(target, nfdata, *data);
247 data_size -= 1;
248 data += 1;
251 return ERROR_OK;
254 static int davinci_write_page(struct nand_device *nand, uint32_t page,
255 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
257 struct davinci_nand *info = nand->controller_priv;
258 uint8_t *ooballoc = NULL;
259 int status;
261 if (!nand->device)
262 return ERROR_NAND_DEVICE_NOT_PROBED;
263 if (!halted(info->target, "write_page"))
264 return ERROR_NAND_OPERATION_FAILED;
266 /* Always write both data and OOB ... we are not "raw" I/O! */
267 if (!data) {
268 LOG_ERROR("Missing NAND data; try 'nand raw_access enable'\n");
269 return ERROR_NAND_OPERATION_FAILED;
272 /* If we're not given OOB, write 0xff where we don't write ECC codes. */
273 switch (nand->page_size) {
274 case 512:
275 oob_size = 16;
276 break;
277 case 2048:
278 oob_size = 64;
279 break;
280 case 4096:
281 oob_size = 128;
282 break;
283 default:
284 return ERROR_NAND_OPERATION_FAILED;
286 if (!oob) {
287 ooballoc = malloc(oob_size);
288 if (!ooballoc)
289 return ERROR_NAND_OPERATION_FAILED;
290 oob = ooballoc;
291 memset(oob, 0x0ff, oob_size);
294 /* REVISIT avoid wasting SRAM: unless nand->use_raw is set,
295 * use 512 byte chunks. Read side support will often want
296 * to include oob_size ...
298 info->io.chunk_size = nand->page_size;
300 status = info->write_page(nand, page, data, data_size, oob, oob_size);
301 free(ooballoc);
302 return status;
305 static int davinci_read_page(struct nand_device *nand, uint32_t page,
306 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
308 struct davinci_nand *info = nand->controller_priv;
310 if (!nand->device)
311 return ERROR_NAND_DEVICE_NOT_PROBED;
312 if (!halted(info->target, "read_page"))
313 return ERROR_NAND_OPERATION_FAILED;
315 return info->read_page(nand, page, data, data_size, oob, oob_size);
318 static void davinci_write_pagecmd(struct nand_device *nand, uint8_t cmd, uint32_t page)
320 struct davinci_nand *info = nand->controller_priv;
321 struct target *target = info->target;
322 int page3 = nand->address_cycles - (nand->page_size == 512);
324 /* write command ({page,otp}x{read,program} */
325 target_write_u8(target, info->cmd, cmd);
327 /* column address (beginning-of-page) */
328 target_write_u8(target, info->addr, 0);
329 if (nand->page_size > 512)
330 target_write_u8(target, info->addr, 0);
332 /* page address */
333 target_write_u8(target, info->addr, page);
334 target_write_u8(target, info->addr, page >> 8);
335 if (page3)
336 target_write_u8(target, info->addr, page >> 16);
337 if (page3 == 2)
338 target_write_u8(target, info->addr, page >> 24);
341 static int davinci_seek_column(struct nand_device *nand, uint16_t column)
343 struct davinci_nand *info = nand->controller_priv;
344 struct target *target = info->target;
346 /* Random read, we must have issued a page read already */
347 target_write_u8(target, info->cmd, NAND_CMD_RNDOUT);
349 target_write_u8(target, info->addr, column);
351 if (nand->page_size > 512) {
352 target_write_u8(target, info->addr, column >> 8);
353 target_write_u8(target, info->cmd, NAND_CMD_RNDOUTSTART);
356 if (!davinci_nand_ready(nand, 100))
357 return ERROR_NAND_OPERATION_TIMEOUT;
359 return ERROR_OK;
362 static int davinci_writepage_tail(struct nand_device *nand,
363 uint8_t *oob, uint32_t oob_size)
365 struct davinci_nand *info = nand->controller_priv;
366 struct target *target = info->target;
367 uint8_t status;
369 if (oob_size)
370 davinci_write_block_data(nand, oob, oob_size);
372 /* non-cachemode page program */
373 target_write_u8(target, info->cmd, NAND_CMD_PAGEPROG);
375 if (!davinci_nand_ready(nand, 100))
376 return ERROR_NAND_OPERATION_TIMEOUT;
378 if (nand_read_status(nand, &status) != ERROR_OK) {
379 LOG_ERROR("couldn't read status");
380 return ERROR_NAND_OPERATION_FAILED;
383 if (status & NAND_STATUS_FAIL) {
384 LOG_ERROR("write operation failed, status: 0x%02x", status);
385 return ERROR_NAND_OPERATION_FAILED;
388 return ERROR_OK;
392 * All DaVinci family chips support 1-bit ECC on a per-chipselect basis.
394 static int davinci_write_page_ecc1(struct nand_device *nand, uint32_t page,
395 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
397 unsigned oob_offset;
398 struct davinci_nand *info = nand->controller_priv;
399 struct target *target = info->target;
400 const uint32_t fcr_addr = info->aemif + NANDFCR;
401 const uint32_t ecc1_addr = info->aemif + NANDFECC + (4 * info->chipsel);
402 uint32_t fcr, ecc1;
404 /* Write contiguous ECC bytes starting at specified offset.
405 * NOTE: Linux reserves twice as many bytes as we need; and
406 * for 16-bit OOB, those extra bytes are discontiguous.
408 switch (nand->page_size) {
409 case 512:
410 oob_offset = 0;
411 break;
412 case 2048:
413 oob_offset = 40;
414 break;
415 default:
416 oob_offset = 80;
417 break;
420 davinci_write_pagecmd(nand, NAND_CMD_SEQIN, page);
422 /* scrub any old ECC state */
423 target_read_u32(target, ecc1_addr, &ecc1);
425 target_read_u32(target, fcr_addr, &fcr);
426 fcr |= 1 << (8 + info->chipsel);
428 do {
429 /* set "start csX 1bit ecc" bit */
430 target_write_u32(target, fcr_addr, fcr);
432 /* write 512 bytes */
433 davinci_write_block_data(nand, data, 512);
434 data += 512;
435 data_size -= 512;
437 /* read the ecc, pack to 3 bytes, and invert so the ecc
438 * in an erased block is correct
440 target_read_u32(target, ecc1_addr, &ecc1);
441 ecc1 = (ecc1 & 0x0fff) | ((ecc1 & 0x0fff0000) >> 4);
442 ecc1 = ~ecc1;
444 /* save correct ECC code into oob data */
445 oob[oob_offset++] = (uint8_t)(ecc1);
446 oob[oob_offset++] = (uint8_t)(ecc1 >> 8);
447 oob[oob_offset++] = (uint8_t)(ecc1 >> 16);
449 } while (data_size);
451 /* write OOB into spare area */
452 return davinci_writepage_tail(nand, oob, oob_size);
456 * Preferred "new style" ECC layout for use with 4-bit ECC. This somewhat
457 * slows down large page reads done with error correction (since the OOB
458 * is read first, so its ECC data can be used incrementally), but the
459 * manufacturer bad block markers are safe. Contrast: old "infix" style.
461 static int davinci_write_page_ecc4(struct nand_device *nand, uint32_t page,
462 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
464 static const uint8_t ecc512[] = {
465 0, 1, 2, 3, 4, /* 5== mfr badblock */
466 6, 7, /* 8..12 for BBT or JFFS2 */ 13, 14, 15,
468 static const uint8_t ecc2048[] = {
469 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
470 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
471 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
472 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
474 static const uint8_t ecc4096[] = {
475 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
476 58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
477 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
478 78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
479 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
480 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
481 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
482 118, 119, 120, 121, 122, 123, 124, 125, 126, 127,
485 struct davinci_nand *info = nand->controller_priv;
486 const uint8_t *l;
487 struct target *target = info->target;
488 const uint32_t fcr_addr = info->aemif + NANDFCR;
489 const uint32_t ecc4_addr = info->aemif + NAND4BITECC;
490 uint32_t fcr, ecc4;
492 /* Use the same ECC layout Linux uses. For small page chips
493 * it's a bit cramped.
495 * NOTE: at this writing, 4KB pages have issues in Linux
496 * because they need more than 64 bytes of ECC data, which
497 * the standard ECC logic can't handle.
499 switch (nand->page_size) {
500 case 512:
501 l = ecc512;
502 break;
503 case 2048:
504 l = ecc2048;
505 break;
506 default:
507 l = ecc4096;
508 break;
511 davinci_write_pagecmd(nand, NAND_CMD_SEQIN, page);
513 /* scrub any old ECC state */
514 target_read_u32(target, info->aemif + NANDERRVAL, &ecc4);
516 target_read_u32(target, fcr_addr, &fcr);
517 fcr &= ~(0x03 << 4);
518 fcr |= (1 << 12) | (info->chipsel << 4);
520 do {
521 uint32_t raw_ecc[4], *p;
522 int i;
524 /* start 4bit ecc on csX */
525 target_write_u32(target, fcr_addr, fcr);
527 /* write 512 bytes */
528 davinci_write_block_data(nand, data, 512);
529 data += 512;
530 data_size -= 512;
532 /* read the ecc, then save it into 10 bytes in the oob */
533 for (i = 0; i < 4; i++) {
534 target_read_u32(target, ecc4_addr + 4 * i, &raw_ecc[i]);
535 raw_ecc[i] &= 0x03ff03ff;
537 for (i = 0, p = raw_ecc; i < 2; i++, p += 2) {
538 oob[*l++] = p[0] & 0xff;
539 oob[*l++] = ((p[0] >> 8) & 0x03) | ((p[0] >> 14) & 0xfc);
540 oob[*l++] = ((p[0] >> 22) & 0x0f) | ((p[1] << 4) & 0xf0);
541 oob[*l++] = ((p[1] >> 4) & 0x3f) | ((p[1] >> 10) & 0xc0);
542 oob[*l++] = (p[1] >> 18) & 0xff;
545 } while (data_size);
547 /* write OOB into spare area */
548 return davinci_writepage_tail(nand, oob, oob_size);
552 * "Infix" OOB ... like Linux ECC_HW_SYNDROME. Avoided because it trashes
553 * manufacturer bad block markers, except on small page chips. Once you
554 * write to a page using this scheme, you need specialized code to update
555 * it (code which ignores now-invalid bad block markers).
557 * This is needed *only* to support older firmware. Older ROM Boot Loaders
558 * need it to read their second stage loader (UBL) into SRAM, but from then
559 * on the whole system can use the cleaner non-infix layouts. Systems with
560 * older second stage loaders (ABL/U-Boot, etc) or other system software
561 * (MVL 4.x/5.x kernels, filesystems, etc) may need it more generally.
563 static int davinci_write_page_ecc4infix(struct nand_device *nand, uint32_t page,
564 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
566 struct davinci_nand *info = nand->controller_priv;
567 struct target *target = info->target;
568 const uint32_t fcr_addr = info->aemif + NANDFCR;
569 const uint32_t ecc4_addr = info->aemif + NAND4BITECC;
570 uint32_t fcr, ecc4;
572 davinci_write_pagecmd(nand, NAND_CMD_SEQIN, page);
574 /* scrub any old ECC state */
575 target_read_u32(target, info->aemif + NANDERRVAL, &ecc4);
577 target_read_u32(target, fcr_addr, &fcr);
578 fcr &= ~(0x03 << 4);
579 fcr |= (1 << 12) | (info->chipsel << 4);
581 do {
582 uint32_t raw_ecc[4], *p;
583 uint8_t *l;
584 int i;
586 /* start 4bit ecc on csX */
587 target_write_u32(target, fcr_addr, fcr);
589 /* write 512 bytes */
590 davinci_write_block_data(nand, data, 512);
591 data += 512;
592 data_size -= 512;
594 /* read the ecc */
595 for (i = 0; i < 4; i++) {
596 target_read_u32(target, ecc4_addr + 4 * i, &raw_ecc[i]);
597 raw_ecc[i] &= 0x03ff03ff;
600 /* skip 6 bytes of prepad, then pack 10 packed ecc bytes */
601 for (i = 0, l = oob + 6, p = raw_ecc; i < 2; i++, p += 2) {
602 *l++ = p[0] & 0xff;
603 *l++ = ((p[0] >> 8) & 0x03) | ((p[0] >> 14) & 0xfc);
604 *l++ = ((p[0] >> 22) & 0x0f) | ((p[1] << 4) & 0xf0);
605 *l++ = ((p[1] >> 4) & 0x3f) | ((p[1] >> 10) & 0xc0);
606 *l++ = (p[1] >> 18) & 0xff;
609 /* write this "out-of-band" data -- infix */
610 davinci_write_block_data(nand, oob, 16);
611 oob += 16;
612 oob_size -= 16;
614 } while (data_size);
616 /* the last data and OOB writes included the spare area */
617 return davinci_writepage_tail(nand, NULL, 0);
620 static int davinci_read_page_ecc4infix(struct nand_device *nand, uint32_t page,
621 uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size)
623 int read_size;
624 int want_col, at_col;
625 int ret;
627 davinci_write_pagecmd(nand, NAND_CMD_READ0, page);
629 /* large page devices need a start command */
630 if (nand->page_size > 512)
631 davinci_command(nand, NAND_CMD_READSTART);
633 if (!davinci_nand_ready(nand, 100))
634 return ERROR_NAND_OPERATION_TIMEOUT;
636 /* NOTE: not bothering to compute and use ECC data for now */
638 want_col = 0;
639 at_col = 0;
640 while ((data && data_size) || (oob && oob_size)) {
642 if (data && data_size) {
643 if (want_col != at_col) {
644 /* Reads are slow, so seek past them when we can */
645 ret = davinci_seek_column(nand, want_col);
646 if (ret != ERROR_OK)
647 return ret;
648 at_col = want_col;
650 /* read 512 bytes or data_size, whichever is smaller*/
651 read_size = data_size > 512 ? 512 : data_size;
652 davinci_read_block_data(nand, data, read_size);
653 data += read_size;
654 data_size -= read_size;
655 at_col += read_size;
657 want_col += 512;
659 if (oob && oob_size) {
660 if (want_col != at_col) {
661 ret = davinci_seek_column(nand, want_col);
662 if (ret != ERROR_OK)
663 return ret;
664 at_col = want_col;
666 /* read this "out-of-band" data -- infix */
667 read_size = oob_size > 16 ? 16 : oob_size;
668 davinci_read_block_data(nand, oob, read_size);
669 oob += read_size;
670 oob_size -= read_size;
671 at_col += read_size;
673 want_col += 16;
675 return ERROR_OK;
678 NAND_DEVICE_COMMAND_HANDLER(davinci_nand_device_command)
680 struct davinci_nand *info;
681 struct target *target;
682 unsigned long chip, aemif;
683 enum ecc eccmode;
684 int chipsel;
686 /* arguments:
687 * - "davinci"
688 * - target
689 * - nand chip address
690 * - ecc mode
691 * - aemif address
692 * Plus someday, optionally, ALE and CLE masks.
694 if (CMD_ARGC < 5) {
695 LOG_ERROR("parameters: %s target "
696 "chip_addr hwecc_mode aemif_addr",
697 CMD_ARGV[0]);
698 goto fail;
701 target = get_target(CMD_ARGV[1]);
702 if (!target) {
703 LOG_ERROR("invalid target %s", CMD_ARGV[1]);
704 goto fail;
707 COMMAND_PARSE_NUMBER(ulong, CMD_ARGV[2], chip);
708 if (chip == 0) {
709 LOG_ERROR("Invalid NAND chip address %s", CMD_ARGV[2]);
710 goto fail;
713 if (strcmp(CMD_ARGV[3], "hwecc1") == 0)
714 eccmode = HWECC1;
715 else if (strcmp(CMD_ARGV[3], "hwecc4") == 0)
716 eccmode = HWECC4;
717 else if (strcmp(CMD_ARGV[3], "hwecc4_infix") == 0)
718 eccmode = HWECC4_INFIX;
719 else {
720 LOG_ERROR("Invalid ecc mode %s", CMD_ARGV[3]);
721 goto fail;
724 COMMAND_PARSE_NUMBER(ulong, CMD_ARGV[4], aemif);
725 if (aemif == 0) {
726 LOG_ERROR("Invalid AEMIF controller address %s", CMD_ARGV[4]);
727 goto fail;
730 /* REVISIT what we'd *like* to do is look up valid ranges using
731 * target-specific declarations, and not even need to pass the
732 * AEMIF controller address.
734 if (aemif == 0x01e00000 /* dm6446, dm357 */
735 || aemif == 0x01e10000 /* dm335, dm355 */
736 || aemif == 0x01d10000 /* dm365 */
738 if (chip < 0x02000000 || chip >= 0x0a000000) {
739 LOG_ERROR("NAND address %08lx out of range?", chip);
740 goto fail;
742 chipsel = (chip - 0x02000000) >> 25;
743 } else {
744 LOG_ERROR("unrecognized AEMIF controller address %08lx", aemif);
745 goto fail;
748 info = calloc(1, sizeof *info);
749 if (info == NULL)
750 goto fail;
752 info->target = target;
753 info->eccmode = eccmode;
754 info->chipsel = chipsel;
755 info->aemif = aemif;
756 info->data = chip;
757 info->cmd = chip | 0x10;
758 info->addr = chip | 0x08;
760 nand->controller_priv = info;
762 info->io.target = target;
763 info->io.data = info->data;
764 info->io.op = ARM_NAND_NONE;
766 /* NOTE: for now we don't do any error correction on read.
767 * Nothing else in OpenOCD currently corrects read errors,
768 * and in any case it's *writing* that we care most about.
770 info->read_page = nand_read_page_raw;
772 switch (eccmode) {
773 case HWECC1:
774 /* ECC_HW, 1-bit corrections, 3 bytes ECC per 512 data bytes */
775 info->write_page = davinci_write_page_ecc1;
776 break;
777 case HWECC4:
778 /* ECC_HW, 4-bit corrections, 10 bytes ECC per 512 data bytes */
779 info->write_page = davinci_write_page_ecc4;
780 break;
781 case HWECC4_INFIX:
782 /* Same 4-bit ECC HW, with problematic page/ecc layout */
783 info->read_page = davinci_read_page_ecc4infix;
784 info->write_page = davinci_write_page_ecc4infix;
785 break;
788 return ERROR_OK;
790 fail:
791 return ERROR_NAND_OPERATION_FAILED;
794 struct nand_flash_controller davinci_nand_controller = {
795 .name = "davinci",
796 .nand_device_command = davinci_nand_device_command,
797 .init = davinci_init,
798 .reset = davinci_reset,
799 .command = davinci_command,
800 .address = davinci_address,
801 .write_data = davinci_write_data,
802 .read_data = davinci_read_data,
803 .write_page = davinci_write_page,
804 .read_page = davinci_read_page,
805 .write_block_data = davinci_write_block_data,
806 .read_block_data = davinci_read_block_data,
807 .nand_ready = davinci_nand_ready,