blob: a932c485eb04f9c7b40c14c924c7aa172be71244 [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)) {
1400 int i;
1401 memset(ns->buf.byte, 0xFF, num);
1402 for (i = 0; i < num; ++i)
1403 ns->buf.byte[i] = random32();
1404 NS_WARN("simulating read error in page %u\n", page_no);
1405 return 1;
1406 }
1407 return 0;
1408}
1409
1410void do_bit_flips(struct nandsim *ns, int num)
1411{
1412 if (bitflips && random32() < (1 << 22)) {
1413 int flips = 1;
1414 if (bitflips > 1)
1415 flips = (random32() % (int) bitflips) + 1;
1416 while (flips--) {
1417 int pos = random32() % (num * 8);
1418 ns->buf.byte[pos / 8] ^= (1 << (pos % 8));
1419 NS_WARN("read_page: flipping bit %d in page %d "
1420 "reading from %d ecc: corrected=%u failed=%u\n",
1421 pos, ns->regs.row, ns->regs.column + ns->regs.off,
1422 nsmtd->ecc_stats.corrected, nsmtd->ecc_stats.failed);
1423 }
1424 }
1425}
1426
Vijay Kumard086d432006-10-08 22:02:31 +05301427/*
1428 * Fill the NAND buffer with data read from the specified page.
1429 */
1430static void read_page(struct nandsim *ns, int num)
1431{
1432 union ns_mem *mypage;
1433
Adrian Huntera9fc8992008-11-12 16:06:07 +02001434 if (ns->cfile) {
1435 if (!ns->pages_written[ns->regs.row]) {
1436 NS_DBG("read_page: page %d not written\n", ns->regs.row);
1437 memset(ns->buf.byte, 0xFF, num);
1438 } else {
1439 loff_t pos;
1440 ssize_t tx;
1441
1442 NS_DBG("read_page: page %d written, reading from %d\n",
1443 ns->regs.row, ns->regs.column + ns->regs.off);
1444 if (do_read_error(ns, num))
1445 return;
1446 pos = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1447 tx = read_file(ns, ns->cfile, ns->buf.byte, num, &pos);
1448 if (tx != num) {
1449 NS_ERR("read_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1450 return;
1451 }
1452 do_bit_flips(ns, num);
1453 }
1454 return;
1455 }
1456
Vijay Kumard086d432006-10-08 22:02:31 +05301457 mypage = NS_GET_PAGE(ns);
1458 if (mypage->byte == NULL) {
1459 NS_DBG("read_page: page %d not allocated\n", ns->regs.row);
1460 memset(ns->buf.byte, 0xFF, num);
1461 } else {
1462 NS_DBG("read_page: page %d allocated, reading from %d\n",
1463 ns->regs.row, ns->regs.column + ns->regs.off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001464 if (do_read_error(ns, num))
Adrian Hunter514087e72007-03-19 12:47:45 +02001465 return;
Vijay Kumard086d432006-10-08 22:02:31 +05301466 memcpy(ns->buf.byte, NS_PAGE_BYTE_OFF(ns), num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001467 do_bit_flips(ns, num);
Vijay Kumard086d432006-10-08 22:02:31 +05301468 }
1469}
1470
1471/*
1472 * Erase all pages in the specified sector.
1473 */
1474static void erase_sector(struct nandsim *ns)
1475{
1476 union ns_mem *mypage;
1477 int i;
1478
Adrian Huntera9fc8992008-11-12 16:06:07 +02001479 if (ns->cfile) {
1480 for (i = 0; i < ns->geom.pgsec; i++)
1481 if (ns->pages_written[ns->regs.row + i]) {
1482 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row + i);
1483 ns->pages_written[ns->regs.row + i] = 0;
1484 }
1485 return;
1486 }
1487
Vijay Kumard086d432006-10-08 22:02:31 +05301488 mypage = NS_GET_PAGE(ns);
1489 for (i = 0; i < ns->geom.pgsec; i++) {
1490 if (mypage->byte != NULL) {
1491 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row+i);
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001492 kmem_cache_free(ns->nand_pages_slab, mypage->byte);
Vijay Kumard086d432006-10-08 22:02:31 +05301493 mypage->byte = NULL;
1494 }
1495 mypage++;
1496 }
1497}
1498
1499/*
1500 * Program the specified page with the contents from the NAND buffer.
1501 */
1502static int prog_page(struct nandsim *ns, int num)
1503{
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001504 int i;
Vijay Kumard086d432006-10-08 22:02:31 +05301505 union ns_mem *mypage;
1506 u_char *pg_off;
1507
Adrian Huntera9fc8992008-11-12 16:06:07 +02001508 if (ns->cfile) {
1509 loff_t off, pos;
1510 ssize_t tx;
1511 int all;
1512
1513 NS_DBG("prog_page: writing page %d\n", ns->regs.row);
1514 pg_off = ns->file_buf + ns->regs.column + ns->regs.off;
1515 off = (loff_t)ns->regs.row * ns->geom.pgszoob + ns->regs.column + ns->regs.off;
1516 if (!ns->pages_written[ns->regs.row]) {
1517 all = 1;
1518 memset(ns->file_buf, 0xff, ns->geom.pgszoob);
1519 } else {
1520 all = 0;
1521 pos = off;
1522 tx = read_file(ns, ns->cfile, pg_off, num, &pos);
1523 if (tx != num) {
1524 NS_ERR("prog_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1525 return -1;
1526 }
1527 }
1528 for (i = 0; i < num; i++)
1529 pg_off[i] &= ns->buf.byte[i];
1530 if (all) {
1531 pos = (loff_t)ns->regs.row * ns->geom.pgszoob;
1532 tx = write_file(ns, ns->cfile, ns->file_buf, ns->geom.pgszoob, &pos);
1533 if (tx != ns->geom.pgszoob) {
1534 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1535 return -1;
1536 }
1537 ns->pages_written[ns->regs.row] = 1;
1538 } else {
1539 pos = off;
1540 tx = write_file(ns, ns->cfile, pg_off, num, &pos);
1541 if (tx != num) {
1542 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1543 return -1;
1544 }
1545 }
1546 return 0;
1547 }
1548
Vijay Kumard086d432006-10-08 22:02:31 +05301549 mypage = NS_GET_PAGE(ns);
1550 if (mypage->byte == NULL) {
1551 NS_DBG("prog_page: allocating page %d\n", ns->regs.row);
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001552 /*
1553 * We allocate memory with GFP_NOFS because a flash FS may
1554 * utilize this. If it is holding an FS lock, then gets here,
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001555 * then kernel memory alloc runs writeback which goes to the FS
1556 * again and deadlocks. This was seen in practice.
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001557 */
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001558 mypage->byte = kmem_cache_alloc(ns->nand_pages_slab, GFP_NOFS);
Vijay Kumard086d432006-10-08 22:02:31 +05301559 if (mypage->byte == NULL) {
1560 NS_ERR("prog_page: error allocating memory for page %d\n", ns->regs.row);
1561 return -1;
1562 }
1563 memset(mypage->byte, 0xFF, ns->geom.pgszoob);
1564 }
1565
1566 pg_off = NS_PAGE_BYTE_OFF(ns);
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001567 for (i = 0; i < num; i++)
1568 pg_off[i] &= ns->buf.byte[i];
Vijay Kumard086d432006-10-08 22:02:31 +05301569
1570 return 0;
1571}
1572
1573/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 * If state has any action bit, perform this action.
1575 *
1576 * RETURNS: 0 if success, -1 if error.
1577 */
Vijay Kumara5602142006-10-14 21:33:34 +05301578static int do_state_action(struct nandsim *ns, uint32_t action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Vijay Kumard086d432006-10-08 22:02:31 +05301580 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 int busdiv = ns->busw == 8 ? 1 : 2;
Adrian Hunter514087e72007-03-19 12:47:45 +02001582 unsigned int erase_block_no, page_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 action &= ACTION_MASK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 /* Check that page address input is correct */
1587 if (action != ACTION_SECERASE && ns->regs.row >= ns->geom.pgnum) {
1588 NS_WARN("do_state_action: wrong page number (%#x)\n", ns->regs.row);
1589 return -1;
1590 }
1591
1592 switch (action) {
1593
1594 case ACTION_CPY:
1595 /*
1596 * Copy page data to the internal buffer.
1597 */
1598
1599 /* Column shouldn't be very large */
1600 if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) {
1601 NS_ERR("do_state_action: column number is too large\n");
1602 break;
1603 }
1604 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
Vijay Kumard086d432006-10-08 22:02:31 +05301605 read_page(ns, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 NS_DBG("do_state_action: (ACTION_CPY:) copy %d bytes to int buf, raw offset %d\n",
1608 num, NS_RAW_OFFSET(ns) + ns->regs.off);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (ns->regs.off == 0)
1611 NS_LOG("read page %d\n", ns->regs.row);
1612 else if (ns->regs.off < ns->geom.pgsz)
1613 NS_LOG("read page %d (second half)\n", ns->regs.row);
1614 else
1615 NS_LOG("read OOB of page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 NS_UDELAY(access_delay);
1618 NS_UDELAY(input_cycle * ns->geom.pgsz / 1000 / busdiv);
1619
1620 break;
1621
1622 case ACTION_SECERASE:
1623 /*
1624 * Erase sector.
1625 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (ns->lines.wp) {
1628 NS_ERR("do_state_action: device is write-protected, ignore sector erase\n");
1629 return -1;
1630 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (ns->regs.row >= ns->geom.pgnum - ns->geom.pgsec
1633 || (ns->regs.row & ~(ns->geom.secsz - 1))) {
1634 NS_ERR("do_state_action: wrong sector address (%#x)\n", ns->regs.row);
1635 return -1;
1636 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 ns->regs.row = (ns->regs.row <<
1639 8 * (ns->geom.pgaddrbytes - ns->geom.secaddrbytes)) | ns->regs.column;
1640 ns->regs.column = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001641
Adrian Hunter514087e72007-03-19 12:47:45 +02001642 erase_block_no = ns->regs.row >> (ns->geom.secshift - ns->geom.pgshift);
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 NS_DBG("do_state_action: erase sector at address %#x, off = %d\n",
1645 ns->regs.row, NS_RAW_OFFSET(ns));
Adrian Hunter514087e72007-03-19 12:47:45 +02001646 NS_LOG("erase sector %u\n", erase_block_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Vijay Kumard086d432006-10-08 22:02:31 +05301648 erase_sector(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 NS_MDELAY(erase_delay);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001651
Adrian Hunter57aa6b52007-03-19 12:40:41 +02001652 if (erase_block_wear)
1653 update_wear(erase_block_no);
1654
Adrian Hunter514087e72007-03-19 12:47:45 +02001655 if (erase_error(erase_block_no)) {
1656 NS_WARN("simulating erase failure in erase block %u\n", erase_block_no);
1657 return -1;
1658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
1661
1662 case ACTION_PRGPAGE:
1663 /*
srimugunthandaf05ec2010-11-13 12:46:05 +02001664 * Program page - move internal buffer data to the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 */
1666
1667 if (ns->lines.wp) {
1668 NS_WARN("do_state_action: device is write-protected, programm\n");
1669 return -1;
1670 }
1671
1672 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1673 if (num != ns->regs.count) {
1674 NS_ERR("do_state_action: too few bytes were input (%d instead of %d)\n",
1675 ns->regs.count, num);
1676 return -1;
1677 }
1678
Vijay Kumard086d432006-10-08 22:02:31 +05301679 if (prog_page(ns, num) == -1)
1680 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Adrian Hunter514087e72007-03-19 12:47:45 +02001682 page_no = ns->regs.row;
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 NS_DBG("do_state_action: copy %d bytes from int buf to (%#x, %#x), raw off = %d\n",
1685 num, ns->regs.row, ns->regs.column, NS_RAW_OFFSET(ns) + ns->regs.off);
1686 NS_LOG("programm page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 NS_UDELAY(programm_delay);
1689 NS_UDELAY(output_cycle * ns->geom.pgsz / 1000 / busdiv);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001690
Adrian Hunter514087e72007-03-19 12:47:45 +02001691 if (write_error(page_no)) {
1692 NS_WARN("simulating write failure in page %u\n", page_no);
1693 return -1;
1694 }
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 case ACTION_ZEROOFF:
1699 NS_DBG("do_state_action: set internal offset to 0\n");
1700 ns->regs.off = 0;
1701 break;
1702
1703 case ACTION_HALFOFF:
1704 if (!(ns->options & OPT_PAGE512_8BIT)) {
1705 NS_ERR("do_state_action: BUG! can't skip half of page for non-512"
1706 "byte page size 8x chips\n");
1707 return -1;
1708 }
1709 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz/2);
1710 ns->regs.off = ns->geom.pgsz/2;
1711 break;
1712
1713 case ACTION_OOBOFF:
1714 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz);
1715 ns->regs.off = ns->geom.pgsz;
1716 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 default:
1719 NS_DBG("do_state_action: BUG! unknown action\n");
1720 }
1721
1722 return 0;
1723}
1724
1725/*
1726 * Switch simulator's state.
1727 */
Vijay Kumara5602142006-10-14 21:33:34 +05301728static void switch_state(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 if (ns->op) {
1731 /*
1732 * The current operation have already been identified.
1733 * Just follow the states chain.
1734 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 ns->stateidx += 1;
1737 ns->state = ns->nxstate;
1738 ns->nxstate = ns->op[ns->stateidx + 1];
1739
1740 NS_DBG("switch_state: operation is known, switch to the next state, "
1741 "state: %s, nxstate: %s\n",
1742 get_state_name(ns->state), get_state_name(ns->nxstate));
1743
1744 /* See, whether we need to do some action */
1745 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1746 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1747 return;
1748 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 } else {
1751 /*
1752 * We don't yet know which operation we perform.
1753 * Try to identify it.
1754 */
1755
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001756 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 * The only event causing the switch_state function to
1758 * be called with yet unknown operation is new command.
1759 */
1760 ns->state = get_state_by_command(ns->regs.command);
1761
1762 NS_DBG("switch_state: operation is unknown, try to find it\n");
1763
1764 if (find_operation(ns, 0) != 0)
1765 return;
1766
1767 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1768 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1769 return;
1770 }
1771 }
1772
1773 /* For 16x devices column means the page offset in words */
1774 if ((ns->nxstate & STATE_ADDR_MASK) && ns->busw == 16) {
1775 NS_DBG("switch_state: double the column number for 16x device\n");
1776 ns->regs.column <<= 1;
1777 }
1778
1779 if (NS_STATE(ns->nxstate) == STATE_READY) {
1780 /*
1781 * The current state is the last. Return to STATE_READY
1782 */
1783
1784 u_char status = NS_STATUS_OK(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 /* In case of data states, see if all bytes were input/output */
1787 if ((ns->state & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK))
1788 && ns->regs.count != ns->regs.num) {
1789 NS_WARN("switch_state: not all bytes were processed, %d left\n",
1790 ns->regs.num - ns->regs.count);
1791 status = NS_STATUS_FAILED(ns);
1792 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 NS_DBG("switch_state: operation complete, switch to STATE_READY state\n");
1795
1796 switch_to_ready_state(ns, status);
1797
1798 return;
1799 } else if (ns->nxstate & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001800 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 * If the next state is data input/output, switch to it now
1802 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 ns->state = ns->nxstate;
1805 ns->nxstate = ns->op[++ns->stateidx + 1];
1806 ns->regs.num = ns->regs.count = 0;
1807
1808 NS_DBG("switch_state: the next state is data I/O, switch, "
1809 "state: %s, nxstate: %s\n",
1810 get_state_name(ns->state), get_state_name(ns->nxstate));
1811
1812 /*
1813 * Set the internal register to the count of bytes which
1814 * are expected to be input or output
1815 */
1816 switch (NS_STATE(ns->state)) {
1817 case STATE_DATAIN:
1818 case STATE_DATAOUT:
1819 ns->regs.num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1820 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 case STATE_DATAOUT_ID:
1823 ns->regs.num = ns->geom.idbytes;
1824 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 case STATE_DATAOUT_STATUS:
1827 case STATE_DATAOUT_STATUS_M:
1828 ns->regs.count = ns->regs.num = 0;
1829 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 default:
1832 NS_ERR("switch_state: BUG! unknown data state\n");
1833 }
1834
1835 } else if (ns->nxstate & STATE_ADDR_MASK) {
1836 /*
1837 * If the next state is address input, set the internal
1838 * register to the number of expected address bytes
1839 */
1840
1841 ns->regs.count = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 switch (NS_STATE(ns->nxstate)) {
1844 case STATE_ADDR_PAGE:
1845 ns->regs.num = ns->geom.pgaddrbytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 break;
1848 case STATE_ADDR_SEC:
1849 ns->regs.num = ns->geom.secaddrbytes;
1850 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 case STATE_ADDR_ZERO:
1853 ns->regs.num = 1;
1854 break;
1855
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001856 case STATE_ADDR_COLUMN:
1857 /* Column address is always 2 bytes */
1858 ns->regs.num = ns->geom.pgaddrbytes - ns->geom.secaddrbytes;
1859 break;
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 default:
1862 NS_ERR("switch_state: BUG! unknown address state\n");
1863 }
1864 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001865 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 * Just reset internal counters.
1867 */
1868
1869 ns->regs.num = 0;
1870 ns->regs.count = 0;
1871 }
1872}
1873
Vijay Kumara5602142006-10-14 21:33:34 +05301874static u_char ns_nand_read_byte(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001876 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 u_char outb = 0x00;
1878
1879 /* Sanity and correctness checks */
1880 if (!ns->lines.ce) {
1881 NS_ERR("read_byte: chip is disabled, return %#x\n", (uint)outb);
1882 return outb;
1883 }
1884 if (ns->lines.ale || ns->lines.cle) {
1885 NS_ERR("read_byte: ALE or CLE pin is high, return %#x\n", (uint)outb);
1886 return outb;
1887 }
1888 if (!(ns->state & STATE_DATAOUT_MASK)) {
1889 NS_WARN("read_byte: unexpected data output cycle, state is %s "
1890 "return %#x\n", get_state_name(ns->state), (uint)outb);
1891 return outb;
1892 }
1893
1894 /* Status register may be read as many times as it is wanted */
1895 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS) {
1896 NS_DBG("read_byte: return %#x status\n", ns->regs.status);
1897 return ns->regs.status;
1898 }
1899
1900 /* Check if there is any data in the internal buffer which may be read */
1901 if (ns->regs.count == ns->regs.num) {
1902 NS_WARN("read_byte: no more data to output, return %#x\n", (uint)outb);
1903 return outb;
1904 }
1905
1906 switch (NS_STATE(ns->state)) {
1907 case STATE_DATAOUT:
1908 if (ns->busw == 8) {
1909 outb = ns->buf.byte[ns->regs.count];
1910 ns->regs.count += 1;
1911 } else {
1912 outb = (u_char)cpu_to_le16(ns->buf.word[ns->regs.count >> 1]);
1913 ns->regs.count += 2;
1914 }
1915 break;
1916 case STATE_DATAOUT_ID:
1917 NS_DBG("read_byte: read ID byte %d, total = %d\n", ns->regs.count, ns->regs.num);
1918 outb = ns->ids[ns->regs.count];
1919 ns->regs.count += 1;
1920 break;
1921 default:
1922 BUG();
1923 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (ns->regs.count == ns->regs.num) {
1926 NS_DBG("read_byte: all bytes were read\n");
1927
Brian Norris831d3162012-05-01 17:12:53 -07001928 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 switch_state(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return outb;
1933}
1934
Vijay Kumara5602142006-10-14 21:33:34 +05301935static void ns_nand_write_byte(struct mtd_info *mtd, u_char byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04001937 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /* Sanity and correctness checks */
1940 if (!ns->lines.ce) {
1941 NS_ERR("write_byte: chip is disabled, ignore write\n");
1942 return;
1943 }
1944 if (ns->lines.ale && ns->lines.cle) {
1945 NS_ERR("write_byte: ALE and CLE pins are high simultaneously, ignore write\n");
1946 return;
1947 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 if (ns->lines.cle == 1) {
1950 /*
1951 * The byte written is a command.
1952 */
1953
1954 if (byte == NAND_CMD_RESET) {
1955 NS_LOG("reset chip\n");
1956 switch_to_ready_state(ns, NS_STATUS_OK(ns));
1957 return;
1958 }
1959
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001960 /* Check that the command byte is correct */
1961 if (check_command(byte)) {
1962 NS_ERR("write_byte: unknown command %#x\n", (uint)byte);
1963 return;
1964 }
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS
1967 || NS_STATE(ns->state) == STATE_DATAOUT_STATUS_M
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001968 || NS_STATE(ns->state) == STATE_DATAOUT) {
1969 int row = ns->regs.row;
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 switch_state(ns);
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001972 if (byte == NAND_CMD_RNDOUT)
1973 ns->regs.row = row;
1974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 /* Check if chip is expecting command */
1977 if (NS_STATE(ns->nxstate) != STATE_UNKNOWN && !(ns->nxstate & STATE_CMD_MASK)) {
Adrian Hunter9359ea462008-11-12 16:06:40 +02001978 /* Do not warn if only 2 id bytes are read */
1979 if (!(ns->regs.command == NAND_CMD_READID &&
1980 NS_STATE(ns->state) == STATE_DATAOUT_ID && ns->regs.count == 2)) {
1981 /*
1982 * We are in situation when something else (not command)
1983 * was expected but command was input. In this case ignore
1984 * previous command(s)/state(s) and accept the last one.
1985 */
1986 NS_WARN("write_byte: command (%#x) wasn't expected, expected state is %s, "
1987 "ignore previous states\n", (uint)byte, get_state_name(ns->nxstate));
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1990 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 NS_DBG("command byte corresponding to %s state accepted\n",
1993 get_state_name(get_state_by_command(byte)));
1994 ns->regs.command = byte;
1995 switch_state(ns);
1996
1997 } else if (ns->lines.ale == 1) {
1998 /*
1999 * The byte written is an address.
2000 */
2001
2002 if (NS_STATE(ns->nxstate) == STATE_UNKNOWN) {
2003
2004 NS_DBG("write_byte: operation isn't known yet, identify it\n");
2005
2006 if (find_operation(ns, 1) < 0)
2007 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
2010 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2011 return;
2012 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 ns->regs.count = 0;
2015 switch (NS_STATE(ns->nxstate)) {
2016 case STATE_ADDR_PAGE:
2017 ns->regs.num = ns->geom.pgaddrbytes;
2018 break;
2019 case STATE_ADDR_SEC:
2020 ns->regs.num = ns->geom.secaddrbytes;
2021 break;
2022 case STATE_ADDR_ZERO:
2023 ns->regs.num = 1;
2024 break;
2025 default:
2026 BUG();
2027 }
2028 }
2029
2030 /* Check that chip is expecting address */
2031 if (!(ns->nxstate & STATE_ADDR_MASK)) {
2032 NS_ERR("write_byte: address (%#x) isn't expected, expected state is %s, "
2033 "switch to STATE_READY\n", (uint)byte, get_state_name(ns->nxstate));
2034 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2035 return;
2036 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /* Check if this is expected byte */
2039 if (ns->regs.count == ns->regs.num) {
2040 NS_ERR("write_byte: no more address bytes expected\n");
2041 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2042 return;
2043 }
2044
2045 accept_addr_byte(ns, byte);
2046
2047 ns->regs.count += 1;
2048
2049 NS_DBG("write_byte: address byte %#x was accepted (%d bytes input, %d expected)\n",
2050 (uint)byte, ns->regs.count, ns->regs.num);
2051
2052 if (ns->regs.count == ns->regs.num) {
2053 NS_DBG("address (%#x, %#x) is accepted\n", ns->regs.row, ns->regs.column);
2054 switch_state(ns);
2055 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 } else {
2058 /*
2059 * The byte written is an input data.
2060 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 /* Check that chip is expecting data input */
2063 if (!(ns->state & STATE_DATAIN_MASK)) {
2064 NS_ERR("write_byte: data input (%#x) isn't expected, state is %s, "
2065 "switch to %s\n", (uint)byte,
2066 get_state_name(ns->state), get_state_name(STATE_READY));
2067 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2068 return;
2069 }
2070
2071 /* Check if this is expected byte */
2072 if (ns->regs.count == ns->regs.num) {
2073 NS_WARN("write_byte: %u input bytes has already been accepted, ignore write\n",
2074 ns->regs.num);
2075 return;
2076 }
2077
2078 if (ns->busw == 8) {
2079 ns->buf.byte[ns->regs.count] = byte;
2080 ns->regs.count += 1;
2081 } else {
2082 ns->buf.word[ns->regs.count >> 1] = cpu_to_le16((uint16_t)byte);
2083 ns->regs.count += 2;
2084 }
2085 }
2086
2087 return;
2088}
2089
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002090static void ns_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int bitmask)
2091{
2092 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
2093
2094 ns->lines.cle = bitmask & NAND_CLE ? 1 : 0;
2095 ns->lines.ale = bitmask & NAND_ALE ? 1 : 0;
2096 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0;
2097
2098 if (cmd != NAND_CMD_NONE)
2099 ns_nand_write_byte(mtd, cmd);
2100}
2101
Vijay Kumara5602142006-10-14 21:33:34 +05302102static int ns_device_ready(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
2104 NS_DBG("device_ready\n");
2105 return 1;
2106}
2107
Vijay Kumara5602142006-10-14 21:33:34 +05302108static uint16_t ns_nand_read_word(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 struct nand_chip *chip = (struct nand_chip *)mtd->priv;
2111
2112 NS_DBG("read_word\n");
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return chip->read_byte(mtd) | (chip->read_byte(mtd) << 8);
2115}
2116
Vijay Kumara5602142006-10-14 21:33:34 +05302117static void ns_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002119 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 /* Check that chip is expecting data input */
2122 if (!(ns->state & STATE_DATAIN_MASK)) {
2123 NS_ERR("write_buf: data input isn't expected, state is %s, "
2124 "switch to STATE_READY\n", get_state_name(ns->state));
2125 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2126 return;
2127 }
2128
2129 /* Check if these are expected bytes */
2130 if (ns->regs.count + len > ns->regs.num) {
2131 NS_ERR("write_buf: too many input bytes\n");
2132 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2133 return;
2134 }
2135
2136 memcpy(ns->buf.byte + ns->regs.count, buf, len);
2137 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 if (ns->regs.count == ns->regs.num) {
2140 NS_DBG("write_buf: %d bytes were written\n", ns->regs.count);
2141 }
2142}
2143
Vijay Kumara5602142006-10-14 21:33:34 +05302144static void ns_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002146 struct nandsim *ns = ((struct nand_chip *)mtd->priv)->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 /* Sanity and correctness checks */
2149 if (!ns->lines.ce) {
2150 NS_ERR("read_buf: chip is disabled\n");
2151 return;
2152 }
2153 if (ns->lines.ale || ns->lines.cle) {
2154 NS_ERR("read_buf: ALE or CLE pin is high\n");
2155 return;
2156 }
2157 if (!(ns->state & STATE_DATAOUT_MASK)) {
2158 NS_WARN("read_buf: unexpected data output cycle, current state is %s\n",
2159 get_state_name(ns->state));
2160 return;
2161 }
2162
2163 if (NS_STATE(ns->state) != STATE_DATAOUT) {
2164 int i;
2165
2166 for (i = 0; i < len; i++)
2167 buf[i] = ((struct nand_chip *)mtd->priv)->read_byte(mtd);
2168
2169 return;
2170 }
2171
2172 /* Check if these are expected bytes */
2173 if (ns->regs.count + len > ns->regs.num) {
2174 NS_ERR("read_buf: too many bytes to read\n");
2175 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2176 return;
2177 }
2178
2179 memcpy(buf, ns->buf.byte + ns->regs.count, len);
2180 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (ns->regs.count == ns->regs.num) {
Brian Norris831d3162012-05-01 17:12:53 -07002183 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 switch_state(ns);
2185 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return;
2188}
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 * Module initialization function
2192 */
Adrian Bunk2b9175c2005-11-29 14:49:38 +00002193static int __init ns_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
2195 struct nand_chip *chip;
2196 struct nandsim *nand;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002197 int retval = -ENOMEM, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 if (bus_width != 8 && bus_width != 16) {
2200 NS_ERR("wrong bus width (%d), use only 8 or 16\n", bus_width);
2201 return -EINVAL;
2202 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /* Allocate and initialize mtd_info, nand_chip and nandsim structures */
Burman Yan95b93a02006-11-15 21:10:29 +02002205 nsmtd = kzalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 + sizeof(struct nandsim), GFP_KERNEL);
2207 if (!nsmtd) {
2208 NS_ERR("unable to allocate core structures.\n");
2209 return -ENOMEM;
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 chip = (struct nand_chip *)(nsmtd + 1);
2212 nsmtd->priv = (void *)chip;
2213 nand = (struct nandsim *)(chip + 1);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002214 chip->priv = (void *)nand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /*
2217 * Register simulator's callbacks.
2218 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02002219 chip->cmd_ctrl = ns_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 chip->read_byte = ns_nand_read_byte;
2221 chip->dev_ready = ns_device_ready;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 chip->write_buf = ns_nand_write_buf;
2223 chip->read_buf = ns_nand_read_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 chip->read_word = ns_nand_read_word;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002225 chip->ecc.mode = NAND_ECC_SOFT;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002226 /* The NAND_SKIP_BBTSCAN option is necessary for 'overridesize' */
2227 /* and 'badblocks' parameters to work */
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002228 chip->options |= NAND_SKIP_BBTSCAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002230 switch (bbt) {
2231 case 2:
Brian Norrisa40f7342011-05-31 16:31:22 -07002232 chip->bbt_options |= NAND_BBT_NO_OOB;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002233 case 1:
Brian Norrisbb9ebd42011-05-31 16:31:23 -07002234 chip->bbt_options |= NAND_BBT_USE_FLASH;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002235 case 0:
2236 break;
2237 default:
2238 NS_ERR("bbt has to be 0..2\n");
2239 retval = -EINVAL;
2240 goto error;
2241 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002242 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 * Perform minimum nandsim structure initialization to handle
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002244 * the initial ID read command correctly
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 */
2246 if (third_id_byte != 0xFF || fourth_id_byte != 0xFF)
2247 nand->geom.idbytes = 4;
2248 else
2249 nand->geom.idbytes = 2;
2250 nand->regs.status = NS_STATUS_OK(nand);
2251 nand->nxstate = STATE_UNKNOWN;
2252 nand->options |= OPT_PAGE256; /* temporary value */
2253 nand->ids[0] = first_id_byte;
2254 nand->ids[1] = second_id_byte;
2255 nand->ids[2] = third_id_byte;
2256 nand->ids[3] = fourth_id_byte;
2257 if (bus_width == 16) {
2258 nand->busw = 16;
2259 chip->options |= NAND_BUSWIDTH_16;
2260 }
2261
David Woodhouse552d9202006-05-14 01:20:46 +01002262 nsmtd->owner = THIS_MODULE;
2263
Adrian Hunter514087e72007-03-19 12:47:45 +02002264 if ((retval = parse_weakblocks()) != 0)
2265 goto error;
2266
2267 if ((retval = parse_weakpages()) != 0)
2268 goto error;
2269
2270 if ((retval = parse_gravepages()) != 0)
2271 goto error;
2272
Ivan Djelicfc2ff592011-03-11 11:05:34 +01002273 retval = nand_scan_ident(nsmtd, 1, NULL);
2274 if (retval) {
2275 NS_ERR("cannot scan NAND Simulator device\n");
2276 if (retval > 0)
2277 retval = -ENXIO;
2278 goto error;
2279 }
2280
2281 if (bch) {
2282 unsigned int eccsteps, eccbytes;
2283 if (!mtd_nand_has_bch()) {
2284 NS_ERR("BCH ECC support is disabled\n");
2285 retval = -EINVAL;
2286 goto error;
2287 }
2288 /* use 512-byte ecc blocks */
2289 eccsteps = nsmtd->writesize/512;
2290 eccbytes = (bch*13+7)/8;
2291 /* do not bother supporting small page devices */
2292 if ((nsmtd->oobsize < 64) || !eccsteps) {
2293 NS_ERR("bch not available on small page devices\n");
2294 retval = -EINVAL;
2295 goto error;
2296 }
2297 if ((eccbytes*eccsteps+2) > nsmtd->oobsize) {
2298 NS_ERR("invalid bch value %u\n", bch);
2299 retval = -EINVAL;
2300 goto error;
2301 }
2302 chip->ecc.mode = NAND_ECC_SOFT_BCH;
2303 chip->ecc.size = 512;
2304 chip->ecc.bytes = eccbytes;
2305 NS_INFO("using %u-bit/%u bytes BCH ECC\n", bch, chip->ecc.size);
2306 }
2307
2308 retval = nand_scan_tail(nsmtd);
2309 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 NS_ERR("can't register NAND Simulator\n");
2311 if (retval > 0)
2312 retval = -ENXIO;
2313 goto error;
2314 }
2315
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002316 if (overridesize) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +00002317 uint64_t new_size = (uint64_t)nsmtd->erasesize << overridesize;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002318 if (new_size >> overridesize != nsmtd->erasesize) {
2319 NS_ERR("overridesize is too big\n");
Richard Genoudbb0a13a2012-09-12 14:26:26 +02002320 retval = -EINVAL;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002321 goto err_exit;
2322 }
2323 /* N.B. This relies on nand_scan not doing anything with the size before we change it */
2324 nsmtd->size = new_size;
2325 chip->chipsize = new_size;
Adrian Hunter6eda7a52008-05-30 15:56:26 +03002326 chip->chip_shift = ffs(nsmtd->erasesize) + overridesize - 1;
Adrian Hunter07293b22008-05-30 15:56:23 +03002327 chip->pagemask = (chip->chipsize >> chip->page_shift) - 1;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002328 }
2329
Adrian Hunter57aa6b52007-03-19 12:40:41 +02002330 if ((retval = setup_wear_reporting(nsmtd)) != 0)
2331 goto err_exit;
2332
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002333 if ((retval = init_nandsim(nsmtd)) != 0)
2334 goto err_exit;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002335
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002336 if ((retval = nand_default_bbt(nsmtd)) != 0)
Adrian Hunter514087e72007-03-19 12:47:45 +02002337 goto err_exit;
2338
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002339 if ((retval = parse_badblocks(nand, nsmtd)) != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002340 goto err_exit;
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002341
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002342 /* Register NAND partitions */
Jamie Ilesee0e87b2011-05-23 10:23:40 +01002343 retval = mtd_device_register(nsmtd, &nand->partitions[0],
2344 nand->nbparts);
2345 if (retval != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002346 goto err_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 return 0;
2349
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002350err_exit:
2351 free_nandsim(nand);
2352 nand_release(nsmtd);
2353 for (i = 0;i < ARRAY_SIZE(nand->partitions); ++i)
2354 kfree(nand->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355error:
2356 kfree(nsmtd);
Adrian Hunter514087e72007-03-19 12:47:45 +02002357 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 return retval;
2360}
2361
2362module_init(ns_init_module);
2363
2364/*
2365 * Module clean-up function
2366 */
2367static void __exit ns_cleanup_module(void)
2368{
Kulikov Vasiliy7b8516b2010-06-29 14:15:17 +04002369 struct nandsim *ns = ((struct nand_chip *)nsmtd->priv)->priv;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002370 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 free_nandsim(ns); /* Free nandsim private resources */
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002373 nand_release(nsmtd); /* Unregister driver */
2374 for (i = 0;i < ARRAY_SIZE(ns->partitions); ++i)
2375 kfree(ns->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 kfree(nsmtd); /* Free other structures */
Adrian Hunter514087e72007-03-19 12:47:45 +02002377 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380module_exit(ns_cleanup_module);
2381
2382MODULE_LICENSE ("GPL");
2383MODULE_AUTHOR ("Artem B. Bityuckiy");
2384MODULE_DESCRIPTION ("The NAND flash simulator");