blob: c3c13e64a2f0c55117397ba9436ea35946669fd4 [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>
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -030031#include <linux/math64.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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/*
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000451 * Allocate array of page pointers, create slab allocation for an array
452 * and initialize the array by NULL pointers.
Vijay Kumard086d432006-10-08 22:02:31 +0530453 *
454 * RETURNS: 0 if success, -ENOMEM if memory alloc fails.
455 */
Vijay Kumara5602142006-10-14 21:33:34 +0530456static int alloc_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530457{
Adrian Huntera9fc8992008-11-12 16:06:07 +0200458 struct file *cfile;
459 int i, err;
460
461 if (cache_file) {
462 cfile = filp_open(cache_file, O_CREAT | O_RDWR | O_LARGEFILE, 0600);
463 if (IS_ERR(cfile))
464 return PTR_ERR(cfile);
465 if (!cfile->f_op || (!cfile->f_op->read && !cfile->f_op->aio_read)) {
466 NS_ERR("alloc_device: cache file not readable\n");
467 err = -EINVAL;
468 goto err_close;
469 }
470 if (!cfile->f_op->write && !cfile->f_op->aio_write) {
471 NS_ERR("alloc_device: cache file not writeable\n");
472 err = -EINVAL;
473 goto err_close;
474 }
Joe Perches309b5e42010-11-04 20:07:40 -0700475 ns->pages_written = vzalloc(ns->geom.pgnum);
Adrian Huntera9fc8992008-11-12 16:06:07 +0200476 if (!ns->pages_written) {
477 NS_ERR("alloc_device: unable to allocate pages written array\n");
478 err = -ENOMEM;
479 goto err_close;
480 }
481 ns->file_buf = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
482 if (!ns->file_buf) {
483 NS_ERR("alloc_device: unable to allocate file buf\n");
484 err = -ENOMEM;
485 goto err_free;
486 }
487 ns->cfile = cfile;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200488 return 0;
489 }
Vijay Kumard086d432006-10-08 22:02:31 +0530490
491 ns->pages = vmalloc(ns->geom.pgnum * sizeof(union ns_mem));
492 if (!ns->pages) {
Adrian Huntera9fc8992008-11-12 16:06:07 +0200493 NS_ERR("alloc_device: unable to allocate page array\n");
Vijay Kumard086d432006-10-08 22:02:31 +0530494 return -ENOMEM;
495 }
496 for (i = 0; i < ns->geom.pgnum; i++) {
497 ns->pages[i].byte = NULL;
498 }
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000499 ns->nand_pages_slab = kmem_cache_create("nandsim",
500 ns->geom.pgszoob, 0, 0, NULL);
501 if (!ns->nand_pages_slab) {
502 NS_ERR("cache_create: unable to create kmem_cache\n");
503 return -ENOMEM;
504 }
Vijay Kumard086d432006-10-08 22:02:31 +0530505
506 return 0;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200507
508err_free:
509 vfree(ns->pages_written);
510err_close:
511 filp_close(cfile, NULL);
512 return err;
Vijay Kumard086d432006-10-08 22:02:31 +0530513}
514
515/*
516 * Free any allocated pages, and free the array of page pointers.
517 */
Vijay Kumara5602142006-10-14 21:33:34 +0530518static void free_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530519{
520 int i;
521
Adrian Huntera9fc8992008-11-12 16:06:07 +0200522 if (ns->cfile) {
523 kfree(ns->file_buf);
524 vfree(ns->pages_written);
525 filp_close(ns->cfile, NULL);
526 return;
527 }
528
Vijay Kumard086d432006-10-08 22:02:31 +0530529 if (ns->pages) {
530 for (i = 0; i < ns->geom.pgnum; i++) {
531 if (ns->pages[i].byte)
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000532 kmem_cache_free(ns->nand_pages_slab,
533 ns->pages[i].byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530534 }
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000535 kmem_cache_destroy(ns->nand_pages_slab);
Vijay Kumard086d432006-10-08 22:02:31 +0530536 vfree(ns->pages);
537 }
538}
539
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200540static char *get_partition_name(int i)
541{
542 char buf[64];
543 sprintf(buf, "NAND simulator partition %d", i);
544 return kstrdup(buf, GFP_KERNEL);
545}
546
Vijay Kumard086d432006-10-08 22:02:31 +0530547/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * Initialize the nandsim structure.
549 *
550 * RETURNS: 0 if success, -ERRNO if failure.
551 */
Vijay Kumara5602142006-10-14 21:33:34 +0530552static int init_nandsim(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +0400554 struct nand_chip *chip = mtd->priv;
555 struct nandsim *ns = chip->priv;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200556 int i, ret = 0;
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000557 uint64_t remains;
558 uint64_t next_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (NS_IS_INITIALIZED(ns)) {
561 NS_ERR("init_nandsim: nandsim is already initialized\n");
562 return -EIO;
563 }
564
565 /* Force mtd to not do delays */
566 chip->chip_delay = 0;
567
568 /* Initialize the NAND flash parameters */
569 ns->busw = chip->options & NAND_BUSWIDTH_16 ? 16 : 8;
570 ns->geom.totsz = mtd->size;
Joern Engel28318772006-05-22 23:18:05 +0200571 ns->geom.pgsz = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 ns->geom.oobsz = mtd->oobsize;
573 ns->geom.secsz = mtd->erasesize;
574 ns->geom.pgszoob = ns->geom.pgsz + ns->geom.oobsz;
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -0300575 ns->geom.pgnum = div_u64(ns->geom.totsz, ns->geom.pgsz);
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300576 ns->geom.totszoob = ns->geom.totsz + (uint64_t)ns->geom.pgnum * ns->geom.oobsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 ns->geom.secshift = ffs(ns->geom.secsz) - 1;
578 ns->geom.pgshift = chip->page_shift;
579 ns->geom.oobshift = ffs(ns->geom.oobsz) - 1;
580 ns->geom.pgsec = ns->geom.secsz / ns->geom.pgsz;
581 ns->geom.secszoob = ns->geom.secsz + ns->geom.oobsz * ns->geom.pgsec;
582 ns->options = 0;
583
584 if (ns->geom.pgsz == 256) {
585 ns->options |= OPT_PAGE256;
586 }
587 else if (ns->geom.pgsz == 512) {
Brian Norris831d3162012-05-01 17:12:53 -0700588 ns->options |= OPT_PAGE512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (ns->busw == 8)
590 ns->options |= OPT_PAGE512_8BIT;
591 } else if (ns->geom.pgsz == 2048) {
592 ns->options |= OPT_PAGE2048;
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100593 } else if (ns->geom.pgsz == 4096) {
594 ns->options |= OPT_PAGE4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 } else {
596 NS_ERR("init_nandsim: unknown page size %u\n", ns->geom.pgsz);
597 return -EIO;
598 }
599
600 if (ns->options & OPT_SMALLPAGE) {
Adrian Hunteraf3decc2008-05-30 15:56:18 +0300601 if (ns->geom.totsz <= (32 << 20)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 ns->geom.pgaddrbytes = 3;
603 ns->geom.secaddrbytes = 2;
604 } else {
605 ns->geom.pgaddrbytes = 4;
606 ns->geom.secaddrbytes = 3;
607 }
608 } else {
609 if (ns->geom.totsz <= (128 << 20)) {
Artem Bityutskiy4a0c50c2006-12-06 21:52:32 +0200610 ns->geom.pgaddrbytes = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 ns->geom.secaddrbytes = 2;
612 } else {
613 ns->geom.pgaddrbytes = 5;
614 ns->geom.secaddrbytes = 3;
615 }
616 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000617
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200618 /* Fill the partition_info structure */
619 if (parts_num > ARRAY_SIZE(ns->partitions)) {
620 NS_ERR("too many partitions.\n");
621 ret = -EINVAL;
622 goto error;
623 }
624 remains = ns->geom.totsz;
625 next_offset = 0;
626 for (i = 0; i < parts_num; ++i) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000627 uint64_t part_sz = (uint64_t)parts[i] * ns->geom.secsz;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300628
629 if (!part_sz || part_sz > remains) {
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200630 NS_ERR("bad partition size.\n");
631 ret = -EINVAL;
632 goto error;
633 }
634 ns->partitions[i].name = get_partition_name(i);
635 ns->partitions[i].offset = next_offset;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300636 ns->partitions[i].size = part_sz;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200637 next_offset += ns->partitions[i].size;
638 remains -= ns->partitions[i].size;
639 }
640 ns->nbparts = parts_num;
641 if (remains) {
642 if (parts_num + 1 > ARRAY_SIZE(ns->partitions)) {
643 NS_ERR("too many partitions.\n");
644 ret = -EINVAL;
645 goto error;
646 }
647 ns->partitions[i].name = get_partition_name(i);
648 ns->partitions[i].offset = next_offset;
649 ns->partitions[i].size = remains;
650 ns->nbparts += 1;
651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Detect how many ID bytes the NAND chip outputs */
654 for (i = 0; nand_flash_ids[i].name != NULL; i++) {
655 if (second_id_byte != nand_flash_ids[i].id)
656 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
659 if (ns->busw == 16)
660 NS_WARN("16-bit flashes support wasn't tested\n");
661
Andrew Mortone4c094a2008-07-30 12:35:04 -0700662 printk("flash size: %llu MiB\n",
663 (unsigned long long)ns->geom.totsz >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 printk("page size: %u bytes\n", ns->geom.pgsz);
665 printk("OOB area size: %u bytes\n", ns->geom.oobsz);
666 printk("sector size: %u KiB\n", ns->geom.secsz >> 10);
667 printk("pages number: %u\n", ns->geom.pgnum);
668 printk("pages per sector: %u\n", ns->geom.pgsec);
669 printk("bus width: %u\n", ns->busw);
670 printk("bits in sector size: %u\n", ns->geom.secshift);
671 printk("bits in page size: %u\n", ns->geom.pgshift);
Andrew Mortone4c094a2008-07-30 12:35:04 -0700672 printk("bits in OOB size: %u\n", ns->geom.oobshift);
673 printk("flash size with OOB: %llu KiB\n",
674 (unsigned long long)ns->geom.totszoob >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 printk("page address bytes: %u\n", ns->geom.pgaddrbytes);
676 printk("sector address bytes: %u\n", ns->geom.secaddrbytes);
677 printk("options: %#x\n", ns->options);
678
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200679 if ((ret = alloc_device(ns)) != 0)
Vijay Kumard086d432006-10-08 22:02:31 +0530680 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 /* Allocate / initialize the internal buffer */
683 ns->buf.byte = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
684 if (!ns->buf.byte) {
685 NS_ERR("init_nandsim: unable to allocate %u bytes for the internal buffer\n",
686 ns->geom.pgszoob);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200687 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto error;
689 }
690 memset(ns->buf.byte, 0xFF, ns->geom.pgszoob);
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 0;
693
694error:
Vijay Kumard086d432006-10-08 22:02:31 +0530695 free_device(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200697 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700/*
701 * Free the nandsim structure.
702 */
Vijay Kumara5602142006-10-14 21:33:34 +0530703static void free_nandsim(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 kfree(ns->buf.byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530706 free_device(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 return;
709}
710
Adrian Hunter514087e72007-03-19 12:47:45 +0200711static int parse_badblocks(struct nandsim *ns, struct mtd_info *mtd)
712{
713 char *w;
714 int zero_ok;
715 unsigned int erase_block_no;
716 loff_t offset;
717
718 if (!badblocks)
719 return 0;
720 w = badblocks;
721 do {
722 zero_ok = (*w == '0' ? 1 : 0);
723 erase_block_no = simple_strtoul(w, &w, 0);
724 if (!zero_ok && !erase_block_no) {
725 NS_ERR("invalid badblocks.\n");
726 return -EINVAL;
727 }
728 offset = erase_block_no * ns->geom.secsz;
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200729 if (mtd_block_markbad(mtd, offset)) {
Adrian Hunter514087e72007-03-19 12:47:45 +0200730 NS_ERR("invalid badblocks.\n");
731 return -EINVAL;
732 }
733 if (*w == ',')
734 w += 1;
735 } while (*w);
736 return 0;
737}
738
739static int parse_weakblocks(void)
740{
741 char *w;
742 int zero_ok;
743 unsigned int erase_block_no;
744 unsigned int max_erases;
745 struct weak_block *wb;
746
747 if (!weakblocks)
748 return 0;
749 w = weakblocks;
750 do {
751 zero_ok = (*w == '0' ? 1 : 0);
752 erase_block_no = simple_strtoul(w, &w, 0);
753 if (!zero_ok && !erase_block_no) {
754 NS_ERR("invalid weakblocks.\n");
755 return -EINVAL;
756 }
757 max_erases = 3;
758 if (*w == ':') {
759 w += 1;
760 max_erases = simple_strtoul(w, &w, 0);
761 }
762 if (*w == ',')
763 w += 1;
764 wb = kzalloc(sizeof(*wb), GFP_KERNEL);
765 if (!wb) {
766 NS_ERR("unable to allocate memory.\n");
767 return -ENOMEM;
768 }
769 wb->erase_block_no = erase_block_no;
770 wb->max_erases = max_erases;
771 list_add(&wb->list, &weak_blocks);
772 } while (*w);
773 return 0;
774}
775
776static int erase_error(unsigned int erase_block_no)
777{
778 struct weak_block *wb;
779
780 list_for_each_entry(wb, &weak_blocks, list)
781 if (wb->erase_block_no == erase_block_no) {
782 if (wb->erases_done >= wb->max_erases)
783 return 1;
784 wb->erases_done += 1;
785 return 0;
786 }
787 return 0;
788}
789
790static int parse_weakpages(void)
791{
792 char *w;
793 int zero_ok;
794 unsigned int page_no;
795 unsigned int max_writes;
796 struct weak_page *wp;
797
798 if (!weakpages)
799 return 0;
800 w = weakpages;
801 do {
802 zero_ok = (*w == '0' ? 1 : 0);
803 page_no = simple_strtoul(w, &w, 0);
804 if (!zero_ok && !page_no) {
805 NS_ERR("invalid weakpagess.\n");
806 return -EINVAL;
807 }
808 max_writes = 3;
809 if (*w == ':') {
810 w += 1;
811 max_writes = simple_strtoul(w, &w, 0);
812 }
813 if (*w == ',')
814 w += 1;
815 wp = kzalloc(sizeof(*wp), GFP_KERNEL);
816 if (!wp) {
817 NS_ERR("unable to allocate memory.\n");
818 return -ENOMEM;
819 }
820 wp->page_no = page_no;
821 wp->max_writes = max_writes;
822 list_add(&wp->list, &weak_pages);
823 } while (*w);
824 return 0;
825}
826
827static int write_error(unsigned int page_no)
828{
829 struct weak_page *wp;
830
831 list_for_each_entry(wp, &weak_pages, list)
832 if (wp->page_no == page_no) {
833 if (wp->writes_done >= wp->max_writes)
834 return 1;
835 wp->writes_done += 1;
836 return 0;
837 }
838 return 0;
839}
840
841static int parse_gravepages(void)
842{
843 char *g;
844 int zero_ok;
845 unsigned int page_no;
846 unsigned int max_reads;
847 struct grave_page *gp;
848
849 if (!gravepages)
850 return 0;
851 g = gravepages;
852 do {
853 zero_ok = (*g == '0' ? 1 : 0);
854 page_no = simple_strtoul(g, &g, 0);
855 if (!zero_ok && !page_no) {
856 NS_ERR("invalid gravepagess.\n");
857 return -EINVAL;
858 }
859 max_reads = 3;
860 if (*g == ':') {
861 g += 1;
862 max_reads = simple_strtoul(g, &g, 0);
863 }
864 if (*g == ',')
865 g += 1;
866 gp = kzalloc(sizeof(*gp), GFP_KERNEL);
867 if (!gp) {
868 NS_ERR("unable to allocate memory.\n");
869 return -ENOMEM;
870 }
871 gp->page_no = page_no;
872 gp->max_reads = max_reads;
873 list_add(&gp->list, &grave_pages);
874 } while (*g);
875 return 0;
876}
877
878static int read_error(unsigned int page_no)
879{
880 struct grave_page *gp;
881
882 list_for_each_entry(gp, &grave_pages, list)
883 if (gp->page_no == page_no) {
884 if (gp->reads_done >= gp->max_reads)
885 return 1;
886 gp->reads_done += 1;
887 return 0;
888 }
889 return 0;
890}
891
892static void free_lists(void)
893{
894 struct list_head *pos, *n;
895 list_for_each_safe(pos, n, &weak_blocks) {
896 list_del(pos);
897 kfree(list_entry(pos, struct weak_block, list));
898 }
899 list_for_each_safe(pos, n, &weak_pages) {
900 list_del(pos);
901 kfree(list_entry(pos, struct weak_page, list));
902 }
903 list_for_each_safe(pos, n, &grave_pages) {
904 list_del(pos);
905 kfree(list_entry(pos, struct grave_page, list));
906 }
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200907 kfree(erase_block_wear);
908}
909
910static int setup_wear_reporting(struct mtd_info *mtd)
911{
912 size_t mem;
913
914 if (!rptwear)
915 return 0;
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -0300916 wear_eb_count = div_u64(mtd->size, mtd->erasesize);
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200917 mem = wear_eb_count * sizeof(unsigned long);
918 if (mem / sizeof(unsigned long) != wear_eb_count) {
919 NS_ERR("Too many erase blocks for wear reporting\n");
920 return -ENOMEM;
921 }
922 erase_block_wear = kzalloc(mem, GFP_KERNEL);
923 if (!erase_block_wear) {
924 NS_ERR("Too many erase blocks for wear reporting\n");
925 return -ENOMEM;
926 }
927 return 0;
928}
929
930static void update_wear(unsigned int erase_block_no)
931{
932 unsigned long wmin = -1, wmax = 0, avg;
933 unsigned long deciles[10], decile_max[10], tot = 0;
934 unsigned int i;
935
936 if (!erase_block_wear)
937 return;
938 total_wear += 1;
939 if (total_wear == 0)
940 NS_ERR("Erase counter total overflow\n");
941 erase_block_wear[erase_block_no] += 1;
942 if (erase_block_wear[erase_block_no] == 0)
943 NS_ERR("Erase counter overflow for erase block %u\n", erase_block_no);
944 rptwear_cnt += 1;
945 if (rptwear_cnt < rptwear)
946 return;
947 rptwear_cnt = 0;
948 /* Calc wear stats */
949 for (i = 0; i < wear_eb_count; ++i) {
950 unsigned long wear = erase_block_wear[i];
951 if (wear < wmin)
952 wmin = wear;
953 if (wear > wmax)
954 wmax = wear;
955 tot += wear;
956 }
957 for (i = 0; i < 9; ++i) {
958 deciles[i] = 0;
959 decile_max[i] = (wmax * (i + 1) + 5) / 10;
960 }
961 deciles[9] = 0;
962 decile_max[9] = wmax;
963 for (i = 0; i < wear_eb_count; ++i) {
964 int d;
965 unsigned long wear = erase_block_wear[i];
966 for (d = 0; d < 10; ++d)
967 if (wear <= decile_max[d]) {
968 deciles[d] += 1;
969 break;
970 }
971 }
972 avg = tot / wear_eb_count;
973 /* Output wear report */
974 NS_INFO("*** Wear Report ***\n");
975 NS_INFO("Total numbers of erases: %lu\n", tot);
976 NS_INFO("Number of erase blocks: %u\n", wear_eb_count);
977 NS_INFO("Average number of erases: %lu\n", avg);
978 NS_INFO("Maximum number of erases: %lu\n", wmax);
979 NS_INFO("Minimum number of erases: %lu\n", wmin);
980 for (i = 0; i < 10; ++i) {
981 unsigned long from = (i ? decile_max[i - 1] + 1 : 0);
982 if (from > decile_max[i])
983 continue;
984 NS_INFO("Number of ebs with erase counts from %lu to %lu : %lu\n",
985 from,
986 decile_max[i],
987 deciles[i]);
988 }
989 NS_INFO("*** End of Wear Report ***\n");
Adrian Hunter514087e72007-03-19 12:47:45 +0200990}
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * Returns the string representation of 'state' state.
994 */
Vijay Kumara5602142006-10-14 21:33:34 +0530995static char *get_state_name(uint32_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
997 switch (NS_STATE(state)) {
998 case STATE_CMD_READ0:
999 return "STATE_CMD_READ0";
1000 case STATE_CMD_READ1:
1001 return "STATE_CMD_READ1";
1002 case STATE_CMD_PAGEPROG:
1003 return "STATE_CMD_PAGEPROG";
1004 case STATE_CMD_READOOB:
1005 return "STATE_CMD_READOOB";
1006 case STATE_CMD_READSTART:
1007 return "STATE_CMD_READSTART";
1008 case STATE_CMD_ERASE1:
1009 return "STATE_CMD_ERASE1";
1010 case STATE_CMD_STATUS:
1011 return "STATE_CMD_STATUS";
1012 case STATE_CMD_STATUS_M:
1013 return "STATE_CMD_STATUS_M";
1014 case STATE_CMD_SEQIN:
1015 return "STATE_CMD_SEQIN";
1016 case STATE_CMD_READID:
1017 return "STATE_CMD_READID";
1018 case STATE_CMD_ERASE2:
1019 return "STATE_CMD_ERASE2";
1020 case STATE_CMD_RESET:
1021 return "STATE_CMD_RESET";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001022 case STATE_CMD_RNDOUT:
1023 return "STATE_CMD_RNDOUT";
1024 case STATE_CMD_RNDOUTSTART:
1025 return "STATE_CMD_RNDOUTSTART";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 case STATE_ADDR_PAGE:
1027 return "STATE_ADDR_PAGE";
1028 case STATE_ADDR_SEC:
1029 return "STATE_ADDR_SEC";
1030 case STATE_ADDR_ZERO:
1031 return "STATE_ADDR_ZERO";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001032 case STATE_ADDR_COLUMN:
1033 return "STATE_ADDR_COLUMN";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 case STATE_DATAIN:
1035 return "STATE_DATAIN";
1036 case STATE_DATAOUT:
1037 return "STATE_DATAOUT";
1038 case STATE_DATAOUT_ID:
1039 return "STATE_DATAOUT_ID";
1040 case STATE_DATAOUT_STATUS:
1041 return "STATE_DATAOUT_STATUS";
1042 case STATE_DATAOUT_STATUS_M:
1043 return "STATE_DATAOUT_STATUS_M";
1044 case STATE_READY:
1045 return "STATE_READY";
1046 case STATE_UNKNOWN:
1047 return "STATE_UNKNOWN";
1048 }
1049
1050 NS_ERR("get_state_name: unknown state, BUG\n");
1051 return NULL;
1052}
1053
1054/*
1055 * Check if command is valid.
1056 *
1057 * RETURNS: 1 if wrong command, 0 if right.
1058 */
Vijay Kumara5602142006-10-14 21:33:34 +05301059static int check_command(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 switch (cmd) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 case NAND_CMD_READ0:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001064 case NAND_CMD_READ1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 case NAND_CMD_READSTART:
1066 case NAND_CMD_PAGEPROG:
1067 case NAND_CMD_READOOB:
1068 case NAND_CMD_ERASE1:
1069 case NAND_CMD_STATUS:
1070 case NAND_CMD_SEQIN:
1071 case NAND_CMD_READID:
1072 case NAND_CMD_ERASE2:
1073 case NAND_CMD_RESET:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001074 case NAND_CMD_RNDOUT:
1075 case NAND_CMD_RNDOUTSTART:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 case NAND_CMD_STATUS_MULTI:
1079 default:
1080 return 1;
1081 }
1082}
1083
1084/*
1085 * Returns state after command is accepted by command number.
1086 */
Vijay Kumara5602142006-10-14 21:33:34 +05301087static uint32_t get_state_by_command(unsigned command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 switch (command) {
1090 case NAND_CMD_READ0:
1091 return STATE_CMD_READ0;
1092 case NAND_CMD_READ1:
1093 return STATE_CMD_READ1;
1094 case NAND_CMD_PAGEPROG:
1095 return STATE_CMD_PAGEPROG;
1096 case NAND_CMD_READSTART:
1097 return STATE_CMD_READSTART;
1098 case NAND_CMD_READOOB:
1099 return STATE_CMD_READOOB;
1100 case NAND_CMD_ERASE1:
1101 return STATE_CMD_ERASE1;
1102 case NAND_CMD_STATUS:
1103 return STATE_CMD_STATUS;
1104 case NAND_CMD_STATUS_MULTI:
1105 return STATE_CMD_STATUS_M;
1106 case NAND_CMD_SEQIN:
1107 return STATE_CMD_SEQIN;
1108 case NAND_CMD_READID:
1109 return STATE_CMD_READID;
1110 case NAND_CMD_ERASE2:
1111 return STATE_CMD_ERASE2;
1112 case NAND_CMD_RESET:
1113 return STATE_CMD_RESET;
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001114 case NAND_CMD_RNDOUT:
1115 return STATE_CMD_RNDOUT;
1116 case NAND_CMD_RNDOUTSTART:
1117 return STATE_CMD_RNDOUTSTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119
1120 NS_ERR("get_state_by_command: unknown command, BUG\n");
1121 return 0;
1122}
1123
1124/*
1125 * Move an address byte to the correspondent internal register.
1126 */
Vijay Kumara5602142006-10-14 21:33:34 +05301127static inline void accept_addr_byte(struct nandsim *ns, u_char bt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 uint byte = (uint)bt;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (ns->regs.count < (ns->geom.pgaddrbytes - ns->geom.secaddrbytes))
1132 ns->regs.column |= (byte << 8 * ns->regs.count);
1133 else {
1134 ns->regs.row |= (byte << 8 * (ns->regs.count -
1135 ns->geom.pgaddrbytes +
1136 ns->geom.secaddrbytes));
1137 }
1138
1139 return;
1140}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
1143 * Switch to STATE_READY state.
1144 */
Vijay Kumara5602142006-10-14 21:33:34 +05301145static inline void switch_to_ready_state(struct nandsim *ns, u_char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 NS_DBG("switch_to_ready_state: switch to %s state\n", get_state_name(STATE_READY));
1148
1149 ns->state = STATE_READY;
1150 ns->nxstate = STATE_UNKNOWN;
1151 ns->op = NULL;
1152 ns->npstates = 0;
1153 ns->stateidx = 0;
1154 ns->regs.num = 0;
1155 ns->regs.count = 0;
1156 ns->regs.off = 0;
1157 ns->regs.row = 0;
1158 ns->regs.column = 0;
1159 ns->regs.status = status;
1160}
1161
1162/*
1163 * If the operation isn't known yet, try to find it in the global array
1164 * of supported operations.
1165 *
1166 * Operation can be unknown because of the following.
srimugunthandaf05ec2010-11-13 12:46:05 +02001167 * 1. New command was accepted and this is the first call to find the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * correspondent states chain. In this case ns->npstates = 0;
srimugunthandaf05ec2010-11-13 12:46:05 +02001169 * 2. There are several operations which begin with the same command(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * (for example program from the second half and read from the
1171 * second half operations both begin with the READ1 command). In this
1172 * case the ns->pstates[] array contains previous states.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001173 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * Thus, the function tries to find operation containing the following
1175 * states (if the 'flag' parameter is 0):
1176 * ns->pstates[0], ... ns->pstates[ns->npstates], ns->state
1177 *
1178 * If (one and only one) matching operation is found, it is accepted (
1179 * ns->ops, ns->state, ns->nxstate are initialized, ns->npstate is
1180 * zeroed).
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001181 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001182 * If there are several matches, the current state is pushed to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 * ns->pstates.
1184 *
1185 * The operation can be unknown only while commands are input to the chip.
1186 * As soon as address command is accepted, the operation must be known.
1187 * In such situation the function is called with 'flag' != 0, and the
1188 * operation is searched using the following pattern:
1189 * ns->pstates[0], ... ns->pstates[ns->npstates], <address input>
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001190 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001191 * It is supposed that this pattern must either match one operation or
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * none. There can't be ambiguity in that case.
1193 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001194 * If no matches found, the function does the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 * 1. if there are saved states present, try to ignore them and search
1196 * again only using the last command. If nothing was found, switch
1197 * to the STATE_READY state.
1198 * 2. if there are no saved states, switch to the STATE_READY state.
1199 *
1200 * RETURNS: -2 - no matched operations found.
1201 * -1 - several matches.
1202 * 0 - operation is found.
1203 */
Vijay Kumara5602142006-10-14 21:33:34 +05301204static int find_operation(struct nandsim *ns, uint32_t flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 int opsfound = 0;
1207 int i, j, idx = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 for (i = 0; i < NS_OPER_NUM; i++) {
1210
1211 int found = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (!(ns->options & ops[i].reqopts))
1214 /* Ignore operations we can't perform */
1215 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (flag) {
1218 if (!(ops[i].states[ns->npstates] & STATE_ADDR_MASK))
1219 continue;
1220 } else {
1221 if (NS_STATE(ns->state) != NS_STATE(ops[i].states[ns->npstates]))
1222 continue;
1223 }
1224
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001225 for (j = 0; j < ns->npstates; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (NS_STATE(ops[i].states[j]) != NS_STATE(ns->pstates[j])
1227 && (ns->options & ops[idx].reqopts)) {
1228 found = 0;
1229 break;
1230 }
1231
1232 if (found) {
1233 idx = i;
1234 opsfound += 1;
1235 }
1236 }
1237
1238 if (opsfound == 1) {
1239 /* Exact match */
1240 ns->op = &ops[idx].states[0];
1241 if (flag) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001242 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 * In this case the find_operation function was
1244 * called when address has just began input. But it isn't
1245 * yet fully input and the current state must
1246 * not be one of STATE_ADDR_*, but the STATE_ADDR_*
1247 * state must be the next state (ns->nxstate).
1248 */
1249 ns->stateidx = ns->npstates - 1;
1250 } else {
1251 ns->stateidx = ns->npstates;
1252 }
1253 ns->npstates = 0;
1254 ns->state = ns->op[ns->stateidx];
1255 ns->nxstate = ns->op[ns->stateidx + 1];
1256 NS_DBG("find_operation: operation found, index: %d, state: %s, nxstate %s\n",
1257 idx, get_state_name(ns->state), get_state_name(ns->nxstate));
1258 return 0;
1259 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (opsfound == 0) {
1262 /* Nothing was found. Try to ignore previous commands (if any) and search again */
1263 if (ns->npstates != 0) {
1264 NS_DBG("find_operation: no operation found, try again with state %s\n",
1265 get_state_name(ns->state));
1266 ns->npstates = 0;
1267 return find_operation(ns, 0);
1268
1269 }
1270 NS_DBG("find_operation: no operations found\n");
1271 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1272 return -2;
1273 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (flag) {
1276 /* This shouldn't happen */
1277 NS_DBG("find_operation: BUG, operation must be known if address is input\n");
1278 return -2;
1279 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 NS_DBG("find_operation: there is still ambiguity\n");
1282
1283 ns->pstates[ns->npstates++] = ns->state;
1284
1285 return -1;
1286}
1287
Adrian Huntera9fc8992008-11-12 16:06:07 +02001288static void put_pages(struct nandsim *ns)
1289{
1290 int i;
1291
1292 for (i = 0; i < ns->held_cnt; i++)
1293 page_cache_release(ns->held_pages[i]);
1294}
1295
1296/* Get page cache pages in advance to provide NOFS memory allocation */
1297static int get_pages(struct nandsim *ns, struct file *file, size_t count, loff_t pos)
1298{
1299 pgoff_t index, start_index, end_index;
1300 struct page *page;
1301 struct address_space *mapping = file->f_mapping;
1302
1303 start_index = pos >> PAGE_CACHE_SHIFT;
1304 end_index = (pos + count - 1) >> PAGE_CACHE_SHIFT;
1305 if (end_index - start_index + 1 > NS_MAX_HELD_PAGES)
1306 return -EINVAL;
1307 ns->held_cnt = 0;
1308 for (index = start_index; index <= end_index; index++) {
1309 page = find_get_page(mapping, index);
1310 if (page == NULL) {
1311 page = find_or_create_page(mapping, index, GFP_NOFS);
1312 if (page == NULL) {
1313 write_inode_now(mapping->host, 1);
1314 page = find_or_create_page(mapping, index, GFP_NOFS);
1315 }
1316 if (page == NULL) {
1317 put_pages(ns);
1318 return -ENOMEM;
1319 }
1320 unlock_page(page);
1321 }
1322 ns->held_pages[ns->held_cnt++] = page;
1323 }
1324 return 0;
1325}
1326
1327static int set_memalloc(void)
1328{
1329 if (current->flags & PF_MEMALLOC)
1330 return 0;
1331 current->flags |= PF_MEMALLOC;
1332 return 1;
1333}
1334
1335static void clear_memalloc(int memalloc)
1336{
1337 if (memalloc)
1338 current->flags &= ~PF_MEMALLOC;
1339}
1340
1341static ssize_t read_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t *pos)
1342{
1343 mm_segment_t old_fs;
1344 ssize_t tx;
1345 int err, memalloc;
1346
1347 err = get_pages(ns, file, count, *pos);
1348 if (err)
1349 return err;
1350 old_fs = get_fs();
1351 set_fs(get_ds());
1352 memalloc = set_memalloc();
1353 tx = vfs_read(file, (char __user *)buf, count, pos);
1354 clear_memalloc(memalloc);
1355 set_fs(old_fs);
1356 put_pages(ns);
1357 return tx;
1358}
1359
1360static ssize_t write_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t *pos)
1361{
1362 mm_segment_t old_fs;
1363 ssize_t tx;
1364 int err, memalloc;
1365
1366 err = get_pages(ns, file, count, *pos);
1367 if (err)
1368 return err;
1369 old_fs = get_fs();
1370 set_fs(get_ds());
1371 memalloc = set_memalloc();
1372 tx = vfs_write(file, (char __user *)buf, count, pos);
1373 clear_memalloc(memalloc);
1374 set_fs(old_fs);
1375 put_pages(ns);
1376 return tx;
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379/*
Vijay Kumard086d432006-10-08 22:02:31 +05301380 * Returns a pointer to the current page.
1381 */
1382static inline union ns_mem *NS_GET_PAGE(struct nandsim *ns)
1383{
1384 return &(ns->pages[ns->regs.row]);
1385}
1386
1387/*
1388 * Retuns a pointer to the current byte, within the current page.
1389 */
1390static inline u_char *NS_PAGE_BYTE_OFF(struct nandsim *ns)
1391{
1392 return NS_GET_PAGE(ns)->byte + ns->regs.column + ns->regs.off;
1393}
1394
Adrian Huntera9fc8992008-11-12 16:06:07 +02001395int do_read_error(struct nandsim *ns, int num)
1396{
1397 unsigned int page_no = ns->regs.row;
1398
1399 if (read_error(page_no)) {
Akinobu Mita7e45bf82012-12-17 16:04:32 -08001400 prandom_bytes(ns->buf.byte, num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001401 NS_WARN("simulating read error in page %u\n", page_no);
1402 return 1;
1403 }
1404 return 0;
1405}
1406
1407void do_bit_flips(struct nandsim *ns, int num)
1408{
1409 if (bitflips && random32() < (1 << 22)) {
1410 int flips = 1;
1411 if (bitflips > 1)
1412 flips = (random32() % (int) bitflips) + 1;
1413 while (flips--) {
1414 int pos = random32() % (num * 8);
1415 ns->buf.byte[pos / 8] ^= (1 << (pos % 8));
1416 NS_WARN("read_page: flipping bit %d in page %d "
1417 "reading from %d ecc: corrected=%u failed=%u\n",
1418 pos, ns->regs.row, ns->regs.column + ns->regs.off,
1419 nsmtd->ecc_stats.corrected, nsmtd->ecc_stats.failed);
1420 }
1421 }
1422}
1423
Vijay Kumard086d432006-10-08 22:02:31 +05301424/*
1425 * Fill the NAND buffer with data read from the specified page.
1426 */
1427static void read_page(struct nandsim *ns, int num)
1428{
1429 union ns_mem *mypage;
1430
Adrian Huntera9fc8992008-11-12 16:06:07 +02001431 if (ns->cfile) {
1432 if (!ns->pages_written[ns->regs.row]) {
1433 NS_DBG("read_page: page %d not written\n", ns->regs.row);
1434 memset(ns->buf.byte, 0xFF, num);
1435 } else {
1436 loff_t pos;
1437 ssize_t tx;
1438
1439 NS_DBG("read_page: page %d written, reading from %d\n",
1440 ns->regs.row, ns->regs.column + ns->regs.off);
1441 if (do_read_error(ns, num))
1442 return;
1443 pos = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1444 tx = read_file(ns, ns->cfile, ns->buf.byte, num, &pos);
1445 if (tx != num) {
1446 NS_ERR("read_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1447 return;
1448 }
1449 do_bit_flips(ns, num);
1450 }
1451 return;
1452 }
1453
Vijay Kumard086d432006-10-08 22:02:31 +05301454 mypage = NS_GET_PAGE(ns);
1455 if (mypage->byte == NULL) {
1456 NS_DBG("read_page: page %d not allocated\n", ns->regs.row);
1457 memset(ns->buf.byte, 0xFF, num);
1458 } else {
1459 NS_DBG("read_page: page %d allocated, reading from %d\n",
1460 ns->regs.row, ns->regs.column + ns->regs.off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001461 if (do_read_error(ns, num))
Adrian Hunter514087e72007-03-19 12:47:45 +02001462 return;
Vijay Kumard086d432006-10-08 22:02:31 +05301463 memcpy(ns->buf.byte, NS_PAGE_BYTE_OFF(ns), num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001464 do_bit_flips(ns, num);
Vijay Kumard086d432006-10-08 22:02:31 +05301465 }
1466}
1467
1468/*
1469 * Erase all pages in the specified sector.
1470 */
1471static void erase_sector(struct nandsim *ns)
1472{
1473 union ns_mem *mypage;
1474 int i;
1475
Adrian Huntera9fc8992008-11-12 16:06:07 +02001476 if (ns->cfile) {
1477 for (i = 0; i < ns->geom.pgsec; i++)
1478 if (ns->pages_written[ns->regs.row + i]) {
1479 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row + i);
1480 ns->pages_written[ns->regs.row + i] = 0;
1481 }
1482 return;
1483 }
1484
Vijay Kumard086d432006-10-08 22:02:31 +05301485 mypage = NS_GET_PAGE(ns);
1486 for (i = 0; i < ns->geom.pgsec; i++) {
1487 if (mypage->byte != NULL) {
1488 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row+i);
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001489 kmem_cache_free(ns->nand_pages_slab, mypage->byte);
Vijay Kumard086d432006-10-08 22:02:31 +05301490 mypage->byte = NULL;
1491 }
1492 mypage++;
1493 }
1494}
1495
1496/*
1497 * Program the specified page with the contents from the NAND buffer.
1498 */
1499static int prog_page(struct nandsim *ns, int num)
1500{
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001501 int i;
Vijay Kumard086d432006-10-08 22:02:31 +05301502 union ns_mem *mypage;
1503 u_char *pg_off;
1504
Adrian Huntera9fc8992008-11-12 16:06:07 +02001505 if (ns->cfile) {
1506 loff_t off, pos;
1507 ssize_t tx;
1508 int all;
1509
1510 NS_DBG("prog_page: writing page %d\n", ns->regs.row);
1511 pg_off = ns->file_buf + ns->regs.column + ns->regs.off;
1512 off = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1513 if (!ns->pages_written[ns->regs.row]) {
1514 all = 1;
1515 memset(ns->file_buf, 0xff, ns->geom.pgszoob);
1516 } else {
1517 all = 0;
1518 pos = off;
1519 tx = read_file(ns, ns->cfile, pg_off, num, &pos);
1520 if (tx != num) {
1521 NS_ERR("prog_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1522 return -1;
1523 }
1524 }
1525 for (i = 0; i < num; i++)
1526 pg_off[i] &= ns->buf.byte[i];
1527 if (all) {
1528 pos = (loff_t)ns->regs.row * ns->geom.pgszoob;
1529 tx = write_file(ns, ns->cfile, ns->file_buf, ns->geom.pgszoob, &pos);
1530 if (tx != ns->geom.pgszoob) {
1531 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1532 return -1;
1533 }
1534 ns->pages_written[ns->regs.row] = 1;
1535 } else {
1536 pos = off;
1537 tx = write_file(ns, ns->cfile, pg_off, num, &pos);
1538 if (tx != num) {
1539 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1540 return -1;
1541 }
1542 }
1543 return 0;
1544 }
1545
Vijay Kumard086d432006-10-08 22:02:31 +05301546 mypage = NS_GET_PAGE(ns);
1547 if (mypage->byte == NULL) {
1548 NS_DBG("prog_page: allocating page %d\n", ns->regs.row);
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001549 /*
1550 * We allocate memory with GFP_NOFS because a flash FS may
1551 * utilize this. If it is holding an FS lock, then gets here,
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001552 * then kernel memory alloc runs writeback which goes to the FS
1553 * again and deadlocks. This was seen in practice.
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001554 */
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001555 mypage->byte = kmem_cache_alloc(ns->nand_pages_slab, GFP_NOFS);
Vijay Kumard086d432006-10-08 22:02:31 +05301556 if (mypage->byte == NULL) {
1557 NS_ERR("prog_page: error allocating memory for page %d\n", ns->regs.row);
1558 return -1;
1559 }
1560 memset(mypage->byte, 0xFF, ns->geom.pgszoob);
1561 }
1562
1563 pg_off = NS_PAGE_BYTE_OFF(ns);
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001564 for (i = 0; i < num; i++)
1565 pg_off[i] &= ns->buf.byte[i];
Vijay Kumard086d432006-10-08 22:02:31 +05301566
1567 return 0;
1568}
1569
1570/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 * If state has any action bit, perform this action.
1572 *
1573 * RETURNS: 0 if success, -1 if error.
1574 */
Vijay Kumara5602142006-10-14 21:33:34 +05301575static int do_state_action(struct nandsim *ns, uint32_t action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Vijay Kumard086d432006-10-08 22:02:31 +05301577 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 int busdiv = ns->busw == 8 ? 1 : 2;
Adrian Hunter514087e72007-03-19 12:47:45 +02001579 unsigned int erase_block_no, page_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 action &= ACTION_MASK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /* Check that page address input is correct */
1584 if (action != ACTION_SECERASE && ns->regs.row >= ns->geom.pgnum) {
1585 NS_WARN("do_state_action: wrong page number (%#x)\n", ns->regs.row);
1586 return -1;
1587 }
1588
1589 switch (action) {
1590
1591 case ACTION_CPY:
1592 /*
1593 * Copy page data to the internal buffer.
1594 */
1595
1596 /* Column shouldn't be very large */
1597 if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) {
1598 NS_ERR("do_state_action: column number is too large\n");
1599 break;
1600 }
1601 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
Vijay Kumard086d432006-10-08 22:02:31 +05301602 read_page(ns, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 NS_DBG("do_state_action: (ACTION_CPY:) copy %d bytes to int buf, raw offset %d\n",
1605 num, NS_RAW_OFFSET(ns) + ns->regs.off);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (ns->regs.off == 0)
1608 NS_LOG("read page %d\n", ns->regs.row);
1609 else if (ns->regs.off < ns->geom.pgsz)
1610 NS_LOG("read page %d (second half)\n", ns->regs.row);
1611 else
1612 NS_LOG("read OOB of page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 NS_UDELAY(access_delay);
1615 NS_UDELAY(input_cycle * ns->geom.pgsz / 1000 / busdiv);
1616
1617 break;
1618
1619 case ACTION_SECERASE:
1620 /*
1621 * Erase sector.
1622 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (ns->lines.wp) {
1625 NS_ERR("do_state_action: device is write-protected, ignore sector erase\n");
1626 return -1;
1627 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (ns->regs.row >= ns->geom.pgnum - ns->geom.pgsec
1630 || (ns->regs.row & ~(ns->geom.secsz - 1))) {
1631 NS_ERR("do_state_action: wrong sector address (%#x)\n", ns->regs.row);
1632 return -1;
1633 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 ns->regs.row = (ns->regs.row <<
1636 8 * (ns->geom.pgaddrbytes - ns->geom.secaddrbytes)) | ns->regs.column;
1637 ns->regs.column = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001638
Adrian Hunter514087e72007-03-19 12:47:45 +02001639 erase_block_no = ns->regs.row >> (ns->geom.secshift - ns->geom.pgshift);
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 NS_DBG("do_state_action: erase sector at address %#x, off = %d\n",
1642 ns->regs.row, NS_RAW_OFFSET(ns));
Adrian Hunter514087e72007-03-19 12:47:45 +02001643 NS_LOG("erase sector %u\n", erase_block_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Vijay Kumard086d432006-10-08 22:02:31 +05301645 erase_sector(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 NS_MDELAY(erase_delay);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001648
Adrian Hunter57aa6b52007-03-19 12:40:41 +02001649 if (erase_block_wear)
1650 update_wear(erase_block_no);
1651
Adrian Hunter514087e72007-03-19 12:47:45 +02001652 if (erase_error(erase_block_no)) {
1653 NS_WARN("simulating erase failure in erase block %u\n", erase_block_no);
1654 return -1;
1655 }
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 break;
1658
1659 case ACTION_PRGPAGE:
1660 /*
srimugunthandaf05ec2010-11-13 12:46:05 +02001661 * Program page - move internal buffer data to the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 */
1663
1664 if (ns->lines.wp) {
1665 NS_WARN("do_state_action: device is write-protected, programm\n");
1666 return -1;
1667 }
1668
1669 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1670 if (num != ns->regs.count) {
1671 NS_ERR("do_state_action: too few bytes were input (%d instead of %d)\n",
1672 ns->regs.count, num);
1673 return -1;
1674 }
1675
Vijay Kumard086d432006-10-08 22:02:31 +05301676 if (prog_page(ns, num) == -1)
1677 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Adrian Hunter514087e72007-03-19 12:47:45 +02001679 page_no = ns->regs.row;
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 NS_DBG("do_state_action: copy %d bytes from int buf to (%#x, %#x), raw off = %d\n",
1682 num, ns->regs.row, ns->regs.column, NS_RAW_OFFSET(ns) + ns->regs.off);
1683 NS_LOG("programm page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 NS_UDELAY(programm_delay);
1686 NS_UDELAY(output_cycle * ns->geom.pgsz / 1000 / busdiv);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001687
Adrian Hunter514087e72007-03-19 12:47:45 +02001688 if (write_error(page_no)) {
1689 NS_WARN("simulating write failure in page %u\n", page_no);
1690 return -1;
1691 }
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 case ACTION_ZEROOFF:
1696 NS_DBG("do_state_action: set internal offset to 0\n");
1697 ns->regs.off = 0;
1698 break;
1699
1700 case ACTION_HALFOFF:
1701 if (!(ns->options & OPT_PAGE512_8BIT)) {
1702 NS_ERR("do_state_action: BUG! can't skip half of page for non-512"
1703 "byte page size 8x chips\n");
1704 return -1;
1705 }
1706 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz/2);
1707 ns->regs.off = ns->geom.pgsz/2;
1708 break;
1709
1710 case ACTION_OOBOFF:
1711 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz);
1712 ns->regs.off = ns->geom.pgsz;
1713 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 default:
1716 NS_DBG("do_state_action: BUG! unknown action\n");
1717 }
1718
1719 return 0;
1720}
1721
1722/*
1723 * Switch simulator's state.
1724 */
Vijay Kumara5602142006-10-14 21:33:34 +05301725static void switch_state(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
1727 if (ns->op) {
1728 /*
1729 * The current operation have already been identified.
1730 * Just follow the states chain.
1731 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 ns->stateidx += 1;
1734 ns->state = ns->nxstate;
1735 ns->nxstate = ns->op[ns->stateidx + 1];
1736
1737 NS_DBG("switch_state: operation is known, switch to the next state, "
1738 "state: %s, nxstate: %s\n",
1739 get_state_name(ns->state), get_state_name(ns->nxstate));
1740
1741 /* See, whether we need to do some action */
1742 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1743 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1744 return;
1745 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 } else {
1748 /*
1749 * We don't yet know which operation we perform.
1750 * Try to identify it.
1751 */
1752
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001753 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 * The only event causing the switch_state function to
1755 * be called with yet unknown operation is new command.
1756 */
1757 ns->state = get_state_by_command(ns->regs.command);
1758
1759 NS_DBG("switch_state: operation is unknown, try to find it\n");
1760
1761 if (find_operation(ns, 0) != 0)
1762 return;
1763
1764 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1765 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1766 return;
1767 }
1768 }
1769
1770 /* For 16x devices column means the page offset in words */
1771 if ((ns->nxstate & STATE_ADDR_MASK) && ns->busw == 16) {
1772 NS_DBG("switch_state: double the column number for 16x device\n");
1773 ns->regs.column <<= 1;
1774 }
1775
1776 if (NS_STATE(ns->nxstate) == STATE_READY) {
1777 /*
1778 * The current state is the last. Return to STATE_READY
1779 */
1780
1781 u_char status = NS_STATUS_OK(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 /* In case of data states, see if all bytes were input/output */
1784 if ((ns->state & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK))
1785 && ns->regs.count != ns->regs.num) {
1786 NS_WARN("switch_state: not all bytes were processed, %d left\n",
1787 ns->regs.num - ns->regs.count);
1788 status = NS_STATUS_FAILED(ns);
1789 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 NS_DBG("switch_state: operation complete, switch to STATE_READY state\n");
1792
1793 switch_to_ready_state(ns, status);
1794
1795 return;
1796 } else if (ns->nxstate & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001797 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 * If the next state is data input/output, switch to it now
1799 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 ns->state = ns->nxstate;
1802 ns->nxstate = ns->op[++ns->stateidx + 1];
1803 ns->regs.num = ns->regs.count = 0;
1804
1805 NS_DBG("switch_state: the next state is data I/O, switch, "
1806 "state: %s, nxstate: %s\n",
1807 get_state_name(ns->state), get_state_name(ns->nxstate));
1808
1809 /*
1810 * Set the internal register to the count of bytes which
1811 * are expected to be input or output
1812 */
1813 switch (NS_STATE(ns->state)) {
1814 case STATE_DATAIN:
1815 case STATE_DATAOUT:
1816 ns->regs.num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1817 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 case STATE_DATAOUT_ID:
1820 ns->regs.num = ns->geom.idbytes;
1821 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 case STATE_DATAOUT_STATUS:
1824 case STATE_DATAOUT_STATUS_M:
1825 ns->regs.count = ns->regs.num = 0;
1826 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 default:
1829 NS_ERR("switch_state: BUG! unknown data state\n");
1830 }
1831
1832 } else if (ns->nxstate & STATE_ADDR_MASK) {
1833 /*
1834 * If the next state is address input, set the internal
1835 * register to the number of expected address bytes
1836 */
1837
1838 ns->regs.count = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 switch (NS_STATE(ns->nxstate)) {
1841 case STATE_ADDR_PAGE:
1842 ns->regs.num = ns->geom.pgaddrbytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 break;
1845 case STATE_ADDR_SEC:
1846 ns->regs.num = ns->geom.secaddrbytes;
1847 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 case STATE_ADDR_ZERO:
1850 ns->regs.num = 1;
1851 break;
1852
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001853 case STATE_ADDR_COLUMN:
1854 /* Column address is always 2 bytes */
1855 ns->regs.num = ns->geom.pgaddrbytes - ns->geom.secaddrbytes;
1856 break;
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 default:
1859 NS_ERR("switch_state: BUG! unknown address state\n");
1860 }
1861 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001862 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * Just reset internal counters.
1864 */
1865
1866 ns->regs.num = 0;
1867 ns->regs.count = 0;
1868 }
1869}
1870
Vijay Kumara5602142006-10-14 21:33:34 +05301871static u_char ns_nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001873 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 u_char outb = 0x00;
1875
1876 /* Sanity and correctness checks */
1877 if (!ns->lines.ce) {
1878 NS_ERR("read_byte: chip is disabled, return %#x\n", (uint)outb);
1879 return outb;
1880 }
1881 if (ns->lines.ale || ns->lines.cle) {
1882 NS_ERR("read_byte: ALE or CLE pin is high, return %#x\n", (uint)outb);
1883 return outb;
1884 }
1885 if (!(ns->state & STATE_DATAOUT_MASK)) {
1886 NS_WARN("read_byte: unexpected data output cycle, state is %s "
1887 "return %#x\n", get_state_name(ns->state), (uint)outb);
1888 return outb;
1889 }
1890
1891 /* Status register may be read as many times as it is wanted */
1892 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS) {
1893 NS_DBG("read_byte: return %#x status\n", ns->regs.status);
1894 return ns->regs.status;
1895 }
1896
1897 /* Check if there is any data in the internal buffer which may be read */
1898 if (ns->regs.count == ns->regs.num) {
1899 NS_WARN("read_byte: no more data to output, return %#x\n", (uint)outb);
1900 return outb;
1901 }
1902
1903 switch (NS_STATE(ns->state)) {
1904 case STATE_DATAOUT:
1905 if (ns->busw == 8) {
1906 outb = ns->buf.byte[ns->regs.count];
1907 ns->regs.count += 1;
1908 } else {
1909 outb = (u_char)cpu_to_le16(ns->buf.word[ns->regs.count >> 1]);
1910 ns->regs.count += 2;
1911 }
1912 break;
1913 case STATE_DATAOUT_ID:
1914 NS_DBG("read_byte: read ID byte %d, total = %d\n", ns->regs.count, ns->regs.num);
1915 outb = ns->ids[ns->regs.count];
1916 ns->regs.count += 1;
1917 break;
1918 default:
1919 BUG();
1920 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (ns->regs.count == ns->regs.num) {
1923 NS_DBG("read_byte: all bytes were read\n");
1924
Brian Norris831d3162012-05-01 17:12:53 -07001925 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 switch_state(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return outb;
1930}
1931
Vijay Kumara5602142006-10-14 21:33:34 +05301932static void ns_nand_write_byte(struct mtd_info *mtd, u_char byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001934 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 /* Sanity and correctness checks */
1937 if (!ns->lines.ce) {
1938 NS_ERR("write_byte: chip is disabled, ignore write\n");
1939 return;
1940 }
1941 if (ns->lines.ale && ns->lines.cle) {
1942 NS_ERR("write_byte: ALE and CLE pins are high simultaneously, ignore write\n");
1943 return;
1944 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (ns->lines.cle == 1) {
1947 /*
1948 * The byte written is a command.
1949 */
1950
1951 if (byte == NAND_CMD_RESET) {
1952 NS_LOG("reset chip\n");
1953 switch_to_ready_state(ns, NS_STATUS_OK(ns));
1954 return;
1955 }
1956
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001957 /* Check that the command byte is correct */
1958 if (check_command(byte)) {
1959 NS_ERR("write_byte: unknown command %#x\n", (uint)byte);
1960 return;
1961 }
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS
1964 || NS_STATE(ns->state) == STATE_DATAOUT_STATUS_M
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001965 || NS_STATE(ns->state) == STATE_DATAOUT) {
1966 int row = ns->regs.row;
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 switch_state(ns);
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001969 if (byte == NAND_CMD_RNDOUT)
1970 ns->regs.row = row;
1971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 /* Check if chip is expecting command */
1974 if (NS_STATE(ns->nxstate) != STATE_UNKNOWN && !(ns->nxstate & STATE_CMD_MASK)) {
Adrian Hunter9359ea462008-11-12 16:06:40 +02001975 /* Do not warn if only 2 id bytes are read */
1976 if (!(ns->regs.command == NAND_CMD_READID &&
1977 NS_STATE(ns->state) == STATE_DATAOUT_ID && ns->regs.count == 2)) {
1978 /*
1979 * We are in situation when something else (not command)
1980 * was expected but command was input. In this case ignore
1981 * previous command(s)/state(s) and accept the last one.
1982 */
1983 NS_WARN("write_byte: command (%#x) wasn't expected, expected state is %s, "
1984 "ignore previous states\n", (uint)byte, get_state_name(ns->nxstate));
1985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1987 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 NS_DBG("command byte corresponding to %s state accepted\n",
1990 get_state_name(get_state_by_command(byte)));
1991 ns->regs.command = byte;
1992 switch_state(ns);
1993
1994 } else if (ns->lines.ale == 1) {
1995 /*
1996 * The byte written is an address.
1997 */
1998
1999 if (NS_STATE(ns->nxstate) == STATE_UNKNOWN) {
2000
2001 NS_DBG("write_byte: operation isn't known yet, identify it\n");
2002
2003 if (find_operation(ns, 1) < 0)
2004 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
2007 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2008 return;
2009 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 ns->regs.count = 0;
2012 switch (NS_STATE(ns->nxstate)) {
2013 case STATE_ADDR_PAGE:
2014 ns->regs.num = ns->geom.pgaddrbytes;
2015 break;
2016 case STATE_ADDR_SEC:
2017 ns->regs.num = ns->geom.secaddrbytes;
2018 break;
2019 case STATE_ADDR_ZERO:
2020 ns->regs.num = 1;
2021 break;
2022 default:
2023 BUG();
2024 }
2025 }
2026
2027 /* Check that chip is expecting address */
2028 if (!(ns->nxstate & STATE_ADDR_MASK)) {
2029 NS_ERR("write_byte: address (%#x) isn't expected, expected state is %s, "
2030 "switch to STATE_READY\n", (uint)byte, get_state_name(ns->nxstate));
2031 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2032 return;
2033 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /* Check if this is expected byte */
2036 if (ns->regs.count == ns->regs.num) {
2037 NS_ERR("write_byte: no more address bytes expected\n");
2038 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2039 return;
2040 }
2041
2042 accept_addr_byte(ns, byte);
2043
2044 ns->regs.count += 1;
2045
2046 NS_DBG("write_byte: address byte %#x was accepted (%d bytes input, %d expected)\n",
2047 (uint)byte, ns->regs.count, ns->regs.num);
2048
2049 if (ns->regs.count == ns->regs.num) {
2050 NS_DBG("address (%#x, %#x) is accepted\n", ns->regs.row, ns->regs.column);
2051 switch_state(ns);
2052 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 } else {
2055 /*
2056 * The byte written is an input data.
2057 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* Check that chip is expecting data input */
2060 if (!(ns->state & STATE_DATAIN_MASK)) {
2061 NS_ERR("write_byte: data input (%#x) isn't expected, state is %s, "
2062 "switch to %s\n", (uint)byte,
2063 get_state_name(ns->state), get_state_name(STATE_READY));
2064 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2065 return;
2066 }
2067
2068 /* Check if this is expected byte */
2069 if (ns->regs.count == ns->regs.num) {
2070 NS_WARN("write_byte: %u input bytes has already been accepted, ignore write\n",
2071 ns->regs.num);
2072 return;
2073 }
2074
2075 if (ns->busw == 8) {
2076 ns->buf.byte[ns->regs.count] = byte;
2077 ns->regs.count += 1;
2078 } else {
2079 ns->buf.word[ns->regs.count >> 1] = cpu_to_le16((uint16_t)byte);
2080 ns->regs.count += 2;
2081 }
2082 }
2083
2084 return;
2085}
2086
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002087static void ns_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int bitmask)
2088{
2089 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
2090
2091 ns->lines.cle = bitmask & NAND_CLE ? 1 : 0;
2092 ns->lines.ale = bitmask & NAND_ALE ? 1 : 0;
2093 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0;
2094
2095 if (cmd != NAND_CMD_NONE)
2096 ns_nand_write_byte(mtd, cmd);
2097}
2098
Vijay Kumara5602142006-10-14 21:33:34 +05302099static int ns_device_ready(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
2101 NS_DBG("device_ready\n");
2102 return 1;
2103}
2104
Vijay Kumara5602142006-10-14 21:33:34 +05302105static uint16_t ns_nand_read_word(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 struct nand_chip *chip = (struct nand_chip *)mtd->priv;
2108
2109 NS_DBG("read_word\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return chip->read_byte(mtd) | (chip->read_byte(mtd) << 8);
2112}
2113
Vijay Kumara5602142006-10-14 21:33:34 +05302114static void ns_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002116 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* Check that chip is expecting data input */
2119 if (!(ns->state & STATE_DATAIN_MASK)) {
2120 NS_ERR("write_buf: data input isn't expected, state is %s, "
2121 "switch to STATE_READY\n", get_state_name(ns->state));
2122 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2123 return;
2124 }
2125
2126 /* Check if these are expected bytes */
2127 if (ns->regs.count + len > ns->regs.num) {
2128 NS_ERR("write_buf: too many input bytes\n");
2129 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2130 return;
2131 }
2132
2133 memcpy(ns->buf.byte + ns->regs.count, buf, len);
2134 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 if (ns->regs.count == ns->regs.num) {
2137 NS_DBG("write_buf: %d bytes were written\n", ns->regs.count);
2138 }
2139}
2140
Vijay Kumara5602142006-10-14 21:33:34 +05302141static void ns_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002143 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* Sanity and correctness checks */
2146 if (!ns->lines.ce) {
2147 NS_ERR("read_buf: chip is disabled\n");
2148 return;
2149 }
2150 if (ns->lines.ale || ns->lines.cle) {
2151 NS_ERR("read_buf: ALE or CLE pin is high\n");
2152 return;
2153 }
2154 if (!(ns->state & STATE_DATAOUT_MASK)) {
2155 NS_WARN("read_buf: unexpected data output cycle, current state is %s\n",
2156 get_state_name(ns->state));
2157 return;
2158 }
2159
2160 if (NS_STATE(ns->state) != STATE_DATAOUT) {
2161 int i;
2162
2163 for (i = 0; i < len; i++)
2164 buf[i] = ((struct nand_chip *)mtd->priv)->read_byte(mtd);
2165
2166 return;
2167 }
2168
2169 /* Check if these are expected bytes */
2170 if (ns->regs.count + len > ns->regs.num) {
2171 NS_ERR("read_buf: too many bytes to read\n");
2172 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2173 return;
2174 }
2175
2176 memcpy(buf, ns->buf.byte + ns->regs.count, len);
2177 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (ns->regs.count == ns->regs.num) {
Brian Norris831d3162012-05-01 17:12:53 -07002180 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 switch_state(ns);
2182 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return;
2185}
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 * Module initialization function
2189 */
Adrian Bunk2b9175c2005-11-29 14:49:38 +00002190static int __init ns_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
2192 struct nand_chip *chip;
2193 struct nandsim *nand;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002194 int retval = -ENOMEM, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 if (bus_width != 8 && bus_width != 16) {
2197 NS_ERR("wrong bus width (%d), use only 8 or 16\n", bus_width);
2198 return -EINVAL;
2199 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /* Allocate and initialize mtd_info, nand_chip and nandsim structures */
Burman Yan95b93a02006-11-15 21:10:29 +02002202 nsmtd = kzalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 + sizeof(struct nandsim), GFP_KERNEL);
2204 if (!nsmtd) {
2205 NS_ERR("unable to allocate core structures.\n");
2206 return -ENOMEM;
2207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 chip = (struct nand_chip *)(nsmtd + 1);
2209 nsmtd->priv = (void *)chip;
2210 nand = (struct nandsim *)(chip + 1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002211 chip->priv = (void *)nand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /*
2214 * Register simulator's callbacks.
2215 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002216 chip->cmd_ctrl = ns_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 chip->read_byte = ns_nand_read_byte;
2218 chip->dev_ready = ns_device_ready;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 chip->write_buf = ns_nand_write_buf;
2220 chip->read_buf = ns_nand_read_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 chip->read_word = ns_nand_read_word;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002222 chip->ecc.mode = NAND_ECC_SOFT;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002223 /* The NAND_SKIP_BBTSCAN option is necessary for 'overridesize' */
2224 /* and 'badblocks' parameters to work */
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002225 chip->options |= NAND_SKIP_BBTSCAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002227 switch (bbt) {
2228 case 2:
Brian Norrisa40f7342011-05-31 16:31:22 -07002229 chip->bbt_options |= NAND_BBT_NO_OOB;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002230 case 1:
Brian Norrisbb9ebd4e2011-05-31 16:31:23 -07002231 chip->bbt_options |= NAND_BBT_USE_FLASH;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002232 case 0:
2233 break;
2234 default:
2235 NS_ERR("bbt has to be 0..2\n");
2236 retval = -EINVAL;
2237 goto error;
2238 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002239 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 * Perform minimum nandsim structure initialization to handle
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002241 * the initial ID read command correctly
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 */
2243 if (third_id_byte != 0xFF || fourth_id_byte != 0xFF)
2244 nand->geom.idbytes = 4;
2245 else
2246 nand->geom.idbytes = 2;
2247 nand->regs.status = NS_STATUS_OK(nand);
2248 nand->nxstate = STATE_UNKNOWN;
2249 nand->options |= OPT_PAGE256; /* temporary value */
2250 nand->ids[0] = first_id_byte;
2251 nand->ids[1] = second_id_byte;
2252 nand->ids[2] = third_id_byte;
2253 nand->ids[3] = fourth_id_byte;
2254 if (bus_width == 16) {
2255 nand->busw = 16;
2256 chip->options |= NAND_BUSWIDTH_16;
2257 }
2258
David Woodhouse552d9202006-05-14 01:20:46 +01002259 nsmtd->owner = THIS_MODULE;
2260
Adrian Hunter514087e72007-03-19 12:47:45 +02002261 if ((retval = parse_weakblocks()) != 0)
2262 goto error;
2263
2264 if ((retval = parse_weakpages()) != 0)
2265 goto error;
2266
2267 if ((retval = parse_gravepages()) != 0)
2268 goto error;
2269
Ivan Djelicfc2ff592011-03-11 11:05:34 +01002270 retval = nand_scan_ident(nsmtd, 1, NULL);
2271 if (retval) {
2272 NS_ERR("cannot scan NAND Simulator device\n");
2273 if (retval > 0)
2274 retval = -ENXIO;
2275 goto error;
2276 }
2277
2278 if (bch) {
2279 unsigned int eccsteps, eccbytes;
2280 if (!mtd_nand_has_bch()) {
2281 NS_ERR("BCH ECC support is disabled\n");
2282 retval = -EINVAL;
2283 goto error;
2284 }
2285 /* use 512-byte ecc blocks */
2286 eccsteps = nsmtd->writesize/512;
2287 eccbytes = (bch*13+7)/8;
2288 /* do not bother supporting small page devices */
2289 if ((nsmtd->oobsize < 64) || !eccsteps) {
2290 NS_ERR("bch not available on small page devices\n");
2291 retval = -EINVAL;
2292 goto error;
2293 }
2294 if ((eccbytes*eccsteps+2) > nsmtd->oobsize) {
2295 NS_ERR("invalid bch value %u\n", bch);
2296 retval = -EINVAL;
2297 goto error;
2298 }
2299 chip->ecc.mode = NAND_ECC_SOFT_BCH;
2300 chip->ecc.size = 512;
2301 chip->ecc.bytes = eccbytes;
2302 NS_INFO("using %u-bit/%u bytes BCH ECC\n", bch, chip->ecc.size);
2303 }
2304
2305 retval = nand_scan_tail(nsmtd);
2306 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 NS_ERR("can't register NAND Simulator\n");
2308 if (retval > 0)
2309 retval = -ENXIO;
2310 goto error;
2311 }
2312
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002313 if (overridesize) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +00002314 uint64_t new_size = (uint64_t)nsmtd->erasesize << overridesize;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002315 if (new_size >> overridesize != nsmtd->erasesize) {
2316 NS_ERR("overridesize is too big\n");
Richard Genoudbb0a13a2012-09-12 14:26:26 +02002317 retval = -EINVAL;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002318 goto err_exit;
2319 }
2320 /* N.B. This relies on nand_scan not doing anything with the size before we change it */
2321 nsmtd->size = new_size;
2322 chip->chipsize = new_size;
Adrian Hunter6eda7a52008-05-30 15:56:26 +03002323 chip->chip_shift = ffs(nsmtd->erasesize) + overridesize - 1;
Adrian Hunter07293b22008-05-30 15:56:23 +03002324 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002325 }
2326
Adrian Hunter57aa6b52007-03-19 12:40:41 +02002327 if ((retval = setup_wear_reporting(nsmtd)) != 0)
2328 goto err_exit;
2329
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002330 if ((retval = init_nandsim(nsmtd)) != 0)
2331 goto err_exit;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002332
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002333 if ((retval = nand_default_bbt(nsmtd)) != 0)
Adrian Hunter514087e72007-03-19 12:47:45 +02002334 goto err_exit;
2335
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002336 if ((retval = parse_badblocks(nand, nsmtd)) != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002337 goto err_exit;
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002338
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002339 /* Register NAND partitions */
Jamie Ilesee0e87b2011-05-23 10:23:40 +01002340 retval = mtd_device_register(nsmtd, &nand->partitions[0],
2341 nand->nbparts);
2342 if (retval != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002343 goto err_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 return 0;
2346
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002347err_exit:
2348 free_nandsim(nand);
2349 nand_release(nsmtd);
2350 for (i = 0;i < ARRAY_SIZE(nand->partitions); ++i)
2351 kfree(nand->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352error:
2353 kfree(nsmtd);
Adrian Hunter514087e72007-03-19 12:47:45 +02002354 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 return retval;
2357}
2358
2359module_init(ns_init_module);
2360
2361/*
2362 * Module clean-up function
2363 */
2364static void __exit ns_cleanup_module(void)
2365{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002366 struct nandsim *ns = ((struct nand_chip *)nsmtd->priv)->priv;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002367 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 free_nandsim(ns); /* Free nandsim private resources */
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002370 nand_release(nsmtd); /* Unregister driver */
2371 for (i = 0;i < ARRAY_SIZE(ns->partitions); ++i)
2372 kfree(ns->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 kfree(nsmtd); /* Free other structures */
Adrian Hunter514087e72007-03-19 12:47:45 +02002374 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377module_exit(ns_cleanup_module);
2378
2379MODULE_LICENSE ("GPL");
2380MODULE_AUTHOR ("Artem B. Bityuckiy");
2381MODULE_DESCRIPTION ("The NAND flash simulator");