blob: ca40cea9ad1cd6c4e24ba0ae5ce97b3c0b19155d [file] [log] [blame]
Stefan Roese899620c2006-08-15 14:22:35 +02001/*
2 * (C) Copyright 2006
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de
4 *
Stefan Roese5bc528f2006-10-07 11:35:25 +02005 * (C) Copyright 2006
6 * Stefan Roese, DENX Software Engineering, sr@denx.de.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese899620c2006-08-15 14:22:35 +02009 */
10
11#include <common.h>
Stefan Roese899620c2006-08-15 14:22:35 +020012
Jon Loeliger3fe00102007-07-09 18:38:39 -050013#if defined(CONFIG_CMD_NAND)
Stefan Roese899620c2006-08-15 14:22:35 +020014
Stefan Roese5bc528f2006-10-07 11:35:25 +020015#include <asm/processor.h>
Stefan Roese899620c2006-08-15 14:22:35 +020016#include <nand.h>
17
Stefan Roese899620c2006-08-15 14:22:35 +020018struct alpr_ndfc_regs {
Stefan Roese1c2ce222006-11-27 14:12:17 +010019 u8 cmd[4];
20 u8 addr_wait;
21 u8 term;
22 u8 dummy;
23 u8 dummy2;
24 u8 data;
Stefan Roese899620c2006-08-15 14:22:35 +020025};
26
27static u8 hwctl;
Stefan Roese5bc528f2006-10-07 11:35:25 +020028static struct alpr_ndfc_regs *alpr_ndfc = NULL;
Stefan Roese899620c2006-08-15 14:22:35 +020029
Stefan Roese1c2ce222006-11-27 14:12:17 +010030#define readb(addr) (u8)(*(volatile u8 *)(addr))
31#define writeb(d,addr) *(volatile u8 *)(addr) = ((u8)(d))
Stefan Roese899620c2006-08-15 14:22:35 +020032
Stefan Roese899620c2006-08-15 14:22:35 +020033/*
34 * The ALPR has a NAND Flash Controller (NDFC) that handles all accesses to
35 * the NAND devices. The NDFC has command, address and data registers that
36 * when accessed will set up the NAND flash pins appropriately. We'll use the
37 * hwcontrol function to save the configuration in a global variable.
38 * We can then use this information in the read and write functions to
39 * determine which NDFC register to access.
40 *
Stefan Roese5bc528f2006-10-07 11:35:25 +020041 * There are 2 NAND devices on the board, a Hynix HY27US08561A (1 GByte).
Stefan Roese899620c2006-08-15 14:22:35 +020042 */
William Juulcfa460a2007-10-31 13:53:06 +010043static void alpr_nand_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
William Juul4cbb6512007-11-08 10:39:53 +010044{
William Juul5e1dae52007-11-09 13:32:30 +010045 struct nand_chip *this = mtd->priv;
William Juulcfa460a2007-10-31 13:53:06 +010046
47 if (ctrl & NAND_CTRL_CHANGE) {
48 if ( ctrl & NAND_CLE )
49 hwctl |= 0x1;
50 else
51 hwctl &= ~0x1;
52 if ( ctrl & NAND_ALE )
53 hwctl |= 0x2;
54 else
55 hwctl &= ~0x2;
56 if ( (ctrl & NAND_NCE) != NAND_NCE)
57 writeb(0x00, &(alpr_ndfc->term));
Stefan Roese899620c2006-08-15 14:22:35 +020058 }
William Juulcfa460a2007-10-31 13:53:06 +010059 if (cmd != NAND_CMD_NONE)
60 writeb(cmd, this->IO_ADDR_W);
Stefan Roese899620c2006-08-15 14:22:35 +020061}
62
Stefan Roese5bc528f2006-10-07 11:35:25 +020063static u_char alpr_nand_read_byte(struct mtd_info *mtd)
Stefan Roese899620c2006-08-15 14:22:35 +020064{
Stefan Roese5bc528f2006-10-07 11:35:25 +020065 return readb(&(alpr_ndfc->data));
Stefan Roese899620c2006-08-15 14:22:35 +020066}
67
Stefan Roese5bc528f2006-10-07 11:35:25 +020068static void alpr_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
Stefan Roese899620c2006-08-15 14:22:35 +020069{
Stefan Roese5bc528f2006-10-07 11:35:25 +020070 struct nand_chip *nand = mtd->priv;
Stefan Roese899620c2006-08-15 14:22:35 +020071 int i;
72
Stefan Roese899620c2006-08-15 14:22:35 +020073 for (i = 0; i < len; i++) {
74 if (hwctl & 0x1)
Stefan Roese5bc528f2006-10-07 11:35:25 +020075 /*
76 * IO_ADDR_W used as CMD[i] reg to support multiple NAND
77 * chips.
78 */
79 writeb(buf[i], nand->IO_ADDR_W);
80 else if (hwctl & 0x2)
81 writeb(buf[i], &(alpr_ndfc->addr_wait));
82 else
83 writeb(buf[i], &(alpr_ndfc->data));
Stefan Roese899620c2006-08-15 14:22:35 +020084 }
85}
86
Stefan Roese5bc528f2006-10-07 11:35:25 +020087static void alpr_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
Stefan Roese899620c2006-08-15 14:22:35 +020088{
89 int i;
90
91 for (i = 0; i < len; i++) {
Stefan Roese5bc528f2006-10-07 11:35:25 +020092 buf[i] = readb(&(alpr_ndfc->data));
Stefan Roese899620c2006-08-15 14:22:35 +020093 }
94}
95
Stefan Roese5bc528f2006-10-07 11:35:25 +020096static int alpr_nand_dev_ready(struct mtd_info *mtd)
Stefan Roese899620c2006-08-15 14:22:35 +020097{
Stefan Roese899620c2006-08-15 14:22:35 +020098 /*
99 * Blocking read to wait for NAND to be ready
100 */
Wolfgang Denkbba8f392011-11-29 22:17:44 +0000101 (void)readb(&(alpr_ndfc->addr_wait));
Stefan Roese899620c2006-08-15 14:22:35 +0200102
103 /*
104 * Return always true
105 */
106 return 1;
Stefan Roese899620c2006-08-15 14:22:35 +0200107}
108
Stefan Roesef16c1da2007-01-06 15:56:13 +0100109int board_nand_init(struct nand_chip *nand)
Stefan Roese899620c2006-08-15 14:22:35 +0200110{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111 alpr_ndfc = (struct alpr_ndfc_regs *)CONFIG_SYS_NAND_BASE;
Stefan Roese899620c2006-08-15 14:22:35 +0200112
William Juulcfa460a2007-10-31 13:53:06 +0100113 nand->ecc.mode = NAND_ECC_SOFT;
Stefan Roese899620c2006-08-15 14:22:35 +0200114
Stefan Roese899620c2006-08-15 14:22:35 +0200115 /* Reference hardware control function */
William Juulcfa460a2007-10-31 13:53:06 +0100116 nand->cmd_ctrl = alpr_nand_hwcontrol;
Stefan Roese5bc528f2006-10-07 11:35:25 +0200117 nand->read_byte = alpr_nand_read_byte;
118 nand->write_buf = alpr_nand_write_buf;
119 nand->read_buf = alpr_nand_read_buf;
Stefan Roese5bc528f2006-10-07 11:35:25 +0200120 nand->dev_ready = alpr_nand_dev_ready;
Stefan Roesef16c1da2007-01-06 15:56:13 +0100121
122 return 0;
Stefan Roese899620c2006-08-15 14:22:35 +0200123}
124#endif