blob: 6ebbb5ebee9cfb7e2de3cea92c28ec4de7fbf096 [file] [log] [blame]
Stefan Roese887e2ec2006-09-07 11:51:23 +02001/*
2 * Overview:
3 * Platform independend driver for NDFC (NanD Flash Controller)
Stefan Roese5d841fa2009-05-20 10:58:01 +02004 * integrated into IBM/AMCC PPC4xx cores
Stefan Roese887e2ec2006-09-07 11:51:23 +02005 *
Stefan Roese5d841fa2009-05-20 10:58:01 +02006 * (C) Copyright 2006-2009
Stefan Roese887e2ec2006-09-07 11:51:23 +02007 * Stefan Roese, DENX Software Engineering, sr@denx.de.
8 *
9 * Based on original work by
10 * Thomas Gleixner
11 * Copyright 2006 IBM
12 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31
32#include <common.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020033#include <nand.h>
34#include <linux/mtd/ndfc.h>
Stefan Roese91da09c2007-06-01 15:15:12 +020035#include <linux/mtd/nand_ecc.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020036#include <asm/processor.h>
Stefan Roese91da09c2007-06-01 15:15:12 +020037#include <asm/io.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020038#include <asm/ppc4xx.h>
Stefan Roese887e2ec2006-09-07 11:51:23 +020039
Alex Watermaneced4622011-05-19 15:08:36 -040040#ifndef CONFIG_SYS_NAND_BCR
41#define CONFIG_SYS_NAND_BCR 0x80002222
42#endif
43#ifndef CONFIG_SYS_NDFC_EBC0_CFG
44#define CONFIG_SYS_NDFC_EBC0_CFG 0xb8400000
45#endif
46
Stefan Roese3df2ece2008-01-05 16:47:58 +010047/*
48 * We need to store the info, which chip-select (CS) is used for the
49 * chip number. For example on Sequoia NAND chip #0 uses
50 * CS #3.
51 */
52static int ndfc_cs[NDFC_MAX_BANKS];
Stefan Roese887e2ec2006-09-07 11:51:23 +020053
William Juulcfa460a2007-10-31 13:53:06 +010054static void ndfc_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
Stefan Roese887e2ec2006-09-07 11:51:23 +020055{
William Juul5e1dae52007-11-09 13:32:30 +010056 struct nand_chip *this = mtd->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +010057 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese887e2ec2006-09-07 11:51:23 +020058
Stefan Roese3df2ece2008-01-05 16:47:58 +010059 if (cmd == NAND_CMD_NONE)
60 return;
Stefan Roese887e2ec2006-09-07 11:51:23 +020061
Stefan Roese3df2ece2008-01-05 16:47:58 +010062 if (ctrl & NAND_CLE)
63 out_8((u8 *)(base + NDFC_CMD), cmd & 0xFF);
64 else
65 out_8((u8 *)(base + NDFC_ALE), cmd & 0xFF);
Stefan Roese887e2ec2006-09-07 11:51:23 +020066}
67
68static int ndfc_dev_ready(struct mtd_info *mtdinfo)
69{
Wolfgang Denk511d0c72006-10-09 00:42:01 +020070 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +010071 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese887e2ec2006-09-07 11:51:23 +020072
Stefan Roese3df2ece2008-01-05 16:47:58 +010073 return (in_be32((u32 *)(base + NDFC_STAT)) & NDFC_STAT_IS_READY);
Stefan Roese887e2ec2006-09-07 11:51:23 +020074}
75
Stefan Roese91da09c2007-06-01 15:15:12 +020076static void ndfc_enable_hwecc(struct mtd_info *mtdinfo, int mode)
77{
78 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +010079 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese91da09c2007-06-01 15:15:12 +020080 u32 ccr;
81
82 ccr = in_be32((u32 *)(base + NDFC_CCR));
83 ccr |= NDFC_CCR_RESET_ECC;
84 out_be32((u32 *)(base + NDFC_CCR), ccr);
85}
86
87static int ndfc_calculate_ecc(struct mtd_info *mtdinfo,
88 const u_char *dat, u_char *ecc_code)
89{
90 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +010091 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese91da09c2007-06-01 15:15:12 +020092 u32 ecc;
93 u8 *p = (u8 *)&ecc;
94
95 ecc = in_be32((u32 *)(base + NDFC_ECC));
96
97 /* The NDFC uses Smart Media (SMC) bytes order
98 */
Feng Kan68e74562009-08-21 10:59:42 -070099 ecc_code[0] = p[1];
100 ecc_code[1] = p[2];
Stefan Roese91da09c2007-06-01 15:15:12 +0200101 ecc_code[2] = p[3];
102
103 return 0;
104}
Stefan Roese887e2ec2006-09-07 11:51:23 +0200105
106/*
107 * Speedups for buffer read/write/verify
108 *
109 * NDFC allows 32bit read/write of data. So we can speed up the buffer
110 * functions. No further checking, as nand_base will always read/write
111 * page aligned.
112 */
113static void ndfc_read_buf(struct mtd_info *mtdinfo, uint8_t *buf, int len)
114{
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200115 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +0100116 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200117 uint32_t *p = (uint32_t *) buf;
118
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200119 for (;len > 0; len -= 4)
Stefan Roese91da09c2007-06-01 15:15:12 +0200120 *p++ = in_be32((u32 *)(base + NDFC_DATA));
Stefan Roese887e2ec2006-09-07 11:51:23 +0200121}
122
Stefan Roese91da09c2007-06-01 15:15:12 +0200123#ifndef CONFIG_NAND_SPL
124/*
125 * Don't use these speedup functions in NAND boot image, since the image
126 * has to fit into 4kByte.
127 */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200128static void ndfc_write_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len)
129{
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200130 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +0100131 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200132 uint32_t *p = (uint32_t *) buf;
133
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200134 for (; len > 0; len -= 4)
Stefan Roese91da09c2007-06-01 15:15:12 +0200135 out_be32((u32 *)(base + NDFC_DATA), *p++);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200136}
137
138static int ndfc_verify_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len)
139{
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200140 struct nand_chip *this = mtdinfo->priv;
Stefan Roese3df2ece2008-01-05 16:47:58 +0100141 ulong base = (ulong) this->IO_ADDR_W & 0xffffff00;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200142 uint32_t *p = (uint32_t *) buf;
143
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200144 for (; len > 0; len -= 4)
Stefan Roese91da09c2007-06-01 15:15:12 +0200145 if (*p++ != in_be32((u32 *)(base + NDFC_DATA)))
Stefan Roese887e2ec2006-09-07 11:51:23 +0200146 return -1;
147
148 return 0;
149}
Stefan Roese887e2ec2006-09-07 11:51:23 +0200150
Alex Watermaneced4622011-05-19 15:08:36 -0400151/*
152 * Read a byte from the NDFC.
153 */
154static uint8_t ndfc_read_byte(struct mtd_info *mtd)
155{
156
157 struct nand_chip *chip = mtd->priv;
158
159#ifdef CONFIG_SYS_NDFC_16BIT
160 return (uint8_t) readw(chip->IO_ADDR_R);
161#else
162 return readb(chip->IO_ADDR_R);
Wolfgang Ocker52aef8f2008-08-26 19:55:23 +0200163#endif
164
Alex Watermaneced4622011-05-19 15:08:36 -0400165}
166
167#endif /* #ifndef CONFIG_NAND_SPL */
168
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200169void board_nand_select_device(struct nand_chip *nand, int chip)
170{
Stefan Roese7ade0c62006-10-24 18:06:48 +0200171 /*
172 * Don't use "chip" to address the NAND device,
173 * generate the cs from the address where it is encoded.
174 */
Stefan Roese3df2ece2008-01-05 16:47:58 +0100175 ulong base = (ulong)nand->IO_ADDR_W & 0xffffff00;
176 int cs = ndfc_cs[chip];
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200177
178 /* Set NandFlash Core Configuration Register */
Stefan Roese91da09c2007-06-01 15:15:12 +0200179 /* 1 col x 2 rows */
180 out_be32((u32 *)(base + NDFC_CCR), 0x00000000 | (cs << 24));
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200181 out_be32((u32 *)(base + NDFC_BCFG0 + (cs << 2)), CONFIG_SYS_NAND_BCR);
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200182}
183
Stefan Roesec2b4b2e2008-08-29 11:56:49 +0200184static void ndfc_select_chip(struct mtd_info *mtd, int chip)
185{
186 /*
187 * Nothing to do here!
188 */
189}
190
Heiko Schocherfa230442006-12-21 17:17:02 +0100191int board_nand_init(struct nand_chip *nand)
Stefan Roese887e2ec2006-09-07 11:51:23 +0200192{
Stefan Roese7ade0c62006-10-24 18:06:48 +0200193 int cs = (ulong)nand->IO_ADDR_W & 0x00000003;
Stefan Roese3df2ece2008-01-05 16:47:58 +0100194 ulong base = (ulong)nand->IO_ADDR_W & 0xffffff00;
195 static int chip = 0;
Stefan Roese43a2b0e2006-10-20 14:28:52 +0200196
Stefan Roese3df2ece2008-01-05 16:47:58 +0100197 /*
198 * Save chip-select for this chip #
199 */
200 ndfc_cs[chip] = cs;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200201
Stefan Roese3df2ece2008-01-05 16:47:58 +0100202 /*
203 * Select required NAND chip in NDFC
204 */
205 board_nand_select_device(nand, chip);
206
207 nand->IO_ADDR_R = (void __iomem *)(base + NDFC_DATA);
208 nand->IO_ADDR_W = (void __iomem *)(base + NDFC_DATA);
209 nand->cmd_ctrl = ndfc_hwcontrol;
210 nand->chip_delay = 50;
211 nand->read_buf = ndfc_read_buf;
212 nand->dev_ready = ndfc_dev_ready;
William Juul5e1dae52007-11-09 13:32:30 +0100213 nand->ecc.correct = nand_correct_data;
214 nand->ecc.hwctl = ndfc_enable_hwecc;
215 nand->ecc.calculate = ndfc_calculate_ecc;
216 nand->ecc.mode = NAND_ECC_HW;
217 nand->ecc.size = 256;
218 nand->ecc.bytes = 3;
Stefan Roesec2b4b2e2008-08-29 11:56:49 +0200219 nand->select_chip = ndfc_select_chip;
Stefan Roese91da09c2007-06-01 15:15:12 +0200220
Alex Watermaneced4622011-05-19 15:08:36 -0400221#ifdef CONFIG_SYS_NDFC_16BIT
222 nand->options |= NAND_BUSWIDTH_16;
223#endif
224
Stefan Roese887e2ec2006-09-07 11:51:23 +0200225#ifndef CONFIG_NAND_SPL
226 nand->write_buf = ndfc_write_buf;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200227 nand->verify_buf = ndfc_verify_buf;
Alex Watermaneced4622011-05-19 15:08:36 -0400228 nand->read_byte = ndfc_read_byte;
Stefan Roesec5d02822010-11-23 14:32:48 +0100229
230 chip++;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200231#else
232 /*
233 * Setup EBC (CS0 only right now)
234 */
Alex Watermaneced4622011-05-19 15:08:36 -0400235 mtebc(EBC0_CFG, CONFIG_SYS_NDFC_EBC0_CFG);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200236
Stefan Roesed1c3b272009-09-09 16:25:29 +0200237 mtebc(PB0CR, CONFIG_SYS_EBC_PB0CR);
238 mtebc(PB0AP, CONFIG_SYS_EBC_PB0AP);
Stefan Roese887e2ec2006-09-07 11:51:23 +0200239#endif
240
Heiko Schocherfa230442006-12-21 17:17:02 +0100241 return 0;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200242}