blob: 51315f55f9057c97f93091cfcb612996c5bcb0c9 [file] [log] [blame]
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * drivers/mtd/nand/diskonchip.c
3 *
4 * (C) 2003 Red Hat, Inc.
5 * (C) 2004 Dan Brown <dan_brown@ieee.org>
6 * (C) 2004 Kalev Lember <kalev@smartlink.ee>
7 *
8 * Author: David Woodhouse <dwmw2@infradead.org>
9 * Additional Diskonchip 2000 and Millennium support by Dan Brown <dan_brown@ieee.org>
10 * Diskonchip Millennium Plus support by Kalev Lember <kalev@smartlink.ee>
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Error correction code lifted from the old docecc code
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000013 * Author: Fabrice Bellard (fabrice.bellard@netgem.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Copyright (C) 2000 Netgem S.A.
15 * converted to the generic Reed-Solomon library by Thomas Gleixner <tglx@linutronix.de>
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Interface to generic NAND code for M-Systems DiskOnChip devices
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20#include <linux/kernel.h>
21#include <linux/init.h>
22#include <linux/sched.h>
23#include <linux/delay.h>
24#include <linux/rslib.h>
25#include <linux/moduleparam.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/io.h>
28
29#include <linux/mtd/mtd.h>
30#include <linux/mtd/nand.h>
31#include <linux/mtd/doc2000.h>
32#include <linux/mtd/compatmac.h>
33#include <linux/mtd/partitions.h>
34#include <linux/mtd/inftl.h>
35
36/* Where to look for the devices? */
Thomas Gleixner651078b2005-01-31 20:36:46 +000037#ifndef CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS
38#define CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif
40
41static unsigned long __initdata doc_locations[] = {
42#if defined (__alpha__) || defined(__i386__) || defined(__x86_64__)
Thomas Gleixner651078b2005-01-31 20:36:46 +000043#ifdef CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000044 0xfffc8000, 0xfffca000, 0xfffcc000, 0xfffce000,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 0xfffd0000, 0xfffd2000, 0xfffd4000, 0xfffd6000,
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000046 0xfffd8000, 0xfffda000, 0xfffdc000, 0xfffde000,
47 0xfffe0000, 0xfffe2000, 0xfffe4000, 0xfffe6000,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 0xfffe8000, 0xfffea000, 0xfffec000, 0xfffee000,
49#else /* CONFIG_MTD_DOCPROBE_HIGH */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000050 0xc8000, 0xca000, 0xcc000, 0xce000,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 0xd0000, 0xd2000, 0xd4000, 0xd6000,
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000052 0xd8000, 0xda000, 0xdc000, 0xde000,
53 0xe0000, 0xe2000, 0xe4000, 0xe6000,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 0xe8000, 0xea000, 0xec000, 0xee000,
55#endif /* CONFIG_MTD_DOCPROBE_HIGH */
David Woodhousee0c7d762006-05-13 18:07:53 +010056#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#warning Unknown architecture for DiskOnChip. No default probe locations defined
58#endif
59 0xffffffff };
60
61static struct mtd_info *doclist = NULL;
62
63struct doc_priv {
64 void __iomem *virtadr;
65 unsigned long physadr;
66 u_char ChipID;
67 u_char CDSNControl;
David Woodhousee0c7d762006-05-13 18:07:53 +010068 int chips_per_floor; /* The number of chips detected on each floor */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int curfloor;
70 int curchip;
71 int mh0_page;
72 int mh1_page;
73 struct mtd_info *nextdoc;
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* This is the syndrome computed by the HW ecc generator upon reading an empty
77 page, one with all 0xff for data and stored ecc code. */
78static u_char empty_read_syndrome[6] = { 0x26, 0xff, 0x6d, 0x47, 0x73, 0x7a };
David Woodhousee0c7d762006-05-13 18:07:53 +010079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* This is the ecc value computed by the HW ecc generator upon writing an empty
81 page, one with all 0xff for data. */
82static u_char empty_write_ecc[6] = { 0x4b, 0x00, 0xe2, 0x0e, 0x93, 0xf7 };
83
84#define INFTL_BBT_RESERVED_BLOCKS 4
85
86#define DoC_is_MillenniumPlus(doc) ((doc)->ChipID == DOC_ChipID_DocMilPlus16 || (doc)->ChipID == DOC_ChipID_DocMilPlus32)
87#define DoC_is_Millennium(doc) ((doc)->ChipID == DOC_ChipID_DocMil)
88#define DoC_is_2000(doc) ((doc)->ChipID == DOC_ChipID_Doc2k)
89
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020090static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd,
91 unsigned int bitmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static void doc200x_select_chip(struct mtd_info *mtd, int chip);
93
David Woodhousee0c7d762006-05-13 18:07:53 +010094static int debug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095module_param(debug, int, 0);
96
David Woodhousee0c7d762006-05-13 18:07:53 +010097static int try_dword = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098module_param(try_dword, int, 0);
99
David Woodhousee0c7d762006-05-13 18:07:53 +0100100static int no_ecc_failures = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101module_param(no_ecc_failures, int, 0);
102
David Woodhousee0c7d762006-05-13 18:07:53 +0100103static int no_autopart = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104module_param(no_autopart, int, 0);
Dan Brown1a78ff62005-03-29 21:57:48 +0100105
David Woodhousee0c7d762006-05-13 18:07:53 +0100106static int show_firmware_partition = 0;
Dan Brown1a78ff62005-03-29 21:57:48 +0100107module_param(show_firmware_partition, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Robert P. J. Day89e2bf62007-03-07 18:33:25 -0500109#ifdef CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE
David Woodhousee0c7d762006-05-13 18:07:53 +0100110static int inftl_bbt_write = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#else
David Woodhousee0c7d762006-05-13 18:07:53 +0100112static int inftl_bbt_write = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#endif
114module_param(inftl_bbt_write, int, 0);
115
Thomas Gleixner651078b2005-01-31 20:36:46 +0000116static unsigned long doc_config_location = CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117module_param(doc_config_location, ulong, 0);
118MODULE_PARM_DESC(doc_config_location, "Physical memory address at which to probe for DiskOnChip");
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* Sector size for HW ECC */
121#define SECTOR_SIZE 512
122/* The sector bytes are packed into NB_DATA 10 bit words */
123#define NB_DATA (((SECTOR_SIZE + 1) * 8 + 6) / 10)
124/* Number of roots */
125#define NROOTS 4
126/* First consective root */
127#define FCR 510
128/* Number of symbols */
129#define NN 1023
130
131/* the Reed Solomon control structure */
132static struct rs_control *rs_decoder;
133
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000134/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * The HW decoder in the DoC ASIC's provides us a error syndrome,
136 * which we must convert to a standard syndrom usable by the generic
137 * Reed-Solomon library code.
138 *
139 * Fabrice Bellard figured this out in the old docecc code. I added
140 * some comments, improved a minor bit and converted it to make use
141 * of the generic Reed-Solomon libary. tglx
142 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100143static int doc_ecc_decode(struct rs_control *rs, uint8_t *data, uint8_t *ecc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 int i, j, nerr, errpos[8];
146 uint8_t parity;
147 uint16_t ds[4], s[5], tmp, errval[8], syn[4];
148
Mark Warec9fb6772010-05-27 11:45:39 +1000149 memset(syn, 0, sizeof(syn));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* Convert the ecc bytes into words */
151 ds[0] = ((ecc[4] & 0xff) >> 0) | ((ecc[5] & 0x03) << 8);
152 ds[1] = ((ecc[5] & 0xfc) >> 2) | ((ecc[2] & 0x0f) << 6);
153 ds[2] = ((ecc[2] & 0xf0) >> 4) | ((ecc[3] & 0x3f) << 4);
154 ds[3] = ((ecc[3] & 0xc0) >> 6) | ((ecc[0] & 0xff) << 2);
155 parity = ecc[1];
156
157 /* Initialize the syndrom buffer */
158 for (i = 0; i < NROOTS; i++)
159 s[i] = ds[0];
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000160 /*
161 * Evaluate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * s[i] = ds[3]x^3 + ds[2]x^2 + ds[1]x^1 + ds[0]
163 * where x = alpha^(FCR + i)
164 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100165 for (j = 1; j < NROOTS; j++) {
166 if (ds[j] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 continue;
168 tmp = rs->index_of[ds[j]];
David Woodhousee0c7d762006-05-13 18:07:53 +0100169 for (i = 0; i < NROOTS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 s[i] ^= rs->alpha_to[rs_modnn(rs, tmp + (FCR + i) * j)];
171 }
172
Mark Warec9fb6772010-05-27 11:45:39 +1000173 /* Calc syn[i] = s[i] / alpha^(v + i) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 for (i = 0; i < NROOTS; i++) {
Mark Warec9fb6772010-05-27 11:45:39 +1000175 if (s[i])
David Woodhousee0c7d762006-05-13 18:07:53 +0100176 syn[i] = rs_modnn(rs, rs->index_of[s[i]] + (NN - FCR - i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178 /* Call the decoder library */
179 nerr = decode_rs16(rs, NULL, NULL, 1019, syn, 0, errpos, 0, errval);
180
181 /* Incorrectable errors ? */
182 if (nerr < 0)
183 return nerr;
184
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000185 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * Correct the errors. The bitpositions are a bit of magic,
187 * but they are given by the design of the de/encoder circuit
188 * in the DoC ASIC's.
189 */
David Woodhousee0c7d762006-05-13 18:07:53 +0100190 for (i = 0; i < nerr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int index, bitpos, pos = 1015 - errpos[i];
192 uint8_t val;
193 if (pos >= NB_DATA && pos < 1019)
194 continue;
195 if (pos < NB_DATA) {
196 /* extract bit position (MSB first) */
197 pos = 10 * (NB_DATA - 1 - pos) - 6;
198 /* now correct the following 10 bits. At most two bytes
199 can be modified since pos is even */
200 index = (pos >> 3) ^ 1;
201 bitpos = pos & 7;
David Woodhousee0c7d762006-05-13 18:07:53 +0100202 if ((index >= 0 && index < SECTOR_SIZE) || index == (SECTOR_SIZE + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 val = (uint8_t) (errval[i] >> (2 + bitpos));
204 parity ^= val;
205 if (index < SECTOR_SIZE)
206 data[index] ^= val;
207 }
208 index = ((pos >> 3) + 1) ^ 1;
209 bitpos = (bitpos + 10) & 7;
210 if (bitpos == 0)
211 bitpos = 8;
David Woodhousee0c7d762006-05-13 18:07:53 +0100212 if ((index >= 0 && index < SECTOR_SIZE) || index == (SECTOR_SIZE + 1)) {
213 val = (uint8_t) (errval[i] << (8 - bitpos));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 parity ^= val;
215 if (index < SECTOR_SIZE)
216 data[index] ^= val;
217 }
218 }
219 }
220 /* If the parity is wrong, no rescue possible */
Jörn Engeleb684502007-10-20 23:16:32 +0200221 return parity ? -EBADMSG : nerr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224static void DoC_Delay(struct doc_priv *doc, unsigned short cycles)
225{
226 volatile char dummy;
227 int i;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 for (i = 0; i < cycles; i++) {
230 if (DoC_is_Millennium(doc))
231 dummy = ReadDOC(doc->virtadr, NOP);
232 else if (DoC_is_MillenniumPlus(doc))
233 dummy = ReadDOC(doc->virtadr, Mplus_NOP);
234 else
235 dummy = ReadDOC(doc->virtadr, DOCStatus);
236 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240#define CDSN_CTRL_FR_B_MASK (CDSN_CTRL_FR_B0 | CDSN_CTRL_FR_B1)
241
242/* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
243static int _DoC_WaitReady(struct doc_priv *doc)
244{
David Woodhousee0c7d762006-05-13 18:07:53 +0100245 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 unsigned long timeo = jiffies + (HZ * 10);
247
David Woodhousee0c7d762006-05-13 18:07:53 +0100248 if (debug)
249 printk("_DoC_WaitReady...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* Out-of-line routine to wait for chip response */
251 if (DoC_is_MillenniumPlus(doc)) {
252 while ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK) {
253 if (time_after(jiffies, timeo)) {
254 printk("_DoC_WaitReady timed out.\n");
255 return -EIO;
256 }
257 udelay(1);
258 cond_resched();
259 }
260 } else {
261 while (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
262 if (time_after(jiffies, timeo)) {
263 printk("_DoC_WaitReady timed out.\n");
264 return -EIO;
265 }
266 udelay(1);
267 cond_resched();
268 }
269 }
270
271 return 0;
272}
273
274static inline int DoC_WaitReady(struct doc_priv *doc)
275{
David Woodhousee0c7d762006-05-13 18:07:53 +0100276 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int ret = 0;
278
279 if (DoC_is_MillenniumPlus(doc)) {
280 DoC_Delay(doc, 4);
281
282 if ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK)
283 /* Call the out-of-line routine to wait */
284 ret = _DoC_WaitReady(doc);
285 } else {
286 DoC_Delay(doc, 4);
287
288 if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B))
289 /* Call the out-of-line routine to wait */
290 ret = _DoC_WaitReady(doc);
291 DoC_Delay(doc, 2);
292 }
293
David Woodhousee0c7d762006-05-13 18:07:53 +0100294 if (debug)
295 printk("DoC_WaitReady OK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return ret;
297}
298
299static void doc2000_write_byte(struct mtd_info *mtd, u_char datum)
300{
301 struct nand_chip *this = mtd->priv;
302 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100303 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
David Woodhousee0c7d762006-05-13 18:07:53 +0100305 if (debug)
306 printk("write_byte %02x\n", datum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 WriteDOC(datum, docptr, CDSNSlowIO);
308 WriteDOC(datum, docptr, 2k_CDSN_IO);
309}
310
311static u_char doc2000_read_byte(struct mtd_info *mtd)
312{
313 struct nand_chip *this = mtd->priv;
314 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100315 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u_char ret;
317
318 ReadDOC(docptr, CDSNSlowIO);
319 DoC_Delay(doc, 2);
320 ret = ReadDOC(docptr, 2k_CDSN_IO);
David Woodhousee0c7d762006-05-13 18:07:53 +0100321 if (debug)
322 printk("read_byte returns %02x\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return ret;
324}
325
David Woodhousee0c7d762006-05-13 18:07:53 +0100326static void doc2000_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct nand_chip *this = mtd->priv;
329 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100330 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int i;
David Woodhousee0c7d762006-05-13 18:07:53 +0100332 if (debug)
333 printk("writebuf of %d bytes: ", len);
334 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 WriteDOC_(buf[i], docptr, DoC_2k_CDSN_IO + i);
336 if (debug && i < 16)
337 printk("%02x ", buf[i]);
338 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100339 if (debug)
340 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
David Woodhousee0c7d762006-05-13 18:07:53 +0100343static void doc2000_readbuf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct nand_chip *this = mtd->priv;
346 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100347 void __iomem *docptr = doc->virtadr;
348 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
David Woodhousee0c7d762006-05-13 18:07:53 +0100350 if (debug)
351 printk("readbuf of %d bytes: ", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
David Woodhousee0c7d762006-05-13 18:07:53 +0100353 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 buf[i] = ReadDOC(docptr, 2k_CDSN_IO + i);
355 }
356}
357
David Woodhousee0c7d762006-05-13 18:07:53 +0100358static void doc2000_readbuf_dword(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 struct nand_chip *this = mtd->priv;
361 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100362 void __iomem *docptr = doc->virtadr;
363 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
David Woodhousee0c7d762006-05-13 18:07:53 +0100365 if (debug)
366 printk("readbuf_dword of %d bytes: ", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
David Woodhousee0c7d762006-05-13 18:07:53 +0100368 if (unlikely((((unsigned long)buf) | len) & 3)) {
369 for (i = 0; i < len; i++) {
370 *(uint8_t *) (&buf[i]) = ReadDOC(docptr, 2k_CDSN_IO + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +0100373 for (i = 0; i < len; i += 4) {
374 *(uint32_t *) (&buf[i]) = readl(docptr + DoC_2k_CDSN_IO + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 }
377}
378
David Woodhousee0c7d762006-05-13 18:07:53 +0100379static int doc2000_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct nand_chip *this = mtd->priv;
382 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100383 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 int i;
385
David Woodhousee0c7d762006-05-13 18:07:53 +0100386 for (i = 0; i < len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (buf[i] != ReadDOC(docptr, 2k_CDSN_IO))
388 return -EFAULT;
389 return 0;
390}
391
392static uint16_t __init doc200x_ident_chip(struct mtd_info *mtd, int nr)
393{
394 struct nand_chip *this = mtd->priv;
395 struct doc_priv *doc = this->priv;
396 uint16_t ret;
397
398 doc200x_select_chip(mtd, nr);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200399 doc200x_hwcontrol(mtd, NAND_CMD_READID,
400 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
401 doc200x_hwcontrol(mtd, 0, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
402 doc200x_hwcontrol(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000403
Thomas Gleixnerdfd61292005-02-22 21:48:25 +0000404 /* We cant' use dev_ready here, but at least we wait for the
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000405 * command to complete
Thomas Gleixnerdfd61292005-02-22 21:48:25 +0000406 */
407 udelay(50);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 ret = this->read_byte(mtd) << 8;
410 ret |= this->read_byte(mtd);
411
412 if (doc->ChipID == DOC_ChipID_Doc2k && try_dword && !nr) {
413 /* First chip probe. See if we get same results by 32-bit access */
414 union {
415 uint32_t dword;
416 uint8_t byte[4];
417 } ident;
418 void __iomem *docptr = doc->virtadr;
419
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200420 doc200x_hwcontrol(mtd, NAND_CMD_READID,
421 NAND_CTRL_CLE | NAND_CTRL_CHANGE);
422 doc200x_hwcontrol(mtd, 0, NAND_CTRL_ALE | NAND_CTRL_CHANGE);
423 doc200x_hwcontrol(mtd, NAND_CMD_NONE,
424 NAND_NCE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Thomas Gleixnerdfd61292005-02-22 21:48:25 +0000426 udelay(50);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 ident.dword = readl(docptr + DoC_2k_CDSN_IO);
429 if (((ident.byte[0] << 8) | ident.byte[1]) == ret) {
430 printk(KERN_INFO "DiskOnChip 2000 responds to DWORD access\n");
431 this->read_buf = &doc2000_readbuf_dword;
432 }
433 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return ret;
436}
437
438static void __init doc2000_count_chips(struct mtd_info *mtd)
439{
440 struct nand_chip *this = mtd->priv;
441 struct doc_priv *doc = this->priv;
442 uint16_t mfrid;
443 int i;
444
445 /* Max 4 chips per floor on DiskOnChip 2000 */
446 doc->chips_per_floor = 4;
447
448 /* Find out what the first chip is */
449 mfrid = doc200x_ident_chip(mtd, 0);
450
451 /* Find how many chips in each floor. */
452 for (i = 1; i < 4; i++) {
453 if (doc200x_ident_chip(mtd, i) != mfrid)
454 break;
455 }
456 doc->chips_per_floor = i;
457 printk(KERN_DEBUG "Detected %d chips per floor.\n", i);
458}
459
Thomas Gleixner7bc33122006-06-20 20:05:05 +0200460static int doc200x_wait(struct mtd_info *mtd, struct nand_chip *this)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct doc_priv *doc = this->priv;
463
464 int status;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 DoC_WaitReady(doc);
467 this->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
468 DoC_WaitReady(doc);
469 status = (int)this->read_byte(mtd);
470
471 return status;
472}
473
474static void doc2001_write_byte(struct mtd_info *mtd, u_char datum)
475{
476 struct nand_chip *this = mtd->priv;
477 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100478 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 WriteDOC(datum, docptr, CDSNSlowIO);
481 WriteDOC(datum, docptr, Mil_CDSN_IO);
482 WriteDOC(datum, docptr, WritePipeTerm);
483}
484
485static u_char doc2001_read_byte(struct mtd_info *mtd)
486{
487 struct nand_chip *this = mtd->priv;
488 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100489 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 //ReadDOC(docptr, CDSNSlowIO);
492 /* 11.4.5 -- delay twice to allow extended length cycle */
493 DoC_Delay(doc, 2);
494 ReadDOC(docptr, ReadPipeInit);
495 //return ReadDOC(docptr, Mil_CDSN_IO);
496 return ReadDOC(docptr, LastDataRead);
497}
498
David Woodhousee0c7d762006-05-13 18:07:53 +0100499static void doc2001_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 struct nand_chip *this = mtd->priv;
502 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100503 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int i;
505
David Woodhousee0c7d762006-05-13 18:07:53 +0100506 for (i = 0; i < len; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 WriteDOC_(buf[i], docptr, DoC_Mil_CDSN_IO + i);
508 /* Terminate write pipeline */
509 WriteDOC(0x00, docptr, WritePipeTerm);
510}
511
David Woodhousee0c7d762006-05-13 18:07:53 +0100512static void doc2001_readbuf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 struct nand_chip *this = mtd->priv;
515 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100516 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 int i;
518
519 /* Start read pipeline */
520 ReadDOC(docptr, ReadPipeInit);
521
David Woodhousee0c7d762006-05-13 18:07:53 +0100522 for (i = 0; i < len - 1; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 buf[i] = ReadDOC(docptr, Mil_CDSN_IO + (i & 0xff));
524
525 /* Terminate read pipeline */
526 buf[i] = ReadDOC(docptr, LastDataRead);
527}
528
David Woodhousee0c7d762006-05-13 18:07:53 +0100529static int doc2001_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct nand_chip *this = mtd->priv;
532 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100533 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int i;
535
536 /* Start read pipeline */
537 ReadDOC(docptr, ReadPipeInit);
538
David Woodhousee0c7d762006-05-13 18:07:53 +0100539 for (i = 0; i < len - 1; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (buf[i] != ReadDOC(docptr, Mil_CDSN_IO)) {
541 ReadDOC(docptr, LastDataRead);
542 return i;
543 }
544 if (buf[i] != ReadDOC(docptr, LastDataRead))
545 return i;
546 return 0;
547}
548
549static u_char doc2001plus_read_byte(struct mtd_info *mtd)
550{
551 struct nand_chip *this = mtd->priv;
552 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100553 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 u_char ret;
555
David Woodhousee0c7d762006-05-13 18:07:53 +0100556 ReadDOC(docptr, Mplus_ReadPipeInit);
557 ReadDOC(docptr, Mplus_ReadPipeInit);
558 ret = ReadDOC(docptr, Mplus_LastDataRead);
559 if (debug)
560 printk("read_byte returns %02x\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return ret;
562}
563
David Woodhousee0c7d762006-05-13 18:07:53 +0100564static void doc2001plus_writebuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct nand_chip *this = mtd->priv;
567 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100568 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 int i;
570
David Woodhousee0c7d762006-05-13 18:07:53 +0100571 if (debug)
572 printk("writebuf of %d bytes: ", len);
573 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 WriteDOC_(buf[i], docptr, DoC_Mil_CDSN_IO + i);
575 if (debug && i < 16)
576 printk("%02x ", buf[i]);
577 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100578 if (debug)
579 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
David Woodhousee0c7d762006-05-13 18:07:53 +0100582static void doc2001plus_readbuf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 struct nand_chip *this = mtd->priv;
585 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100586 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int i;
588
David Woodhousee0c7d762006-05-13 18:07:53 +0100589 if (debug)
590 printk("readbuf of %d bytes: ", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /* Start read pipeline */
593 ReadDOC(docptr, Mplus_ReadPipeInit);
594 ReadDOC(docptr, Mplus_ReadPipeInit);
595
David Woodhousee0c7d762006-05-13 18:07:53 +0100596 for (i = 0; i < len - 2; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 buf[i] = ReadDOC(docptr, Mil_CDSN_IO);
598 if (debug && i < 16)
599 printk("%02x ", buf[i]);
600 }
601
602 /* Terminate read pipeline */
David Woodhousee0c7d762006-05-13 18:07:53 +0100603 buf[len - 2] = ReadDOC(docptr, Mplus_LastDataRead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (debug && i < 16)
David Woodhousee0c7d762006-05-13 18:07:53 +0100605 printk("%02x ", buf[len - 2]);
606 buf[len - 1] = ReadDOC(docptr, Mplus_LastDataRead);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (debug && i < 16)
David Woodhousee0c7d762006-05-13 18:07:53 +0100608 printk("%02x ", buf[len - 1]);
609 if (debug)
610 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
David Woodhousee0c7d762006-05-13 18:07:53 +0100613static int doc2001plus_verifybuf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct nand_chip *this = mtd->priv;
616 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100617 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int i;
619
David Woodhousee0c7d762006-05-13 18:07:53 +0100620 if (debug)
621 printk("verifybuf of %d bytes: ", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 /* Start read pipeline */
624 ReadDOC(docptr, Mplus_ReadPipeInit);
625 ReadDOC(docptr, Mplus_ReadPipeInit);
626
David Woodhousee0c7d762006-05-13 18:07:53 +0100627 for (i = 0; i < len - 2; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (buf[i] != ReadDOC(docptr, Mil_CDSN_IO)) {
629 ReadDOC(docptr, Mplus_LastDataRead);
630 ReadDOC(docptr, Mplus_LastDataRead);
631 return i;
632 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100633 if (buf[len - 2] != ReadDOC(docptr, Mplus_LastDataRead))
634 return len - 2;
635 if (buf[len - 1] != ReadDOC(docptr, Mplus_LastDataRead))
636 return len - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638}
639
640static void doc2001plus_select_chip(struct mtd_info *mtd, int chip)
641{
642 struct nand_chip *this = mtd->priv;
643 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100644 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 int floor = 0;
646
David Woodhousee0c7d762006-05-13 18:07:53 +0100647 if (debug)
648 printk("select chip (%d)\n", chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (chip == -1) {
651 /* Disable flash internally */
652 WriteDOC(0, docptr, Mplus_FlashSelect);
653 return;
654 }
655
656 floor = chip / doc->chips_per_floor;
David Woodhousee0c7d762006-05-13 18:07:53 +0100657 chip -= (floor * doc->chips_per_floor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 /* Assert ChipEnable and deassert WriteProtect */
660 WriteDOC((DOC_FLASH_CE), docptr, Mplus_FlashSelect);
661 this->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
662
663 doc->curchip = chip;
664 doc->curfloor = floor;
665}
666
667static void doc200x_select_chip(struct mtd_info *mtd, int chip)
668{
669 struct nand_chip *this = mtd->priv;
670 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100671 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int floor = 0;
673
David Woodhousee0c7d762006-05-13 18:07:53 +0100674 if (debug)
675 printk("select chip (%d)\n", chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (chip == -1)
678 return;
679
680 floor = chip / doc->chips_per_floor;
David Woodhousee0c7d762006-05-13 18:07:53 +0100681 chip -= (floor * doc->chips_per_floor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /* 11.4.4 -- deassert CE before changing chip */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200684 doc200x_hwcontrol(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 WriteDOC(floor, docptr, FloorSelect);
687 WriteDOC(chip, docptr, CDSNDeviceSelect);
688
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200689 doc200x_hwcontrol(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 doc->curchip = chip;
692 doc->curfloor = floor;
693}
694
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200695#define CDSN_CTRL_MSK (CDSN_CTRL_CE | CDSN_CTRL_CLE | CDSN_CTRL_ALE)
696
697static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd,
698 unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 struct nand_chip *this = mtd->priv;
701 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100702 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200704 if (ctrl & NAND_CTRL_CHANGE) {
705 doc->CDSNControl &= ~CDSN_CTRL_MSK;
706 doc->CDSNControl |= ctrl & CDSN_CTRL_MSK;
707 if (debug)
708 printk("hwcontrol(%d): %02x\n", cmd, doc->CDSNControl);
709 WriteDOC(doc->CDSNControl, docptr, CDSNControl);
710 /* 11.4.3 -- 4 NOPs after CSDNControl write */
711 DoC_Delay(doc, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
Thomas Gleixnercad74f22006-05-23 23:28:48 +0200713 if (cmd != NAND_CMD_NONE) {
714 if (DoC_is_2000(doc))
715 doc2000_write_byte(mtd, cmd);
716 else
717 doc2001_write_byte(mtd, cmd);
718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
David Woodhousee0c7d762006-05-13 18:07:53 +0100721static void doc2001plus_command(struct mtd_info *mtd, unsigned command, int column, int page_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 struct nand_chip *this = mtd->priv;
724 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100725 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /*
728 * Must terminate write pipeline before sending any commands
729 * to the device.
730 */
731 if (command == NAND_CMD_PAGEPROG) {
732 WriteDOC(0x00, docptr, Mplus_WritePipeTerm);
733 WriteDOC(0x00, docptr, Mplus_WritePipeTerm);
734 }
735
736 /*
737 * Write out the command to the device.
738 */
739 if (command == NAND_CMD_SEQIN) {
740 int readcmd;
741
Joern Engel28318772006-05-22 23:18:05 +0200742 if (column >= mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200744 column -= mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 readcmd = NAND_CMD_READOOB;
746 } else if (column < 256) {
747 /* First 256 bytes --> READ0 */
748 readcmd = NAND_CMD_READ0;
749 } else {
750 column -= 256;
751 readcmd = NAND_CMD_READ1;
752 }
753 WriteDOC(readcmd, docptr, Mplus_FlashCmd);
754 }
755 WriteDOC(command, docptr, Mplus_FlashCmd);
756 WriteDOC(0, docptr, Mplus_WritePipeTerm);
757 WriteDOC(0, docptr, Mplus_WritePipeTerm);
758
759 if (column != -1 || page_addr != -1) {
760 /* Serially input address */
761 if (column != -1) {
762 /* Adjust columns for 16 bit buswidth */
763 if (this->options & NAND_BUSWIDTH_16)
764 column >>= 1;
765 WriteDOC(column, docptr, Mplus_FlashAddress);
766 }
767 if (page_addr != -1) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100768 WriteDOC((unsigned char)(page_addr & 0xff), docptr, Mplus_FlashAddress);
769 WriteDOC((unsigned char)((page_addr >> 8) & 0xff), docptr, Mplus_FlashAddress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* One more address cycle for higher density devices */
771 if (this->chipsize & 0x0c000000) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100772 WriteDOC((unsigned char)((page_addr >> 16) & 0x0f), docptr, Mplus_FlashAddress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 printk("high density\n");
774 }
775 }
776 WriteDOC(0, docptr, Mplus_WritePipeTerm);
777 WriteDOC(0, docptr, Mplus_WritePipeTerm);
778 /* deassert ALE */
David Woodhousee0c7d762006-05-13 18:07:53 +0100779 if (command == NAND_CMD_READ0 || command == NAND_CMD_READ1 ||
780 command == NAND_CMD_READOOB || command == NAND_CMD_READID)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 WriteDOC(0, docptr, Mplus_FlashControl);
782 }
783
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000784 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * program and erase have their own busy handlers
786 * status and sequential in needs no delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 switch (command) {
789
790 case NAND_CMD_PAGEPROG:
791 case NAND_CMD_ERASE1:
792 case NAND_CMD_ERASE2:
793 case NAND_CMD_SEQIN:
794 case NAND_CMD_STATUS:
795 return;
796
797 case NAND_CMD_RESET:
798 if (this->dev_ready)
799 break;
800 udelay(this->chip_delay);
801 WriteDOC(NAND_CMD_STATUS, docptr, Mplus_FlashCmd);
802 WriteDOC(0, docptr, Mplus_WritePipeTerm);
803 WriteDOC(0, docptr, Mplus_WritePipeTerm);
David Woodhousee0c7d762006-05-13 18:07:53 +0100804 while (!(this->read_byte(mtd) & 0x40)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return;
806
David Woodhousee0c7d762006-05-13 18:07:53 +0100807 /* This applies to read commands */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 default:
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000809 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * If we don't have access to the busy pin, we apply the given
811 * command delay
David Woodhousee0c7d762006-05-13 18:07:53 +0100812 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!this->dev_ready) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100814 udelay(this->chip_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return;
816 }
817 }
818
819 /* Apply this short delay always to ensure that we do wait tWB in
820 * any case on any machine. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100821 ndelay(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* wait until command is processed */
David Woodhousee0c7d762006-05-13 18:07:53 +0100823 while (!this->dev_ready(mtd)) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826static int doc200x_dev_ready(struct mtd_info *mtd)
827{
828 struct nand_chip *this = mtd->priv;
829 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100830 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (DoC_is_MillenniumPlus(doc)) {
833 /* 11.4.2 -- must NOP four times before checking FR/B# */
834 DoC_Delay(doc, 4);
835 if ((ReadDOC(docptr, Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100836 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 printk("not ready\n");
838 return 0;
839 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100840 if (debug)
841 printk("was ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 1;
843 } else {
844 /* 11.4.2 -- must NOP four times before checking FR/B# */
845 DoC_Delay(doc, 4);
846 if (!(ReadDOC(docptr, CDSNControl) & CDSN_CTRL_FR_B)) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100847 if (debug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 printk("not ready\n");
849 return 0;
850 }
851 /* 11.4.2 -- Must NOP twice if it's ready */
852 DoC_Delay(doc, 2);
David Woodhousee0c7d762006-05-13 18:07:53 +0100853 if (debug)
854 printk("was ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return 1;
856 }
857}
858
859static int doc200x_block_bad(struct mtd_info *mtd, loff_t ofs, int getchip)
860{
861 /* This is our last resort if we couldn't find or create a BBT. Just
862 pretend all blocks are good. */
863 return 0;
864}
865
866static void doc200x_enable_hwecc(struct mtd_info *mtd, int mode)
867{
868 struct nand_chip *this = mtd->priv;
869 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100870 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /* Prime the ECC engine */
David Woodhousee0c7d762006-05-13 18:07:53 +0100873 switch (mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 case NAND_ECC_READ:
875 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
876 WriteDOC(DOC_ECC_EN, docptr, ECCConf);
877 break;
878 case NAND_ECC_WRITE:
879 WriteDOC(DOC_ECC_RESET, docptr, ECCConf);
880 WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, ECCConf);
881 break;
882 }
883}
884
885static void doc2001plus_enable_hwecc(struct mtd_info *mtd, int mode)
886{
887 struct nand_chip *this = mtd->priv;
888 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100889 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /* Prime the ECC engine */
David Woodhousee0c7d762006-05-13 18:07:53 +0100892 switch (mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 case NAND_ECC_READ:
894 WriteDOC(DOC_ECC_RESET, docptr, Mplus_ECCConf);
895 WriteDOC(DOC_ECC_EN, docptr, Mplus_ECCConf);
896 break;
897 case NAND_ECC_WRITE:
898 WriteDOC(DOC_ECC_RESET, docptr, Mplus_ECCConf);
899 WriteDOC(DOC_ECC_EN | DOC_ECC_RW, docptr, Mplus_ECCConf);
900 break;
901 }
902}
903
904/* This code is only called on write */
David Woodhousee0c7d762006-05-13 18:07:53 +0100905static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat, unsigned char *ecc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct nand_chip *this = mtd->priv;
908 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100909 void __iomem *docptr = doc->virtadr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 int i;
911 int emptymatch = 1;
912
913 /* flush the pipeline */
914 if (DoC_is_2000(doc)) {
915 WriteDOC(doc->CDSNControl & ~CDSN_CTRL_FLASH_IO, docptr, CDSNControl);
916 WriteDOC(0, docptr, 2k_CDSN_IO);
917 WriteDOC(0, docptr, 2k_CDSN_IO);
918 WriteDOC(0, docptr, 2k_CDSN_IO);
919 WriteDOC(doc->CDSNControl, docptr, CDSNControl);
920 } else if (DoC_is_MillenniumPlus(doc)) {
921 WriteDOC(0, docptr, Mplus_NOP);
922 WriteDOC(0, docptr, Mplus_NOP);
923 WriteDOC(0, docptr, Mplus_NOP);
924 } else {
925 WriteDOC(0, docptr, NOP);
926 WriteDOC(0, docptr, NOP);
927 WriteDOC(0, docptr, NOP);
928 }
929
930 for (i = 0; i < 6; i++) {
931 if (DoC_is_MillenniumPlus(doc))
932 ecc_code[i] = ReadDOC_(docptr, DoC_Mplus_ECCSyndrome0 + i);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000933 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 ecc_code[i] = ReadDOC_(docptr, DoC_ECCSyndrome0 + i);
935 if (ecc_code[i] != empty_write_ecc[i])
936 emptymatch = 0;
937 }
938 if (DoC_is_MillenniumPlus(doc))
939 WriteDOC(DOC_ECC_DIS, docptr, Mplus_ECCConf);
940 else
941 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
942#if 0
943 /* If emptymatch=1, we might have an all-0xff data buffer. Check. */
944 if (emptymatch) {
945 /* Note: this somewhat expensive test should not be triggered
946 often. It could be optimized away by examining the data in
947 the writebuf routine, and remembering the result. */
948 for (i = 0; i < 512; i++) {
David Woodhousee0c7d762006-05-13 18:07:53 +0100949 if (dat[i] == 0xff)
950 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 emptymatch = 0;
952 break;
953 }
954 }
955 /* If emptymatch still =1, we do have an all-0xff data buffer.
956 Return all-0xff ecc value instead of the computed one, so
957 it'll look just like a freshly-erased page. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100958 if (emptymatch)
959 memset(ecc_code, 0xff, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960#endif
961 return 0;
962}
963
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200964static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat,
965 u_char *read_ecc, u_char *isnull)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 int i, ret = 0;
968 struct nand_chip *this = mtd->priv;
969 struct doc_priv *doc = this->priv;
David Woodhousee0c7d762006-05-13 18:07:53 +0100970 void __iomem *docptr = doc->virtadr;
Thomas Gleixnerf5bbdac2006-05-25 10:07:16 +0200971 uint8_t calc_ecc[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 volatile u_char dummy;
973 int emptymatch = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* flush the pipeline */
976 if (DoC_is_2000(doc)) {
977 dummy = ReadDOC(docptr, 2k_ECCStatus);
978 dummy = ReadDOC(docptr, 2k_ECCStatus);
979 dummy = ReadDOC(docptr, 2k_ECCStatus);
980 } else if (DoC_is_MillenniumPlus(doc)) {
981 dummy = ReadDOC(docptr, Mplus_ECCConf);
982 dummy = ReadDOC(docptr, Mplus_ECCConf);
983 dummy = ReadDOC(docptr, Mplus_ECCConf);
984 } else {
985 dummy = ReadDOC(docptr, ECCConf);
986 dummy = ReadDOC(docptr, ECCConf);
987 dummy = ReadDOC(docptr, ECCConf);
988 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /* Error occured ? */
991 if (dummy & 0x80) {
992 for (i = 0; i < 6; i++) {
993 if (DoC_is_MillenniumPlus(doc))
994 calc_ecc[i] = ReadDOC_(docptr, DoC_Mplus_ECCSyndrome0 + i);
995 else
996 calc_ecc[i] = ReadDOC_(docptr, DoC_ECCSyndrome0 + i);
997 if (calc_ecc[i] != empty_read_syndrome[i])
998 emptymatch = 0;
999 }
1000 /* If emptymatch=1, the read syndrome is consistent with an
1001 all-0xff data and stored ecc block. Check the stored ecc. */
1002 if (emptymatch) {
1003 for (i = 0; i < 6; i++) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001004 if (read_ecc[i] == 0xff)
1005 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 emptymatch = 0;
1007 break;
1008 }
1009 }
1010 /* If emptymatch still =1, check the data block. */
1011 if (emptymatch) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001012 /* Note: this somewhat expensive test should not be triggered
1013 often. It could be optimized away by examining the data in
1014 the readbuf routine, and remembering the result. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 for (i = 0; i < 512; i++) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001016 if (dat[i] == 0xff)
1017 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 emptymatch = 0;
1019 break;
1020 }
1021 }
1022 /* If emptymatch still =1, this is almost certainly a freshly-
1023 erased block, in which case the ECC will not come out right.
1024 We'll suppress the error and tell the caller everything's
1025 OK. Because it is. */
David Woodhousee0c7d762006-05-13 18:07:53 +01001026 if (!emptymatch)
1027 ret = doc_ecc_decode(rs_decoder, dat, calc_ecc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (ret > 0)
1029 printk(KERN_ERR "doc200x_correct_data corrected %d errors\n", ret);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (DoC_is_MillenniumPlus(doc))
1032 WriteDOC(DOC_ECC_DIS, docptr, Mplus_ECCConf);
1033 else
1034 WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
Jörn Engeleb684502007-10-20 23:16:32 +02001035 if (no_ecc_failures && (ret == -EBADMSG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 printk(KERN_ERR "suppressing ECC failure\n");
1037 ret = 0;
1038 }
1039 return ret;
1040}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042//u_char mydatabuf[528];
1043
Dan Brownabc37e62005-04-07 15:22:58 +01001044/* The strange out-of-order .oobfree list below is a (possibly unneeded)
1045 * attempt to retain compatibility. It used to read:
1046 * .oobfree = { {8, 8} }
1047 * Since that leaves two bytes unusable, it was changed. But the following
1048 * scheme might affect existing jffs2 installs by moving the cleanmarker:
1049 * .oobfree = { {6, 10} }
1050 * jffs2 seems to handle the above gracefully, but the current scheme seems
1051 * safer. The only problem with it is that any code that parses oobfree must
1052 * be able to handle out-of-order segments.
1053 */
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02001054static struct nand_ecclayout doc200x_oobinfo = {
David Woodhousee0c7d762006-05-13 18:07:53 +01001055 .eccbytes = 6,
1056 .eccpos = {0, 1, 2, 3, 4, 5},
1057 .oobfree = {{8, 8}, {6, 2}}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058};
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/* Find the (I)NFTL Media Header, and optionally also the mirror media header.
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001061 On successful return, buf will contain a copy of the media header for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 further processing. id is the string to scan for, and will presumably be
1063 either "ANAND" or "BNAND". If findmirror=1, also look for the mirror media
1064 header. The page #s of the found media headers are placed in mh0_page and
1065 mh1_page in the DOC private structure. */
David Woodhousee0c7d762006-05-13 18:07:53 +01001066static int __init find_media_headers(struct mtd_info *mtd, u_char *buf, const char *id, int findmirror)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct nand_chip *this = mtd->priv;
1069 struct doc_priv *doc = this->priv;
Dan Brown1a78ff62005-03-29 21:57:48 +01001070 unsigned offs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 int ret;
1072 size_t retlen;
1073
Dan Brown1a78ff62005-03-29 21:57:48 +01001074 for (offs = 0; offs < mtd->size; offs += mtd->erasesize) {
Joern Engel28318772006-05-22 23:18:05 +02001075 ret = mtd->read(mtd, offs, mtd->writesize, &retlen, buf);
1076 if (retlen != mtd->writesize)
David Woodhousee0c7d762006-05-13 18:07:53 +01001077 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (ret) {
David Woodhousee0c7d762006-05-13 18:07:53 +01001079 printk(KERN_WARNING "ECC error scanning DOC at 0x%x\n", offs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
David Woodhousee0c7d762006-05-13 18:07:53 +01001081 if (memcmp(buf, id, 6))
1082 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 printk(KERN_INFO "Found DiskOnChip %s Media Header at 0x%x\n", id, offs);
1084 if (doc->mh0_page == -1) {
1085 doc->mh0_page = offs >> this->page_shift;
David Woodhousee0c7d762006-05-13 18:07:53 +01001086 if (!findmirror)
1087 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 continue;
1089 }
1090 doc->mh1_page = offs >> this->page_shift;
1091 return 2;
1092 }
1093 if (doc->mh0_page == -1) {
1094 printk(KERN_WARNING "DiskOnChip %s Media Header not found.\n", id);
1095 return 0;
1096 }
1097 /* Only one mediaheader was found. We want buf to contain a
1098 mediaheader on return, so we'll have to re-read the one we found. */
1099 offs = doc->mh0_page << this->page_shift;
Joern Engel28318772006-05-22 23:18:05 +02001100 ret = mtd->read(mtd, offs, mtd->writesize, &retlen, buf);
1101 if (retlen != mtd->writesize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /* Insanity. Give up. */
1103 printk(KERN_ERR "Read DiskOnChip Media Header once, but can't reread it???\n");
1104 return 0;
1105 }
1106 return 1;
1107}
1108
David Woodhousee0c7d762006-05-13 18:07:53 +01001109static inline int __init nftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
1111 struct nand_chip *this = mtd->priv;
1112 struct doc_priv *doc = this->priv;
1113 int ret = 0;
1114 u_char *buf;
1115 struct NFTLMediaHeader *mh;
1116 const unsigned psize = 1 << this->page_shift;
Dan Brown1a78ff62005-03-29 21:57:48 +01001117 int numparts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 unsigned blocks, maxblocks;
1119 int offs, numheaders;
1120
Joern Engel28318772006-05-22 23:18:05 +02001121 buf = kmalloc(mtd->writesize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (!buf) {
1123 printk(KERN_ERR "DiskOnChip mediaheader kmalloc failed!\n");
1124 return 0;
1125 }
David Woodhousee0c7d762006-05-13 18:07:53 +01001126 if (!(numheaders = find_media_headers(mtd, buf, "ANAND", 1)))
1127 goto out;
1128 mh = (struct NFTLMediaHeader *)buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Harvey Harrison96372442008-07-30 12:34:57 -07001130 le16_to_cpus(&mh->NumEraseUnits);
1131 le16_to_cpus(&mh->FirstPhysicalEUN);
1132 le32_to_cpus(&mh->FormattedSize);
Thomas Gleixnerf29a4b82005-01-31 22:22:24 +00001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 printk(KERN_INFO " DataOrgID = %s\n"
1135 " NumEraseUnits = %d\n"
1136 " FirstPhysicalEUN = %d\n"
1137 " FormattedSize = %d\n"
1138 " UnitSizeFactor = %d\n",
1139 mh->DataOrgID, mh->NumEraseUnits,
1140 mh->FirstPhysicalEUN, mh->FormattedSize,
1141 mh->UnitSizeFactor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 blocks = mtd->size >> this->phys_erase_shift;
1144 maxblocks = min(32768U, mtd->erasesize - psize);
1145
1146 if (mh->UnitSizeFactor == 0x00) {
1147 /* Auto-determine UnitSizeFactor. The constraints are:
1148 - There can be at most 32768 virtual blocks.
1149 - There can be at most (virtual block size - page size)
David Woodhousee0c7d762006-05-13 18:07:53 +01001150 virtual blocks (because MediaHeader+BBT must fit in 1).
1151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 mh->UnitSizeFactor = 0xff;
1153 while (blocks > maxblocks) {
1154 blocks >>= 1;
1155 maxblocks = min(32768U, (maxblocks << 1) + psize);
1156 mh->UnitSizeFactor--;
1157 }
1158 printk(KERN_WARNING "UnitSizeFactor=0x00 detected. Correct value is assumed to be 0x%02x.\n", mh->UnitSizeFactor);
1159 }
1160
1161 /* NOTE: The lines below modify internal variables of the NAND and MTD
1162 layers; variables with have already been configured by nand_scan.
1163 Unfortunately, we didn't know before this point what these values
1164 should be. Thus, this code is somewhat dependant on the exact
1165 implementation of the NAND layer. */
1166 if (mh->UnitSizeFactor != 0xff) {
1167 this->bbt_erase_shift += (0xff - mh->UnitSizeFactor);
1168 mtd->erasesize <<= (0xff - mh->UnitSizeFactor);
1169 printk(KERN_INFO "Setting virtual erase size to %d\n", mtd->erasesize);
1170 blocks = mtd->size >> this->bbt_erase_shift;
1171 maxblocks = min(32768U, mtd->erasesize - psize);
1172 }
1173
1174 if (blocks > maxblocks) {
1175 printk(KERN_ERR "UnitSizeFactor of 0x%02x is inconsistent with device size. Aborting.\n", mh->UnitSizeFactor);
1176 goto out;
1177 }
1178
1179 /* Skip past the media headers. */
1180 offs = max(doc->mh0_page, doc->mh1_page);
1181 offs <<= this->page_shift;
1182 offs += mtd->erasesize;
1183
Dan Brown1a78ff62005-03-29 21:57:48 +01001184 if (show_firmware_partition == 1) {
1185 parts[0].name = " DiskOnChip Firmware / Media Header partition";
1186 parts[0].offset = 0;
1187 parts[0].size = offs;
1188 numparts = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
Dan Brown1a78ff62005-03-29 21:57:48 +01001190
1191 parts[numparts].name = " DiskOnChip BDTL partition";
1192 parts[numparts].offset = offs;
1193 parts[numparts].size = (mh->NumEraseUnits - numheaders) << this->bbt_erase_shift;
1194
1195 offs += parts[numparts].size;
1196 numparts++;
1197
1198 if (offs < mtd->size) {
1199 parts[numparts].name = " DiskOnChip Remainder partition";
1200 parts[numparts].offset = offs;
1201 parts[numparts].size = mtd->size - offs;
1202 numparts++;
1203 }
1204
1205 ret = numparts;
David Woodhousee0c7d762006-05-13 18:07:53 +01001206 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 kfree(buf);
1208 return ret;
1209}
1210
1211/* This is a stripped-down copy of the code in inftlmount.c */
David Woodhousee0c7d762006-05-13 18:07:53 +01001212static inline int __init inftl_partscan(struct mtd_info *mtd, struct mtd_partition *parts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 struct nand_chip *this = mtd->priv;
1215 struct doc_priv *doc = this->priv;
1216 int ret = 0;
1217 u_char *buf;
1218 struct INFTLMediaHeader *mh;
1219 struct INFTLPartition *ip;
1220 int numparts = 0;
1221 int blocks;
1222 int vshift, lastvunit = 0;
1223 int i;
1224 int end = mtd->size;
1225
1226 if (inftl_bbt_write)
1227 end -= (INFTL_BBT_RESERVED_BLOCKS << this->phys_erase_shift);
1228
Joern Engel28318772006-05-22 23:18:05 +02001229 buf = kmalloc(mtd->writesize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (!buf) {
1231 printk(KERN_ERR "DiskOnChip mediaheader kmalloc failed!\n");
1232 return 0;
1233 }
1234
David Woodhousee0c7d762006-05-13 18:07:53 +01001235 if (!find_media_headers(mtd, buf, "BNAND", 0))
1236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 doc->mh1_page = doc->mh0_page + (4096 >> this->page_shift);
David Woodhousee0c7d762006-05-13 18:07:53 +01001238 mh = (struct INFTLMediaHeader *)buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Harvey Harrison96372442008-07-30 12:34:57 -07001240 le32_to_cpus(&mh->NoOfBootImageBlocks);
1241 le32_to_cpus(&mh->NoOfBinaryPartitions);
1242 le32_to_cpus(&mh->NoOfBDTLPartitions);
1243 le32_to_cpus(&mh->BlockMultiplierBits);
1244 le32_to_cpus(&mh->FormatFlags);
1245 le32_to_cpus(&mh->PercentUsed);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 printk(KERN_INFO " bootRecordID = %s\n"
1248 " NoOfBootImageBlocks = %d\n"
1249 " NoOfBinaryPartitions = %d\n"
1250 " NoOfBDTLPartitions = %d\n"
1251 " BlockMultiplerBits = %d\n"
1252 " FormatFlgs = %d\n"
1253 " OsakVersion = %d.%d.%d.%d\n"
1254 " PercentUsed = %d\n",
1255 mh->bootRecordID, mh->NoOfBootImageBlocks,
1256 mh->NoOfBinaryPartitions,
1257 mh->NoOfBDTLPartitions,
1258 mh->BlockMultiplierBits, mh->FormatFlags,
1259 ((unsigned char *) &mh->OsakVersion)[0] & 0xf,
1260 ((unsigned char *) &mh->OsakVersion)[1] & 0xf,
1261 ((unsigned char *) &mh->OsakVersion)[2] & 0xf,
1262 ((unsigned char *) &mh->OsakVersion)[3] & 0xf,
1263 mh->PercentUsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 vshift = this->phys_erase_shift + mh->BlockMultiplierBits;
1266
1267 blocks = mtd->size >> vshift;
1268 if (blocks > 32768) {
1269 printk(KERN_ERR "BlockMultiplierBits=%d is inconsistent with device size. Aborting.\n", mh->BlockMultiplierBits);
1270 goto out;
1271 }
1272
1273 blocks = doc->chips_per_floor << (this->chip_shift - this->phys_erase_shift);
1274 if (inftl_bbt_write && (blocks > mtd->erasesize)) {
1275 printk(KERN_ERR "Writeable BBTs spanning more than one erase block are not yet supported. FIX ME!\n");
1276 goto out;
1277 }
1278
1279 /* Scan the partitions */
1280 for (i = 0; (i < 4); i++) {
1281 ip = &(mh->Partitions[i]);
Harvey Harrison96372442008-07-30 12:34:57 -07001282 le32_to_cpus(&ip->virtualUnits);
1283 le32_to_cpus(&ip->firstUnit);
1284 le32_to_cpus(&ip->lastUnit);
1285 le32_to_cpus(&ip->flags);
1286 le32_to_cpus(&ip->spareUnits);
1287 le32_to_cpus(&ip->Reserved0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 printk(KERN_INFO " PARTITION[%d] ->\n"
1290 " virtualUnits = %d\n"
1291 " firstUnit = %d\n"
1292 " lastUnit = %d\n"
1293 " flags = 0x%x\n"
1294 " spareUnits = %d\n",
1295 i, ip->virtualUnits, ip->firstUnit,
1296 ip->lastUnit, ip->flags,
1297 ip->spareUnits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Dan Brown1a78ff62005-03-29 21:57:48 +01001299 if ((show_firmware_partition == 1) &&
1300 (i == 0) && (ip->firstUnit > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 parts[0].name = " DiskOnChip IPL / Media Header partition";
1302 parts[0].offset = 0;
1303 parts[0].size = mtd->erasesize * ip->firstUnit;
1304 numparts = 1;
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 if (ip->flags & INFTL_BINARY)
1308 parts[numparts].name = " DiskOnChip BDK partition";
1309 else
1310 parts[numparts].name = " DiskOnChip BDTL partition";
1311 parts[numparts].offset = ip->firstUnit << vshift;
1312 parts[numparts].size = (1 + ip->lastUnit - ip->firstUnit) << vshift;
1313 numparts++;
David Woodhousee0c7d762006-05-13 18:07:53 +01001314 if (ip->lastUnit > lastvunit)
1315 lastvunit = ip->lastUnit;
1316 if (ip->flags & INFTL_LAST)
1317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319 lastvunit++;
1320 if ((lastvunit << vshift) < end) {
1321 parts[numparts].name = " DiskOnChip Remainder partition";
1322 parts[numparts].offset = lastvunit << vshift;
1323 parts[numparts].size = end - parts[numparts].offset;
1324 numparts++;
1325 }
1326 ret = numparts;
David Woodhousee0c7d762006-05-13 18:07:53 +01001327 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 kfree(buf);
1329 return ret;
1330}
1331
1332static int __init nftl_scan_bbt(struct mtd_info *mtd)
1333{
1334 int ret, numparts;
1335 struct nand_chip *this = mtd->priv;
1336 struct doc_priv *doc = this->priv;
1337 struct mtd_partition parts[2];
1338
David Woodhousee0c7d762006-05-13 18:07:53 +01001339 memset((char *)parts, 0, sizeof(parts));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /* On NFTL, we have to find the media headers before we can read the
1341 BBTs, since they're stored in the media header eraseblocks. */
1342 numparts = nftl_partscan(mtd, parts);
David Woodhousee0c7d762006-05-13 18:07:53 +01001343 if (!numparts)
1344 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 this->bbt_td->options = NAND_BBT_ABSPAGE | NAND_BBT_8BIT |
1346 NAND_BBT_SAVECONTENT | NAND_BBT_WRITE |
1347 NAND_BBT_VERSION;
1348 this->bbt_td->veroffs = 7;
1349 this->bbt_td->pages[0] = doc->mh0_page + 1;
1350 if (doc->mh1_page != -1) {
1351 this->bbt_md->options = NAND_BBT_ABSPAGE | NAND_BBT_8BIT |
1352 NAND_BBT_SAVECONTENT | NAND_BBT_WRITE |
1353 NAND_BBT_VERSION;
1354 this->bbt_md->veroffs = 7;
1355 this->bbt_md->pages[0] = doc->mh1_page + 1;
1356 } else {
1357 this->bbt_md = NULL;
1358 }
1359
1360 /* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
1361 At least as nand_bbt.c is currently written. */
1362 if ((ret = nand_scan_bbt(mtd, NULL)))
1363 return ret;
1364 add_mtd_device(mtd);
1365#ifdef CONFIG_MTD_PARTITIONS
1366 if (!no_autopart)
1367 add_mtd_partitions(mtd, parts, numparts);
1368#endif
1369 return 0;
1370}
1371
1372static int __init inftl_scan_bbt(struct mtd_info *mtd)
1373{
1374 int ret, numparts;
1375 struct nand_chip *this = mtd->priv;
1376 struct doc_priv *doc = this->priv;
1377 struct mtd_partition parts[5];
1378
1379 if (this->numchips > doc->chips_per_floor) {
1380 printk(KERN_ERR "Multi-floor INFTL devices not yet supported.\n");
1381 return -EIO;
1382 }
1383
1384 if (DoC_is_MillenniumPlus(doc)) {
1385 this->bbt_td->options = NAND_BBT_2BIT | NAND_BBT_ABSPAGE;
1386 if (inftl_bbt_write)
1387 this->bbt_td->options |= NAND_BBT_WRITE;
1388 this->bbt_td->pages[0] = 2;
1389 this->bbt_md = NULL;
1390 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +01001391 this->bbt_td->options = NAND_BBT_LASTBLOCK | NAND_BBT_8BIT | NAND_BBT_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (inftl_bbt_write)
1393 this->bbt_td->options |= NAND_BBT_WRITE;
1394 this->bbt_td->offs = 8;
1395 this->bbt_td->len = 8;
1396 this->bbt_td->veroffs = 7;
1397 this->bbt_td->maxblocks = INFTL_BBT_RESERVED_BLOCKS;
1398 this->bbt_td->reserved_block_code = 0x01;
1399 this->bbt_td->pattern = "MSYS_BBT";
1400
David Woodhousee0c7d762006-05-13 18:07:53 +01001401 this->bbt_md->options = NAND_BBT_LASTBLOCK | NAND_BBT_8BIT | NAND_BBT_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (inftl_bbt_write)
1403 this->bbt_md->options |= NAND_BBT_WRITE;
1404 this->bbt_md->offs = 8;
1405 this->bbt_md->len = 8;
1406 this->bbt_md->veroffs = 7;
1407 this->bbt_md->maxblocks = INFTL_BBT_RESERVED_BLOCKS;
1408 this->bbt_md->reserved_block_code = 0x01;
1409 this->bbt_md->pattern = "TBB_SYSM";
1410 }
1411
1412 /* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
1413 At least as nand_bbt.c is currently written. */
1414 if ((ret = nand_scan_bbt(mtd, NULL)))
1415 return ret;
David Woodhousee0c7d762006-05-13 18:07:53 +01001416 memset((char *)parts, 0, sizeof(parts));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 numparts = inftl_partscan(mtd, parts);
1418 /* At least for now, require the INFTL Media Header. We could probably
1419 do without it for non-INFTL use, since all it gives us is
1420 autopartitioning, but I want to give it more thought. */
David Woodhousee0c7d762006-05-13 18:07:53 +01001421 if (!numparts)
1422 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 add_mtd_device(mtd);
1424#ifdef CONFIG_MTD_PARTITIONS
1425 if (!no_autopart)
1426 add_mtd_partitions(mtd, parts, numparts);
1427#endif
1428 return 0;
1429}
1430
1431static inline int __init doc2000_init(struct mtd_info *mtd)
1432{
1433 struct nand_chip *this = mtd->priv;
1434 struct doc_priv *doc = this->priv;
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 this->read_byte = doc2000_read_byte;
1437 this->write_buf = doc2000_writebuf;
1438 this->read_buf = doc2000_readbuf;
1439 this->verify_buf = doc2000_verifybuf;
1440 this->scan_bbt = nftl_scan_bbt;
1441
1442 doc->CDSNControl = CDSN_CTRL_FLASH_IO | CDSN_CTRL_ECC_IO;
1443 doc2000_count_chips(mtd);
1444 mtd->name = "DiskOnChip 2000 (NFTL Model)";
1445 return (4 * doc->chips_per_floor);
1446}
1447
1448static inline int __init doc2001_init(struct mtd_info *mtd)
1449{
1450 struct nand_chip *this = mtd->priv;
1451 struct doc_priv *doc = this->priv;
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 this->read_byte = doc2001_read_byte;
1454 this->write_buf = doc2001_writebuf;
1455 this->read_buf = doc2001_readbuf;
1456 this->verify_buf = doc2001_verifybuf;
1457
1458 ReadDOC(doc->virtadr, ChipID);
1459 ReadDOC(doc->virtadr, ChipID);
1460 ReadDOC(doc->virtadr, ChipID);
1461 if (ReadDOC(doc->virtadr, ChipID) != DOC_ChipID_DocMil) {
1462 /* It's not a Millennium; it's one of the newer
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001463 DiskOnChip 2000 units with a similar ASIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 Treat it like a Millennium, except that it
1465 can have multiple chips. */
1466 doc2000_count_chips(mtd);
1467 mtd->name = "DiskOnChip 2000 (INFTL Model)";
1468 this->scan_bbt = inftl_scan_bbt;
1469 return (4 * doc->chips_per_floor);
1470 } else {
1471 /* Bog-standard Millennium */
1472 doc->chips_per_floor = 1;
1473 mtd->name = "DiskOnChip Millennium";
1474 this->scan_bbt = nftl_scan_bbt;
1475 return 1;
1476 }
1477}
1478
1479static inline int __init doc2001plus_init(struct mtd_info *mtd)
1480{
1481 struct nand_chip *this = mtd->priv;
1482 struct doc_priv *doc = this->priv;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 this->read_byte = doc2001plus_read_byte;
1485 this->write_buf = doc2001plus_writebuf;
1486 this->read_buf = doc2001plus_readbuf;
1487 this->verify_buf = doc2001plus_verifybuf;
1488 this->scan_bbt = inftl_scan_bbt;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02001489 this->cmd_ctrl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 this->select_chip = doc2001plus_select_chip;
1491 this->cmdfunc = doc2001plus_command;
Thomas Gleixner0cddd6c2006-05-23 15:59:58 +02001492 this->ecc.hwctl = doc2001plus_enable_hwecc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 doc->chips_per_floor = 1;
1495 mtd->name = "DiskOnChip Millennium Plus";
1496
1497 return 1;
1498}
1499
Arjan van de Ven858119e2006-01-14 13:20:43 -08001500static int __init doc_probe(unsigned long physadr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
1502 unsigned char ChipID;
1503 struct mtd_info *mtd;
1504 struct nand_chip *nand;
1505 struct doc_priv *doc;
1506 void __iomem *virtadr;
1507 unsigned char save_control;
1508 unsigned char tmp, tmpb, tmpc;
1509 int reg, len, numchips;
1510 int ret = 0;
1511
1512 virtadr = ioremap(physadr, DOC_IOREMAP_LEN);
1513 if (!virtadr) {
1514 printk(KERN_ERR "Diskonchip ioremap failed: 0x%x bytes at 0x%lx\n", DOC_IOREMAP_LEN, physadr);
1515 return -EIO;
1516 }
1517
1518 /* It's not possible to cleanly detect the DiskOnChip - the
1519 * bootup procedure will put the device into reset mode, and
1520 * it's not possible to talk to it without actually writing
1521 * to the DOCControl register. So we store the current contents
1522 * of the DOCControl register's location, in case we later decide
1523 * that it's not a DiskOnChip, and want to put it back how we
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001524 * found it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 */
1526 save_control = ReadDOC(virtadr, DOCControl);
1527
1528 /* Reset the DiskOnChip ASIC */
David Woodhousee0c7d762006-05-13 18:07:53 +01001529 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET, virtadr, DOCControl);
1530 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_RESET, virtadr, DOCControl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 /* Enable the DiskOnChip ASIC */
David Woodhousee0c7d762006-05-13 18:07:53 +01001533 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL, virtadr, DOCControl);
1534 WriteDOC(DOC_MODE_CLR_ERR | DOC_MODE_MDWREN | DOC_MODE_NORMAL, virtadr, DOCControl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 ChipID = ReadDOC(virtadr, ChipID);
1537
David Woodhousee0c7d762006-05-13 18:07:53 +01001538 switch (ChipID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 case DOC_ChipID_Doc2k:
1540 reg = DoC_2k_ECCStatus;
1541 break;
1542 case DOC_ChipID_DocMil:
1543 reg = DoC_ECCConf;
1544 break;
1545 case DOC_ChipID_DocMilPlus16:
1546 case DOC_ChipID_DocMilPlus32:
1547 case 0:
1548 /* Possible Millennium Plus, need to do more checks */
1549 /* Possibly release from power down mode */
1550 for (tmp = 0; (tmp < 4); tmp++)
1551 ReadDOC(virtadr, Mplus_Power);
1552
1553 /* Reset the Millennium Plus ASIC */
David Woodhousee0c7d762006-05-13 18:07:53 +01001554 tmp = DOC_MODE_RESET | DOC_MODE_MDWREN | DOC_MODE_RST_LAT | DOC_MODE_BDECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 WriteDOC(tmp, virtadr, Mplus_DOCControl);
1556 WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
1557
1558 mdelay(1);
1559 /* Enable the Millennium Plus ASIC */
David Woodhousee0c7d762006-05-13 18:07:53 +01001560 tmp = DOC_MODE_NORMAL | DOC_MODE_MDWREN | DOC_MODE_RST_LAT | DOC_MODE_BDECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 WriteDOC(tmp, virtadr, Mplus_DOCControl);
1562 WriteDOC(~tmp, virtadr, Mplus_CtrlConfirm);
1563 mdelay(1);
1564
1565 ChipID = ReadDOC(virtadr, ChipID);
1566
1567 switch (ChipID) {
1568 case DOC_ChipID_DocMilPlus16:
1569 reg = DoC_Mplus_Toggle;
1570 break;
1571 case DOC_ChipID_DocMilPlus32:
1572 printk(KERN_ERR "DiskOnChip Millennium Plus 32MB is not supported, ignoring.\n");
1573 default:
1574 ret = -ENODEV;
1575 goto notfound;
1576 }
1577 break;
1578
1579 default:
1580 ret = -ENODEV;
1581 goto notfound;
1582 }
1583 /* Check the TOGGLE bit in the ECC register */
David Woodhousee0c7d762006-05-13 18:07:53 +01001584 tmp = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 tmpb = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
1586 tmpc = ReadDOC_(virtadr, reg) & DOC_TOGGLE_BIT;
1587 if ((tmp == tmpb) || (tmp != tmpc)) {
1588 printk(KERN_WARNING "Possible DiskOnChip at 0x%lx failed TOGGLE test, dropping.\n", physadr);
1589 ret = -ENODEV;
1590 goto notfound;
1591 }
1592
1593 for (mtd = doclist; mtd; mtd = doc->nextdoc) {
1594 unsigned char oldval;
1595 unsigned char newval;
1596 nand = mtd->priv;
1597 doc = nand->priv;
1598 /* Use the alias resolution register to determine if this is
1599 in fact the same DOC aliased to a new address. If writes
1600 to one chip's alias resolution register change the value on
1601 the other chip, they're the same chip. */
1602 if (ChipID == DOC_ChipID_DocMilPlus16) {
1603 oldval = ReadDOC(doc->virtadr, Mplus_AliasResolution);
1604 newval = ReadDOC(virtadr, Mplus_AliasResolution);
1605 } else {
1606 oldval = ReadDOC(doc->virtadr, AliasResolution);
1607 newval = ReadDOC(virtadr, AliasResolution);
1608 }
1609 if (oldval != newval)
1610 continue;
1611 if (ChipID == DOC_ChipID_DocMilPlus16) {
1612 WriteDOC(~newval, virtadr, Mplus_AliasResolution);
1613 oldval = ReadDOC(doc->virtadr, Mplus_AliasResolution);
David Woodhousee0c7d762006-05-13 18:07:53 +01001614 WriteDOC(newval, virtadr, Mplus_AliasResolution); // restore it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 } else {
1616 WriteDOC(~newval, virtadr, AliasResolution);
1617 oldval = ReadDOC(doc->virtadr, AliasResolution);
David Woodhousee0c7d762006-05-13 18:07:53 +01001618 WriteDOC(newval, virtadr, AliasResolution); // restore it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620 newval = ~newval;
1621 if (oldval == newval) {
1622 printk(KERN_DEBUG "Found alias of DOC at 0x%lx to 0x%lx\n", doc->physadr, physadr);
1623 goto notfound;
1624 }
1625 }
1626
1627 printk(KERN_NOTICE "DiskOnChip found at 0x%lx\n", physadr);
1628
1629 len = sizeof(struct mtd_info) +
David Woodhousee0c7d762006-05-13 18:07:53 +01001630 sizeof(struct nand_chip) + sizeof(struct doc_priv) + (2 * sizeof(struct nand_bbt_descr));
Burman Yan95b93a02006-11-15 21:10:29 +02001631 mtd = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (!mtd) {
1633 printk(KERN_ERR "DiskOnChip kmalloc (%d bytes) failed!\n", len);
1634 ret = -ENOMEM;
1635 goto fail;
1636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 nand = (struct nand_chip *) (mtd + 1);
1639 doc = (struct doc_priv *) (nand + 1);
1640 nand->bbt_td = (struct nand_bbt_descr *) (doc + 1);
1641 nand->bbt_md = nand->bbt_td + 1;
1642
1643 mtd->priv = nand;
1644 mtd->owner = THIS_MODULE;
1645
1646 nand->priv = doc;
1647 nand->select_chip = doc200x_select_chip;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02001648 nand->cmd_ctrl = doc200x_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 nand->dev_ready = doc200x_dev_ready;
1650 nand->waitfunc = doc200x_wait;
1651 nand->block_bad = doc200x_block_bad;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02001652 nand->ecc.hwctl = doc200x_enable_hwecc;
1653 nand->ecc.calculate = doc200x_calculate_ecc;
1654 nand->ecc.correct = doc200x_correct_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Thomas Gleixner5bd34c02006-05-27 22:16:10 +02001656 nand->ecc.layout = &doc200x_oobinfo;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02001657 nand->ecc.mode = NAND_ECC_HW_SYNDROME;
1658 nand->ecc.size = 512;
1659 nand->ecc.bytes = 6;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001660 nand->options = NAND_USE_FLASH_BBT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 doc->physadr = physadr;
1663 doc->virtadr = virtadr;
1664 doc->ChipID = ChipID;
1665 doc->curfloor = -1;
1666 doc->curchip = -1;
1667 doc->mh0_page = -1;
1668 doc->mh1_page = -1;
1669 doc->nextdoc = doclist;
1670
1671 if (ChipID == DOC_ChipID_Doc2k)
1672 numchips = doc2000_init(mtd);
1673 else if (ChipID == DOC_ChipID_DocMilPlus16)
1674 numchips = doc2001plus_init(mtd);
1675 else
1676 numchips = doc2001_init(mtd);
1677
1678 if ((ret = nand_scan(mtd, numchips))) {
1679 /* DBB note: i believe nand_release is necessary here, as
1680 buffers may have been allocated in nand_base. Check with
1681 Thomas. FIX ME! */
1682 /* nand_release will call del_mtd_device, but we haven't yet
1683 added it. This is handled without incident by
1684 del_mtd_device, as far as I can tell. */
1685 nand_release(mtd);
1686 kfree(mtd);
1687 goto fail;
1688 }
1689
1690 /* Success! */
1691 doclist = mtd;
1692 return 0;
1693
David Woodhousee0c7d762006-05-13 18:07:53 +01001694 notfound:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /* Put back the contents of the DOCControl register, in case it's not
1696 actually a DiskOnChip. */
1697 WriteDOC(save_control, virtadr, DOCControl);
David Woodhousee0c7d762006-05-13 18:07:53 +01001698 fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 iounmap(virtadr);
1700 return ret;
1701}
1702
1703static void release_nanddoc(void)
1704{
David Woodhousee0c7d762006-05-13 18:07:53 +01001705 struct mtd_info *mtd, *nextmtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct nand_chip *nand;
1707 struct doc_priv *doc;
1708
1709 for (mtd = doclist; mtd; mtd = nextmtd) {
1710 nand = mtd->priv;
1711 doc = nand->priv;
1712
1713 nextmtd = doc->nextdoc;
1714 nand_release(mtd);
1715 iounmap(doc->virtadr);
1716 kfree(mtd);
1717 }
1718}
1719
1720static int __init init_nanddoc(void)
1721{
1722 int i, ret = 0;
1723
1724 /* We could create the decoder on demand, if memory is a concern.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001725 * This way we have it handy, if an error happens
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 *
1727 * Symbolsize is 10 (bits)
1728 * Primitve polynomial is x^10+x^3+1
1729 * first consecutive root is 510
1730 * primitve element to generate roots = 1
1731 * generator polinomial degree = 4
1732 */
1733 rs_decoder = init_rs(10, 0x409, FCR, 1, NROOTS);
David Woodhousee0c7d762006-05-13 18:07:53 +01001734 if (!rs_decoder) {
1735 printk(KERN_ERR "DiskOnChip: Could not create a RS decoder\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return -ENOMEM;
1737 }
1738
1739 if (doc_config_location) {
1740 printk(KERN_INFO "Using configured DiskOnChip probe address 0x%lx\n", doc_config_location);
1741 ret = doc_probe(doc_config_location);
1742 if (ret < 0)
1743 goto outerr;
1744 } else {
David Woodhousee0c7d762006-05-13 18:07:53 +01001745 for (i = 0; (doc_locations[i] != 0xffffffff); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 doc_probe(doc_locations[i]);
1747 }
1748 }
1749 /* No banner message any more. Print a message if no DiskOnChip
1750 found, so the user knows we at least tried. */
1751 if (!doclist) {
1752 printk(KERN_INFO "No valid DiskOnChip devices found\n");
1753 ret = -ENODEV;
1754 goto outerr;
1755 }
1756 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +01001757 outerr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 free_rs(rs_decoder);
1759 return ret;
1760}
1761
1762static void __exit cleanup_nanddoc(void)
1763{
1764 /* Cleanup the nand/DoC resources */
1765 release_nanddoc();
1766
1767 /* Free the reed solomon resources */
1768 if (rs_decoder) {
1769 free_rs(rs_decoder);
1770 }
1771}
1772
1773module_init(init_nanddoc);
1774module_exit(cleanup_nanddoc);
1775
1776MODULE_LICENSE("GPL");
1777MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
Niels de Vos2a7af8c2009-01-30 11:08:35 +01001778MODULE_DESCRIPTION("M-Systems DiskOnChip 2000, Millennium and Millennium Plus device driver");