blob: 6cc8fbfabb8e2b71d50db215222d380f9e0061a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NAND flash simulator.
3 *
4 * Author: Artem B. Bityuckiy <dedekind@oktetlabs.ru>, <dedekind@infradead.org>
5 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00006 * Copyright (C) 2004 Nokia Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Note: NS means "NAND Simulator".
9 * Note: Input means input TO flash chip, output means output FROM chip.
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2, or (at your option) any later
14 * version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
19 * Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/types.h>
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/vmalloc.h>
Andrew Mortonfc1f3972008-07-30 12:34:56 -070031#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/errno.h>
34#include <linux/string.h>
35#include <linux/mtd/mtd.h>
36#include <linux/mtd/nand.h>
Ivan Djelicfc2ff592011-03-11 11:05:34 +010037#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mtd/partitions.h>
39#include <linux/delay.h>
Adrian Hunter2b77a0e2007-03-19 12:46:43 +020040#include <linux/list.h>
Adrian Hunter514087e72007-03-19 12:47:45 +020041#include <linux/random.h>
Randy Dunlapa5cce422008-12-17 12:46:17 -080042#include <linux/sched.h>
Adrian Huntera9fc8992008-11-12 16:06:07 +020043#include <linux/fs.h>
44#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/* Default simulator parameters values */
47#if !defined(CONFIG_NANDSIM_FIRST_ID_BYTE) || \
48 !defined(CONFIG_NANDSIM_SECOND_ID_BYTE) || \
49 !defined(CONFIG_NANDSIM_THIRD_ID_BYTE) || \
50 !defined(CONFIG_NANDSIM_FOURTH_ID_BYTE)
51#define CONFIG_NANDSIM_FIRST_ID_BYTE 0x98
52#define CONFIG_NANDSIM_SECOND_ID_BYTE 0x39
53#define CONFIG_NANDSIM_THIRD_ID_BYTE 0xFF /* No byte */
54#define CONFIG_NANDSIM_FOURTH_ID_BYTE 0xFF /* No byte */
55#endif
56
57#ifndef CONFIG_NANDSIM_ACCESS_DELAY
58#define CONFIG_NANDSIM_ACCESS_DELAY 25
59#endif
60#ifndef CONFIG_NANDSIM_PROGRAMM_DELAY
61#define CONFIG_NANDSIM_PROGRAMM_DELAY 200
62#endif
63#ifndef CONFIG_NANDSIM_ERASE_DELAY
64#define CONFIG_NANDSIM_ERASE_DELAY 2
65#endif
66#ifndef CONFIG_NANDSIM_OUTPUT_CYCLE
67#define CONFIG_NANDSIM_OUTPUT_CYCLE 40
68#endif
69#ifndef CONFIG_NANDSIM_INPUT_CYCLE
70#define CONFIG_NANDSIM_INPUT_CYCLE 50
71#endif
72#ifndef CONFIG_NANDSIM_BUS_WIDTH
73#define CONFIG_NANDSIM_BUS_WIDTH 8
74#endif
75#ifndef CONFIG_NANDSIM_DO_DELAYS
76#define CONFIG_NANDSIM_DO_DELAYS 0
77#endif
78#ifndef CONFIG_NANDSIM_LOG
79#define CONFIG_NANDSIM_LOG 0
80#endif
81#ifndef CONFIG_NANDSIM_DBG
82#define CONFIG_NANDSIM_DBG 0
83#endif
Ben Hutchingse99e90a2010-01-29 20:58:08 +000084#ifndef CONFIG_NANDSIM_MAX_PARTS
85#define CONFIG_NANDSIM_MAX_PARTS 32
86#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static uint first_id_byte = CONFIG_NANDSIM_FIRST_ID_BYTE;
89static uint second_id_byte = CONFIG_NANDSIM_SECOND_ID_BYTE;
90static uint third_id_byte = CONFIG_NANDSIM_THIRD_ID_BYTE;
91static uint fourth_id_byte = CONFIG_NANDSIM_FOURTH_ID_BYTE;
92static uint access_delay = CONFIG_NANDSIM_ACCESS_DELAY;
93static uint programm_delay = CONFIG_NANDSIM_PROGRAMM_DELAY;
94static uint erase_delay = CONFIG_NANDSIM_ERASE_DELAY;
95static uint output_cycle = CONFIG_NANDSIM_OUTPUT_CYCLE;
96static uint input_cycle = CONFIG_NANDSIM_INPUT_CYCLE;
97static uint bus_width = CONFIG_NANDSIM_BUS_WIDTH;
98static uint do_delays = CONFIG_NANDSIM_DO_DELAYS;
99static uint log = CONFIG_NANDSIM_LOG;
100static uint dbg = CONFIG_NANDSIM_DBG;
Ben Hutchingse99e90a2010-01-29 20:58:08 +0000101static unsigned long parts[CONFIG_NANDSIM_MAX_PARTS];
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200102static unsigned int parts_num;
Adrian Hunter514087e72007-03-19 12:47:45 +0200103static char *badblocks = NULL;
104static char *weakblocks = NULL;
105static char *weakpages = NULL;
106static unsigned int bitflips = 0;
107static char *gravepages = NULL;
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200108static unsigned int rptwear = 0;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200109static unsigned int overridesize = 0;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200110static char *cache_file = NULL;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +0200111static unsigned int bbt;
Ivan Djelicfc2ff592011-03-11 11:05:34 +0100112static unsigned int bch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114module_param(first_id_byte, uint, 0400);
115module_param(second_id_byte, uint, 0400);
116module_param(third_id_byte, uint, 0400);
117module_param(fourth_id_byte, uint, 0400);
118module_param(access_delay, uint, 0400);
119module_param(programm_delay, uint, 0400);
120module_param(erase_delay, uint, 0400);
121module_param(output_cycle, uint, 0400);
122module_param(input_cycle, uint, 0400);
123module_param(bus_width, uint, 0400);
124module_param(do_delays, uint, 0400);
125module_param(log, uint, 0400);
126module_param(dbg, uint, 0400);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200127module_param_array(parts, ulong, &parts_num, 0400);
Adrian Hunter514087e72007-03-19 12:47:45 +0200128module_param(badblocks, charp, 0400);
129module_param(weakblocks, charp, 0400);
130module_param(weakpages, charp, 0400);
131module_param(bitflips, uint, 0400);
132module_param(gravepages, charp, 0400);
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200133module_param(rptwear, uint, 0400);
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200134module_param(overridesize, uint, 0400);
Adrian Huntera9fc8992008-11-12 16:06:07 +0200135module_param(cache_file, charp, 0400);
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +0200136module_param(bbt, uint, 0400);
Ivan Djelicfc2ff592011-03-11 11:05:34 +0100137module_param(bch, uint, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200139MODULE_PARM_DESC(first_id_byte, "The first byte returned by NAND Flash 'read ID' command (manufacturer ID)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140MODULE_PARM_DESC(second_id_byte, "The second byte returned by NAND Flash 'read ID' command (chip ID)");
141MODULE_PARM_DESC(third_id_byte, "The third byte returned by NAND Flash 'read ID' command");
142MODULE_PARM_DESC(fourth_id_byte, "The fourth byte returned by NAND Flash 'read ID' command");
Adrian Huntera9fc8992008-11-12 16:06:07 +0200143MODULE_PARM_DESC(access_delay, "Initial page access delay (microseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144MODULE_PARM_DESC(programm_delay, "Page programm delay (microseconds");
145MODULE_PARM_DESC(erase_delay, "Sector erase delay (milliseconds)");
Andrey Yurovsky6029a3a2009-12-17 12:31:20 -0800146MODULE_PARM_DESC(output_cycle, "Word output (from flash) time (nanoseconds)");
147MODULE_PARM_DESC(input_cycle, "Word input (to flash) time (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148MODULE_PARM_DESC(bus_width, "Chip's bus width (8- or 16-bit)");
149MODULE_PARM_DESC(do_delays, "Simulate NAND delays using busy-waits if not zero");
150MODULE_PARM_DESC(log, "Perform logging if not zero");
151MODULE_PARM_DESC(dbg, "Output debug information if not zero");
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200152MODULE_PARM_DESC(parts, "Partition sizes (in erase blocks) separated by commas");
Adrian Hunter514087e72007-03-19 12:47:45 +0200153/* Page and erase block positions for the following parameters are independent of any partitions */
154MODULE_PARM_DESC(badblocks, "Erase blocks that are initially marked bad, separated by commas");
155MODULE_PARM_DESC(weakblocks, "Weak erase blocks [: remaining erase cycles (defaults to 3)]"
156 " separated by commas e.g. 113:2 means eb 113"
157 " can be erased only twice before failing");
158MODULE_PARM_DESC(weakpages, "Weak pages [: maximum writes (defaults to 3)]"
159 " separated by commas e.g. 1401:2 means page 1401"
160 " can be written only twice before failing");
161MODULE_PARM_DESC(bitflips, "Maximum number of random bit flips per page (zero by default)");
162MODULE_PARM_DESC(gravepages, "Pages that lose data [: maximum reads (defaults to 3)]"
163 " separated by commas e.g. 1401:2 means page 1401"
164 " can be read only twice before failing");
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300165MODULE_PARM_DESC(rptwear, "Number of erases between reporting wear, if not zero");
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200166MODULE_PARM_DESC(overridesize, "Specifies the NAND Flash size overriding the ID bytes. "
167 "The size is specified in erase blocks and as the exponent of a power of two"
168 " e.g. 5 means a size of 32 erase blocks");
Adrian Huntera9fc8992008-11-12 16:06:07 +0200169MODULE_PARM_DESC(cache_file, "File to use to cache nand pages instead of memory");
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +0200170MODULE_PARM_DESC(bbt, "0 OOB, 1 BBT with marker in OOB, 2 BBT with marker in data area");
Ivan Djelicfc2ff592011-03-11 11:05:34 +0100171MODULE_PARM_DESC(bch, "Enable BCH ecc and set how many bits should "
172 "be correctable in 512-byte blocks");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174/* The largest possible page size */
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100175#define NS_LARGEST_PAGE_SIZE 4096
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/* The prefix for simulator output */
178#define NS_OUTPUT_PREFIX "[nandsim]"
179
180/* Simulator's output macros (logging, debugging, warning, error) */
181#define NS_LOG(args...) \
182 do { if (log) printk(KERN_DEBUG NS_OUTPUT_PREFIX " log: " args); } while(0)
183#define NS_DBG(args...) \
184 do { if (dbg) printk(KERN_DEBUG NS_OUTPUT_PREFIX " debug: " args); } while(0)
185#define NS_WARN(args...) \
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200186 do { printk(KERN_WARNING NS_OUTPUT_PREFIX " warning: " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define NS_ERR(args...) \
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200188 do { printk(KERN_ERR NS_OUTPUT_PREFIX " error: " args); } while(0)
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200189#define NS_INFO(args...) \
190 do { printk(KERN_INFO NS_OUTPUT_PREFIX " " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/* Busy-wait delay macros (microseconds, milliseconds) */
193#define NS_UDELAY(us) \
194 do { if (do_delays) udelay(us); } while(0)
195#define NS_MDELAY(us) \
196 do { if (do_delays) mdelay(us); } while(0)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* Is the nandsim structure initialized ? */
199#define NS_IS_INITIALIZED(ns) ((ns)->geom.totsz != 0)
200
201/* Good operation completion status */
202#define NS_STATUS_OK(ns) (NAND_STATUS_READY | (NAND_STATUS_WP * ((ns)->lines.wp == 0)))
203
204/* Operation failed completion status */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000205#define NS_STATUS_FAILED(ns) (NAND_STATUS_FAIL | NS_STATUS_OK(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/* Calculate the page offset in flash RAM image by (row, column) address */
208#define NS_RAW_OFFSET(ns) \
209 (((ns)->regs.row << (ns)->geom.pgshift) + ((ns)->regs.row * (ns)->geom.oobsz) + (ns)->regs.column)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/* Calculate the OOB offset in flash RAM image by (row, column) address */
212#define NS_RAW_OFFSET_OOB(ns) (NS_RAW_OFFSET(ns) + ns->geom.pgsz)
213
214/* After a command is input, the simulator goes to one of the following states */
215#define STATE_CMD_READ0 0x00000001 /* read data from the beginning of page */
216#define STATE_CMD_READ1 0x00000002 /* read data from the second half of page */
Artem Bityutskiy4a0c50c2006-12-06 21:52:32 +0200217#define STATE_CMD_READSTART 0x00000003 /* read data second command (large page devices) */
srimugunthandaf05ec2010-11-13 12:46:05 +0200218#define STATE_CMD_PAGEPROG 0x00000004 /* start page program */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define STATE_CMD_READOOB 0x00000005 /* read OOB area */
220#define STATE_CMD_ERASE1 0x00000006 /* sector erase first command */
221#define STATE_CMD_STATUS 0x00000007 /* read status */
222#define STATE_CMD_STATUS_M 0x00000008 /* read multi-plane status (isn't implemented) */
srimugunthandaf05ec2010-11-13 12:46:05 +0200223#define STATE_CMD_SEQIN 0x00000009 /* sequential data input */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224#define STATE_CMD_READID 0x0000000A /* read ID */
225#define STATE_CMD_ERASE2 0x0000000B /* sector erase second command */
226#define STATE_CMD_RESET 0x0000000C /* reset */
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300227#define STATE_CMD_RNDOUT 0x0000000D /* random output command */
228#define STATE_CMD_RNDOUTSTART 0x0000000E /* random output start command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#define STATE_CMD_MASK 0x0000000F /* command states mask */
230
Joe Perches8e87d782008-02-03 17:22:34 +0200231/* After an address is input, the simulator goes to one of these states */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define STATE_ADDR_PAGE 0x00000010 /* full (row, column) address is accepted */
233#define STATE_ADDR_SEC 0x00000020 /* sector address was accepted */
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300234#define STATE_ADDR_COLUMN 0x00000030 /* column address was accepted */
235#define STATE_ADDR_ZERO 0x00000040 /* one byte zero address was accepted */
236#define STATE_ADDR_MASK 0x00000070 /* address states mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
srimugunthandaf05ec2010-11-13 12:46:05 +0200238/* During data input/output the simulator is in these states */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#define STATE_DATAIN 0x00000100 /* waiting for data input */
240#define STATE_DATAIN_MASK 0x00000100 /* data input states mask */
241
242#define STATE_DATAOUT 0x00001000 /* waiting for page data output */
243#define STATE_DATAOUT_ID 0x00002000 /* waiting for ID bytes output */
244#define STATE_DATAOUT_STATUS 0x00003000 /* waiting for status output */
245#define STATE_DATAOUT_STATUS_M 0x00004000 /* waiting for multi-plane status output */
246#define STATE_DATAOUT_MASK 0x00007000 /* data output states mask */
247
248/* Previous operation is done, ready to accept new requests */
249#define STATE_READY 0x00000000
250
251/* This state is used to mark that the next state isn't known yet */
252#define STATE_UNKNOWN 0x10000000
253
254/* Simulator's actions bit masks */
255#define ACTION_CPY 0x00100000 /* copy page/OOB to the internal buffer */
srimugunthandaf05ec2010-11-13 12:46:05 +0200256#define ACTION_PRGPAGE 0x00200000 /* program the internal buffer to flash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#define ACTION_SECERASE 0x00300000 /* erase sector */
258#define ACTION_ZEROOFF 0x00400000 /* don't add any offset to address */
259#define ACTION_HALFOFF 0x00500000 /* add to address half of page */
260#define ACTION_OOBOFF 0x00600000 /* add to address OOB offset */
261#define ACTION_MASK 0x00700000 /* action mask */
262
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300263#define NS_OPER_NUM 13 /* Number of operations supported by the simulator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#define NS_OPER_STATES 6 /* Maximum number of states in operation */
265
266#define OPT_ANY 0xFFFFFFFF /* any chip supports this operation */
267#define OPT_PAGE256 0x00000001 /* 256-byte page chips */
268#define OPT_PAGE512 0x00000002 /* 512-byte page chips */
269#define OPT_PAGE2048 0x00000008 /* 2048-byte page chips */
270#define OPT_SMARTMEDIA 0x00000010 /* SmartMedia technology chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#define OPT_PAGE512_8BIT 0x00000040 /* 512-byte page chips with 8-bit bus width */
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100272#define OPT_PAGE4096 0x00000080 /* 4096-byte page chips */
273#define OPT_LARGEPAGE (OPT_PAGE2048 | OPT_PAGE4096) /* 2048 & 4096-byte page chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274#define OPT_SMALLPAGE (OPT_PAGE256 | OPT_PAGE512) /* 256 and 512-byte page chips */
275
srimugunthandaf05ec2010-11-13 12:46:05 +0200276/* Remove action bits from state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define NS_STATE(x) ((x) & ~ACTION_MASK)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000278
279/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * Maximum previous states which need to be saved. Currently saving is
srimugunthandaf05ec2010-11-13 12:46:05 +0200281 * only needed for page program operation with preceded read command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * (which is only valid for 512-byte pages).
283 */
284#define NS_MAX_PREVSTATES 1
285
Adrian Huntera9fc8992008-11-12 16:06:07 +0200286/* Maximum page cache pages needed to read or write a NAND page to the cache_file */
287#define NS_MAX_HELD_PAGES 16
288
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000289/*
Vijay Kumard086d432006-10-08 22:02:31 +0530290 * A union to represent flash memory contents and flash buffer.
291 */
292union ns_mem {
293 u_char *byte; /* for byte access */
294 uint16_t *word; /* for 16-bit word access */
295};
296
297/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * The structure which describes all the internal simulator data.
299 */
300struct nandsim {
Ben Hutchingse99e90a2010-01-29 20:58:08 +0000301 struct mtd_partition partitions[CONFIG_NANDSIM_MAX_PARTS];
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200302 unsigned int nbparts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 uint busw; /* flash chip bus width (8 or 16) */
305 u_char ids[4]; /* chip's ID bytes */
306 uint32_t options; /* chip's characteristic bits */
307 uint32_t state; /* current chip state */
308 uint32_t nxstate; /* next expected state */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 uint32_t *op; /* current operation, NULL operations isn't known yet */
311 uint32_t pstates[NS_MAX_PREVSTATES]; /* previous states */
312 uint16_t npstates; /* number of previous states saved */
313 uint16_t stateidx; /* current state index */
314
Vijay Kumard086d432006-10-08 22:02:31 +0530315 /* The simulated NAND flash pages array */
316 union ns_mem *pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000318 /* Slab allocator for nand pages */
319 struct kmem_cache *nand_pages_slab;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* Internal buffer of page + OOB size bytes */
Vijay Kumard086d432006-10-08 22:02:31 +0530322 union ns_mem buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* NAND flash "geometry" */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300325 struct {
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300326 uint64_t totsz; /* total flash size, bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 uint32_t secsz; /* flash sector (erase block) size, bytes */
328 uint pgsz; /* NAND flash page size, bytes */
329 uint oobsz; /* page OOB area size, bytes */
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300330 uint64_t totszoob; /* total flash size including OOB, bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 uint pgszoob; /* page size including OOB , bytes*/
332 uint secszoob; /* sector size including OOB, bytes */
333 uint pgnum; /* total number of pages */
334 uint pgsec; /* number of pages per sector */
335 uint secshift; /* bits number in sector size */
336 uint pgshift; /* bits number in page size */
337 uint oobshift; /* bits number in OOB size */
338 uint pgaddrbytes; /* bytes per page address */
339 uint secaddrbytes; /* bytes per sector address */
340 uint idbytes; /* the number ID bytes that this chip outputs */
341 } geom;
342
343 /* NAND flash internal registers */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300344 struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned command; /* the command register */
346 u_char status; /* the status register */
347 uint row; /* the page number */
348 uint column; /* the offset within page */
349 uint count; /* internal counter */
350 uint num; /* number of bytes which must be processed */
351 uint off; /* fixed page offset */
352 } regs;
353
354 /* NAND flash lines state */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300355 struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 int ce; /* chip Enable */
357 int cle; /* command Latch Enable */
358 int ale; /* address Latch Enable */
359 int wp; /* write Protect */
360 } lines;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200361
362 /* Fields needed when using a cache file */
363 struct file *cfile; /* Open file */
364 unsigned char *pages_written; /* Which pages have been written */
365 void *file_buf;
366 struct page *held_pages[NS_MAX_HELD_PAGES];
367 int held_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
370/*
371 * Operations array. To perform any operation the simulator must pass
372 * through the correspondent states chain.
373 */
374static struct nandsim_operations {
375 uint32_t reqopts; /* options which are required to perform the operation */
376 uint32_t states[NS_OPER_STATES]; /* operation's states */
377} ops[NS_OPER_NUM] = {
378 /* Read page + OOB from the beginning */
379 {OPT_SMALLPAGE, {STATE_CMD_READ0 | ACTION_ZEROOFF, STATE_ADDR_PAGE | ACTION_CPY,
380 STATE_DATAOUT, STATE_READY}},
381 /* Read page + OOB from the second half */
382 {OPT_PAGE512_8BIT, {STATE_CMD_READ1 | ACTION_HALFOFF, STATE_ADDR_PAGE | ACTION_CPY,
383 STATE_DATAOUT, STATE_READY}},
384 /* Read OOB */
385 {OPT_SMALLPAGE, {STATE_CMD_READOOB | ACTION_OOBOFF, STATE_ADDR_PAGE | ACTION_CPY,
386 STATE_DATAOUT, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200387 /* Program page starting from the beginning */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 {OPT_ANY, {STATE_CMD_SEQIN, STATE_ADDR_PAGE, STATE_DATAIN,
389 STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200390 /* Program page starting from the beginning */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 {OPT_SMALLPAGE, {STATE_CMD_READ0, STATE_CMD_SEQIN | ACTION_ZEROOFF, STATE_ADDR_PAGE,
392 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200393 /* Program page starting from the second half */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 {OPT_PAGE512, {STATE_CMD_READ1, STATE_CMD_SEQIN | ACTION_HALFOFF, STATE_ADDR_PAGE,
395 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200396 /* Program OOB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 {OPT_SMALLPAGE, {STATE_CMD_READOOB, STATE_CMD_SEQIN | ACTION_OOBOFF, STATE_ADDR_PAGE,
398 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
399 /* Erase sector */
400 {OPT_ANY, {STATE_CMD_ERASE1, STATE_ADDR_SEC, STATE_CMD_ERASE2 | ACTION_SECERASE, STATE_READY}},
401 /* Read status */
402 {OPT_ANY, {STATE_CMD_STATUS, STATE_DATAOUT_STATUS, STATE_READY}},
403 /* Read multi-plane status */
404 {OPT_SMARTMEDIA, {STATE_CMD_STATUS_M, STATE_DATAOUT_STATUS_M, STATE_READY}},
405 /* Read ID */
406 {OPT_ANY, {STATE_CMD_READID, STATE_ADDR_ZERO, STATE_DATAOUT_ID, STATE_READY}},
407 /* Large page devices read page */
408 {OPT_LARGEPAGE, {STATE_CMD_READ0, STATE_ADDR_PAGE, STATE_CMD_READSTART | ACTION_CPY,
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300409 STATE_DATAOUT, STATE_READY}},
410 /* Large page devices random page read */
411 {OPT_LARGEPAGE, {STATE_CMD_RNDOUT, STATE_ADDR_COLUMN, STATE_CMD_RNDOUTSTART | ACTION_CPY,
412 STATE_DATAOUT, STATE_READY}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413};
414
Adrian Hunter514087e72007-03-19 12:47:45 +0200415struct weak_block {
416 struct list_head list;
417 unsigned int erase_block_no;
418 unsigned int max_erases;
419 unsigned int erases_done;
420};
421
422static LIST_HEAD(weak_blocks);
423
424struct weak_page {
425 struct list_head list;
426 unsigned int page_no;
427 unsigned int max_writes;
428 unsigned int writes_done;
429};
430
431static LIST_HEAD(weak_pages);
432
433struct grave_page {
434 struct list_head list;
435 unsigned int page_no;
436 unsigned int max_reads;
437 unsigned int reads_done;
438};
439
440static LIST_HEAD(grave_pages);
441
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200442static unsigned long *erase_block_wear = NULL;
443static unsigned int wear_eb_count = 0;
444static unsigned long total_wear = 0;
445static unsigned int rptwear_cnt = 0;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447/* MTD structure for NAND controller */
448static struct mtd_info *nsmtd;
449
450static u_char ns_verify_buf[NS_LARGEST_PAGE_SIZE];
451
452/*
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000453 * Allocate array of page pointers, create slab allocation for an array
454 * and initialize the array by NULL pointers.
Vijay Kumard086d432006-10-08 22:02:31 +0530455 *
456 * RETURNS: 0 if success, -ENOMEM if memory alloc fails.
457 */
Vijay Kumara5602142006-10-14 21:33:34 +0530458static int alloc_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530459{
Adrian Huntera9fc8992008-11-12 16:06:07 +0200460 struct file *cfile;
461 int i, err;
462
463 if (cache_file) {
464 cfile = filp_open(cache_file, O_CREAT | O_RDWR | O_LARGEFILE, 0600);
465 if (IS_ERR(cfile))
466 return PTR_ERR(cfile);
467 if (!cfile->f_op || (!cfile->f_op->read && !cfile->f_op->aio_read)) {
468 NS_ERR("alloc_device: cache file not readable\n");
469 err = -EINVAL;
470 goto err_close;
471 }
472 if (!cfile->f_op->write && !cfile->f_op->aio_write) {
473 NS_ERR("alloc_device: cache file not writeable\n");
474 err = -EINVAL;
475 goto err_close;
476 }
Joe Perches309b5e42010-11-04 20:07:40 -0700477 ns->pages_written = vzalloc(ns->geom.pgnum);
Adrian Huntera9fc8992008-11-12 16:06:07 +0200478 if (!ns->pages_written) {
479 NS_ERR("alloc_device: unable to allocate pages written array\n");
480 err = -ENOMEM;
481 goto err_close;
482 }
483 ns->file_buf = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
484 if (!ns->file_buf) {
485 NS_ERR("alloc_device: unable to allocate file buf\n");
486 err = -ENOMEM;
487 goto err_free;
488 }
489 ns->cfile = cfile;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200490 return 0;
491 }
Vijay Kumard086d432006-10-08 22:02:31 +0530492
493 ns->pages = vmalloc(ns->geom.pgnum * sizeof(union ns_mem));
494 if (!ns->pages) {
Adrian Huntera9fc8992008-11-12 16:06:07 +0200495 NS_ERR("alloc_device: unable to allocate page array\n");
Vijay Kumard086d432006-10-08 22:02:31 +0530496 return -ENOMEM;
497 }
498 for (i = 0; i < ns->geom.pgnum; i++) {
499 ns->pages[i].byte = NULL;
500 }
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000501 ns->nand_pages_slab = kmem_cache_create("nandsim",
502 ns->geom.pgszoob, 0, 0, NULL);
503 if (!ns->nand_pages_slab) {
504 NS_ERR("cache_create: unable to create kmem_cache\n");
505 return -ENOMEM;
506 }
Vijay Kumard086d432006-10-08 22:02:31 +0530507
508 return 0;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200509
510err_free:
511 vfree(ns->pages_written);
512err_close:
513 filp_close(cfile, NULL);
514 return err;
Vijay Kumard086d432006-10-08 22:02:31 +0530515}
516
517/*
518 * Free any allocated pages, and free the array of page pointers.
519 */
Vijay Kumara5602142006-10-14 21:33:34 +0530520static void free_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530521{
522 int i;
523
Adrian Huntera9fc8992008-11-12 16:06:07 +0200524 if (ns->cfile) {
525 kfree(ns->file_buf);
526 vfree(ns->pages_written);
527 filp_close(ns->cfile, NULL);
528 return;
529 }
530
Vijay Kumard086d432006-10-08 22:02:31 +0530531 if (ns->pages) {
532 for (i = 0; i < ns->geom.pgnum; i++) {
533 if (ns->pages[i].byte)
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000534 kmem_cache_free(ns->nand_pages_slab,
535 ns->pages[i].byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530536 }
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000537 kmem_cache_destroy(ns->nand_pages_slab);
Vijay Kumard086d432006-10-08 22:02:31 +0530538 vfree(ns->pages);
539 }
540}
541
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200542static char *get_partition_name(int i)
543{
544 char buf[64];
545 sprintf(buf, "NAND simulator partition %d", i);
546 return kstrdup(buf, GFP_KERNEL);
547}
548
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000549static uint64_t divide(uint64_t n, uint32_t d)
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300550{
551 do_div(n, d);
552 return n;
553}
554
Vijay Kumard086d432006-10-08 22:02:31 +0530555/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * Initialize the nandsim structure.
557 *
558 * RETURNS: 0 if success, -ERRNO if failure.
559 */
Vijay Kumara5602142006-10-14 21:33:34 +0530560static int init_nandsim(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +0400562 struct nand_chip *chip = mtd->priv;
563 struct nandsim *ns = chip->priv;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200564 int i, ret = 0;
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000565 uint64_t remains;
566 uint64_t next_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (NS_IS_INITIALIZED(ns)) {
569 NS_ERR("init_nandsim: nandsim is already initialized\n");
570 return -EIO;
571 }
572
573 /* Force mtd to not do delays */
574 chip->chip_delay = 0;
575
576 /* Initialize the NAND flash parameters */
577 ns->busw = chip->options & NAND_BUSWIDTH_16 ? 16 : 8;
578 ns->geom.totsz = mtd->size;
Joern Engel28318772006-05-22 23:18:05 +0200579 ns->geom.pgsz = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 ns->geom.oobsz = mtd->oobsize;
581 ns->geom.secsz = mtd->erasesize;
582 ns->geom.pgszoob = ns->geom.pgsz + ns->geom.oobsz;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300583 ns->geom.pgnum = divide(ns->geom.totsz, ns->geom.pgsz);
584 ns->geom.totszoob = ns->geom.totsz + (uint64_t)ns->geom.pgnum * ns->geom.oobsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 ns->geom.secshift = ffs(ns->geom.secsz) - 1;
586 ns->geom.pgshift = chip->page_shift;
587 ns->geom.oobshift = ffs(ns->geom.oobsz) - 1;
588 ns->geom.pgsec = ns->geom.secsz / ns->geom.pgsz;
589 ns->geom.secszoob = ns->geom.secsz + ns->geom.oobsz * ns->geom.pgsec;
590 ns->options = 0;
591
592 if (ns->geom.pgsz == 256) {
593 ns->options |= OPT_PAGE256;
594 }
595 else if (ns->geom.pgsz == 512) {
Brian Norris831d3162012-05-01 17:12:53 -0700596 ns->options |= OPT_PAGE512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (ns->busw == 8)
598 ns->options |= OPT_PAGE512_8BIT;
599 } else if (ns->geom.pgsz == 2048) {
600 ns->options |= OPT_PAGE2048;
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100601 } else if (ns->geom.pgsz == 4096) {
602 ns->options |= OPT_PAGE4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 } else {
604 NS_ERR("init_nandsim: unknown page size %u\n", ns->geom.pgsz);
605 return -EIO;
606 }
607
608 if (ns->options & OPT_SMALLPAGE) {
Adrian Hunteraf3decc2008-05-30 15:56:18 +0300609 if (ns->geom.totsz <= (32 << 20)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 ns->geom.pgaddrbytes = 3;
611 ns->geom.secaddrbytes = 2;
612 } else {
613 ns->geom.pgaddrbytes = 4;
614 ns->geom.secaddrbytes = 3;
615 }
616 } else {
617 if (ns->geom.totsz <= (128 << 20)) {
Artem Bityutskiy4a0c50c2006-12-06 21:52:32 +0200618 ns->geom.pgaddrbytes = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 ns->geom.secaddrbytes = 2;
620 } else {
621 ns->geom.pgaddrbytes = 5;
622 ns->geom.secaddrbytes = 3;
623 }
624 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000625
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200626 /* Fill the partition_info structure */
627 if (parts_num > ARRAY_SIZE(ns->partitions)) {
628 NS_ERR("too many partitions.\n");
629 ret = -EINVAL;
630 goto error;
631 }
632 remains = ns->geom.totsz;
633 next_offset = 0;
634 for (i = 0; i < parts_num; ++i) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000635 uint64_t part_sz = (uint64_t)parts[i] * ns->geom.secsz;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300636
637 if (!part_sz || part_sz > remains) {
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200638 NS_ERR("bad partition size.\n");
639 ret = -EINVAL;
640 goto error;
641 }
642 ns->partitions[i].name = get_partition_name(i);
643 ns->partitions[i].offset = next_offset;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300644 ns->partitions[i].size = part_sz;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200645 next_offset += ns->partitions[i].size;
646 remains -= ns->partitions[i].size;
647 }
648 ns->nbparts = parts_num;
649 if (remains) {
650 if (parts_num + 1 > ARRAY_SIZE(ns->partitions)) {
651 NS_ERR("too many partitions.\n");
652 ret = -EINVAL;
653 goto error;
654 }
655 ns->partitions[i].name = get_partition_name(i);
656 ns->partitions[i].offset = next_offset;
657 ns->partitions[i].size = remains;
658 ns->nbparts += 1;
659 }
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* Detect how many ID bytes the NAND chip outputs */
662 for (i = 0; nand_flash_ids[i].name != NULL; i++) {
663 if (second_id_byte != nand_flash_ids[i].id)
664 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666
667 if (ns->busw == 16)
668 NS_WARN("16-bit flashes support wasn't tested\n");
669
Andrew Mortone4c094a2008-07-30 12:35:04 -0700670 printk("flash size: %llu MiB\n",
671 (unsigned long long)ns->geom.totsz >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 printk("page size: %u bytes\n", ns->geom.pgsz);
673 printk("OOB area size: %u bytes\n", ns->geom.oobsz);
674 printk("sector size: %u KiB\n", ns->geom.secsz >> 10);
675 printk("pages number: %u\n", ns->geom.pgnum);
676 printk("pages per sector: %u\n", ns->geom.pgsec);
677 printk("bus width: %u\n", ns->busw);
678 printk("bits in sector size: %u\n", ns->geom.secshift);
679 printk("bits in page size: %u\n", ns->geom.pgshift);
Andrew Mortone4c094a2008-07-30 12:35:04 -0700680 printk("bits in OOB size: %u\n", ns->geom.oobshift);
681 printk("flash size with OOB: %llu KiB\n",
682 (unsigned long long)ns->geom.totszoob >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 printk("page address bytes: %u\n", ns->geom.pgaddrbytes);
684 printk("sector address bytes: %u\n", ns->geom.secaddrbytes);
685 printk("options: %#x\n", ns->options);
686
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200687 if ((ret = alloc_device(ns)) != 0)
Vijay Kumard086d432006-10-08 22:02:31 +0530688 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* Allocate / initialize the internal buffer */
691 ns->buf.byte = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
692 if (!ns->buf.byte) {
693 NS_ERR("init_nandsim: unable to allocate %u bytes for the internal buffer\n",
694 ns->geom.pgszoob);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200695 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto error;
697 }
698 memset(ns->buf.byte, 0xFF, ns->geom.pgszoob);
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
701
702error:
Vijay Kumard086d432006-10-08 22:02:31 +0530703 free_device(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200705 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708/*
709 * Free the nandsim structure.
710 */
Vijay Kumara5602142006-10-14 21:33:34 +0530711static void free_nandsim(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 kfree(ns->buf.byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530714 free_device(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 return;
717}
718
Adrian Hunter514087e72007-03-19 12:47:45 +0200719static int parse_badblocks(struct nandsim *ns, struct mtd_info *mtd)
720{
721 char *w;
722 int zero_ok;
723 unsigned int erase_block_no;
724 loff_t offset;
725
726 if (!badblocks)
727 return 0;
728 w = badblocks;
729 do {
730 zero_ok = (*w == '0' ? 1 : 0);
731 erase_block_no = simple_strtoul(w, &w, 0);
732 if (!zero_ok && !erase_block_no) {
733 NS_ERR("invalid badblocks.\n");
734 return -EINVAL;
735 }
736 offset = erase_block_no * ns->geom.secsz;
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200737 if (mtd_block_markbad(mtd, offset)) {
Adrian Hunter514087e72007-03-19 12:47:45 +0200738 NS_ERR("invalid badblocks.\n");
739 return -EINVAL;
740 }
741 if (*w == ',')
742 w += 1;
743 } while (*w);
744 return 0;
745}
746
747static int parse_weakblocks(void)
748{
749 char *w;
750 int zero_ok;
751 unsigned int erase_block_no;
752 unsigned int max_erases;
753 struct weak_block *wb;
754
755 if (!weakblocks)
756 return 0;
757 w = weakblocks;
758 do {
759 zero_ok = (*w == '0' ? 1 : 0);
760 erase_block_no = simple_strtoul(w, &w, 0);
761 if (!zero_ok && !erase_block_no) {
762 NS_ERR("invalid weakblocks.\n");
763 return -EINVAL;
764 }
765 max_erases = 3;
766 if (*w == ':') {
767 w += 1;
768 max_erases = simple_strtoul(w, &w, 0);
769 }
770 if (*w == ',')
771 w += 1;
772 wb = kzalloc(sizeof(*wb), GFP_KERNEL);
773 if (!wb) {
774 NS_ERR("unable to allocate memory.\n");
775 return -ENOMEM;
776 }
777 wb->erase_block_no = erase_block_no;
778 wb->max_erases = max_erases;
779 list_add(&wb->list, &weak_blocks);
780 } while (*w);
781 return 0;
782}
783
784static int erase_error(unsigned int erase_block_no)
785{
786 struct weak_block *wb;
787
788 list_for_each_entry(wb, &weak_blocks, list)
789 if (wb->erase_block_no == erase_block_no) {
790 if (wb->erases_done >= wb->max_erases)
791 return 1;
792 wb->erases_done += 1;
793 return 0;
794 }
795 return 0;
796}
797
798static int parse_weakpages(void)
799{
800 char *w;
801 int zero_ok;
802 unsigned int page_no;
803 unsigned int max_writes;
804 struct weak_page *wp;
805
806 if (!weakpages)
807 return 0;
808 w = weakpages;
809 do {
810 zero_ok = (*w == '0' ? 1 : 0);
811 page_no = simple_strtoul(w, &w, 0);
812 if (!zero_ok && !page_no) {
813 NS_ERR("invalid weakpagess.\n");
814 return -EINVAL;
815 }
816 max_writes = 3;
817 if (*w == ':') {
818 w += 1;
819 max_writes = simple_strtoul(w, &w, 0);
820 }
821 if (*w == ',')
822 w += 1;
823 wp = kzalloc(sizeof(*wp), GFP_KERNEL);
824 if (!wp) {
825 NS_ERR("unable to allocate memory.\n");
826 return -ENOMEM;
827 }
828 wp->page_no = page_no;
829 wp->max_writes = max_writes;
830 list_add(&wp->list, &weak_pages);
831 } while (*w);
832 return 0;
833}
834
835static int write_error(unsigned int page_no)
836{
837 struct weak_page *wp;
838
839 list_for_each_entry(wp, &weak_pages, list)
840 if (wp->page_no == page_no) {
841 if (wp->writes_done >= wp->max_writes)
842 return 1;
843 wp->writes_done += 1;
844 return 0;
845 }
846 return 0;
847}
848
849static int parse_gravepages(void)
850{
851 char *g;
852 int zero_ok;
853 unsigned int page_no;
854 unsigned int max_reads;
855 struct grave_page *gp;
856
857 if (!gravepages)
858 return 0;
859 g = gravepages;
860 do {
861 zero_ok = (*g == '0' ? 1 : 0);
862 page_no = simple_strtoul(g, &g, 0);
863 if (!zero_ok && !page_no) {
864 NS_ERR("invalid gravepagess.\n");
865 return -EINVAL;
866 }
867 max_reads = 3;
868 if (*g == ':') {
869 g += 1;
870 max_reads = simple_strtoul(g, &g, 0);
871 }
872 if (*g == ',')
873 g += 1;
874 gp = kzalloc(sizeof(*gp), GFP_KERNEL);
875 if (!gp) {
876 NS_ERR("unable to allocate memory.\n");
877 return -ENOMEM;
878 }
879 gp->page_no = page_no;
880 gp->max_reads = max_reads;
881 list_add(&gp->list, &grave_pages);
882 } while (*g);
883 return 0;
884}
885
886static int read_error(unsigned int page_no)
887{
888 struct grave_page *gp;
889
890 list_for_each_entry(gp, &grave_pages, list)
891 if (gp->page_no == page_no) {
892 if (gp->reads_done >= gp->max_reads)
893 return 1;
894 gp->reads_done += 1;
895 return 0;
896 }
897 return 0;
898}
899
900static void free_lists(void)
901{
902 struct list_head *pos, *n;
903 list_for_each_safe(pos, n, &weak_blocks) {
904 list_del(pos);
905 kfree(list_entry(pos, struct weak_block, list));
906 }
907 list_for_each_safe(pos, n, &weak_pages) {
908 list_del(pos);
909 kfree(list_entry(pos, struct weak_page, list));
910 }
911 list_for_each_safe(pos, n, &grave_pages) {
912 list_del(pos);
913 kfree(list_entry(pos, struct grave_page, list));
914 }
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200915 kfree(erase_block_wear);
916}
917
918static int setup_wear_reporting(struct mtd_info *mtd)
919{
920 size_t mem;
921
922 if (!rptwear)
923 return 0;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300924 wear_eb_count = divide(mtd->size, mtd->erasesize);
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200925 mem = wear_eb_count * sizeof(unsigned long);
926 if (mem / sizeof(unsigned long) != wear_eb_count) {
927 NS_ERR("Too many erase blocks for wear reporting\n");
928 return -ENOMEM;
929 }
930 erase_block_wear = kzalloc(mem, GFP_KERNEL);
931 if (!erase_block_wear) {
932 NS_ERR("Too many erase blocks for wear reporting\n");
933 return -ENOMEM;
934 }
935 return 0;
936}
937
938static void update_wear(unsigned int erase_block_no)
939{
940 unsigned long wmin = -1, wmax = 0, avg;
941 unsigned long deciles[10], decile_max[10], tot = 0;
942 unsigned int i;
943
944 if (!erase_block_wear)
945 return;
946 total_wear += 1;
947 if (total_wear == 0)
948 NS_ERR("Erase counter total overflow\n");
949 erase_block_wear[erase_block_no] += 1;
950 if (erase_block_wear[erase_block_no] == 0)
951 NS_ERR("Erase counter overflow for erase block %u\n", erase_block_no);
952 rptwear_cnt += 1;
953 if (rptwear_cnt < rptwear)
954 return;
955 rptwear_cnt = 0;
956 /* Calc wear stats */
957 for (i = 0; i < wear_eb_count; ++i) {
958 unsigned long wear = erase_block_wear[i];
959 if (wear < wmin)
960 wmin = wear;
961 if (wear > wmax)
962 wmax = wear;
963 tot += wear;
964 }
965 for (i = 0; i < 9; ++i) {
966 deciles[i] = 0;
967 decile_max[i] = (wmax * (i + 1) + 5) / 10;
968 }
969 deciles[9] = 0;
970 decile_max[9] = wmax;
971 for (i = 0; i < wear_eb_count; ++i) {
972 int d;
973 unsigned long wear = erase_block_wear[i];
974 for (d = 0; d < 10; ++d)
975 if (wear <= decile_max[d]) {
976 deciles[d] += 1;
977 break;
978 }
979 }
980 avg = tot / wear_eb_count;
981 /* Output wear report */
982 NS_INFO("*** Wear Report ***\n");
983 NS_INFO("Total numbers of erases: %lu\n", tot);
984 NS_INFO("Number of erase blocks: %u\n", wear_eb_count);
985 NS_INFO("Average number of erases: %lu\n", avg);
986 NS_INFO("Maximum number of erases: %lu\n", wmax);
987 NS_INFO("Minimum number of erases: %lu\n", wmin);
988 for (i = 0; i < 10; ++i) {
989 unsigned long from = (i ? decile_max[i - 1] + 1 : 0);
990 if (from > decile_max[i])
991 continue;
992 NS_INFO("Number of ebs with erase counts from %lu to %lu : %lu\n",
993 from,
994 decile_max[i],
995 deciles[i]);
996 }
997 NS_INFO("*** End of Wear Report ***\n");
Adrian Hunter514087e72007-03-19 12:47:45 +0200998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Returns the string representation of 'state' state.
1002 */
Vijay Kumara5602142006-10-14 21:33:34 +05301003static char *get_state_name(uint32_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 switch (NS_STATE(state)) {
1006 case STATE_CMD_READ0:
1007 return "STATE_CMD_READ0";
1008 case STATE_CMD_READ1:
1009 return "STATE_CMD_READ1";
1010 case STATE_CMD_PAGEPROG:
1011 return "STATE_CMD_PAGEPROG";
1012 case STATE_CMD_READOOB:
1013 return "STATE_CMD_READOOB";
1014 case STATE_CMD_READSTART:
1015 return "STATE_CMD_READSTART";
1016 case STATE_CMD_ERASE1:
1017 return "STATE_CMD_ERASE1";
1018 case STATE_CMD_STATUS:
1019 return "STATE_CMD_STATUS";
1020 case STATE_CMD_STATUS_M:
1021 return "STATE_CMD_STATUS_M";
1022 case STATE_CMD_SEQIN:
1023 return "STATE_CMD_SEQIN";
1024 case STATE_CMD_READID:
1025 return "STATE_CMD_READID";
1026 case STATE_CMD_ERASE2:
1027 return "STATE_CMD_ERASE2";
1028 case STATE_CMD_RESET:
1029 return "STATE_CMD_RESET";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001030 case STATE_CMD_RNDOUT:
1031 return "STATE_CMD_RNDOUT";
1032 case STATE_CMD_RNDOUTSTART:
1033 return "STATE_CMD_RNDOUTSTART";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 case STATE_ADDR_PAGE:
1035 return "STATE_ADDR_PAGE";
1036 case STATE_ADDR_SEC:
1037 return "STATE_ADDR_SEC";
1038 case STATE_ADDR_ZERO:
1039 return "STATE_ADDR_ZERO";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001040 case STATE_ADDR_COLUMN:
1041 return "STATE_ADDR_COLUMN";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case STATE_DATAIN:
1043 return "STATE_DATAIN";
1044 case STATE_DATAOUT:
1045 return "STATE_DATAOUT";
1046 case STATE_DATAOUT_ID:
1047 return "STATE_DATAOUT_ID";
1048 case STATE_DATAOUT_STATUS:
1049 return "STATE_DATAOUT_STATUS";
1050 case STATE_DATAOUT_STATUS_M:
1051 return "STATE_DATAOUT_STATUS_M";
1052 case STATE_READY:
1053 return "STATE_READY";
1054 case STATE_UNKNOWN:
1055 return "STATE_UNKNOWN";
1056 }
1057
1058 NS_ERR("get_state_name: unknown state, BUG\n");
1059 return NULL;
1060}
1061
1062/*
1063 * Check if command is valid.
1064 *
1065 * RETURNS: 1 if wrong command, 0 if right.
1066 */
Vijay Kumara5602142006-10-14 21:33:34 +05301067static int check_command(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 switch (cmd) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 case NAND_CMD_READ0:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001072 case NAND_CMD_READ1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 case NAND_CMD_READSTART:
1074 case NAND_CMD_PAGEPROG:
1075 case NAND_CMD_READOOB:
1076 case NAND_CMD_ERASE1:
1077 case NAND_CMD_STATUS:
1078 case NAND_CMD_SEQIN:
1079 case NAND_CMD_READID:
1080 case NAND_CMD_ERASE2:
1081 case NAND_CMD_RESET:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001082 case NAND_CMD_RNDOUT:
1083 case NAND_CMD_RNDOUTSTART:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 case NAND_CMD_STATUS_MULTI:
1087 default:
1088 return 1;
1089 }
1090}
1091
1092/*
1093 * Returns state after command is accepted by command number.
1094 */
Vijay Kumara5602142006-10-14 21:33:34 +05301095static uint32_t get_state_by_command(unsigned command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 switch (command) {
1098 case NAND_CMD_READ0:
1099 return STATE_CMD_READ0;
1100 case NAND_CMD_READ1:
1101 return STATE_CMD_READ1;
1102 case NAND_CMD_PAGEPROG:
1103 return STATE_CMD_PAGEPROG;
1104 case NAND_CMD_READSTART:
1105 return STATE_CMD_READSTART;
1106 case NAND_CMD_READOOB:
1107 return STATE_CMD_READOOB;
1108 case NAND_CMD_ERASE1:
1109 return STATE_CMD_ERASE1;
1110 case NAND_CMD_STATUS:
1111 return STATE_CMD_STATUS;
1112 case NAND_CMD_STATUS_MULTI:
1113 return STATE_CMD_STATUS_M;
1114 case NAND_CMD_SEQIN:
1115 return STATE_CMD_SEQIN;
1116 case NAND_CMD_READID:
1117 return STATE_CMD_READID;
1118 case NAND_CMD_ERASE2:
1119 return STATE_CMD_ERASE2;
1120 case NAND_CMD_RESET:
1121 return STATE_CMD_RESET;
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001122 case NAND_CMD_RNDOUT:
1123 return STATE_CMD_RNDOUT;
1124 case NAND_CMD_RNDOUTSTART:
1125 return STATE_CMD_RNDOUTSTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127
1128 NS_ERR("get_state_by_command: unknown command, BUG\n");
1129 return 0;
1130}
1131
1132/*
1133 * Move an address byte to the correspondent internal register.
1134 */
Vijay Kumara5602142006-10-14 21:33:34 +05301135static inline void accept_addr_byte(struct nandsim *ns, u_char bt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 uint byte = (uint)bt;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (ns->regs.count < (ns->geom.pgaddrbytes - ns->geom.secaddrbytes))
1140 ns->regs.column |= (byte << 8 * ns->regs.count);
1141 else {
1142 ns->regs.row |= (byte << 8 * (ns->regs.count -
1143 ns->geom.pgaddrbytes +
1144 ns->geom.secaddrbytes));
1145 }
1146
1147 return;
1148}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150/*
1151 * Switch to STATE_READY state.
1152 */
Vijay Kumara5602142006-10-14 21:33:34 +05301153static inline void switch_to_ready_state(struct nandsim *ns, u_char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 NS_DBG("switch_to_ready_state: switch to %s state\n", get_state_name(STATE_READY));
1156
1157 ns->state = STATE_READY;
1158 ns->nxstate = STATE_UNKNOWN;
1159 ns->op = NULL;
1160 ns->npstates = 0;
1161 ns->stateidx = 0;
1162 ns->regs.num = 0;
1163 ns->regs.count = 0;
1164 ns->regs.off = 0;
1165 ns->regs.row = 0;
1166 ns->regs.column = 0;
1167 ns->regs.status = status;
1168}
1169
1170/*
1171 * If the operation isn't known yet, try to find it in the global array
1172 * of supported operations.
1173 *
1174 * Operation can be unknown because of the following.
srimugunthandaf05ec2010-11-13 12:46:05 +02001175 * 1. New command was accepted and this is the first call to find the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 * correspondent states chain. In this case ns->npstates = 0;
srimugunthandaf05ec2010-11-13 12:46:05 +02001177 * 2. There are several operations which begin with the same command(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 * (for example program from the second half and read from the
1179 * second half operations both begin with the READ1 command). In this
1180 * case the ns->pstates[] array contains previous states.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001181 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * Thus, the function tries to find operation containing the following
1183 * states (if the 'flag' parameter is 0):
1184 * ns->pstates[0], ... ns->pstates[ns->npstates], ns->state
1185 *
1186 * If (one and only one) matching operation is found, it is accepted (
1187 * ns->ops, ns->state, ns->nxstate are initialized, ns->npstate is
1188 * zeroed).
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001189 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001190 * If there are several matches, the current state is pushed to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 * ns->pstates.
1192 *
1193 * The operation can be unknown only while commands are input to the chip.
1194 * As soon as address command is accepted, the operation must be known.
1195 * In such situation the function is called with 'flag' != 0, and the
1196 * operation is searched using the following pattern:
1197 * ns->pstates[0], ... ns->pstates[ns->npstates], <address input>
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001198 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001199 * It is supposed that this pattern must either match one operation or
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * none. There can't be ambiguity in that case.
1201 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001202 * If no matches found, the function does the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * 1. if there are saved states present, try to ignore them and search
1204 * again only using the last command. If nothing was found, switch
1205 * to the STATE_READY state.
1206 * 2. if there are no saved states, switch to the STATE_READY state.
1207 *
1208 * RETURNS: -2 - no matched operations found.
1209 * -1 - several matches.
1210 * 0 - operation is found.
1211 */
Vijay Kumara5602142006-10-14 21:33:34 +05301212static int find_operation(struct nandsim *ns, uint32_t flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 int opsfound = 0;
1215 int i, j, idx = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 for (i = 0; i < NS_OPER_NUM; i++) {
1218
1219 int found = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!(ns->options & ops[i].reqopts))
1222 /* Ignore operations we can't perform */
1223 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (flag) {
1226 if (!(ops[i].states[ns->npstates] & STATE_ADDR_MASK))
1227 continue;
1228 } else {
1229 if (NS_STATE(ns->state) != NS_STATE(ops[i].states[ns->npstates]))
1230 continue;
1231 }
1232
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001233 for (j = 0; j < ns->npstates; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (NS_STATE(ops[i].states[j]) != NS_STATE(ns->pstates[j])
1235 && (ns->options & ops[idx].reqopts)) {
1236 found = 0;
1237 break;
1238 }
1239
1240 if (found) {
1241 idx = i;
1242 opsfound += 1;
1243 }
1244 }
1245
1246 if (opsfound == 1) {
1247 /* Exact match */
1248 ns->op = &ops[idx].states[0];
1249 if (flag) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001250 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * In this case the find_operation function was
1252 * called when address has just began input. But it isn't
1253 * yet fully input and the current state must
1254 * not be one of STATE_ADDR_*, but the STATE_ADDR_*
1255 * state must be the next state (ns->nxstate).
1256 */
1257 ns->stateidx = ns->npstates - 1;
1258 } else {
1259 ns->stateidx = ns->npstates;
1260 }
1261 ns->npstates = 0;
1262 ns->state = ns->op[ns->stateidx];
1263 ns->nxstate = ns->op[ns->stateidx + 1];
1264 NS_DBG("find_operation: operation found, index: %d, state: %s, nxstate %s\n",
1265 idx, get_state_name(ns->state), get_state_name(ns->nxstate));
1266 return 0;
1267 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (opsfound == 0) {
1270 /* Nothing was found. Try to ignore previous commands (if any) and search again */
1271 if (ns->npstates != 0) {
1272 NS_DBG("find_operation: no operation found, try again with state %s\n",
1273 get_state_name(ns->state));
1274 ns->npstates = 0;
1275 return find_operation(ns, 0);
1276
1277 }
1278 NS_DBG("find_operation: no operations found\n");
1279 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1280 return -2;
1281 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (flag) {
1284 /* This shouldn't happen */
1285 NS_DBG("find_operation: BUG, operation must be known if address is input\n");
1286 return -2;
1287 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 NS_DBG("find_operation: there is still ambiguity\n");
1290
1291 ns->pstates[ns->npstates++] = ns->state;
1292
1293 return -1;
1294}
1295
Adrian Huntera9fc8992008-11-12 16:06:07 +02001296static void put_pages(struct nandsim *ns)
1297{
1298 int i;
1299
1300 for (i = 0; i < ns->held_cnt; i++)
1301 page_cache_release(ns->held_pages[i]);
1302}
1303
1304/* Get page cache pages in advance to provide NOFS memory allocation */
1305static int get_pages(struct nandsim *ns, struct file *file, size_t count, loff_t pos)
1306{
1307 pgoff_t index, start_index, end_index;
1308 struct page *page;
1309 struct address_space *mapping = file->f_mapping;
1310
1311 start_index = pos >> PAGE_CACHE_SHIFT;
1312 end_index = (pos + count - 1) >> PAGE_CACHE_SHIFT;
1313 if (end_index - start_index + 1 > NS_MAX_HELD_PAGES)
1314 return -EINVAL;
1315 ns->held_cnt = 0;
1316 for (index = start_index; index <= end_index; index++) {
1317 page = find_get_page(mapping, index);
1318 if (page == NULL) {
1319 page = find_or_create_page(mapping, index, GFP_NOFS);
1320 if (page == NULL) {
1321 write_inode_now(mapping->host, 1);
1322 page = find_or_create_page(mapping, index, GFP_NOFS);
1323 }
1324 if (page == NULL) {
1325 put_pages(ns);
1326 return -ENOMEM;
1327 }
1328 unlock_page(page);
1329 }
1330 ns->held_pages[ns->held_cnt++] = page;
1331 }
1332 return 0;
1333}
1334
1335static int set_memalloc(void)
1336{
1337 if (current->flags & PF_MEMALLOC)
1338 return 0;
1339 current->flags |= PF_MEMALLOC;
1340 return 1;
1341}
1342
1343static void clear_memalloc(int memalloc)
1344{
1345 if (memalloc)
1346 current->flags &= ~PF_MEMALLOC;
1347}
1348
1349static ssize_t read_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t *pos)
1350{
1351 mm_segment_t old_fs;
1352 ssize_t tx;
1353 int err, memalloc;
1354
1355 err = get_pages(ns, file, count, *pos);
1356 if (err)
1357 return err;
1358 old_fs = get_fs();
1359 set_fs(get_ds());
1360 memalloc = set_memalloc();
1361 tx = vfs_read(file, (char __user *)buf, count, pos);
1362 clear_memalloc(memalloc);
1363 set_fs(old_fs);
1364 put_pages(ns);
1365 return tx;
1366}
1367
1368static ssize_t write_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t *pos)
1369{
1370 mm_segment_t old_fs;
1371 ssize_t tx;
1372 int err, memalloc;
1373
1374 err = get_pages(ns, file, count, *pos);
1375 if (err)
1376 return err;
1377 old_fs = get_fs();
1378 set_fs(get_ds());
1379 memalloc = set_memalloc();
1380 tx = vfs_write(file, (char __user *)buf, count, pos);
1381 clear_memalloc(memalloc);
1382 set_fs(old_fs);
1383 put_pages(ns);
1384 return tx;
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387/*
Vijay Kumard086d432006-10-08 22:02:31 +05301388 * Returns a pointer to the current page.
1389 */
1390static inline union ns_mem *NS_GET_PAGE(struct nandsim *ns)
1391{
1392 return &(ns->pages[ns->regs.row]);
1393}
1394
1395/*
1396 * Retuns a pointer to the current byte, within the current page.
1397 */
1398static inline u_char *NS_PAGE_BYTE_OFF(struct nandsim *ns)
1399{
1400 return NS_GET_PAGE(ns)->byte + ns->regs.column + ns->regs.off;
1401}
1402
Adrian Huntera9fc8992008-11-12 16:06:07 +02001403int do_read_error(struct nandsim *ns, int num)
1404{
1405 unsigned int page_no = ns->regs.row;
1406
1407 if (read_error(page_no)) {
1408 int i;
1409 memset(ns->buf.byte, 0xFF, num);
1410 for (i = 0; i < num; ++i)
1411 ns->buf.byte[i] = random32();
1412 NS_WARN("simulating read error in page %u\n", page_no);
1413 return 1;
1414 }
1415 return 0;
1416}
1417
1418void do_bit_flips(struct nandsim *ns, int num)
1419{
1420 if (bitflips && random32() < (1 << 22)) {
1421 int flips = 1;
1422 if (bitflips > 1)
1423 flips = (random32() % (int) bitflips) + 1;
1424 while (flips--) {
1425 int pos = random32() % (num * 8);
1426 ns->buf.byte[pos / 8] ^= (1 << (pos % 8));
1427 NS_WARN("read_page: flipping bit %d in page %d "
1428 "reading from %d ecc: corrected=%u failed=%u\n",
1429 pos, ns->regs.row, ns->regs.column + ns->regs.off,
1430 nsmtd->ecc_stats.corrected, nsmtd->ecc_stats.failed);
1431 }
1432 }
1433}
1434
Vijay Kumard086d432006-10-08 22:02:31 +05301435/*
1436 * Fill the NAND buffer with data read from the specified page.
1437 */
1438static void read_page(struct nandsim *ns, int num)
1439{
1440 union ns_mem *mypage;
1441
Adrian Huntera9fc8992008-11-12 16:06:07 +02001442 if (ns->cfile) {
1443 if (!ns->pages_written[ns->regs.row]) {
1444 NS_DBG("read_page: page %d not written\n", ns->regs.row);
1445 memset(ns->buf.byte, 0xFF, num);
1446 } else {
1447 loff_t pos;
1448 ssize_t tx;
1449
1450 NS_DBG("read_page: page %d written, reading from %d\n",
1451 ns->regs.row, ns->regs.column + ns->regs.off);
1452 if (do_read_error(ns, num))
1453 return;
1454 pos = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1455 tx = read_file(ns, ns->cfile, ns->buf.byte, num, &pos);
1456 if (tx != num) {
1457 NS_ERR("read_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1458 return;
1459 }
1460 do_bit_flips(ns, num);
1461 }
1462 return;
1463 }
1464
Vijay Kumard086d432006-10-08 22:02:31 +05301465 mypage = NS_GET_PAGE(ns);
1466 if (mypage->byte == NULL) {
1467 NS_DBG("read_page: page %d not allocated\n", ns->regs.row);
1468 memset(ns->buf.byte, 0xFF, num);
1469 } else {
1470 NS_DBG("read_page: page %d allocated, reading from %d\n",
1471 ns->regs.row, ns->regs.column + ns->regs.off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001472 if (do_read_error(ns, num))
Adrian Hunter514087e72007-03-19 12:47:45 +02001473 return;
Vijay Kumard086d432006-10-08 22:02:31 +05301474 memcpy(ns->buf.byte, NS_PAGE_BYTE_OFF(ns), num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001475 do_bit_flips(ns, num);
Vijay Kumard086d432006-10-08 22:02:31 +05301476 }
1477}
1478
1479/*
1480 * Erase all pages in the specified sector.
1481 */
1482static void erase_sector(struct nandsim *ns)
1483{
1484 union ns_mem *mypage;
1485 int i;
1486
Adrian Huntera9fc8992008-11-12 16:06:07 +02001487 if (ns->cfile) {
1488 for (i = 0; i < ns->geom.pgsec; i++)
1489 if (ns->pages_written[ns->regs.row + i]) {
1490 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row + i);
1491 ns->pages_written[ns->regs.row + i] = 0;
1492 }
1493 return;
1494 }
1495
Vijay Kumard086d432006-10-08 22:02:31 +05301496 mypage = NS_GET_PAGE(ns);
1497 for (i = 0; i < ns->geom.pgsec; i++) {
1498 if (mypage->byte != NULL) {
1499 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row+i);
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001500 kmem_cache_free(ns->nand_pages_slab, mypage->byte);
Vijay Kumard086d432006-10-08 22:02:31 +05301501 mypage->byte = NULL;
1502 }
1503 mypage++;
1504 }
1505}
1506
1507/*
1508 * Program the specified page with the contents from the NAND buffer.
1509 */
1510static int prog_page(struct nandsim *ns, int num)
1511{
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001512 int i;
Vijay Kumard086d432006-10-08 22:02:31 +05301513 union ns_mem *mypage;
1514 u_char *pg_off;
1515
Adrian Huntera9fc8992008-11-12 16:06:07 +02001516 if (ns->cfile) {
1517 loff_t off, pos;
1518 ssize_t tx;
1519 int all;
1520
1521 NS_DBG("prog_page: writing page %d\n", ns->regs.row);
1522 pg_off = ns->file_buf + ns->regs.column + ns->regs.off;
1523 off = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1524 if (!ns->pages_written[ns->regs.row]) {
1525 all = 1;
1526 memset(ns->file_buf, 0xff, ns->geom.pgszoob);
1527 } else {
1528 all = 0;
1529 pos = off;
1530 tx = read_file(ns, ns->cfile, pg_off, num, &pos);
1531 if (tx != num) {
1532 NS_ERR("prog_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1533 return -1;
1534 }
1535 }
1536 for (i = 0; i < num; i++)
1537 pg_off[i] &= ns->buf.byte[i];
1538 if (all) {
1539 pos = (loff_t)ns->regs.row * ns->geom.pgszoob;
1540 tx = write_file(ns, ns->cfile, ns->file_buf, ns->geom.pgszoob, &pos);
1541 if (tx != ns->geom.pgszoob) {
1542 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1543 return -1;
1544 }
1545 ns->pages_written[ns->regs.row] = 1;
1546 } else {
1547 pos = off;
1548 tx = write_file(ns, ns->cfile, pg_off, num, &pos);
1549 if (tx != num) {
1550 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1551 return -1;
1552 }
1553 }
1554 return 0;
1555 }
1556
Vijay Kumard086d432006-10-08 22:02:31 +05301557 mypage = NS_GET_PAGE(ns);
1558 if (mypage->byte == NULL) {
1559 NS_DBG("prog_page: allocating page %d\n", ns->regs.row);
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001560 /*
1561 * We allocate memory with GFP_NOFS because a flash FS may
1562 * utilize this. If it is holding an FS lock, then gets here,
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001563 * then kernel memory alloc runs writeback which goes to the FS
1564 * again and deadlocks. This was seen in practice.
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001565 */
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001566 mypage->byte = kmem_cache_alloc(ns->nand_pages_slab, GFP_NOFS);
Vijay Kumard086d432006-10-08 22:02:31 +05301567 if (mypage->byte == NULL) {
1568 NS_ERR("prog_page: error allocating memory for page %d\n", ns->regs.row);
1569 return -1;
1570 }
1571 memset(mypage->byte, 0xFF, ns->geom.pgszoob);
1572 }
1573
1574 pg_off = NS_PAGE_BYTE_OFF(ns);
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001575 for (i = 0; i < num; i++)
1576 pg_off[i] &= ns->buf.byte[i];
Vijay Kumard086d432006-10-08 22:02:31 +05301577
1578 return 0;
1579}
1580
1581/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * If state has any action bit, perform this action.
1583 *
1584 * RETURNS: 0 if success, -1 if error.
1585 */
Vijay Kumara5602142006-10-14 21:33:34 +05301586static int do_state_action(struct nandsim *ns, uint32_t action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Vijay Kumard086d432006-10-08 22:02:31 +05301588 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 int busdiv = ns->busw == 8 ? 1 : 2;
Adrian Hunter514087e72007-03-19 12:47:45 +02001590 unsigned int erase_block_no, page_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 action &= ACTION_MASK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* Check that page address input is correct */
1595 if (action != ACTION_SECERASE && ns->regs.row >= ns->geom.pgnum) {
1596 NS_WARN("do_state_action: wrong page number (%#x)\n", ns->regs.row);
1597 return -1;
1598 }
1599
1600 switch (action) {
1601
1602 case ACTION_CPY:
1603 /*
1604 * Copy page data to the internal buffer.
1605 */
1606
1607 /* Column shouldn't be very large */
1608 if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) {
1609 NS_ERR("do_state_action: column number is too large\n");
1610 break;
1611 }
1612 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
Vijay Kumard086d432006-10-08 22:02:31 +05301613 read_page(ns, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 NS_DBG("do_state_action: (ACTION_CPY:) copy %d bytes to int buf, raw offset %d\n",
1616 num, NS_RAW_OFFSET(ns) + ns->regs.off);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (ns->regs.off == 0)
1619 NS_LOG("read page %d\n", ns->regs.row);
1620 else if (ns->regs.off < ns->geom.pgsz)
1621 NS_LOG("read page %d (second half)\n", ns->regs.row);
1622 else
1623 NS_LOG("read OOB of page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 NS_UDELAY(access_delay);
1626 NS_UDELAY(input_cycle * ns->geom.pgsz / 1000 / busdiv);
1627
1628 break;
1629
1630 case ACTION_SECERASE:
1631 /*
1632 * Erase sector.
1633 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (ns->lines.wp) {
1636 NS_ERR("do_state_action: device is write-protected, ignore sector erase\n");
1637 return -1;
1638 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (ns->regs.row >= ns->geom.pgnum - ns->geom.pgsec
1641 || (ns->regs.row & ~(ns->geom.secsz - 1))) {
1642 NS_ERR("do_state_action: wrong sector address (%#x)\n", ns->regs.row);
1643 return -1;
1644 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 ns->regs.row = (ns->regs.row <<
1647 8 * (ns->geom.pgaddrbytes - ns->geom.secaddrbytes)) | ns->regs.column;
1648 ns->regs.column = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001649
Adrian Hunter514087e72007-03-19 12:47:45 +02001650 erase_block_no = ns->regs.row >> (ns->geom.secshift - ns->geom.pgshift);
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 NS_DBG("do_state_action: erase sector at address %#x, off = %d\n",
1653 ns->regs.row, NS_RAW_OFFSET(ns));
Adrian Hunter514087e72007-03-19 12:47:45 +02001654 NS_LOG("erase sector %u\n", erase_block_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Vijay Kumard086d432006-10-08 22:02:31 +05301656 erase_sector(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 NS_MDELAY(erase_delay);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001659
Adrian Hunter57aa6b52007-03-19 12:40:41 +02001660 if (erase_block_wear)
1661 update_wear(erase_block_no);
1662
Adrian Hunter514087e72007-03-19 12:47:45 +02001663 if (erase_error(erase_block_no)) {
1664 NS_WARN("simulating erase failure in erase block %u\n", erase_block_no);
1665 return -1;
1666 }
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 break;
1669
1670 case ACTION_PRGPAGE:
1671 /*
srimugunthandaf05ec2010-11-13 12:46:05 +02001672 * Program page - move internal buffer data to the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 */
1674
1675 if (ns->lines.wp) {
1676 NS_WARN("do_state_action: device is write-protected, programm\n");
1677 return -1;
1678 }
1679
1680 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1681 if (num != ns->regs.count) {
1682 NS_ERR("do_state_action: too few bytes were input (%d instead of %d)\n",
1683 ns->regs.count, num);
1684 return -1;
1685 }
1686
Vijay Kumard086d432006-10-08 22:02:31 +05301687 if (prog_page(ns, num) == -1)
1688 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Adrian Hunter514087e72007-03-19 12:47:45 +02001690 page_no = ns->regs.row;
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 NS_DBG("do_state_action: copy %d bytes from int buf to (%#x, %#x), raw off = %d\n",
1693 num, ns->regs.row, ns->regs.column, NS_RAW_OFFSET(ns) + ns->regs.off);
1694 NS_LOG("programm page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 NS_UDELAY(programm_delay);
1697 NS_UDELAY(output_cycle * ns->geom.pgsz / 1000 / busdiv);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001698
Adrian Hunter514087e72007-03-19 12:47:45 +02001699 if (write_error(page_no)) {
1700 NS_WARN("simulating write failure in page %u\n", page_no);
1701 return -1;
1702 }
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 case ACTION_ZEROOFF:
1707 NS_DBG("do_state_action: set internal offset to 0\n");
1708 ns->regs.off = 0;
1709 break;
1710
1711 case ACTION_HALFOFF:
1712 if (!(ns->options & OPT_PAGE512_8BIT)) {
1713 NS_ERR("do_state_action: BUG! can't skip half of page for non-512"
1714 "byte page size 8x chips\n");
1715 return -1;
1716 }
1717 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz/2);
1718 ns->regs.off = ns->geom.pgsz/2;
1719 break;
1720
1721 case ACTION_OOBOFF:
1722 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz);
1723 ns->regs.off = ns->geom.pgsz;
1724 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 default:
1727 NS_DBG("do_state_action: BUG! unknown action\n");
1728 }
1729
1730 return 0;
1731}
1732
1733/*
1734 * Switch simulator's state.
1735 */
Vijay Kumara5602142006-10-14 21:33:34 +05301736static void switch_state(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 if (ns->op) {
1739 /*
1740 * The current operation have already been identified.
1741 * Just follow the states chain.
1742 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 ns->stateidx += 1;
1745 ns->state = ns->nxstate;
1746 ns->nxstate = ns->op[ns->stateidx + 1];
1747
1748 NS_DBG("switch_state: operation is known, switch to the next state, "
1749 "state: %s, nxstate: %s\n",
1750 get_state_name(ns->state), get_state_name(ns->nxstate));
1751
1752 /* See, whether we need to do some action */
1753 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1754 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1755 return;
1756 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 } else {
1759 /*
1760 * We don't yet know which operation we perform.
1761 * Try to identify it.
1762 */
1763
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001764 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 * The only event causing the switch_state function to
1766 * be called with yet unknown operation is new command.
1767 */
1768 ns->state = get_state_by_command(ns->regs.command);
1769
1770 NS_DBG("switch_state: operation is unknown, try to find it\n");
1771
1772 if (find_operation(ns, 0) != 0)
1773 return;
1774
1775 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1776 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1777 return;
1778 }
1779 }
1780
1781 /* For 16x devices column means the page offset in words */
1782 if ((ns->nxstate & STATE_ADDR_MASK) && ns->busw == 16) {
1783 NS_DBG("switch_state: double the column number for 16x device\n");
1784 ns->regs.column <<= 1;
1785 }
1786
1787 if (NS_STATE(ns->nxstate) == STATE_READY) {
1788 /*
1789 * The current state is the last. Return to STATE_READY
1790 */
1791
1792 u_char status = NS_STATUS_OK(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 /* In case of data states, see if all bytes were input/output */
1795 if ((ns->state & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK))
1796 && ns->regs.count != ns->regs.num) {
1797 NS_WARN("switch_state: not all bytes were processed, %d left\n",
1798 ns->regs.num - ns->regs.count);
1799 status = NS_STATUS_FAILED(ns);
1800 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 NS_DBG("switch_state: operation complete, switch to STATE_READY state\n");
1803
1804 switch_to_ready_state(ns, status);
1805
1806 return;
1807 } else if (ns->nxstate & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001808 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 * If the next state is data input/output, switch to it now
1810 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 ns->state = ns->nxstate;
1813 ns->nxstate = ns->op[++ns->stateidx + 1];
1814 ns->regs.num = ns->regs.count = 0;
1815
1816 NS_DBG("switch_state: the next state is data I/O, switch, "
1817 "state: %s, nxstate: %s\n",
1818 get_state_name(ns->state), get_state_name(ns->nxstate));
1819
1820 /*
1821 * Set the internal register to the count of bytes which
1822 * are expected to be input or output
1823 */
1824 switch (NS_STATE(ns->state)) {
1825 case STATE_DATAIN:
1826 case STATE_DATAOUT:
1827 ns->regs.num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1828 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 case STATE_DATAOUT_ID:
1831 ns->regs.num = ns->geom.idbytes;
1832 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 case STATE_DATAOUT_STATUS:
1835 case STATE_DATAOUT_STATUS_M:
1836 ns->regs.count = ns->regs.num = 0;
1837 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 default:
1840 NS_ERR("switch_state: BUG! unknown data state\n");
1841 }
1842
1843 } else if (ns->nxstate & STATE_ADDR_MASK) {
1844 /*
1845 * If the next state is address input, set the internal
1846 * register to the number of expected address bytes
1847 */
1848
1849 ns->regs.count = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 switch (NS_STATE(ns->nxstate)) {
1852 case STATE_ADDR_PAGE:
1853 ns->regs.num = ns->geom.pgaddrbytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 break;
1856 case STATE_ADDR_SEC:
1857 ns->regs.num = ns->geom.secaddrbytes;
1858 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 case STATE_ADDR_ZERO:
1861 ns->regs.num = 1;
1862 break;
1863
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001864 case STATE_ADDR_COLUMN:
1865 /* Column address is always 2 bytes */
1866 ns->regs.num = ns->geom.pgaddrbytes - ns->geom.secaddrbytes;
1867 break;
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 default:
1870 NS_ERR("switch_state: BUG! unknown address state\n");
1871 }
1872 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001873 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 * Just reset internal counters.
1875 */
1876
1877 ns->regs.num = 0;
1878 ns->regs.count = 0;
1879 }
1880}
1881
Vijay Kumara5602142006-10-14 21:33:34 +05301882static u_char ns_nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001884 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 u_char outb = 0x00;
1886
1887 /* Sanity and correctness checks */
1888 if (!ns->lines.ce) {
1889 NS_ERR("read_byte: chip is disabled, return %#x\n", (uint)outb);
1890 return outb;
1891 }
1892 if (ns->lines.ale || ns->lines.cle) {
1893 NS_ERR("read_byte: ALE or CLE pin is high, return %#x\n", (uint)outb);
1894 return outb;
1895 }
1896 if (!(ns->state & STATE_DATAOUT_MASK)) {
1897 NS_WARN("read_byte: unexpected data output cycle, state is %s "
1898 "return %#x\n", get_state_name(ns->state), (uint)outb);
1899 return outb;
1900 }
1901
1902 /* Status register may be read as many times as it is wanted */
1903 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS) {
1904 NS_DBG("read_byte: return %#x status\n", ns->regs.status);
1905 return ns->regs.status;
1906 }
1907
1908 /* Check if there is any data in the internal buffer which may be read */
1909 if (ns->regs.count == ns->regs.num) {
1910 NS_WARN("read_byte: no more data to output, return %#x\n", (uint)outb);
1911 return outb;
1912 }
1913
1914 switch (NS_STATE(ns->state)) {
1915 case STATE_DATAOUT:
1916 if (ns->busw == 8) {
1917 outb = ns->buf.byte[ns->regs.count];
1918 ns->regs.count += 1;
1919 } else {
1920 outb = (u_char)cpu_to_le16(ns->buf.word[ns->regs.count >> 1]);
1921 ns->regs.count += 2;
1922 }
1923 break;
1924 case STATE_DATAOUT_ID:
1925 NS_DBG("read_byte: read ID byte %d, total = %d\n", ns->regs.count, ns->regs.num);
1926 outb = ns->ids[ns->regs.count];
1927 ns->regs.count += 1;
1928 break;
1929 default:
1930 BUG();
1931 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (ns->regs.count == ns->regs.num) {
1934 NS_DBG("read_byte: all bytes were read\n");
1935
Brian Norris831d3162012-05-01 17:12:53 -07001936 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 switch_state(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return outb;
1941}
1942
Vijay Kumara5602142006-10-14 21:33:34 +05301943static void ns_nand_write_byte(struct mtd_info *mtd, u_char byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001945 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* Sanity and correctness checks */
1948 if (!ns->lines.ce) {
1949 NS_ERR("write_byte: chip is disabled, ignore write\n");
1950 return;
1951 }
1952 if (ns->lines.ale && ns->lines.cle) {
1953 NS_ERR("write_byte: ALE and CLE pins are high simultaneously, ignore write\n");
1954 return;
1955 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (ns->lines.cle == 1) {
1958 /*
1959 * The byte written is a command.
1960 */
1961
1962 if (byte == NAND_CMD_RESET) {
1963 NS_LOG("reset chip\n");
1964 switch_to_ready_state(ns, NS_STATUS_OK(ns));
1965 return;
1966 }
1967
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001968 /* Check that the command byte is correct */
1969 if (check_command(byte)) {
1970 NS_ERR("write_byte: unknown command %#x\n", (uint)byte);
1971 return;
1972 }
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS
1975 || NS_STATE(ns->state) == STATE_DATAOUT_STATUS_M
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001976 || NS_STATE(ns->state) == STATE_DATAOUT) {
1977 int row = ns->regs.row;
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 switch_state(ns);
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001980 if (byte == NAND_CMD_RNDOUT)
1981 ns->regs.row = row;
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 /* Check if chip is expecting command */
1985 if (NS_STATE(ns->nxstate) != STATE_UNKNOWN && !(ns->nxstate & STATE_CMD_MASK)) {
Adrian Hunter9359ea462008-11-12 16:06:40 +02001986 /* Do not warn if only 2 id bytes are read */
1987 if (!(ns->regs.command == NAND_CMD_READID &&
1988 NS_STATE(ns->state) == STATE_DATAOUT_ID && ns->regs.count == 2)) {
1989 /*
1990 * We are in situation when something else (not command)
1991 * was expected but command was input. In this case ignore
1992 * previous command(s)/state(s) and accept the last one.
1993 */
1994 NS_WARN("write_byte: command (%#x) wasn't expected, expected state is %s, "
1995 "ignore previous states\n", (uint)byte, get_state_name(ns->nxstate));
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1998 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 NS_DBG("command byte corresponding to %s state accepted\n",
2001 get_state_name(get_state_by_command(byte)));
2002 ns->regs.command = byte;
2003 switch_state(ns);
2004
2005 } else if (ns->lines.ale == 1) {
2006 /*
2007 * The byte written is an address.
2008 */
2009
2010 if (NS_STATE(ns->nxstate) == STATE_UNKNOWN) {
2011
2012 NS_DBG("write_byte: operation isn't known yet, identify it\n");
2013
2014 if (find_operation(ns, 1) < 0)
2015 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
2018 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2019 return;
2020 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 ns->regs.count = 0;
2023 switch (NS_STATE(ns->nxstate)) {
2024 case STATE_ADDR_PAGE:
2025 ns->regs.num = ns->geom.pgaddrbytes;
2026 break;
2027 case STATE_ADDR_SEC:
2028 ns->regs.num = ns->geom.secaddrbytes;
2029 break;
2030 case STATE_ADDR_ZERO:
2031 ns->regs.num = 1;
2032 break;
2033 default:
2034 BUG();
2035 }
2036 }
2037
2038 /* Check that chip is expecting address */
2039 if (!(ns->nxstate & STATE_ADDR_MASK)) {
2040 NS_ERR("write_byte: address (%#x) isn't expected, expected state is %s, "
2041 "switch to STATE_READY\n", (uint)byte, get_state_name(ns->nxstate));
2042 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2043 return;
2044 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 /* Check if this is expected byte */
2047 if (ns->regs.count == ns->regs.num) {
2048 NS_ERR("write_byte: no more address bytes expected\n");
2049 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2050 return;
2051 }
2052
2053 accept_addr_byte(ns, byte);
2054
2055 ns->regs.count += 1;
2056
2057 NS_DBG("write_byte: address byte %#x was accepted (%d bytes input, %d expected)\n",
2058 (uint)byte, ns->regs.count, ns->regs.num);
2059
2060 if (ns->regs.count == ns->regs.num) {
2061 NS_DBG("address (%#x, %#x) is accepted\n", ns->regs.row, ns->regs.column);
2062 switch_state(ns);
2063 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 } else {
2066 /*
2067 * The byte written is an input data.
2068 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /* Check that chip is expecting data input */
2071 if (!(ns->state & STATE_DATAIN_MASK)) {
2072 NS_ERR("write_byte: data input (%#x) isn't expected, state is %s, "
2073 "switch to %s\n", (uint)byte,
2074 get_state_name(ns->state), get_state_name(STATE_READY));
2075 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2076 return;
2077 }
2078
2079 /* Check if this is expected byte */
2080 if (ns->regs.count == ns->regs.num) {
2081 NS_WARN("write_byte: %u input bytes has already been accepted, ignore write\n",
2082 ns->regs.num);
2083 return;
2084 }
2085
2086 if (ns->busw == 8) {
2087 ns->buf.byte[ns->regs.count] = byte;
2088 ns->regs.count += 1;
2089 } else {
2090 ns->buf.word[ns->regs.count >> 1] = cpu_to_le16((uint16_t)byte);
2091 ns->regs.count += 2;
2092 }
2093 }
2094
2095 return;
2096}
2097
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002098static void ns_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int bitmask)
2099{
2100 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
2101
2102 ns->lines.cle = bitmask & NAND_CLE ? 1 : 0;
2103 ns->lines.ale = bitmask & NAND_ALE ? 1 : 0;
2104 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0;
2105
2106 if (cmd != NAND_CMD_NONE)
2107 ns_nand_write_byte(mtd, cmd);
2108}
2109
Vijay Kumara5602142006-10-14 21:33:34 +05302110static int ns_device_ready(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 NS_DBG("device_ready\n");
2113 return 1;
2114}
2115
Vijay Kumara5602142006-10-14 21:33:34 +05302116static uint16_t ns_nand_read_word(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 struct nand_chip *chip = (struct nand_chip *)mtd->priv;
2119
2120 NS_DBG("read_word\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return chip->read_byte(mtd) | (chip->read_byte(mtd) << 8);
2123}
2124
Vijay Kumara5602142006-10-14 21:33:34 +05302125static void ns_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002127 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 /* Check that chip is expecting data input */
2130 if (!(ns->state & STATE_DATAIN_MASK)) {
2131 NS_ERR("write_buf: data input isn't expected, state is %s, "
2132 "switch to STATE_READY\n", get_state_name(ns->state));
2133 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2134 return;
2135 }
2136
2137 /* Check if these are expected bytes */
2138 if (ns->regs.count + len > ns->regs.num) {
2139 NS_ERR("write_buf: too many input bytes\n");
2140 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2141 return;
2142 }
2143
2144 memcpy(ns->buf.byte + ns->regs.count, buf, len);
2145 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (ns->regs.count == ns->regs.num) {
2148 NS_DBG("write_buf: %d bytes were written\n", ns->regs.count);
2149 }
2150}
2151
Vijay Kumara5602142006-10-14 21:33:34 +05302152static void ns_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002154 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /* Sanity and correctness checks */
2157 if (!ns->lines.ce) {
2158 NS_ERR("read_buf: chip is disabled\n");
2159 return;
2160 }
2161 if (ns->lines.ale || ns->lines.cle) {
2162 NS_ERR("read_buf: ALE or CLE pin is high\n");
2163 return;
2164 }
2165 if (!(ns->state & STATE_DATAOUT_MASK)) {
2166 NS_WARN("read_buf: unexpected data output cycle, current state is %s\n",
2167 get_state_name(ns->state));
2168 return;
2169 }
2170
2171 if (NS_STATE(ns->state) != STATE_DATAOUT) {
2172 int i;
2173
2174 for (i = 0; i < len; i++)
2175 buf[i] = ((struct nand_chip *)mtd->priv)->read_byte(mtd);
2176
2177 return;
2178 }
2179
2180 /* Check if these are expected bytes */
2181 if (ns->regs.count + len > ns->regs.num) {
2182 NS_ERR("read_buf: too many bytes to read\n");
2183 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2184 return;
2185 }
2186
2187 memcpy(buf, ns->buf.byte + ns->regs.count, len);
2188 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (ns->regs.count == ns->regs.num) {
Brian Norris831d3162012-05-01 17:12:53 -07002191 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 switch_state(ns);
2193 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return;
2196}
2197
Vijay Kumara5602142006-10-14 21:33:34 +05302198static int ns_nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 ns_nand_read_buf(mtd, (u_char *)&ns_verify_buf[0], len);
2201
2202 if (!memcmp(buf, &ns_verify_buf[0], len)) {
2203 NS_DBG("verify_buf: the buffer is OK\n");
2204 return 0;
2205 } else {
2206 NS_DBG("verify_buf: the buffer is wrong\n");
2207 return -EFAULT;
2208 }
2209}
2210
2211/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 * Module initialization function
2213 */
Adrian Bunk2b9175c2005-11-29 14:49:38 +00002214static int __init ns_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 struct nand_chip *chip;
2217 struct nandsim *nand;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002218 int retval = -ENOMEM, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 if (bus_width != 8 && bus_width != 16) {
2221 NS_ERR("wrong bus width (%d), use only 8 or 16\n", bus_width);
2222 return -EINVAL;
2223 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 /* Allocate and initialize mtd_info, nand_chip and nandsim structures */
Burman Yan95b93a02006-11-15 21:10:29 +02002226 nsmtd = kzalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 + sizeof(struct nandsim), GFP_KERNEL);
2228 if (!nsmtd) {
2229 NS_ERR("unable to allocate core structures.\n");
2230 return -ENOMEM;
2231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 chip = (struct nand_chip *)(nsmtd + 1);
2233 nsmtd->priv = (void *)chip;
2234 nand = (struct nandsim *)(chip + 1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002235 chip->priv = (void *)nand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 /*
2238 * Register simulator's callbacks.
2239 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002240 chip->cmd_ctrl = ns_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 chip->read_byte = ns_nand_read_byte;
2242 chip->dev_ready = ns_device_ready;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 chip->write_buf = ns_nand_write_buf;
2244 chip->read_buf = ns_nand_read_buf;
2245 chip->verify_buf = ns_nand_verify_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 chip->read_word = ns_nand_read_word;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002247 chip->ecc.mode = NAND_ECC_SOFT;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002248 /* The NAND_SKIP_BBTSCAN option is necessary for 'overridesize' */
2249 /* and 'badblocks' parameters to work */
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002250 chip->options |= NAND_SKIP_BBTSCAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002252 switch (bbt) {
2253 case 2:
Brian Norrisa40f7342011-05-31 16:31:22 -07002254 chip->bbt_options |= NAND_BBT_NO_OOB;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002255 case 1:
Brian Norrisbb9ebd42011-05-31 16:31:23 -07002256 chip->bbt_options |= NAND_BBT_USE_FLASH;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002257 case 0:
2258 break;
2259 default:
2260 NS_ERR("bbt has to be 0..2\n");
2261 retval = -EINVAL;
2262 goto error;
2263 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002264 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 * Perform minimum nandsim structure initialization to handle
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002266 * the initial ID read command correctly
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 */
2268 if (third_id_byte != 0xFF || fourth_id_byte != 0xFF)
2269 nand->geom.idbytes = 4;
2270 else
2271 nand->geom.idbytes = 2;
2272 nand->regs.status = NS_STATUS_OK(nand);
2273 nand->nxstate = STATE_UNKNOWN;
2274 nand->options |= OPT_PAGE256; /* temporary value */
2275 nand->ids[0] = first_id_byte;
2276 nand->ids[1] = second_id_byte;
2277 nand->ids[2] = third_id_byte;
2278 nand->ids[3] = fourth_id_byte;
2279 if (bus_width == 16) {
2280 nand->busw = 16;
2281 chip->options |= NAND_BUSWIDTH_16;
2282 }
2283
David Woodhouse552d9202006-05-14 01:20:46 +01002284 nsmtd->owner = THIS_MODULE;
2285
Adrian Hunter514087e72007-03-19 12:47:45 +02002286 if ((retval = parse_weakblocks()) != 0)
2287 goto error;
2288
2289 if ((retval = parse_weakpages()) != 0)
2290 goto error;
2291
2292 if ((retval = parse_gravepages()) != 0)
2293 goto error;
2294
Ivan Djelicfc2ff592011-03-11 11:05:34 +01002295 retval = nand_scan_ident(nsmtd, 1, NULL);
2296 if (retval) {
2297 NS_ERR("cannot scan NAND Simulator device\n");
2298 if (retval > 0)
2299 retval = -ENXIO;
2300 goto error;
2301 }
2302
2303 if (bch) {
2304 unsigned int eccsteps, eccbytes;
2305 if (!mtd_nand_has_bch()) {
2306 NS_ERR("BCH ECC support is disabled\n");
2307 retval = -EINVAL;
2308 goto error;
2309 }
2310 /* use 512-byte ecc blocks */
2311 eccsteps = nsmtd->writesize/512;
2312 eccbytes = (bch*13+7)/8;
2313 /* do not bother supporting small page devices */
2314 if ((nsmtd->oobsize < 64) || !eccsteps) {
2315 NS_ERR("bch not available on small page devices\n");
2316 retval = -EINVAL;
2317 goto error;
2318 }
2319 if ((eccbytes*eccsteps+2) > nsmtd->oobsize) {
2320 NS_ERR("invalid bch value %u\n", bch);
2321 retval = -EINVAL;
2322 goto error;
2323 }
2324 chip->ecc.mode = NAND_ECC_SOFT_BCH;
2325 chip->ecc.size = 512;
2326 chip->ecc.bytes = eccbytes;
2327 NS_INFO("using %u-bit/%u bytes BCH ECC\n", bch, chip->ecc.size);
2328 }
2329
2330 retval = nand_scan_tail(nsmtd);
2331 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 NS_ERR("can't register NAND Simulator\n");
2333 if (retval > 0)
2334 retval = -ENXIO;
2335 goto error;
2336 }
2337
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002338 if (overridesize) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +00002339 uint64_t new_size = (uint64_t)nsmtd->erasesize << overridesize;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002340 if (new_size >> overridesize != nsmtd->erasesize) {
2341 NS_ERR("overridesize is too big\n");
2342 goto err_exit;
2343 }
2344 /* N.B. This relies on nand_scan not doing anything with the size before we change it */
2345 nsmtd->size = new_size;
2346 chip->chipsize = new_size;
Adrian Hunter6eda7a52008-05-30 15:56:26 +03002347 chip->chip_shift = ffs(nsmtd->erasesize) + overridesize - 1;
Adrian Hunter07293b22008-05-30 15:56:23 +03002348 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002349 }
2350
Adrian Hunter57aa6b52007-03-19 12:40:41 +02002351 if ((retval = setup_wear_reporting(nsmtd)) != 0)
2352 goto err_exit;
2353
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002354 if ((retval = init_nandsim(nsmtd)) != 0)
2355 goto err_exit;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002356
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002357 if ((retval = nand_default_bbt(nsmtd)) != 0)
Adrian Hunter514087e72007-03-19 12:47:45 +02002358 goto err_exit;
2359
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002360 if ((retval = parse_badblocks(nand, nsmtd)) != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002361 goto err_exit;
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002362
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002363 /* Register NAND partitions */
Jamie Ilesee0e87b2011-05-23 10:23:40 +01002364 retval = mtd_device_register(nsmtd, &nand->partitions[0],
2365 nand->nbparts);
2366 if (retval != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002367 goto err_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 return 0;
2370
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002371err_exit:
2372 free_nandsim(nand);
2373 nand_release(nsmtd);
2374 for (i = 0;i < ARRAY_SIZE(nand->partitions); ++i)
2375 kfree(nand->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376error:
2377 kfree(nsmtd);
Adrian Hunter514087e72007-03-19 12:47:45 +02002378 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 return retval;
2381}
2382
2383module_init(ns_init_module);
2384
2385/*
2386 * Module clean-up function
2387 */
2388static void __exit ns_cleanup_module(void)
2389{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002390 struct nandsim *ns = ((struct nand_chip *)nsmtd->priv)->priv;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002391 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393 free_nandsim(ns); /* Free nandsim private resources */
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002394 nand_release(nsmtd); /* Unregister driver */
2395 for (i = 0;i < ARRAY_SIZE(ns->partitions); ++i)
2396 kfree(ns->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 kfree(nsmtd); /* Free other structures */
Adrian Hunter514087e72007-03-19 12:47:45 +02002398 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399}
2400
2401module_exit(ns_cleanup_module);
2402
2403MODULE_LICENSE ("GPL");
2404MODULE_AUTHOR ("Artem B. Bityuckiy");
2405MODULE_DESCRIPTION ("The NAND flash simulator");