blob: 181e83d6a1b42b299fa23588e9b71d3c0323d7d6 [file] [log] [blame]
Aubrey Li26bf7de2007-03-19 01:24:52 +08001/*
Mike Frysinger06499082008-04-09 02:29:18 -04002 * Copyright (c) 2006-2007 Analog Devices Inc.
Aubrey Li26bf7de2007-03-19 01:24:52 +08003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
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.
11 *
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.
16 *
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,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <asm/io.h>
25
Aubrey Li26bf7de2007-03-19 01:24:52 +080026#include <nand.h>
27
28#define CONCAT(a,b,c,d) a ## b ## c ## d
29#define PORT(a,b) CONCAT(pPORT,a,b,)
30
31#ifndef CONFIG_NAND_GPIO_PORT
32#define CONFIG_NAND_GPIO_PORT F
33#endif
34
35/*
36 * hardware specific access to control-lines
37 */
William Juulcfa460a2007-10-31 13:53:06 +010038static void bfin_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
Aubrey Li26bf7de2007-03-19 01:24:52 +080039{
40 register struct nand_chip *this = mtd->priv;
William Juul5e1dae52007-11-09 13:32:30 +010041 u32 IO_ADDR_W = (u32) this->IO_ADDR_W;
Aubrey Li26bf7de2007-03-19 01:24:52 +080042
William Juulcfa460a2007-10-31 13:53:06 +010043 if (ctrl & NAND_CTRL_CHANGE) {
Mike Frysinger06499082008-04-09 02:29:18 -040044 if (ctrl & NAND_CLE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 IO_ADDR_W = CONFIG_SYS_NAND_BASE + BFIN_NAND_CLE;
William Juulcfa460a2007-10-31 13:53:06 +010046 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047 IO_ADDR_W = CONFIG_SYS_NAND_BASE;
Mike Frysinger06499082008-04-09 02:29:18 -040048 if (ctrl & NAND_ALE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049 IO_ADDR_W = CONFIG_SYS_NAND_BASE + BFIN_NAND_ALE;
William Juulcfa460a2007-10-31 13:53:06 +010050 else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020051 IO_ADDR_W = CONFIG_SYS_NAND_BASE;
William Juulcfa460a2007-10-31 13:53:06 +010052 this->IO_ADDR_W = (void __iomem *) IO_ADDR_W;
Aubrey Li26bf7de2007-03-19 01:24:52 +080053 }
Aubrey Li26bf7de2007-03-19 01:24:52 +080054 this->IO_ADDR_R = this->IO_ADDR_W;
55
56 /* Drain the writebuffer */
Mike Frysingerd4d77302008-02-04 19:26:55 -050057 SSYNC();
William Juulcfa460a2007-10-31 13:53:06 +010058
59 if (cmd != NAND_CMD_NONE)
William Juul4cbb6512007-11-08 10:39:53 +010060 writeb(cmd, this->IO_ADDR_W);
Aubrey Li26bf7de2007-03-19 01:24:52 +080061}
62
63int bfin_device_ready(struct mtd_info *mtd)
64{
65 int ret = (*PORT(CONFIG_NAND_GPIO_PORT, IO) & BFIN_NAND_READY) ? 1 : 0;
Mike Frysingerd4d77302008-02-04 19:26:55 -050066 SSYNC();
Aubrey Li26bf7de2007-03-19 01:24:52 +080067 return ret;
68}
69
70/*
71 * Board-specific NAND initialization. The following members of the
72 * argument are board-specific (per include/linux/mtd/nand.h):
73 * - IO_ADDR_R?: address to read the 8 I/O lines of the flash device
74 * - IO_ADDR_W?: address to write the 8 I/O lines of the flash device
William Juulcfa460a2007-10-31 13:53:06 +010075 * - cmd_ctrl: hardwarespecific function for accesing control-lines
Aubrey Li26bf7de2007-03-19 01:24:52 +080076 * - dev_ready: hardwarespecific function for accesing device ready/busy line
77 * - enable_hwecc?: function to enable (reset) hardware ecc generator. Must
78 * only be provided if a hardware ECC is available
William Juulcfa460a2007-10-31 13:53:06 +010079 * - ecc.mode: mode of ecc, see defines
Aubrey Li26bf7de2007-03-19 01:24:52 +080080 * - chip_delay: chip dependent delay for transfering data from array to
81 * read regs (tR)
82 * - options: various chip options. They can partly be set to inform
83 * nand_scan about special functionality. See the defines for further
84 * explanation
85 * Members with a "?" were not set in the merged testing-NAND branch,
86 * so they are not set here either.
87 */
Mike Frysinger032a1c92009-01-05 16:09:44 -050088int board_nand_init(struct nand_chip *nand)
Aubrey Li26bf7de2007-03-19 01:24:52 +080089{
90 *PORT(CONFIG_NAND_GPIO_PORT, _FER) &= ~BFIN_NAND_READY;
91 *PORT(CONFIG_NAND_GPIO_PORT, IO_DIR) &= ~BFIN_NAND_READY;
92 *PORT(CONFIG_NAND_GPIO_PORT, IO_INEN) |= BFIN_NAND_READY;
93
William Juulcfa460a2007-10-31 13:53:06 +010094 nand->cmd_ctrl = bfin_hwcontrol;
95 nand->ecc.mode = NAND_ECC_SOFT;
Aubrey Li26bf7de2007-03-19 01:24:52 +080096 nand->dev_ready = bfin_device_ready;
97 nand->chip_delay = 30;
Mike Frysinger032a1c92009-01-05 16:09:44 -050098
99 return 0;
Aubrey Li26bf7de2007-03-19 01:24:52 +0800100}