2 * (C) Copyright 2006 DENX Software Engineering
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 #if defined(CONFIG_CMD_NAND)
28 #include <asm/arch/pxa-regs.h>
30 #ifdef CONFIG_SYS_DFC_DEBUG1
31 # define DFC_DEBUG1(fmt, args...) printf(fmt, ##args)
33 # define DFC_DEBUG1(fmt, args...)
36 #ifdef CONFIG_SYS_DFC_DEBUG2
37 # define DFC_DEBUG2(fmt, args...) printf(fmt, ##args)
39 # define DFC_DEBUG2(fmt, args...)
42 #ifdef CONFIG_SYS_DFC_DEBUG3
43 # define DFC_DEBUG3(fmt, args...) printf(fmt, ##args)
45 # define DFC_DEBUG3(fmt, args...)
48 /* These really don't belong here, as they are specific to the NAND Model */
49 static uint8_t scan_ff_pattern
[] = { 0xff, 0xff };
51 static struct nand_bbt_descr delta_bbt_descr
= {
55 .pattern
= scan_ff_pattern
58 static struct nand_ecclayout delta_oob
= {
60 .eccpos
= {2, 3, 4, 5, 6, 7},
61 .oobfree
= { {8, 2}, {12, 4} }
65 * not required for Monahans DFC
67 static void dfc_hwcontrol(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
73 /* read device ready pin */
74 static int dfc_device_ready(struct mtd_info
*mtdinfo
)
85 * Write buf to the DFC Controller Data Buffer
87 static void dfc_write_buf(struct mtd_info
*mtd
, const u_char
*buf
, int len
)
89 unsigned long bytes_multi
= len
& 0xfffffffc;
90 unsigned long rest
= len
& 0x3;
91 unsigned long *long_buf
;
94 DFC_DEBUG2("dfc_write_buf: writing %d bytes starting with 0x%x.\n", len
, *((unsigned long*) buf
));
96 for(i
=0; i
<bytes_multi
; i
+=4) {
97 long_buf
= (unsigned long*) &buf
[i
];
102 printf("dfc_write_buf: ERROR, writing non 4-byte aligned data.\n");
109 * static void dfc_read_buf(struct mtd_info *mtd, const u_char *buf, int len)
111 * Shouldn't this be "u_char * const buf" ?
113 static void dfc_read_buf(struct mtd_info
*mtd
, u_char
* const buf
, int len
)
117 /* we have to be carefull not to overflow the buffer if len is
118 * not a multiple of 4 */
119 unsigned long bytes_multi
= len
& 0xfffffffc;
120 unsigned long rest
= len
& 0x3;
121 unsigned long *long_buf
;
123 DFC_DEBUG3("dfc_read_buf: reading %d bytes.\n", len
);
124 /* if there are any, first copy multiple of 4 bytes */
126 for(i
=0; i
<bytes_multi
; i
+=4) {
127 long_buf
= (unsigned long*) &buf
[i
];
132 /* ...then the rest */
134 unsigned long rest_data
= NDDB
;
136 buf
[i
+j
] = (u_char
) ((rest_data
>>j
) & 0xff);
143 * read a word. Not implemented as not used in NAND code.
145 static u16
dfc_read_word(struct mtd_info
*mtd
)
147 printf("dfc_read_word: UNIMPLEMENTED.\n");
151 /* global var, too bad: mk@tbd: move to ->priv pointer */
152 static unsigned long read_buf
= 0;
153 static int bytes_read
= -1;
156 * read a byte from NDDB Because we can only read 4 bytes from NDDB at
157 * a time, we buffer the remaining bytes. The buffer is reset when a
158 * new command is sent to the chip.
161 * This function is currently only used to read status and id
162 * bytes. For these commands always 8 bytes need to be read from
163 * NDDB. So we read and discard these bytes right now. In case this
164 * function is used for anything else in the future, we must check
165 * what was the last command issued and read the appropriate amount of
166 * bytes respectively.
168 static u_char
dfc_read_byte(struct mtd_info
*mtd
)
178 byte
= (unsigned char) (read_buf
>>(8 * bytes_read
++));
182 DFC_DEBUG2("dfc_read_byte: byte %u: 0x%x of (0x%x).\n", bytes_read
- 1, byte
, read_buf
);
186 /* calculate delta between OSCR values start and now */
187 static unsigned long get_delta(unsigned long start
)
189 unsigned long cur
= OSCR
;
191 if(cur
< start
) /* OSCR overflowed */
192 return (cur
+ (start
^0xffffffff));
194 return (cur
- start
);
197 /* delay function, this doesn't belong here */
198 static void wait_us(unsigned long us
)
200 unsigned long start
= OSCR
;
203 while (get_delta(start
) < us
) {
208 static void dfc_clear_nddb(void)
210 NDCR
&= ~NDCR_ND_RUN
;
211 wait_us(CONFIG_SYS_NAND_OTHER_TO
);
214 /* wait_event with timeout */
215 static unsigned long dfc_wait_event(unsigned long event
)
217 unsigned long ndsr
, timeout
, start
= OSCR
;
221 else if(event
& (NDSR_CS0_CMDD
| NDSR_CS0_BBD
))
222 timeout
= CONFIG_SYS_NAND_PROG_ERASE_TO
* OSCR_CLK_FREQ
;
224 timeout
= CONFIG_SYS_NAND_OTHER_TO
* OSCR_CLK_FREQ
;
232 if(get_delta(start
) > timeout
) {
233 DFC_DEBUG1("dfc_wait_event: TIMEOUT waiting for event: 0x%lx.\n", event
);
241 /* we don't always wan't to do this */
242 static void dfc_new_cmd(void)
245 unsigned long status
;
247 while(retry
++ <= CONFIG_SYS_NAND_SENDCMD_RETRY
) {
251 /* set NDCR[NDRUN] */
252 if(!(NDCR
& NDCR_ND_RUN
))
255 status
= dfc_wait_event(NDSR_WRCMDREQ
);
257 if(status
& NDSR_WRCMDREQ
)
260 DFC_DEBUG2("dfc_new_cmd: FAILED to get WRITECMDREQ, retry: %d.\n", retry
);
263 DFC_DEBUG1("dfc_new_cmd: giving up after %d retries.\n", retry
);
266 /* this function is called after Programm and Erase Operations to
267 * check for success or failure */
268 static int dfc_wait(struct mtd_info
*mtd
, struct nand_chip
*this)
270 unsigned long ndsr
=0, event
=0;
271 int state
= this->state
;
273 if(state
== FL_WRITING
) {
274 event
= NDSR_CS0_CMDD
| NDSR_CS0_BBD
;
275 } else if(state
== FL_ERASING
) {
276 event
= NDSR_CS0_CMDD
| NDSR_CS0_BBD
;
279 ndsr
= dfc_wait_event(event
);
281 if((ndsr
& NDSR_CS0_BBD
) || (ndsr
& 0xff000000))
282 return(0x1); /* Status Read error */
286 /* cmdfunc send commands to the DFC */
287 static void dfc_cmdfunc(struct mtd_info
*mtd
, unsigned command
,
288 int column
, int page_addr
)
290 /* register struct nand_chip *this = mtd->priv; */
291 unsigned long ndcb0
=0, ndcb1
=0, ndcb2
=0, event
=0;
293 /* clear the ugly byte read buffer */
299 DFC_DEBUG3("dfc_cmdfunc: NAND_CMD_READ0, page_addr: 0x%x, column: 0x%x.\n", page_addr
, (column
>>1));
301 ndcb0
= (NAND_CMD_READ0
| (4<<16));
302 column
>>= 1; /* adjust for 16 bit bus */
303 ndcb1
= (((column
>>1) & 0xff) |
304 ((page_addr
<<8) & 0xff00) |
305 ((page_addr
<<8) & 0xff0000) |
306 ((page_addr
<<8) & 0xff000000)); /* make this 0x01000000 ? */
310 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_READ1 unimplemented!\n");
312 case NAND_CMD_READOOB
:
313 DFC_DEBUG1("dfc_cmdfunc: NAND_CMD_READOOB unimplemented!\n");
315 case NAND_CMD_READID
:
317 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_READID.\n");
318 ndcb0
= (NAND_CMD_READID
| (3 << 21) | (1 << 16)); /* addr cycles*/
321 case NAND_CMD_PAGEPROG
:
322 /* sent as a multicommand in NAND_CMD_SEQIN */
323 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_PAGEPROG empty due to multicmd.\n");
325 case NAND_CMD_ERASE1
:
326 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_ERASE1, page_addr: 0x%x, column: 0x%x.\n", page_addr
, (column
>>1));
328 ndcb0
= (0xd060 | (1<<25) | (2<<21) | (1<<19) | (3<<16));
329 ndcb1
= (page_addr
& 0x00ffffff);
331 case NAND_CMD_ERASE2
:
332 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_ERASE2 empty due to multicmd.\n");
335 /* send PAGE_PROG command(0x1080) */
337 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_SEQIN/PAGE_PROG, page_addr: 0x%x, column: 0x%x.\n", page_addr
, (column
>>1));
338 ndcb0
= (0x1080 | (1<<25) | (1<<21) | (1<<19) | (4<<16));
339 column
>>= 1; /* adjust for 16 bit bus */
340 ndcb1
= (((column
>>1) & 0xff) |
341 ((page_addr
<<8) & 0xff00) |
342 ((page_addr
<<8) & 0xff0000) |
343 ((page_addr
<<8) & 0xff000000)); /* make this 0x01000000 ? */
346 case NAND_CMD_STATUS
:
347 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_STATUS.\n");
349 ndcb0
= NAND_CMD_STATUS
| (4<<21);
353 DFC_DEBUG2("dfc_cmdfunc: NAND_CMD_RESET.\n");
354 ndcb0
= NAND_CMD_RESET
| (5<<21);
355 event
= NDSR_CS0_CMDD
;
358 printk("dfc_cmdfunc: error, unsupported command.\n");
368 dfc_wait_event(event
);
373 static void dfc_gpio_init(void)
375 DFC_DEBUG2("Setting up DFC GPIO's.\n");
377 /* no idea what is done here, see zylonite.c */
380 DF_ALE_WE1
= 0x00000001;
381 DF_ALE_WE2
= 0x00000001;
382 DF_nCS0
= 0x00000001;
383 DF_nCS1
= 0x00000001;
391 DF_IO10
= 0x00000001;
393 DF_IO11
= 0x00000001;
395 DF_IO12
= 0x00000001;
397 DF_IO13
= 0x00000001;
399 DF_IO14
= 0x00000001;
401 DF_IO15
= 0x00000001;
411 * Board-specific NAND initialization. The following members of the
412 * argument are board-specific (per include/linux/mtd/nand_new.h):
413 * - IO_ADDR_R?: address to read the 8 I/O lines of the flash device
414 * - IO_ADDR_W?: address to write the 8 I/O lines of the flash device
415 * - cmd_ctrl: hardwarespecific function for accesing control-lines
416 * - dev_ready: hardwarespecific function for accesing device ready/busy line
417 * - enable_hwecc?: function to enable (reset) hardware ecc generator. Must
418 * only be provided if a hardware ECC is available
419 * - ecc.mode: mode of ecc, see defines
420 * - chip_delay: chip dependent delay for transfering data from array to
422 * - options: various chip options. They can partly be set to inform
423 * nand_scan about special functionality. See the defines for further
425 * Members with a "?" were not set in the merged testing-NAND branch,
426 * so they are not set here either.
428 int board_nand_init(struct nand_chip
*nand
)
430 unsigned long tCH
, tCS
, tWH
, tWP
, tRH
, tRP
, tRP_high
, tR
, tWHR
, tAR
;
432 /* set up GPIO Control Registers */
435 /* turn on the NAND Controller Clock (104 MHz @ D0) */
436 CKENA
|= (CKENA_4_NAND
| CKENA_9_SMC
);
438 #undef CONFIG_SYS_TIMING_TIGHT
439 #ifndef CONFIG_SYS_TIMING_TIGHT
440 tCH
= MIN(((unsigned long) (NAND_TIMING_tCH
* DFC_CLK_PER_US
) + 1),
442 tCS
= MIN(((unsigned long) (NAND_TIMING_tCS
* DFC_CLK_PER_US
) + 1),
444 tWH
= MIN(((unsigned long) (NAND_TIMING_tWH
* DFC_CLK_PER_US
) + 1),
446 tWP
= MIN(((unsigned long) (NAND_TIMING_tWP
* DFC_CLK_PER_US
) + 1),
448 tRH
= MIN(((unsigned long) (NAND_TIMING_tRH
* DFC_CLK_PER_US
) + 1),
450 tRP
= MIN(((unsigned long) (NAND_TIMING_tRP
* DFC_CLK_PER_US
) + 1),
452 tR
= MIN(((unsigned long) (NAND_TIMING_tR
* DFC_CLK_PER_US
) + 1),
454 tWHR
= MIN(((unsigned long) (NAND_TIMING_tWHR
* DFC_CLK_PER_US
) + 1),
456 tAR
= MIN(((unsigned long) (NAND_TIMING_tAR
* DFC_CLK_PER_US
) + 1),
458 #else /* this is the tight timing */
460 tCH
= MIN(((unsigned long) (NAND_TIMING_tCH
* DFC_CLK_PER_US
)),
462 tCS
= MIN(((unsigned long) (NAND_TIMING_tCS
* DFC_CLK_PER_US
)),
464 tWH
= MIN(((unsigned long) (NAND_TIMING_tWH
* DFC_CLK_PER_US
)),
466 tWP
= MIN(((unsigned long) (NAND_TIMING_tWP
* DFC_CLK_PER_US
)),
468 tRH
= MIN(((unsigned long) (NAND_TIMING_tRH
* DFC_CLK_PER_US
)),
470 tRP
= MIN(((unsigned long) (NAND_TIMING_tRP
* DFC_CLK_PER_US
)),
472 tR
= MIN(((unsigned long) (NAND_TIMING_tR
* DFC_CLK_PER_US
) - tCH
- 2),
474 tWHR
= MIN(((unsigned long) (NAND_TIMING_tWHR
* DFC_CLK_PER_US
) - tCH
- 2),
476 tAR
= MIN(((unsigned long) (NAND_TIMING_tAR
* DFC_CLK_PER_US
) - 2),
478 #endif /* CONFIG_SYS_TIMING_TIGHT */
481 DFC_DEBUG2("tCH=%u, tCS=%u, tWH=%u, tWP=%u, tRH=%u, tRP=%u, tR=%u, tWHR=%u, tAR=%u.\n", tCH
, tCS
, tWH
, tWP
, tRH
, tRP
, tR
, tWHR
, tAR
);
483 /* tRP value is split in the register */
491 NDTR0CS0
= (tCH
<< 19) |
499 NDTR1CS0
= (tR
<< 16) |
503 /* If it doesn't work (unlikely) think about:
505 * - chip select don't care
506 * - read id byte count
508 * Intentionally enabled by not setting bits:
511 * - cs don't care, see if we can enable later!
512 * - row address start position (after second cycle)
513 * - pages per block = 32
514 * - ND_RDY : clears command buffer
516 /* NDCR_NCSX | /\* Chip select busy don't care *\/ */
518 NDCR
= (NDCR_SPARE_EN
| /* use the spare area */
519 NDCR_DWIDTH_C
| /* 16bit DFC data bus width */
520 NDCR_DWIDTH_M
| /* 16 bit Flash device data bus width */
521 (2 << 16) | /* read id count = 7 ???? mk@tbd */
522 NDCR_ND_ARB_EN
| /* enable bus arbiter */
523 NDCR_RDYM
| /* flash device ready ir masked */
524 NDCR_CS0_PAGEDM
| /* ND_nCSx page done ir masked */
526 NDCR_CS0_CMDDM
| /* ND_CSx command done ir masked */
528 NDCR_CS0_BBDM
| /* ND_CSx bad block detect ir masked */
530 NDCR_DBERRM
| /* double bit error ir masked */
531 NDCR_SBERRM
| /* single bit error ir masked */
532 NDCR_WRDREQM
| /* write data request ir masked */
533 NDCR_RDDREQM
| /* read data request ir masked */
534 NDCR_WRCMDREQM
); /* write command request ir masked */
537 /* wait 10 us due to cmd buffer clear reset */
540 nand
->cmd_ctrl
= dfc_hwcontrol
;
541 /* nand->dev_ready = dfc_device_ready; */
542 nand
->ecc
.mode
= NAND_ECC_SOFT
;
543 nand
->ecc
.layout
= &delta_oob
;
544 nand
->options
= NAND_BUSWIDTH_16
;
545 nand
->waitfunc
= dfc_wait
;
546 nand
->read_byte
= dfc_read_byte
;
547 nand
->read_word
= dfc_read_word
;
548 nand
->read_buf
= dfc_read_buf
;
549 nand
->write_buf
= dfc_write_buf
;
551 nand
->cmdfunc
= dfc_cmdfunc
;
552 nand
->badblock_pattern
= &delta_bbt_descr
;