blob: 9a70754a61efe5dd1694c25f786c53598d7dc3b1 [file] [log] [blame]
Thomas Gleixner660662f2019-05-24 12:04:10 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * NAND flash simulator.
4 *
5 * Author: Artem B. Bityuckiy <dedekind@oktetlabs.ru>, <dedekind@infradead.org>
6 *
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00007 * Copyright (C) 2004 Nokia Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Note: NS means "NAND Simulator".
10 * Note: Input means input TO flash chip, output means output FROM chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Shreeya Patel63fa37f2018-02-22 22:01:22 +053013#define pr_fmt(fmt) "[nandsim]" fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
16#include <linux/types.h>
17#include <linux/module.h>
18#include <linux/moduleparam.h>
19#include <linux/vmalloc.h>
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -030020#include <linux/math64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/slab.h>
22#include <linux/errno.h>
23#include <linux/string.h>
24#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020025#include <linux/mtd/rawnand.h>
Ivan Djelicfc2ff592011-03-11 11:05:34 +010026#include <linux/mtd/nand_bch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mtd/partitions.h>
28#include <linux/delay.h>
Adrian Hunter2b77a0e2007-03-19 12:46:43 +020029#include <linux/list.h>
Adrian Hunter514087e72007-03-19 12:47:45 +020030#include <linux/random.h>
Randy Dunlapa5cce422008-12-17 12:46:17 -080031#include <linux/sched.h>
Vlastimil Babkadcbe8212017-05-08 15:59:57 -070032#include <linux/sched/mm.h>
Adrian Huntera9fc8992008-11-12 16:06:07 +020033#include <linux/fs.h>
34#include <linux/pagemap.h>
Ezequiel Garcia5346c272012-12-03 10:31:40 -030035#include <linux/seq_file.h>
36#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Default simulator parameters values */
39#if !defined(CONFIG_NANDSIM_FIRST_ID_BYTE) || \
40 !defined(CONFIG_NANDSIM_SECOND_ID_BYTE) || \
41 !defined(CONFIG_NANDSIM_THIRD_ID_BYTE) || \
42 !defined(CONFIG_NANDSIM_FOURTH_ID_BYTE)
43#define CONFIG_NANDSIM_FIRST_ID_BYTE 0x98
44#define CONFIG_NANDSIM_SECOND_ID_BYTE 0x39
45#define CONFIG_NANDSIM_THIRD_ID_BYTE 0xFF /* No byte */
46#define CONFIG_NANDSIM_FOURTH_ID_BYTE 0xFF /* No byte */
47#endif
48
49#ifndef CONFIG_NANDSIM_ACCESS_DELAY
50#define CONFIG_NANDSIM_ACCESS_DELAY 25
51#endif
52#ifndef CONFIG_NANDSIM_PROGRAMM_DELAY
53#define CONFIG_NANDSIM_PROGRAMM_DELAY 200
54#endif
55#ifndef CONFIG_NANDSIM_ERASE_DELAY
56#define CONFIG_NANDSIM_ERASE_DELAY 2
57#endif
58#ifndef CONFIG_NANDSIM_OUTPUT_CYCLE
59#define CONFIG_NANDSIM_OUTPUT_CYCLE 40
60#endif
61#ifndef CONFIG_NANDSIM_INPUT_CYCLE
62#define CONFIG_NANDSIM_INPUT_CYCLE 50
63#endif
64#ifndef CONFIG_NANDSIM_BUS_WIDTH
65#define CONFIG_NANDSIM_BUS_WIDTH 8
66#endif
67#ifndef CONFIG_NANDSIM_DO_DELAYS
68#define CONFIG_NANDSIM_DO_DELAYS 0
69#endif
70#ifndef CONFIG_NANDSIM_LOG
71#define CONFIG_NANDSIM_LOG 0
72#endif
73#ifndef CONFIG_NANDSIM_DBG
74#define CONFIG_NANDSIM_DBG 0
75#endif
Ben Hutchingse99e90a2010-01-29 20:58:08 +000076#ifndef CONFIG_NANDSIM_MAX_PARTS
77#define CONFIG_NANDSIM_MAX_PARTS 32
78#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static uint access_delay = CONFIG_NANDSIM_ACCESS_DELAY;
81static uint programm_delay = CONFIG_NANDSIM_PROGRAMM_DELAY;
82static uint erase_delay = CONFIG_NANDSIM_ERASE_DELAY;
83static uint output_cycle = CONFIG_NANDSIM_OUTPUT_CYCLE;
84static uint input_cycle = CONFIG_NANDSIM_INPUT_CYCLE;
85static uint bus_width = CONFIG_NANDSIM_BUS_WIDTH;
86static uint do_delays = CONFIG_NANDSIM_DO_DELAYS;
87static uint log = CONFIG_NANDSIM_LOG;
88static uint dbg = CONFIG_NANDSIM_DBG;
Ben Hutchingse99e90a2010-01-29 20:58:08 +000089static unsigned long parts[CONFIG_NANDSIM_MAX_PARTS];
Adrian Hunter2b77a0e2007-03-19 12:46:43 +020090static unsigned int parts_num;
Adrian Hunter514087e72007-03-19 12:47:45 +020091static char *badblocks = NULL;
92static char *weakblocks = NULL;
93static char *weakpages = NULL;
94static unsigned int bitflips = 0;
95static char *gravepages = NULL;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +020096static unsigned int overridesize = 0;
Adrian Huntera9fc8992008-11-12 16:06:07 +020097static char *cache_file = NULL;
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +020098static unsigned int bbt;
Ivan Djelicfc2ff592011-03-11 11:05:34 +010099static unsigned int bch;
Akinobu Mitab00358a2014-10-23 08:41:44 +0900100static u_char id_bytes[8] = {
101 [0] = CONFIG_NANDSIM_FIRST_ID_BYTE,
102 [1] = CONFIG_NANDSIM_SECOND_ID_BYTE,
103 [2] = CONFIG_NANDSIM_THIRD_ID_BYTE,
104 [3] = CONFIG_NANDSIM_FOURTH_ID_BYTE,
105 [4 ... 7] = 0xFF,
106};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Akinobu Mitab00358a2014-10-23 08:41:44 +0900108module_param_array(id_bytes, byte, NULL, 0400);
109module_param_named(first_id_byte, id_bytes[0], byte, 0400);
110module_param_named(second_id_byte, id_bytes[1], byte, 0400);
111module_param_named(third_id_byte, id_bytes[2], byte, 0400);
112module_param_named(fourth_id_byte, id_bytes[3], byte, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113module_param(access_delay, uint, 0400);
114module_param(programm_delay, uint, 0400);
115module_param(erase_delay, uint, 0400);
116module_param(output_cycle, uint, 0400);
117module_param(input_cycle, uint, 0400);
118module_param(bus_width, uint, 0400);
119module_param(do_delays, uint, 0400);
120module_param(log, uint, 0400);
121module_param(dbg, uint, 0400);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200122module_param_array(parts, ulong, &parts_num, 0400);
Adrian Hunter514087e72007-03-19 12:47:45 +0200123module_param(badblocks, charp, 0400);
124module_param(weakblocks, charp, 0400);
125module_param(weakpages, charp, 0400);
126module_param(bitflips, uint, 0400);
127module_param(gravepages, charp, 0400);
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200128module_param(overridesize, uint, 0400);
Adrian Huntera9fc8992008-11-12 16:06:07 +0200129module_param(cache_file, charp, 0400);
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +0200130module_param(bbt, uint, 0400);
Ivan Djelicfc2ff592011-03-11 11:05:34 +0100131module_param(bch, uint, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Akinobu Mitab00358a2014-10-23 08:41:44 +0900133MODULE_PARM_DESC(id_bytes, "The ID bytes returned by NAND Flash 'read ID' command");
134MODULE_PARM_DESC(first_id_byte, "The first byte returned by NAND Flash 'read ID' command (manufacturer ID) (obsolete)");
135MODULE_PARM_DESC(second_id_byte, "The second byte returned by NAND Flash 'read ID' command (chip ID) (obsolete)");
136MODULE_PARM_DESC(third_id_byte, "The third byte returned by NAND Flash 'read ID' command (obsolete)");
137MODULE_PARM_DESC(fourth_id_byte, "The fourth byte returned by NAND Flash 'read ID' command (obsolete)");
Adrian Huntera9fc8992008-11-12 16:06:07 +0200138MODULE_PARM_DESC(access_delay, "Initial page access delay (microseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139MODULE_PARM_DESC(programm_delay, "Page programm delay (microseconds");
140MODULE_PARM_DESC(erase_delay, "Sector erase delay (milliseconds)");
Andrey Yurovsky6029a3a2009-12-17 12:31:20 -0800141MODULE_PARM_DESC(output_cycle, "Word output (from flash) time (nanoseconds)");
142MODULE_PARM_DESC(input_cycle, "Word input (to flash) time (nanoseconds)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143MODULE_PARM_DESC(bus_width, "Chip's bus width (8- or 16-bit)");
144MODULE_PARM_DESC(do_delays, "Simulate NAND delays using busy-waits if not zero");
145MODULE_PARM_DESC(log, "Perform logging if not zero");
146MODULE_PARM_DESC(dbg, "Output debug information if not zero");
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200147MODULE_PARM_DESC(parts, "Partition sizes (in erase blocks) separated by commas");
Adrian Hunter514087e72007-03-19 12:47:45 +0200148/* Page and erase block positions for the following parameters are independent of any partitions */
149MODULE_PARM_DESC(badblocks, "Erase blocks that are initially marked bad, separated by commas");
150MODULE_PARM_DESC(weakblocks, "Weak erase blocks [: remaining erase cycles (defaults to 3)]"
151 " separated by commas e.g. 113:2 means eb 113"
152 " can be erased only twice before failing");
153MODULE_PARM_DESC(weakpages, "Weak pages [: maximum writes (defaults to 3)]"
154 " separated by commas e.g. 1401:2 means page 1401"
155 " can be written only twice before failing");
156MODULE_PARM_DESC(bitflips, "Maximum number of random bit flips per page (zero by default)");
157MODULE_PARM_DESC(gravepages, "Pages that lose data [: maximum reads (defaults to 3)]"
158 " separated by commas e.g. 1401:2 means page 1401"
159 " can be read only twice before failing");
Adrian Huntera5ac8ae2007-03-19 12:49:11 +0200160MODULE_PARM_DESC(overridesize, "Specifies the NAND Flash size overriding the ID bytes. "
161 "The size is specified in erase blocks and as the exponent of a power of two"
162 " e.g. 5 means a size of 32 erase blocks");
Adrian Huntera9fc8992008-11-12 16:06:07 +0200163MODULE_PARM_DESC(cache_file, "File to use to cache nand pages instead of memory");
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +0200164MODULE_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 +0100165MODULE_PARM_DESC(bch, "Enable BCH ecc and set how many bits should "
166 "be correctable in 512-byte blocks");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/* The largest possible page size */
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100169#define NS_LARGEST_PAGE_SIZE 4096
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/* Simulator's output macros (logging, debugging, warning, error) */
172#define NS_LOG(args...) \
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530173 do { if (log) pr_debug(" log: " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define NS_DBG(args...) \
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530175 do { if (dbg) pr_debug(" debug: " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define NS_WARN(args...) \
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530177 do { pr_warn(" warning: " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define NS_ERR(args...) \
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530179 do { pr_err(" error: " args); } while(0)
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200180#define NS_INFO(args...) \
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530181 do { pr_info(" " args); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/* Busy-wait delay macros (microseconds, milliseconds) */
184#define NS_UDELAY(us) \
185 do { if (do_delays) udelay(us); } while(0)
186#define NS_MDELAY(us) \
187 do { if (do_delays) mdelay(us); } while(0)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* Is the nandsim structure initialized ? */
190#define NS_IS_INITIALIZED(ns) ((ns)->geom.totsz != 0)
191
192/* Good operation completion status */
193#define NS_STATUS_OK(ns) (NAND_STATUS_READY | (NAND_STATUS_WP * ((ns)->lines.wp == 0)))
194
195/* Operation failed completion status */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000196#define NS_STATUS_FAILED(ns) (NAND_STATUS_FAIL | NS_STATUS_OK(ns))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/* Calculate the page offset in flash RAM image by (row, column) address */
199#define NS_RAW_OFFSET(ns) \
Akinobu Mita3b8b8fa2013-07-28 11:21:55 +0900200 (((ns)->regs.row * (ns)->geom.pgszoob) + (ns)->regs.column)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* Calculate the OOB offset in flash RAM image by (row, column) address */
203#define NS_RAW_OFFSET_OOB(ns) (NS_RAW_OFFSET(ns) + ns->geom.pgsz)
204
205/* After a command is input, the simulator goes to one of the following states */
206#define STATE_CMD_READ0 0x00000001 /* read data from the beginning of page */
207#define STATE_CMD_READ1 0x00000002 /* read data from the second half of page */
Artem Bityutskiy4a0c50c2006-12-06 21:52:32 +0200208#define STATE_CMD_READSTART 0x00000003 /* read data second command (large page devices) */
srimugunthandaf05ec2010-11-13 12:46:05 +0200209#define STATE_CMD_PAGEPROG 0x00000004 /* start page program */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define STATE_CMD_READOOB 0x00000005 /* read OOB area */
211#define STATE_CMD_ERASE1 0x00000006 /* sector erase first command */
212#define STATE_CMD_STATUS 0x00000007 /* read status */
srimugunthandaf05ec2010-11-13 12:46:05 +0200213#define STATE_CMD_SEQIN 0x00000009 /* sequential data input */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define STATE_CMD_READID 0x0000000A /* read ID */
215#define STATE_CMD_ERASE2 0x0000000B /* sector erase second command */
216#define STATE_CMD_RESET 0x0000000C /* reset */
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300217#define STATE_CMD_RNDOUT 0x0000000D /* random output command */
218#define STATE_CMD_RNDOUTSTART 0x0000000E /* random output start command */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define STATE_CMD_MASK 0x0000000F /* command states mask */
220
Joe Perches8e87d782008-02-03 17:22:34 +0200221/* After an address is input, the simulator goes to one of these states */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#define STATE_ADDR_PAGE 0x00000010 /* full (row, column) address is accepted */
223#define STATE_ADDR_SEC 0x00000020 /* sector address was accepted */
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300224#define STATE_ADDR_COLUMN 0x00000030 /* column address was accepted */
225#define STATE_ADDR_ZERO 0x00000040 /* one byte zero address was accepted */
226#define STATE_ADDR_MASK 0x00000070 /* address states mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
srimugunthandaf05ec2010-11-13 12:46:05 +0200228/* During data input/output the simulator is in these states */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#define STATE_DATAIN 0x00000100 /* waiting for data input */
230#define STATE_DATAIN_MASK 0x00000100 /* data input states mask */
231
232#define STATE_DATAOUT 0x00001000 /* waiting for page data output */
233#define STATE_DATAOUT_ID 0x00002000 /* waiting for ID bytes output */
234#define STATE_DATAOUT_STATUS 0x00003000 /* waiting for status output */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define STATE_DATAOUT_MASK 0x00007000 /* data output states mask */
236
237/* Previous operation is done, ready to accept new requests */
238#define STATE_READY 0x00000000
239
240/* This state is used to mark that the next state isn't known yet */
241#define STATE_UNKNOWN 0x10000000
242
243/* Simulator's actions bit masks */
244#define ACTION_CPY 0x00100000 /* copy page/OOB to the internal buffer */
srimugunthandaf05ec2010-11-13 12:46:05 +0200245#define ACTION_PRGPAGE 0x00200000 /* program the internal buffer to flash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#define ACTION_SECERASE 0x00300000 /* erase sector */
247#define ACTION_ZEROOFF 0x00400000 /* don't add any offset to address */
248#define ACTION_HALFOFF 0x00500000 /* add to address half of page */
249#define ACTION_OOBOFF 0x00600000 /* add to address OOB offset */
250#define ACTION_MASK 0x00700000 /* action mask */
251
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300252#define NS_OPER_NUM 13 /* Number of operations supported by the simulator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define NS_OPER_STATES 6 /* Maximum number of states in operation */
254
255#define OPT_ANY 0xFFFFFFFF /* any chip supports this operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define OPT_PAGE512 0x00000002 /* 512-byte page chips */
257#define OPT_PAGE2048 0x00000008 /* 2048-byte page chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define OPT_PAGE512_8BIT 0x00000040 /* 512-byte page chips with 8-bit bus width */
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100259#define OPT_PAGE4096 0x00000080 /* 4096-byte page chips */
260#define OPT_LARGEPAGE (OPT_PAGE2048 | OPT_PAGE4096) /* 2048 & 4096-byte page chips */
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200261#define OPT_SMALLPAGE (OPT_PAGE512) /* 512-byte page chips */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
srimugunthandaf05ec2010-11-13 12:46:05 +0200263/* Remove action bits from state */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#define NS_STATE(x) ((x) & ~ACTION_MASK)
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000265
266/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * Maximum previous states which need to be saved. Currently saving is
srimugunthandaf05ec2010-11-13 12:46:05 +0200268 * only needed for page program operation with preceded read command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * (which is only valid for 512-byte pages).
270 */
271#define NS_MAX_PREVSTATES 1
272
Adrian Huntera9fc8992008-11-12 16:06:07 +0200273/* Maximum page cache pages needed to read or write a NAND page to the cache_file */
274#define NS_MAX_HELD_PAGES 16
275
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000276/*
Vijay Kumard086d432006-10-08 22:02:31 +0530277 * A union to represent flash memory contents and flash buffer.
278 */
279union ns_mem {
280 u_char *byte; /* for byte access */
281 uint16_t *word; /* for 16-bit word access */
282};
283
284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * The structure which describes all the internal simulator data.
286 */
287struct nandsim {
Richard Weinberger74aee142019-04-17 20:54:32 +0200288 struct nand_chip chip;
Richard Weinberger1c14fe22019-04-17 20:54:33 +0200289 struct nand_controller base;
Ben Hutchingse99e90a2010-01-29 20:58:08 +0000290 struct mtd_partition partitions[CONFIG_NANDSIM_MAX_PARTS];
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200291 unsigned int nbparts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 uint busw; /* flash chip bus width (8 or 16) */
Akinobu Mitab00358a2014-10-23 08:41:44 +0900294 u_char ids[8]; /* chip's ID bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 uint32_t options; /* chip's characteristic bits */
296 uint32_t state; /* current chip state */
297 uint32_t nxstate; /* next expected state */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 uint32_t *op; /* current operation, NULL operations isn't known yet */
300 uint32_t pstates[NS_MAX_PREVSTATES]; /* previous states */
301 uint16_t npstates; /* number of previous states saved */
302 uint16_t stateidx; /* current state index */
303
Vijay Kumard086d432006-10-08 22:02:31 +0530304 /* The simulated NAND flash pages array */
305 union ns_mem *pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000307 /* Slab allocator for nand pages */
308 struct kmem_cache *nand_pages_slab;
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* Internal buffer of page + OOB size bytes */
Vijay Kumard086d432006-10-08 22:02:31 +0530311 union ns_mem buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* NAND flash "geometry" */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300314 struct {
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300315 uint64_t totsz; /* total flash size, bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 uint32_t secsz; /* flash sector (erase block) size, bytes */
317 uint pgsz; /* NAND flash page size, bytes */
318 uint oobsz; /* page OOB area size, bytes */
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300319 uint64_t totszoob; /* total flash size including OOB, bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 uint pgszoob; /* page size including OOB , bytes*/
321 uint secszoob; /* sector size including OOB, bytes */
322 uint pgnum; /* total number of pages */
323 uint pgsec; /* number of pages per sector */
324 uint secshift; /* bits number in sector size */
325 uint pgshift; /* bits number in page size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 uint pgaddrbytes; /* bytes per page address */
327 uint secaddrbytes; /* bytes per sector address */
328 uint idbytes; /* the number ID bytes that this chip outputs */
329 } geom;
330
331 /* NAND flash internal registers */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300332 struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 unsigned command; /* the command register */
334 u_char status; /* the status register */
335 uint row; /* the page number */
336 uint column; /* the offset within page */
337 uint count; /* internal counter */
338 uint num; /* number of bytes which must be processed */
339 uint off; /* fixed page offset */
340 } regs;
341
342 /* NAND flash lines state */
Artem Bityutskiy0bfa4df2010-04-01 15:22:50 +0300343 struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 int ce; /* chip Enable */
345 int cle; /* command Latch Enable */
346 int ale; /* address Latch Enable */
347 int wp; /* write Protect */
348 } lines;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200349
350 /* Fields needed when using a cache file */
351 struct file *cfile; /* Open file */
Akinobu Mita08efe912013-07-28 11:21:53 +0900352 unsigned long *pages_written; /* Which pages have been written */
Adrian Huntera9fc8992008-11-12 16:06:07 +0200353 void *file_buf;
354 struct page *held_pages[NS_MAX_HELD_PAGES];
355 int held_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356};
357
358/*
359 * Operations array. To perform any operation the simulator must pass
360 * through the correspondent states chain.
361 */
362static struct nandsim_operations {
363 uint32_t reqopts; /* options which are required to perform the operation */
364 uint32_t states[NS_OPER_STATES]; /* operation's states */
365} ops[NS_OPER_NUM] = {
366 /* Read page + OOB from the beginning */
367 {OPT_SMALLPAGE, {STATE_CMD_READ0 | ACTION_ZEROOFF, STATE_ADDR_PAGE | ACTION_CPY,
368 STATE_DATAOUT, STATE_READY}},
369 /* Read page + OOB from the second half */
370 {OPT_PAGE512_8BIT, {STATE_CMD_READ1 | ACTION_HALFOFF, STATE_ADDR_PAGE | ACTION_CPY,
371 STATE_DATAOUT, STATE_READY}},
372 /* Read OOB */
373 {OPT_SMALLPAGE, {STATE_CMD_READOOB | ACTION_OOBOFF, STATE_ADDR_PAGE | ACTION_CPY,
374 STATE_DATAOUT, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200375 /* Program page starting from the beginning */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 {OPT_ANY, {STATE_CMD_SEQIN, STATE_ADDR_PAGE, STATE_DATAIN,
377 STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200378 /* Program page starting from the beginning */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 {OPT_SMALLPAGE, {STATE_CMD_READ0, STATE_CMD_SEQIN | ACTION_ZEROOFF, STATE_ADDR_PAGE,
380 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200381 /* Program page starting from the second half */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 {OPT_PAGE512, {STATE_CMD_READ1, STATE_CMD_SEQIN | ACTION_HALFOFF, STATE_ADDR_PAGE,
383 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
srimugunthandaf05ec2010-11-13 12:46:05 +0200384 /* Program OOB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 {OPT_SMALLPAGE, {STATE_CMD_READOOB, STATE_CMD_SEQIN | ACTION_OOBOFF, STATE_ADDR_PAGE,
386 STATE_DATAIN, STATE_CMD_PAGEPROG | ACTION_PRGPAGE, STATE_READY}},
387 /* Erase sector */
388 {OPT_ANY, {STATE_CMD_ERASE1, STATE_ADDR_SEC, STATE_CMD_ERASE2 | ACTION_SECERASE, STATE_READY}},
389 /* Read status */
390 {OPT_ANY, {STATE_CMD_STATUS, STATE_DATAOUT_STATUS, STATE_READY}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /* Read ID */
392 {OPT_ANY, {STATE_CMD_READID, STATE_ADDR_ZERO, STATE_DATAOUT_ID, STATE_READY}},
393 /* Large page devices read page */
394 {OPT_LARGEPAGE, {STATE_CMD_READ0, STATE_ADDR_PAGE, STATE_CMD_READSTART | ACTION_CPY,
Artem Bityutskiy74216be2008-07-30 11:18:42 +0300395 STATE_DATAOUT, STATE_READY}},
396 /* Large page devices random page read */
397 {OPT_LARGEPAGE, {STATE_CMD_RNDOUT, STATE_ADDR_COLUMN, STATE_CMD_RNDOUTSTART | ACTION_CPY,
398 STATE_DATAOUT, STATE_READY}},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
Adrian Hunter514087e72007-03-19 12:47:45 +0200401struct weak_block {
402 struct list_head list;
403 unsigned int erase_block_no;
404 unsigned int max_erases;
405 unsigned int erases_done;
406};
407
408static LIST_HEAD(weak_blocks);
409
410struct weak_page {
411 struct list_head list;
412 unsigned int page_no;
413 unsigned int max_writes;
414 unsigned int writes_done;
415};
416
417static LIST_HEAD(weak_pages);
418
419struct grave_page {
420 struct list_head list;
421 unsigned int page_no;
422 unsigned int max_reads;
423 unsigned int reads_done;
424};
425
426static LIST_HEAD(grave_pages);
427
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200428static unsigned long *erase_block_wear = NULL;
429static unsigned int wear_eb_count = 0;
430static unsigned long total_wear = 0;
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/* MTD structure for NAND controller */
433static struct mtd_info *nsmtd;
434
Yangtao Lic78f59d2018-12-02 03:33:58 -0500435static int nandsim_show(struct seq_file *m, void *private)
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300436{
437 unsigned long wmin = -1, wmax = 0, avg;
438 unsigned long deciles[10], decile_max[10], tot = 0;
439 unsigned int i;
440
441 /* Calc wear stats */
442 for (i = 0; i < wear_eb_count; ++i) {
443 unsigned long wear = erase_block_wear[i];
444 if (wear < wmin)
445 wmin = wear;
446 if (wear > wmax)
447 wmax = wear;
448 tot += wear;
449 }
450
451 for (i = 0; i < 9; ++i) {
452 deciles[i] = 0;
453 decile_max[i] = (wmax * (i + 1) + 5) / 10;
454 }
455 deciles[9] = 0;
456 decile_max[9] = wmax;
457 for (i = 0; i < wear_eb_count; ++i) {
458 int d;
459 unsigned long wear = erase_block_wear[i];
460 for (d = 0; d < 10; ++d)
461 if (wear <= decile_max[d]) {
462 deciles[d] += 1;
463 break;
464 }
465 }
466 avg = tot / wear_eb_count;
467
468 /* Output wear report */
469 seq_printf(m, "Total numbers of erases: %lu\n", tot);
470 seq_printf(m, "Number of erase blocks: %u\n", wear_eb_count);
471 seq_printf(m, "Average number of erases: %lu\n", avg);
472 seq_printf(m, "Maximum number of erases: %lu\n", wmax);
473 seq_printf(m, "Minimum number of erases: %lu\n", wmin);
474 for (i = 0; i < 10; ++i) {
475 unsigned long from = (i ? decile_max[i - 1] + 1 : 0);
476 if (from > decile_max[i])
477 continue;
478 seq_printf(m, "Number of ebs with erase counts from %lu to %lu : %lu\n",
479 from,
480 decile_max[i],
481 deciles[i]);
482 }
483
484 return 0;
485}
Yangtao Lic78f59d2018-12-02 03:33:58 -0500486DEFINE_SHOW_ATTRIBUTE(nandsim);
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300487
488/**
489 * nandsim_debugfs_create - initialize debugfs
490 * @dev: nandsim device description object
491 *
492 * This function creates all debugfs files for UBI device @ubi. Returns zero in
493 * case of success and a negative error code in case of failure.
494 */
495static int nandsim_debugfs_create(struct nandsim *dev)
496{
Mario Rugieroe8e3edb2017-05-29 08:38:41 -0300497 struct dentry *root = nsmtd->dbg.dfs_dir;
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300498 struct dentry *dent;
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300499
Boris Brezillon15305782017-11-11 16:08:34 +0100500 /*
501 * Just skip debugfs initialization when the debugfs directory is
502 * missing.
503 */
504 if (IS_ERR_OR_NULL(root)) {
505 if (IS_ENABLED(CONFIG_DEBUG_FS) &&
506 !IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER))
507 NS_WARN("CONFIG_MTD_PARTITIONED_MASTER must be enabled to expose debugfs stuff\n");
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300508 return 0;
Boris Brezillon15305782017-11-11 16:08:34 +0100509 }
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300510
Mario Rugieroe8e3edb2017-05-29 08:38:41 -0300511 dent = debugfs_create_file("nandsim_wear_report", S_IRUSR,
Yangtao Lic78f59d2018-12-02 03:33:58 -0500512 root, dev, &nandsim_fops);
Mario Rugieroe8e3edb2017-05-29 08:38:41 -0300513 if (IS_ERR_OR_NULL(dent)) {
514 NS_ERR("cannot create \"nandsim_wear_report\" debugfs entry\n");
515 return -1;
516 }
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300517
518 return 0;
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000522 * Allocate array of page pointers, create slab allocation for an array
523 * and initialize the array by NULL pointers.
Vijay Kumard086d432006-10-08 22:02:31 +0530524 *
525 * RETURNS: 0 if success, -ENOMEM if memory alloc fails.
526 */
Julia Lawall77784782016-04-19 14:33:35 +0200527static int __init alloc_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530528{
Adrian Huntera9fc8992008-11-12 16:06:07 +0200529 struct file *cfile;
530 int i, err;
531
532 if (cache_file) {
533 cfile = filp_open(cache_file, O_CREAT | O_RDWR | O_LARGEFILE, 0600);
534 if (IS_ERR(cfile))
535 return PTR_ERR(cfile);
Al Viro7f7f25e2014-02-11 17:49:24 -0500536 if (!(cfile->f_mode & FMODE_CAN_READ)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +0200537 NS_ERR("alloc_device: cache file not readable\n");
538 err = -EINVAL;
539 goto err_close;
540 }
Al Viro7f7f25e2014-02-11 17:49:24 -0500541 if (!(cfile->f_mode & FMODE_CAN_WRITE)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +0200542 NS_ERR("alloc_device: cache file not writeable\n");
543 err = -EINVAL;
544 goto err_close;
545 }
Kees Cookfad953c2018-06-12 14:27:37 -0700546 ns->pages_written =
547 vzalloc(array_size(sizeof(unsigned long),
548 BITS_TO_LONGS(ns->geom.pgnum)));
Adrian Huntera9fc8992008-11-12 16:06:07 +0200549 if (!ns->pages_written) {
550 NS_ERR("alloc_device: unable to allocate pages written array\n");
551 err = -ENOMEM;
552 goto err_close;
553 }
554 ns->file_buf = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
555 if (!ns->file_buf) {
556 NS_ERR("alloc_device: unable to allocate file buf\n");
557 err = -ENOMEM;
558 goto err_free;
559 }
560 ns->cfile = cfile;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200561 return 0;
562 }
Vijay Kumard086d432006-10-08 22:02:31 +0530563
Kees Cook42bc47b2018-06-12 14:27:11 -0700564 ns->pages = vmalloc(array_size(sizeof(union ns_mem), ns->geom.pgnum));
Vijay Kumard086d432006-10-08 22:02:31 +0530565 if (!ns->pages) {
Adrian Huntera9fc8992008-11-12 16:06:07 +0200566 NS_ERR("alloc_device: unable to allocate page array\n");
Vijay Kumard086d432006-10-08 22:02:31 +0530567 return -ENOMEM;
568 }
569 for (i = 0; i < ns->geom.pgnum; i++) {
570 ns->pages[i].byte = NULL;
571 }
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000572 ns->nand_pages_slab = kmem_cache_create("nandsim",
573 ns->geom.pgszoob, 0, 0, NULL);
574 if (!ns->nand_pages_slab) {
575 NS_ERR("cache_create: unable to create kmem_cache\n");
576 return -ENOMEM;
577 }
Vijay Kumard086d432006-10-08 22:02:31 +0530578
579 return 0;
Adrian Huntera9fc8992008-11-12 16:06:07 +0200580
581err_free:
582 vfree(ns->pages_written);
583err_close:
584 filp_close(cfile, NULL);
585 return err;
Vijay Kumard086d432006-10-08 22:02:31 +0530586}
587
588/*
589 * Free any allocated pages, and free the array of page pointers.
590 */
Vijay Kumara5602142006-10-14 21:33:34 +0530591static void free_device(struct nandsim *ns)
Vijay Kumard086d432006-10-08 22:02:31 +0530592{
593 int i;
594
Adrian Huntera9fc8992008-11-12 16:06:07 +0200595 if (ns->cfile) {
596 kfree(ns->file_buf);
597 vfree(ns->pages_written);
598 filp_close(ns->cfile, NULL);
599 return;
600 }
601
Vijay Kumard086d432006-10-08 22:02:31 +0530602 if (ns->pages) {
603 for (i = 0; i < ns->geom.pgnum; i++) {
604 if (ns->pages[i].byte)
Alexey Korolev8a4c2492008-11-13 13:40:38 +0000605 kmem_cache_free(ns->nand_pages_slab,
606 ns->pages[i].byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530607 }
Julia Lawall0791a5f2015-09-13 14:14:54 +0200608 kmem_cache_destroy(ns->nand_pages_slab);
Vijay Kumard086d432006-10-08 22:02:31 +0530609 vfree(ns->pages);
610 }
611}
612
Julia Lawall77784782016-04-19 14:33:35 +0200613static char __init *get_partition_name(int i)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200614{
Akinobu Mitaf03a5722013-07-28 11:21:54 +0900615 return kasprintf(GFP_KERNEL, "NAND simulator partition %d", i);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200616}
617
Vijay Kumard086d432006-10-08 22:02:31 +0530618/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * Initialize the nandsim structure.
620 *
621 * RETURNS: 0 if success, -ERRNO if failure.
622 */
Julia Lawall77784782016-04-19 14:33:35 +0200623static int __init init_nandsim(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Boris BREZILLON862eba52015-12-01 12:03:03 +0100625 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLONd699ed22015-12-10 09:00:41 +0100626 struct nandsim *ns = nand_get_controller_data(chip);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200627 int i, ret = 0;
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000628 uint64_t remains;
629 uint64_t next_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (NS_IS_INITIALIZED(ns)) {
632 NS_ERR("init_nandsim: nandsim is already initialized\n");
633 return -EIO;
634 }
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* Initialize the NAND flash parameters */
637 ns->busw = chip->options & NAND_BUSWIDTH_16 ? 16 : 8;
638 ns->geom.totsz = mtd->size;
Joern Engel28318772006-05-22 23:18:05 +0200639 ns->geom.pgsz = mtd->writesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 ns->geom.oobsz = mtd->oobsize;
641 ns->geom.secsz = mtd->erasesize;
642 ns->geom.pgszoob = ns->geom.pgsz + ns->geom.oobsz;
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -0300643 ns->geom.pgnum = div_u64(ns->geom.totsz, ns->geom.pgsz);
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300644 ns->geom.totszoob = ns->geom.totsz + (uint64_t)ns->geom.pgnum * ns->geom.oobsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ns->geom.secshift = ffs(ns->geom.secsz) - 1;
646 ns->geom.pgshift = chip->page_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ns->geom.pgsec = ns->geom.secsz / ns->geom.pgsz;
648 ns->geom.secszoob = ns->geom.secsz + ns->geom.oobsz * ns->geom.pgsec;
649 ns->options = 0;
650
Artem Bityutskiy51148f12013-03-05 15:00:51 +0200651 if (ns->geom.pgsz == 512) {
Brian Norris831d3162012-05-01 17:12:53 -0700652 ns->options |= OPT_PAGE512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (ns->busw == 8)
654 ns->options |= OPT_PAGE512_8BIT;
655 } else if (ns->geom.pgsz == 2048) {
656 ns->options |= OPT_PAGE2048;
Sebastian Andrzej Siewior75352662009-11-29 19:07:57 +0100657 } else if (ns->geom.pgsz == 4096) {
658 ns->options |= OPT_PAGE4096;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 } else {
660 NS_ERR("init_nandsim: unknown page size %u\n", ns->geom.pgsz);
661 return -EIO;
662 }
663
664 if (ns->options & OPT_SMALLPAGE) {
Adrian Hunteraf3decc2008-05-30 15:56:18 +0300665 if (ns->geom.totsz <= (32 << 20)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 ns->geom.pgaddrbytes = 3;
667 ns->geom.secaddrbytes = 2;
668 } else {
669 ns->geom.pgaddrbytes = 4;
670 ns->geom.secaddrbytes = 3;
671 }
672 } else {
673 if (ns->geom.totsz <= (128 << 20)) {
Artem Bityutskiy4a0c50c2006-12-06 21:52:32 +0200674 ns->geom.pgaddrbytes = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 ns->geom.secaddrbytes = 2;
676 } else {
677 ns->geom.pgaddrbytes = 5;
678 ns->geom.secaddrbytes = 3;
679 }
680 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000681
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200682 /* Fill the partition_info structure */
683 if (parts_num > ARRAY_SIZE(ns->partitions)) {
684 NS_ERR("too many partitions.\n");
shengyong5891a8d2015-06-25 02:23:14 +0000685 return -EINVAL;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200686 }
687 remains = ns->geom.totsz;
688 next_offset = 0;
689 for (i = 0; i < parts_num; ++i) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +0000690 uint64_t part_sz = (uint64_t)parts[i] * ns->geom.secsz;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300691
692 if (!part_sz || part_sz > remains) {
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200693 NS_ERR("bad partition size.\n");
shengyong5891a8d2015-06-25 02:23:14 +0000694 return -EINVAL;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200695 }
696 ns->partitions[i].name = get_partition_name(i);
Richard Weinberger641c7922015-06-01 23:10:50 +0200697 if (!ns->partitions[i].name) {
698 NS_ERR("unable to allocate memory.\n");
shengyong5891a8d2015-06-25 02:23:14 +0000699 return -ENOMEM;
Richard Weinberger641c7922015-06-01 23:10:50 +0200700 }
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200701 ns->partitions[i].offset = next_offset;
Adrian Hunter6eda7a52008-05-30 15:56:26 +0300702 ns->partitions[i].size = part_sz;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200703 next_offset += ns->partitions[i].size;
704 remains -= ns->partitions[i].size;
705 }
706 ns->nbparts = parts_num;
707 if (remains) {
708 if (parts_num + 1 > ARRAY_SIZE(ns->partitions)) {
709 NS_ERR("too many partitions.\n");
shengyong5891a8d2015-06-25 02:23:14 +0000710 return -EINVAL;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200711 }
712 ns->partitions[i].name = get_partition_name(i);
Richard Weinberger641c7922015-06-01 23:10:50 +0200713 if (!ns->partitions[i].name) {
714 NS_ERR("unable to allocate memory.\n");
shengyong5891a8d2015-06-25 02:23:14 +0000715 return -ENOMEM;
Richard Weinberger641c7922015-06-01 23:10:50 +0200716 }
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200717 ns->partitions[i].offset = next_offset;
718 ns->partitions[i].size = remains;
719 ns->nbparts += 1;
720 }
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (ns->busw == 16)
723 NS_WARN("16-bit flashes support wasn't tested\n");
724
Andrew Mortone4c094a2008-07-30 12:35:04 -0700725 printk("flash size: %llu MiB\n",
726 (unsigned long long)ns->geom.totsz >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 printk("page size: %u bytes\n", ns->geom.pgsz);
728 printk("OOB area size: %u bytes\n", ns->geom.oobsz);
729 printk("sector size: %u KiB\n", ns->geom.secsz >> 10);
730 printk("pages number: %u\n", ns->geom.pgnum);
731 printk("pages per sector: %u\n", ns->geom.pgsec);
732 printk("bus width: %u\n", ns->busw);
733 printk("bits in sector size: %u\n", ns->geom.secshift);
734 printk("bits in page size: %u\n", ns->geom.pgshift);
Akinobu Mita2f3b07a2013-07-28 11:21:58 +0900735 printk("bits in OOB size: %u\n", ffs(ns->geom.oobsz) - 1);
Andrew Mortone4c094a2008-07-30 12:35:04 -0700736 printk("flash size with OOB: %llu KiB\n",
737 (unsigned long long)ns->geom.totszoob >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 printk("page address bytes: %u\n", ns->geom.pgaddrbytes);
739 printk("sector address bytes: %u\n", ns->geom.secaddrbytes);
740 printk("options: %#x\n", ns->options);
741
Adrian Hunter2b77a0e2007-03-19 12:46:43 +0200742 if ((ret = alloc_device(ns)) != 0)
shengyong5891a8d2015-06-25 02:23:14 +0000743 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /* Allocate / initialize the internal buffer */
746 ns->buf.byte = kmalloc(ns->geom.pgszoob, GFP_KERNEL);
747 if (!ns->buf.byte) {
748 NS_ERR("init_nandsim: unable to allocate %u bytes for the internal buffer\n",
749 ns->geom.pgszoob);
shengyong5891a8d2015-06-25 02:23:14 +0000750 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752 memset(ns->buf.byte, 0xFF, ns->geom.pgszoob);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757/*
758 * Free the nandsim structure.
759 */
Vijay Kumara5602142006-10-14 21:33:34 +0530760static void free_nandsim(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 kfree(ns->buf.byte);
Vijay Kumard086d432006-10-08 22:02:31 +0530763 free_device(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 return;
766}
767
Adrian Hunter514087e72007-03-19 12:47:45 +0200768static int parse_badblocks(struct nandsim *ns, struct mtd_info *mtd)
769{
770 char *w;
771 int zero_ok;
772 unsigned int erase_block_no;
773 loff_t offset;
774
775 if (!badblocks)
776 return 0;
777 w = badblocks;
778 do {
779 zero_ok = (*w == '0' ? 1 : 0);
780 erase_block_no = simple_strtoul(w, &w, 0);
781 if (!zero_ok && !erase_block_no) {
782 NS_ERR("invalid badblocks.\n");
783 return -EINVAL;
784 }
Brian Norrisb033e1a2014-07-21 19:07:44 -0700785 offset = (loff_t)erase_block_no * ns->geom.secsz;
Artem Bityutskiy5942ddb2011-12-23 19:37:38 +0200786 if (mtd_block_markbad(mtd, offset)) {
Adrian Hunter514087e72007-03-19 12:47:45 +0200787 NS_ERR("invalid badblocks.\n");
788 return -EINVAL;
789 }
790 if (*w == ',')
791 w += 1;
792 } while (*w);
793 return 0;
794}
795
796static int parse_weakblocks(void)
797{
798 char *w;
799 int zero_ok;
800 unsigned int erase_block_no;
801 unsigned int max_erases;
802 struct weak_block *wb;
803
804 if (!weakblocks)
805 return 0;
806 w = weakblocks;
807 do {
808 zero_ok = (*w == '0' ? 1 : 0);
809 erase_block_no = simple_strtoul(w, &w, 0);
810 if (!zero_ok && !erase_block_no) {
811 NS_ERR("invalid weakblocks.\n");
812 return -EINVAL;
813 }
814 max_erases = 3;
815 if (*w == ':') {
816 w += 1;
817 max_erases = simple_strtoul(w, &w, 0);
818 }
819 if (*w == ',')
820 w += 1;
821 wb = kzalloc(sizeof(*wb), GFP_KERNEL);
822 if (!wb) {
823 NS_ERR("unable to allocate memory.\n");
824 return -ENOMEM;
825 }
826 wb->erase_block_no = erase_block_no;
827 wb->max_erases = max_erases;
828 list_add(&wb->list, &weak_blocks);
829 } while (*w);
830 return 0;
831}
832
833static int erase_error(unsigned int erase_block_no)
834{
835 struct weak_block *wb;
836
837 list_for_each_entry(wb, &weak_blocks, list)
838 if (wb->erase_block_no == erase_block_no) {
839 if (wb->erases_done >= wb->max_erases)
840 return 1;
841 wb->erases_done += 1;
842 return 0;
843 }
844 return 0;
845}
846
847static int parse_weakpages(void)
848{
849 char *w;
850 int zero_ok;
851 unsigned int page_no;
852 unsigned int max_writes;
853 struct weak_page *wp;
854
855 if (!weakpages)
856 return 0;
857 w = weakpages;
858 do {
859 zero_ok = (*w == '0' ? 1 : 0);
860 page_no = simple_strtoul(w, &w, 0);
861 if (!zero_ok && !page_no) {
Colin Ian King215157f2017-02-23 11:30:48 +0000862 NS_ERR("invalid weakpages.\n");
Adrian Hunter514087e72007-03-19 12:47:45 +0200863 return -EINVAL;
864 }
865 max_writes = 3;
866 if (*w == ':') {
867 w += 1;
868 max_writes = simple_strtoul(w, &w, 0);
869 }
870 if (*w == ',')
871 w += 1;
872 wp = kzalloc(sizeof(*wp), GFP_KERNEL);
873 if (!wp) {
874 NS_ERR("unable to allocate memory.\n");
875 return -ENOMEM;
876 }
877 wp->page_no = page_no;
878 wp->max_writes = max_writes;
879 list_add(&wp->list, &weak_pages);
880 } while (*w);
881 return 0;
882}
883
884static int write_error(unsigned int page_no)
885{
886 struct weak_page *wp;
887
888 list_for_each_entry(wp, &weak_pages, list)
889 if (wp->page_no == page_no) {
890 if (wp->writes_done >= wp->max_writes)
891 return 1;
892 wp->writes_done += 1;
893 return 0;
894 }
895 return 0;
896}
897
898static int parse_gravepages(void)
899{
900 char *g;
901 int zero_ok;
902 unsigned int page_no;
903 unsigned int max_reads;
904 struct grave_page *gp;
905
906 if (!gravepages)
907 return 0;
908 g = gravepages;
909 do {
910 zero_ok = (*g == '0' ? 1 : 0);
911 page_no = simple_strtoul(g, &g, 0);
912 if (!zero_ok && !page_no) {
913 NS_ERR("invalid gravepagess.\n");
914 return -EINVAL;
915 }
916 max_reads = 3;
917 if (*g == ':') {
918 g += 1;
919 max_reads = simple_strtoul(g, &g, 0);
920 }
921 if (*g == ',')
922 g += 1;
923 gp = kzalloc(sizeof(*gp), GFP_KERNEL);
924 if (!gp) {
925 NS_ERR("unable to allocate memory.\n");
926 return -ENOMEM;
927 }
928 gp->page_no = page_no;
929 gp->max_reads = max_reads;
930 list_add(&gp->list, &grave_pages);
931 } while (*g);
932 return 0;
933}
934
935static int read_error(unsigned int page_no)
936{
937 struct grave_page *gp;
938
939 list_for_each_entry(gp, &grave_pages, list)
940 if (gp->page_no == page_no) {
941 if (gp->reads_done >= gp->max_reads)
942 return 1;
943 gp->reads_done += 1;
944 return 0;
945 }
946 return 0;
947}
948
949static void free_lists(void)
950{
951 struct list_head *pos, *n;
952 list_for_each_safe(pos, n, &weak_blocks) {
953 list_del(pos);
954 kfree(list_entry(pos, struct weak_block, list));
955 }
956 list_for_each_safe(pos, n, &weak_pages) {
957 list_del(pos);
958 kfree(list_entry(pos, struct weak_page, list));
959 }
960 list_for_each_safe(pos, n, &grave_pages) {
961 list_del(pos);
962 kfree(list_entry(pos, struct grave_page, list));
963 }
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200964 kfree(erase_block_wear);
965}
966
967static int setup_wear_reporting(struct mtd_info *mtd)
968{
969 size_t mem;
970
Herton Ronaldo Krzesinski596fd462012-05-16 16:21:52 -0300971 wear_eb_count = div_u64(mtd->size, mtd->erasesize);
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200972 mem = wear_eb_count * sizeof(unsigned long);
973 if (mem / sizeof(unsigned long) != wear_eb_count) {
974 NS_ERR("Too many erase blocks for wear reporting\n");
975 return -ENOMEM;
976 }
977 erase_block_wear = kzalloc(mem, GFP_KERNEL);
978 if (!erase_block_wear) {
979 NS_ERR("Too many erase blocks for wear reporting\n");
980 return -ENOMEM;
981 }
982 return 0;
983}
984
985static void update_wear(unsigned int erase_block_no)
986{
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200987 if (!erase_block_wear)
988 return;
989 total_wear += 1;
Ezequiel Garcia5346c272012-12-03 10:31:40 -0300990 /*
991 * TODO: Notify this through a debugfs entry,
992 * instead of showing an error message.
993 */
Adrian Hunter57aa6b52007-03-19 12:40:41 +0200994 if (total_wear == 0)
995 NS_ERR("Erase counter total overflow\n");
996 erase_block_wear[erase_block_no] += 1;
997 if (erase_block_wear[erase_block_no] == 0)
998 NS_ERR("Erase counter overflow for erase block %u\n", erase_block_no);
Adrian Hunter514087e72007-03-19 12:47:45 +0200999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001/*
1002 * Returns the string representation of 'state' state.
1003 */
Vijay Kumara5602142006-10-14 21:33:34 +05301004static char *get_state_name(uint32_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 switch (NS_STATE(state)) {
1007 case STATE_CMD_READ0:
1008 return "STATE_CMD_READ0";
1009 case STATE_CMD_READ1:
1010 return "STATE_CMD_READ1";
1011 case STATE_CMD_PAGEPROG:
1012 return "STATE_CMD_PAGEPROG";
1013 case STATE_CMD_READOOB:
1014 return "STATE_CMD_READOOB";
1015 case STATE_CMD_READSTART:
1016 return "STATE_CMD_READSTART";
1017 case STATE_CMD_ERASE1:
1018 return "STATE_CMD_ERASE1";
1019 case STATE_CMD_STATUS:
1020 return "STATE_CMD_STATUS";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 case STATE_CMD_SEQIN:
1022 return "STATE_CMD_SEQIN";
1023 case STATE_CMD_READID:
1024 return "STATE_CMD_READID";
1025 case STATE_CMD_ERASE2:
1026 return "STATE_CMD_ERASE2";
1027 case STATE_CMD_RESET:
1028 return "STATE_CMD_RESET";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001029 case STATE_CMD_RNDOUT:
1030 return "STATE_CMD_RNDOUT";
1031 case STATE_CMD_RNDOUTSTART:
1032 return "STATE_CMD_RNDOUTSTART";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 case STATE_ADDR_PAGE:
1034 return "STATE_ADDR_PAGE";
1035 case STATE_ADDR_SEC:
1036 return "STATE_ADDR_SEC";
1037 case STATE_ADDR_ZERO:
1038 return "STATE_ADDR_ZERO";
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001039 case STATE_ADDR_COLUMN:
1040 return "STATE_ADDR_COLUMN";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 case STATE_DATAIN:
1042 return "STATE_DATAIN";
1043 case STATE_DATAOUT:
1044 return "STATE_DATAOUT";
1045 case STATE_DATAOUT_ID:
1046 return "STATE_DATAOUT_ID";
1047 case STATE_DATAOUT_STATUS:
1048 return "STATE_DATAOUT_STATUS";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 case STATE_READY:
1050 return "STATE_READY";
1051 case STATE_UNKNOWN:
1052 return "STATE_UNKNOWN";
1053 }
1054
1055 NS_ERR("get_state_name: unknown state, BUG\n");
1056 return NULL;
1057}
1058
1059/*
1060 * Check if command is valid.
1061 *
1062 * RETURNS: 1 if wrong command, 0 if right.
1063 */
Vijay Kumara5602142006-10-14 21:33:34 +05301064static int check_command(int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 switch (cmd) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 case NAND_CMD_READ0:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001069 case NAND_CMD_READ1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 case NAND_CMD_READSTART:
1071 case NAND_CMD_PAGEPROG:
1072 case NAND_CMD_READOOB:
1073 case NAND_CMD_ERASE1:
1074 case NAND_CMD_STATUS:
1075 case NAND_CMD_SEQIN:
1076 case NAND_CMD_READID:
1077 case NAND_CMD_ERASE2:
1078 case NAND_CMD_RESET:
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001079 case NAND_CMD_RNDOUT:
1080 case NAND_CMD_RNDOUTSTART:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 default:
1084 return 1;
1085 }
1086}
1087
1088/*
1089 * Returns state after command is accepted by command number.
1090 */
Vijay Kumara5602142006-10-14 21:33:34 +05301091static uint32_t get_state_by_command(unsigned command)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 switch (command) {
1094 case NAND_CMD_READ0:
1095 return STATE_CMD_READ0;
1096 case NAND_CMD_READ1:
1097 return STATE_CMD_READ1;
1098 case NAND_CMD_PAGEPROG:
1099 return STATE_CMD_PAGEPROG;
1100 case NAND_CMD_READSTART:
1101 return STATE_CMD_READSTART;
1102 case NAND_CMD_READOOB:
1103 return STATE_CMD_READOOB;
1104 case NAND_CMD_ERASE1:
1105 return STATE_CMD_ERASE1;
1106 case NAND_CMD_STATUS:
1107 return STATE_CMD_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 case NAND_CMD_SEQIN:
1109 return STATE_CMD_SEQIN;
1110 case NAND_CMD_READID:
1111 return STATE_CMD_READID;
1112 case NAND_CMD_ERASE2:
1113 return STATE_CMD_ERASE2;
1114 case NAND_CMD_RESET:
1115 return STATE_CMD_RESET;
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001116 case NAND_CMD_RNDOUT:
1117 return STATE_CMD_RNDOUT;
1118 case NAND_CMD_RNDOUTSTART:
1119 return STATE_CMD_RNDOUTSTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121
1122 NS_ERR("get_state_by_command: unknown command, BUG\n");
1123 return 0;
1124}
1125
1126/*
1127 * Move an address byte to the correspondent internal register.
1128 */
Vijay Kumara5602142006-10-14 21:33:34 +05301129static inline void accept_addr_byte(struct nandsim *ns, u_char bt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 uint byte = (uint)bt;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (ns->regs.count < (ns->geom.pgaddrbytes - ns->geom.secaddrbytes))
1134 ns->regs.column |= (byte << 8 * ns->regs.count);
1135 else {
1136 ns->regs.row |= (byte << 8 * (ns->regs.count -
1137 ns->geom.pgaddrbytes +
1138 ns->geom.secaddrbytes));
1139 }
1140
1141 return;
1142}
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/*
1145 * Switch to STATE_READY state.
1146 */
Vijay Kumara5602142006-10-14 21:33:34 +05301147static inline void switch_to_ready_state(struct nandsim *ns, u_char status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 NS_DBG("switch_to_ready_state: switch to %s state\n", get_state_name(STATE_READY));
1150
1151 ns->state = STATE_READY;
1152 ns->nxstate = STATE_UNKNOWN;
1153 ns->op = NULL;
1154 ns->npstates = 0;
1155 ns->stateidx = 0;
1156 ns->regs.num = 0;
1157 ns->regs.count = 0;
1158 ns->regs.off = 0;
1159 ns->regs.row = 0;
1160 ns->regs.column = 0;
1161 ns->regs.status = status;
1162}
1163
1164/*
1165 * If the operation isn't known yet, try to find it in the global array
1166 * of supported operations.
1167 *
1168 * Operation can be unknown because of the following.
srimugunthandaf05ec2010-11-13 12:46:05 +02001169 * 1. New command was accepted and this is the first call to find the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * correspondent states chain. In this case ns->npstates = 0;
srimugunthandaf05ec2010-11-13 12:46:05 +02001171 * 2. There are several operations which begin with the same command(s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * (for example program from the second half and read from the
1173 * second half operations both begin with the READ1 command). In this
1174 * case the ns->pstates[] array contains previous states.
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001175 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 * Thus, the function tries to find operation containing the following
1177 * states (if the 'flag' parameter is 0):
1178 * ns->pstates[0], ... ns->pstates[ns->npstates], ns->state
1179 *
1180 * If (one and only one) matching operation is found, it is accepted (
1181 * ns->ops, ns->state, ns->nxstate are initialized, ns->npstate is
1182 * zeroed).
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001183 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001184 * If there are several matches, the current state is pushed to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * ns->pstates.
1186 *
1187 * The operation can be unknown only while commands are input to the chip.
1188 * As soon as address command is accepted, the operation must be known.
1189 * In such situation the function is called with 'flag' != 0, and the
1190 * operation is searched using the following pattern:
1191 * ns->pstates[0], ... ns->pstates[ns->npstates], <address input>
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001192 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001193 * It is supposed that this pattern must either match one operation or
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * none. There can't be ambiguity in that case.
1195 *
srimugunthandaf05ec2010-11-13 12:46:05 +02001196 * If no matches found, the function does the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 * 1. if there are saved states present, try to ignore them and search
1198 * again only using the last command. If nothing was found, switch
1199 * to the STATE_READY state.
1200 * 2. if there are no saved states, switch to the STATE_READY state.
1201 *
1202 * RETURNS: -2 - no matched operations found.
1203 * -1 - several matches.
1204 * 0 - operation is found.
1205 */
Vijay Kumara5602142006-10-14 21:33:34 +05301206static int find_operation(struct nandsim *ns, uint32_t flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 int opsfound = 0;
1209 int i, j, idx = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 for (i = 0; i < NS_OPER_NUM; i++) {
1212
1213 int found = 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (!(ns->options & ops[i].reqopts))
1216 /* Ignore operations we can't perform */
1217 continue;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (flag) {
1220 if (!(ops[i].states[ns->npstates] & STATE_ADDR_MASK))
1221 continue;
1222 } else {
1223 if (NS_STATE(ns->state) != NS_STATE(ops[i].states[ns->npstates]))
1224 continue;
1225 }
1226
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001227 for (j = 0; j < ns->npstates; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (NS_STATE(ops[i].states[j]) != NS_STATE(ns->pstates[j])
1229 && (ns->options & ops[idx].reqopts)) {
1230 found = 0;
1231 break;
1232 }
1233
1234 if (found) {
1235 idx = i;
1236 opsfound += 1;
1237 }
1238 }
1239
1240 if (opsfound == 1) {
1241 /* Exact match */
1242 ns->op = &ops[idx].states[0];
1243 if (flag) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001244 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * In this case the find_operation function was
1246 * called when address has just began input. But it isn't
1247 * yet fully input and the current state must
1248 * not be one of STATE_ADDR_*, but the STATE_ADDR_*
1249 * state must be the next state (ns->nxstate).
1250 */
1251 ns->stateidx = ns->npstates - 1;
1252 } else {
1253 ns->stateidx = ns->npstates;
1254 }
1255 ns->npstates = 0;
1256 ns->state = ns->op[ns->stateidx];
1257 ns->nxstate = ns->op[ns->stateidx + 1];
1258 NS_DBG("find_operation: operation found, index: %d, state: %s, nxstate %s\n",
1259 idx, get_state_name(ns->state), get_state_name(ns->nxstate));
1260 return 0;
1261 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (opsfound == 0) {
1264 /* Nothing was found. Try to ignore previous commands (if any) and search again */
1265 if (ns->npstates != 0) {
1266 NS_DBG("find_operation: no operation found, try again with state %s\n",
1267 get_state_name(ns->state));
1268 ns->npstates = 0;
1269 return find_operation(ns, 0);
1270
1271 }
1272 NS_DBG("find_operation: no operations found\n");
1273 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1274 return -2;
1275 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (flag) {
1278 /* This shouldn't happen */
1279 NS_DBG("find_operation: BUG, operation must be known if address is input\n");
1280 return -2;
1281 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 NS_DBG("find_operation: there is still ambiguity\n");
1284
1285 ns->pstates[ns->npstates++] = ns->state;
1286
1287 return -1;
1288}
1289
Adrian Huntera9fc8992008-11-12 16:06:07 +02001290static void put_pages(struct nandsim *ns)
1291{
1292 int i;
1293
1294 for (i = 0; i < ns->held_cnt; i++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001295 put_page(ns->held_pages[i]);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001296}
1297
1298/* Get page cache pages in advance to provide NOFS memory allocation */
1299static int get_pages(struct nandsim *ns, struct file *file, size_t count, loff_t pos)
1300{
1301 pgoff_t index, start_index, end_index;
1302 struct page *page;
1303 struct address_space *mapping = file->f_mapping;
1304
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001305 start_index = pos >> PAGE_SHIFT;
1306 end_index = (pos + count - 1) >> PAGE_SHIFT;
Adrian Huntera9fc8992008-11-12 16:06:07 +02001307 if (end_index - start_index + 1 > NS_MAX_HELD_PAGES)
1308 return -EINVAL;
1309 ns->held_cnt = 0;
1310 for (index = start_index; index <= end_index; index++) {
1311 page = find_get_page(mapping, index);
1312 if (page == NULL) {
1313 page = find_or_create_page(mapping, index, GFP_NOFS);
1314 if (page == NULL) {
1315 write_inode_now(mapping->host, 1);
1316 page = find_or_create_page(mapping, index, GFP_NOFS);
1317 }
1318 if (page == NULL) {
1319 put_pages(ns);
1320 return -ENOMEM;
1321 }
1322 unlock_page(page);
1323 }
1324 ns->held_pages[ns->held_cnt++] = page;
1325 }
1326 return 0;
1327}
1328
Al Viro7bb307e2013-02-23 14:51:48 -05001329static ssize_t read_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t pos)
Adrian Huntera9fc8992008-11-12 16:06:07 +02001330{
Adrian Huntera9fc8992008-11-12 16:06:07 +02001331 ssize_t tx;
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001332 int err;
1333 unsigned int noreclaim_flag;
Adrian Huntera9fc8992008-11-12 16:06:07 +02001334
Al Viro7bb307e2013-02-23 14:51:48 -05001335 err = get_pages(ns, file, count, pos);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001336 if (err)
1337 return err;
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001338 noreclaim_flag = memalloc_noreclaim_save();
Christoph Hellwigbdd1d2d2017-09-01 17:39:13 +02001339 tx = kernel_read(file, buf, count, &pos);
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001340 memalloc_noreclaim_restore(noreclaim_flag);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001341 put_pages(ns);
1342 return tx;
1343}
1344
Al Viro7bb307e2013-02-23 14:51:48 -05001345static ssize_t write_file(struct nandsim *ns, struct file *file, void *buf, size_t count, loff_t pos)
Adrian Huntera9fc8992008-11-12 16:06:07 +02001346{
Adrian Huntera9fc8992008-11-12 16:06:07 +02001347 ssize_t tx;
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001348 int err;
1349 unsigned int noreclaim_flag;
Adrian Huntera9fc8992008-11-12 16:06:07 +02001350
Al Viro7bb307e2013-02-23 14:51:48 -05001351 err = get_pages(ns, file, count, pos);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001352 if (err)
1353 return err;
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001354 noreclaim_flag = memalloc_noreclaim_save();
Christoph Hellwige13ec932017-09-01 17:39:14 +02001355 tx = kernel_write(file, buf, count, &pos);
Vlastimil Babkadcbe8212017-05-08 15:59:57 -07001356 memalloc_noreclaim_restore(noreclaim_flag);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001357 put_pages(ns);
1358 return tx;
1359}
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361/*
Vijay Kumard086d432006-10-08 22:02:31 +05301362 * Returns a pointer to the current page.
1363 */
1364static inline union ns_mem *NS_GET_PAGE(struct nandsim *ns)
1365{
1366 return &(ns->pages[ns->regs.row]);
1367}
1368
1369/*
1370 * Retuns a pointer to the current byte, within the current page.
1371 */
1372static inline u_char *NS_PAGE_BYTE_OFF(struct nandsim *ns)
1373{
1374 return NS_GET_PAGE(ns)->byte + ns->regs.column + ns->regs.off;
1375}
1376
Jingoo Hanb2b263f22013-08-07 16:13:32 +09001377static int do_read_error(struct nandsim *ns, int num)
Adrian Huntera9fc8992008-11-12 16:06:07 +02001378{
1379 unsigned int page_no = ns->regs.row;
1380
1381 if (read_error(page_no)) {
Akinobu Mita7e45bf82012-12-17 16:04:32 -08001382 prandom_bytes(ns->buf.byte, num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001383 NS_WARN("simulating read error in page %u\n", page_no);
1384 return 1;
1385 }
1386 return 0;
1387}
1388
Jingoo Hanb2b263f22013-08-07 16:13:32 +09001389static void do_bit_flips(struct nandsim *ns, int num)
Adrian Huntera9fc8992008-11-12 16:06:07 +02001390{
Akinobu Mitaaca662a2013-01-03 21:19:13 +09001391 if (bitflips && prandom_u32() < (1 << 22)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +02001392 int flips = 1;
1393 if (bitflips > 1)
Akinobu Mitaaca662a2013-01-03 21:19:13 +09001394 flips = (prandom_u32() % (int) bitflips) + 1;
Adrian Huntera9fc8992008-11-12 16:06:07 +02001395 while (flips--) {
Akinobu Mitaaca662a2013-01-03 21:19:13 +09001396 int pos = prandom_u32() % (num * 8);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001397 ns->buf.byte[pos / 8] ^= (1 << (pos % 8));
1398 NS_WARN("read_page: flipping bit %d in page %d "
1399 "reading from %d ecc: corrected=%u failed=%u\n",
1400 pos, ns->regs.row, ns->regs.column + ns->regs.off,
1401 nsmtd->ecc_stats.corrected, nsmtd->ecc_stats.failed);
1402 }
1403 }
1404}
1405
Vijay Kumard086d432006-10-08 22:02:31 +05301406/*
1407 * Fill the NAND buffer with data read from the specified page.
1408 */
1409static void read_page(struct nandsim *ns, int num)
1410{
1411 union ns_mem *mypage;
1412
Adrian Huntera9fc8992008-11-12 16:06:07 +02001413 if (ns->cfile) {
Akinobu Mita08efe912013-07-28 11:21:53 +09001414 if (!test_bit(ns->regs.row, ns->pages_written)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +02001415 NS_DBG("read_page: page %d not written\n", ns->regs.row);
1416 memset(ns->buf.byte, 0xFF, num);
1417 } else {
1418 loff_t pos;
1419 ssize_t tx;
1420
1421 NS_DBG("read_page: page %d written, reading from %d\n",
1422 ns->regs.row, ns->regs.column + ns->regs.off);
1423 if (do_read_error(ns, num))
1424 return;
Akinobu Mita6d07fcf2013-07-28 11:21:56 +09001425 pos = (loff_t)NS_RAW_OFFSET(ns) + ns->regs.off;
Al Viro7bb307e2013-02-23 14:51:48 -05001426 tx = read_file(ns, ns->cfile, ns->buf.byte, num, pos);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001427 if (tx != num) {
1428 NS_ERR("read_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1429 return;
1430 }
1431 do_bit_flips(ns, num);
1432 }
1433 return;
1434 }
1435
Vijay Kumard086d432006-10-08 22:02:31 +05301436 mypage = NS_GET_PAGE(ns);
1437 if (mypage->byte == NULL) {
1438 NS_DBG("read_page: page %d not allocated\n", ns->regs.row);
1439 memset(ns->buf.byte, 0xFF, num);
1440 } else {
1441 NS_DBG("read_page: page %d allocated, reading from %d\n",
1442 ns->regs.row, ns->regs.column + ns->regs.off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001443 if (do_read_error(ns, num))
Adrian Hunter514087e72007-03-19 12:47:45 +02001444 return;
Vijay Kumard086d432006-10-08 22:02:31 +05301445 memcpy(ns->buf.byte, NS_PAGE_BYTE_OFF(ns), num);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001446 do_bit_flips(ns, num);
Vijay Kumard086d432006-10-08 22:02:31 +05301447 }
1448}
1449
1450/*
1451 * Erase all pages in the specified sector.
1452 */
1453static void erase_sector(struct nandsim *ns)
1454{
1455 union ns_mem *mypage;
1456 int i;
1457
Adrian Huntera9fc8992008-11-12 16:06:07 +02001458 if (ns->cfile) {
1459 for (i = 0; i < ns->geom.pgsec; i++)
Akinobu Mita08efe912013-07-28 11:21:53 +09001460 if (__test_and_clear_bit(ns->regs.row + i,
1461 ns->pages_written)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +02001462 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row + i);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001463 }
1464 return;
1465 }
1466
Vijay Kumard086d432006-10-08 22:02:31 +05301467 mypage = NS_GET_PAGE(ns);
1468 for (i = 0; i < ns->geom.pgsec; i++) {
1469 if (mypage->byte != NULL) {
1470 NS_DBG("erase_sector: freeing page %d\n", ns->regs.row+i);
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001471 kmem_cache_free(ns->nand_pages_slab, mypage->byte);
Vijay Kumard086d432006-10-08 22:02:31 +05301472 mypage->byte = NULL;
1473 }
1474 mypage++;
1475 }
1476}
1477
1478/*
1479 * Program the specified page with the contents from the NAND buffer.
1480 */
1481static int prog_page(struct nandsim *ns, int num)
1482{
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001483 int i;
Vijay Kumard086d432006-10-08 22:02:31 +05301484 union ns_mem *mypage;
1485 u_char *pg_off;
1486
Adrian Huntera9fc8992008-11-12 16:06:07 +02001487 if (ns->cfile) {
Al Viro7bb307e2013-02-23 14:51:48 -05001488 loff_t off;
Adrian Huntera9fc8992008-11-12 16:06:07 +02001489 ssize_t tx;
1490 int all;
1491
1492 NS_DBG("prog_page: writing page %d\n", ns->regs.row);
1493 pg_off = ns->file_buf + ns->regs.column + ns->regs.off;
Akinobu Mita6d07fcf2013-07-28 11:21:56 +09001494 off = (loff_t)NS_RAW_OFFSET(ns) + ns->regs.off;
Akinobu Mita08efe912013-07-28 11:21:53 +09001495 if (!test_bit(ns->regs.row, ns->pages_written)) {
Adrian Huntera9fc8992008-11-12 16:06:07 +02001496 all = 1;
1497 memset(ns->file_buf, 0xff, ns->geom.pgszoob);
1498 } else {
1499 all = 0;
Al Viro7bb307e2013-02-23 14:51:48 -05001500 tx = read_file(ns, ns->cfile, pg_off, num, off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001501 if (tx != num) {
1502 NS_ERR("prog_page: read error for page %d ret %ld\n", ns->regs.row, (long)tx);
1503 return -1;
1504 }
1505 }
1506 for (i = 0; i < num; i++)
1507 pg_off[i] &= ns->buf.byte[i];
1508 if (all) {
Al Viro7bb307e2013-02-23 14:51:48 -05001509 loff_t pos = (loff_t)ns->regs.row * ns->geom.pgszoob;
1510 tx = write_file(ns, ns->cfile, ns->file_buf, ns->geom.pgszoob, pos);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001511 if (tx != ns->geom.pgszoob) {
1512 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1513 return -1;
1514 }
Akinobu Mita08efe912013-07-28 11:21:53 +09001515 __set_bit(ns->regs.row, ns->pages_written);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001516 } else {
Al Viro7bb307e2013-02-23 14:51:48 -05001517 tx = write_file(ns, ns->cfile, pg_off, num, off);
Adrian Huntera9fc8992008-11-12 16:06:07 +02001518 if (tx != num) {
1519 NS_ERR("prog_page: write error for page %d ret %ld\n", ns->regs.row, (long)tx);
1520 return -1;
1521 }
1522 }
1523 return 0;
1524 }
1525
Vijay Kumard086d432006-10-08 22:02:31 +05301526 mypage = NS_GET_PAGE(ns);
1527 if (mypage->byte == NULL) {
1528 NS_DBG("prog_page: allocating page %d\n", ns->regs.row);
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001529 /*
1530 * We allocate memory with GFP_NOFS because a flash FS may
1531 * utilize this. If it is holding an FS lock, then gets here,
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001532 * then kernel memory alloc runs writeback which goes to the FS
1533 * again and deadlocks. This was seen in practice.
Artem Bityutskiy98b830d2007-08-28 20:33:32 +03001534 */
Alexey Korolev8a4c2492008-11-13 13:40:38 +00001535 mypage->byte = kmem_cache_alloc(ns->nand_pages_slab, GFP_NOFS);
Vijay Kumard086d432006-10-08 22:02:31 +05301536 if (mypage->byte == NULL) {
1537 NS_ERR("prog_page: error allocating memory for page %d\n", ns->regs.row);
1538 return -1;
1539 }
1540 memset(mypage->byte, 0xFF, ns->geom.pgszoob);
1541 }
1542
1543 pg_off = NS_PAGE_BYTE_OFF(ns);
Artem Bityutskiy82810b7b62006-10-20 11:23:56 +03001544 for (i = 0; i < num; i++)
1545 pg_off[i] &= ns->buf.byte[i];
Vijay Kumard086d432006-10-08 22:02:31 +05301546
1547 return 0;
1548}
1549
1550/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 * If state has any action bit, perform this action.
1552 *
1553 * RETURNS: 0 if success, -1 if error.
1554 */
Vijay Kumara5602142006-10-14 21:33:34 +05301555static int do_state_action(struct nandsim *ns, uint32_t action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Vijay Kumard086d432006-10-08 22:02:31 +05301557 int num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 int busdiv = ns->busw == 8 ? 1 : 2;
Adrian Hunter514087e72007-03-19 12:47:45 +02001559 unsigned int erase_block_no, page_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 action &= ACTION_MASK;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 /* Check that page address input is correct */
1564 if (action != ACTION_SECERASE && ns->regs.row >= ns->geom.pgnum) {
1565 NS_WARN("do_state_action: wrong page number (%#x)\n", ns->regs.row);
1566 return -1;
1567 }
1568
1569 switch (action) {
1570
1571 case ACTION_CPY:
1572 /*
1573 * Copy page data to the internal buffer.
1574 */
1575
1576 /* Column shouldn't be very large */
1577 if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) {
1578 NS_ERR("do_state_action: column number is too large\n");
1579 break;
1580 }
1581 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
Vijay Kumard086d432006-10-08 22:02:31 +05301582 read_page(ns, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 NS_DBG("do_state_action: (ACTION_CPY:) copy %d bytes to int buf, raw offset %d\n",
1585 num, NS_RAW_OFFSET(ns) + ns->regs.off);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (ns->regs.off == 0)
1588 NS_LOG("read page %d\n", ns->regs.row);
1589 else if (ns->regs.off < ns->geom.pgsz)
1590 NS_LOG("read page %d (second half)\n", ns->regs.row);
1591 else
1592 NS_LOG("read OOB of page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 NS_UDELAY(access_delay);
1595 NS_UDELAY(input_cycle * ns->geom.pgsz / 1000 / busdiv);
1596
1597 break;
1598
1599 case ACTION_SECERASE:
1600 /*
1601 * Erase sector.
1602 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (ns->lines.wp) {
1605 NS_ERR("do_state_action: device is write-protected, ignore sector erase\n");
1606 return -1;
1607 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (ns->regs.row >= ns->geom.pgnum - ns->geom.pgsec
1610 || (ns->regs.row & ~(ns->geom.secsz - 1))) {
1611 NS_ERR("do_state_action: wrong sector address (%#x)\n", ns->regs.row);
1612 return -1;
1613 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 ns->regs.row = (ns->regs.row <<
1616 8 * (ns->geom.pgaddrbytes - ns->geom.secaddrbytes)) | ns->regs.column;
1617 ns->regs.column = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001618
Adrian Hunter514087e72007-03-19 12:47:45 +02001619 erase_block_no = ns->regs.row >> (ns->geom.secshift - ns->geom.pgshift);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 NS_DBG("do_state_action: erase sector at address %#x, off = %d\n",
1622 ns->regs.row, NS_RAW_OFFSET(ns));
Adrian Hunter514087e72007-03-19 12:47:45 +02001623 NS_LOG("erase sector %u\n", erase_block_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Vijay Kumard086d432006-10-08 22:02:31 +05301625 erase_sector(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 NS_MDELAY(erase_delay);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001628
Adrian Hunter57aa6b52007-03-19 12:40:41 +02001629 if (erase_block_wear)
1630 update_wear(erase_block_no);
1631
Adrian Hunter514087e72007-03-19 12:47:45 +02001632 if (erase_error(erase_block_no)) {
1633 NS_WARN("simulating erase failure in erase block %u\n", erase_block_no);
1634 return -1;
1635 }
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 break;
1638
1639 case ACTION_PRGPAGE:
1640 /*
srimugunthandaf05ec2010-11-13 12:46:05 +02001641 * Program page - move internal buffer data to the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 */
1643
1644 if (ns->lines.wp) {
1645 NS_WARN("do_state_action: device is write-protected, programm\n");
1646 return -1;
1647 }
1648
1649 num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1650 if (num != ns->regs.count) {
1651 NS_ERR("do_state_action: too few bytes were input (%d instead of %d)\n",
1652 ns->regs.count, num);
1653 return -1;
1654 }
1655
Vijay Kumard086d432006-10-08 22:02:31 +05301656 if (prog_page(ns, num) == -1)
1657 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Adrian Hunter514087e72007-03-19 12:47:45 +02001659 page_no = ns->regs.row;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 NS_DBG("do_state_action: copy %d bytes from int buf to (%#x, %#x), raw off = %d\n",
1662 num, ns->regs.row, ns->regs.column, NS_RAW_OFFSET(ns) + ns->regs.off);
1663 NS_LOG("programm page %d\n", ns->regs.row);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 NS_UDELAY(programm_delay);
1666 NS_UDELAY(output_cycle * ns->geom.pgsz / 1000 / busdiv);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001667
Adrian Hunter514087e72007-03-19 12:47:45 +02001668 if (write_error(page_no)) {
1669 NS_WARN("simulating write failure in page %u\n", page_no);
1670 return -1;
1671 }
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 case ACTION_ZEROOFF:
1676 NS_DBG("do_state_action: set internal offset to 0\n");
1677 ns->regs.off = 0;
1678 break;
1679
1680 case ACTION_HALFOFF:
1681 if (!(ns->options & OPT_PAGE512_8BIT)) {
1682 NS_ERR("do_state_action: BUG! can't skip half of page for non-512"
1683 "byte page size 8x chips\n");
1684 return -1;
1685 }
1686 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz/2);
1687 ns->regs.off = ns->geom.pgsz/2;
1688 break;
1689
1690 case ACTION_OOBOFF:
1691 NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz);
1692 ns->regs.off = ns->geom.pgsz;
1693 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 default:
1696 NS_DBG("do_state_action: BUG! unknown action\n");
1697 }
1698
1699 return 0;
1700}
1701
1702/*
1703 * Switch simulator's state.
1704 */
Vijay Kumara5602142006-10-14 21:33:34 +05301705static void switch_state(struct nandsim *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 if (ns->op) {
1708 /*
1709 * The current operation have already been identified.
1710 * Just follow the states chain.
1711 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 ns->stateidx += 1;
1714 ns->state = ns->nxstate;
1715 ns->nxstate = ns->op[ns->stateidx + 1];
1716
1717 NS_DBG("switch_state: operation is known, switch to the next state, "
1718 "state: %s, nxstate: %s\n",
1719 get_state_name(ns->state), get_state_name(ns->nxstate));
1720
1721 /* See, whether we need to do some action */
1722 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1723 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1724 return;
1725 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 } else {
1728 /*
1729 * We don't yet know which operation we perform.
1730 * Try to identify it.
1731 */
1732
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001733 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * The only event causing the switch_state function to
1735 * be called with yet unknown operation is new command.
1736 */
1737 ns->state = get_state_by_command(ns->regs.command);
1738
1739 NS_DBG("switch_state: operation is unknown, try to find it\n");
1740
1741 if (find_operation(ns, 0) != 0)
1742 return;
1743
1744 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1745 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1746 return;
1747 }
1748 }
1749
1750 /* For 16x devices column means the page offset in words */
1751 if ((ns->nxstate & STATE_ADDR_MASK) && ns->busw == 16) {
1752 NS_DBG("switch_state: double the column number for 16x device\n");
1753 ns->regs.column <<= 1;
1754 }
1755
1756 if (NS_STATE(ns->nxstate) == STATE_READY) {
1757 /*
1758 * The current state is the last. Return to STATE_READY
1759 */
1760
1761 u_char status = NS_STATUS_OK(ns);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 /* In case of data states, see if all bytes were input/output */
1764 if ((ns->state & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK))
1765 && ns->regs.count != ns->regs.num) {
1766 NS_WARN("switch_state: not all bytes were processed, %d left\n",
1767 ns->regs.num - ns->regs.count);
1768 status = NS_STATUS_FAILED(ns);
1769 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 NS_DBG("switch_state: operation complete, switch to STATE_READY state\n");
1772
1773 switch_to_ready_state(ns, status);
1774
1775 return;
1776 } else if (ns->nxstate & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK)) {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001777 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * If the next state is data input/output, switch to it now
1779 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 ns->state = ns->nxstate;
1782 ns->nxstate = ns->op[++ns->stateidx + 1];
1783 ns->regs.num = ns->regs.count = 0;
1784
1785 NS_DBG("switch_state: the next state is data I/O, switch, "
1786 "state: %s, nxstate: %s\n",
1787 get_state_name(ns->state), get_state_name(ns->nxstate));
1788
1789 /*
1790 * Set the internal register to the count of bytes which
1791 * are expected to be input or output
1792 */
1793 switch (NS_STATE(ns->state)) {
1794 case STATE_DATAIN:
1795 case STATE_DATAOUT:
1796 ns->regs.num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;
1797 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 case STATE_DATAOUT_ID:
1800 ns->regs.num = ns->geom.idbytes;
1801 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 case STATE_DATAOUT_STATUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 ns->regs.count = ns->regs.num = 0;
1805 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 default:
1808 NS_ERR("switch_state: BUG! unknown data state\n");
1809 }
1810
1811 } else if (ns->nxstate & STATE_ADDR_MASK) {
1812 /*
1813 * If the next state is address input, set the internal
1814 * register to the number of expected address bytes
1815 */
1816
1817 ns->regs.count = 0;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 switch (NS_STATE(ns->nxstate)) {
1820 case STATE_ADDR_PAGE:
1821 ns->regs.num = ns->geom.pgaddrbytes;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 break;
1824 case STATE_ADDR_SEC:
1825 ns->regs.num = ns->geom.secaddrbytes;
1826 break;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 case STATE_ADDR_ZERO:
1829 ns->regs.num = 1;
1830 break;
1831
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001832 case STATE_ADDR_COLUMN:
1833 /* Column address is always 2 bytes */
1834 ns->regs.num = ns->geom.pgaddrbytes - ns->geom.secaddrbytes;
1835 break;
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 default:
1838 NS_ERR("switch_state: BUG! unknown address state\n");
1839 }
1840 } else {
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001841 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 * Just reset internal counters.
1843 */
1844
1845 ns->regs.num = 0;
1846 ns->regs.count = 0;
1847 }
1848}
1849
Boris Brezillon7e534322018-09-06 14:05:22 +02001850static u_char ns_nand_read_byte(struct nand_chip *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Brian Norrisc66b6512016-01-07 11:06:46 -08001852 struct nandsim *ns = nand_get_controller_data(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 u_char outb = 0x00;
1854
1855 /* Sanity and correctness checks */
1856 if (!ns->lines.ce) {
1857 NS_ERR("read_byte: chip is disabled, return %#x\n", (uint)outb);
1858 return outb;
1859 }
1860 if (ns->lines.ale || ns->lines.cle) {
1861 NS_ERR("read_byte: ALE or CLE pin is high, return %#x\n", (uint)outb);
1862 return outb;
1863 }
1864 if (!(ns->state & STATE_DATAOUT_MASK)) {
1865 NS_WARN("read_byte: unexpected data output cycle, state is %s "
1866 "return %#x\n", get_state_name(ns->state), (uint)outb);
1867 return outb;
1868 }
1869
1870 /* Status register may be read as many times as it is wanted */
1871 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS) {
1872 NS_DBG("read_byte: return %#x status\n", ns->regs.status);
1873 return ns->regs.status;
1874 }
1875
1876 /* Check if there is any data in the internal buffer which may be read */
1877 if (ns->regs.count == ns->regs.num) {
1878 NS_WARN("read_byte: no more data to output, return %#x\n", (uint)outb);
1879 return outb;
1880 }
1881
1882 switch (NS_STATE(ns->state)) {
1883 case STATE_DATAOUT:
1884 if (ns->busw == 8) {
1885 outb = ns->buf.byte[ns->regs.count];
1886 ns->regs.count += 1;
1887 } else {
1888 outb = (u_char)cpu_to_le16(ns->buf.word[ns->regs.count >> 1]);
1889 ns->regs.count += 2;
1890 }
1891 break;
1892 case STATE_DATAOUT_ID:
1893 NS_DBG("read_byte: read ID byte %d, total = %d\n", ns->regs.count, ns->regs.num);
1894 outb = ns->ids[ns->regs.count];
1895 ns->regs.count += 1;
1896 break;
1897 default:
1898 BUG();
1899 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (ns->regs.count == ns->regs.num) {
1902 NS_DBG("read_byte: all bytes were read\n");
1903
Brian Norris831d3162012-05-01 17:12:53 -07001904 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 switch_state(ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return outb;
1909}
1910
Boris Brezillonc0739d82018-09-06 14:05:23 +02001911static void ns_nand_write_byte(struct nand_chip *chip, u_char byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Brian Norrisc66b6512016-01-07 11:06:46 -08001913 struct nandsim *ns = nand_get_controller_data(chip);
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 /* Sanity and correctness checks */
1916 if (!ns->lines.ce) {
1917 NS_ERR("write_byte: chip is disabled, ignore write\n");
1918 return;
1919 }
1920 if (ns->lines.ale && ns->lines.cle) {
1921 NS_ERR("write_byte: ALE and CLE pins are high simultaneously, ignore write\n");
1922 return;
1923 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (ns->lines.cle == 1) {
1926 /*
1927 * The byte written is a command.
1928 */
1929
1930 if (byte == NAND_CMD_RESET) {
1931 NS_LOG("reset chip\n");
1932 switch_to_ready_state(ns, NS_STATUS_OK(ns));
1933 return;
1934 }
1935
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001936 /* Check that the command byte is correct */
1937 if (check_command(byte)) {
1938 NS_ERR("write_byte: unknown command %#x\n", (uint)byte);
1939 return;
1940 }
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (NS_STATE(ns->state) == STATE_DATAOUT_STATUS
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001943 || NS_STATE(ns->state) == STATE_DATAOUT) {
1944 int row = ns->regs.row;
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 switch_state(ns);
Artem Bityutskiy74216be2008-07-30 11:18:42 +03001947 if (byte == NAND_CMD_RNDOUT)
1948 ns->regs.row = row;
1949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 /* Check if chip is expecting command */
1952 if (NS_STATE(ns->nxstate) != STATE_UNKNOWN && !(ns->nxstate & STATE_CMD_MASK)) {
Adrian Hunter9359ea462008-11-12 16:06:40 +02001953 /* Do not warn if only 2 id bytes are read */
1954 if (!(ns->regs.command == NAND_CMD_READID &&
1955 NS_STATE(ns->state) == STATE_DATAOUT_ID && ns->regs.count == 2)) {
1956 /*
1957 * We are in situation when something else (not command)
1958 * was expected but command was input. In this case ignore
1959 * previous command(s)/state(s) and accept the last one.
1960 */
1961 NS_WARN("write_byte: command (%#x) wasn't expected, expected state is %s, "
1962 "ignore previous states\n", (uint)byte, get_state_name(ns->nxstate));
1963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1965 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 NS_DBG("command byte corresponding to %s state accepted\n",
1968 get_state_name(get_state_by_command(byte)));
1969 ns->regs.command = byte;
1970 switch_state(ns);
1971
1972 } else if (ns->lines.ale == 1) {
1973 /*
1974 * The byte written is an address.
1975 */
1976
1977 if (NS_STATE(ns->nxstate) == STATE_UNKNOWN) {
1978
1979 NS_DBG("write_byte: operation isn't known yet, identify it\n");
1980
1981 if (find_operation(ns, 1) < 0)
1982 return;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {
1985 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
1986 return;
1987 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 ns->regs.count = 0;
1990 switch (NS_STATE(ns->nxstate)) {
1991 case STATE_ADDR_PAGE:
1992 ns->regs.num = ns->geom.pgaddrbytes;
1993 break;
1994 case STATE_ADDR_SEC:
1995 ns->regs.num = ns->geom.secaddrbytes;
1996 break;
1997 case STATE_ADDR_ZERO:
1998 ns->regs.num = 1;
1999 break;
2000 default:
2001 BUG();
2002 }
2003 }
2004
2005 /* Check that chip is expecting address */
2006 if (!(ns->nxstate & STATE_ADDR_MASK)) {
2007 NS_ERR("write_byte: address (%#x) isn't expected, expected state is %s, "
2008 "switch to STATE_READY\n", (uint)byte, get_state_name(ns->nxstate));
2009 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2010 return;
2011 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 /* Check if this is expected byte */
2014 if (ns->regs.count == ns->regs.num) {
2015 NS_ERR("write_byte: no more address bytes expected\n");
2016 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2017 return;
2018 }
2019
2020 accept_addr_byte(ns, byte);
2021
2022 ns->regs.count += 1;
2023
2024 NS_DBG("write_byte: address byte %#x was accepted (%d bytes input, %d expected)\n",
2025 (uint)byte, ns->regs.count, ns->regs.num);
2026
2027 if (ns->regs.count == ns->regs.num) {
2028 NS_DBG("address (%#x, %#x) is accepted\n", ns->regs.row, ns->regs.column);
2029 switch_state(ns);
2030 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 } else {
2033 /*
2034 * The byte written is an input data.
2035 */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* Check that chip is expecting data input */
2038 if (!(ns->state & STATE_DATAIN_MASK)) {
2039 NS_ERR("write_byte: data input (%#x) isn't expected, state is %s, "
2040 "switch to %s\n", (uint)byte,
2041 get_state_name(ns->state), get_state_name(STATE_READY));
2042 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2043 return;
2044 }
2045
2046 /* Check if this is expected byte */
2047 if (ns->regs.count == ns->regs.num) {
2048 NS_WARN("write_byte: %u input bytes has already been accepted, ignore write\n",
2049 ns->regs.num);
2050 return;
2051 }
2052
2053 if (ns->busw == 8) {
2054 ns->buf.byte[ns->regs.count] = byte;
2055 ns->regs.count += 1;
2056 } else {
2057 ns->buf.word[ns->regs.count >> 1] = cpu_to_le16((uint16_t)byte);
2058 ns->regs.count += 2;
2059 }
2060 }
2061
2062 return;
2063}
2064
Boris Brezillonc0739d82018-09-06 14:05:23 +02002065static void ns_nand_write_buf(struct nand_chip *chip, const u_char *buf,
2066 int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Brian Norrisc66b6512016-01-07 11:06:46 -08002068 struct nandsim *ns = nand_get_controller_data(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 /* Check that chip is expecting data input */
2071 if (!(ns->state & STATE_DATAIN_MASK)) {
2072 NS_ERR("write_buf: data input isn't expected, state is %s, "
2073 "switch to STATE_READY\n", get_state_name(ns->state));
2074 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2075 return;
2076 }
2077
2078 /* Check if these are expected bytes */
2079 if (ns->regs.count + len > ns->regs.num) {
2080 NS_ERR("write_buf: too many input bytes\n");
2081 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2082 return;
2083 }
2084
2085 memcpy(ns->buf.byte + ns->regs.count, buf, len);
2086 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (ns->regs.count == ns->regs.num) {
2089 NS_DBG("write_buf: %d bytes were written\n", ns->regs.count);
2090 }
2091}
2092
Boris Brezillon7e534322018-09-06 14:05:22 +02002093static void ns_nand_read_buf(struct nand_chip *chip, u_char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Brian Norrisc66b6512016-01-07 11:06:46 -08002095 struct nandsim *ns = nand_get_controller_data(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 /* Sanity and correctness checks */
2098 if (!ns->lines.ce) {
2099 NS_ERR("read_buf: chip is disabled\n");
2100 return;
2101 }
2102 if (ns->lines.ale || ns->lines.cle) {
2103 NS_ERR("read_buf: ALE or CLE pin is high\n");
2104 return;
2105 }
2106 if (!(ns->state & STATE_DATAOUT_MASK)) {
2107 NS_WARN("read_buf: unexpected data output cycle, current state is %s\n",
2108 get_state_name(ns->state));
2109 return;
2110 }
2111
2112 if (NS_STATE(ns->state) != STATE_DATAOUT) {
2113 int i;
2114
2115 for (i = 0; i < len; i++)
Richard Weinberger1c14fe22019-04-17 20:54:33 +02002116 buf[i] = ns_nand_read_byte(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 return;
2119 }
2120
2121 /* Check if these are expected bytes */
2122 if (ns->regs.count + len > ns->regs.num) {
2123 NS_ERR("read_buf: too many bytes to read\n");
2124 switch_to_ready_state(ns, NS_STATUS_FAILED(ns));
2125 return;
2126 }
2127
2128 memcpy(buf, ns->buf.byte + ns->regs.count, len);
2129 ns->regs.count += len;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (ns->regs.count == ns->regs.num) {
Brian Norris831d3162012-05-01 17:12:53 -07002132 if (NS_STATE(ns->nxstate) == STATE_READY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 switch_state(ns);
2134 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 return;
2137}
2138
Richard Weinberger1c14fe22019-04-17 20:54:33 +02002139static int ns_exec_op(struct nand_chip *chip, const struct nand_operation *op,
2140 bool check_only)
2141{
2142 int i;
2143 unsigned int op_id;
2144 const struct nand_op_instr *instr = NULL;
2145 struct nandsim *ns = nand_get_controller_data(chip);
2146
2147 ns->lines.ce = 1;
2148
2149 for (op_id = 0; op_id < op->ninstrs; op_id++) {
2150 instr = &op->instrs[op_id];
2151 ns->lines.cle = 0;
2152 ns->lines.ale = 0;
2153
2154 switch (instr->type) {
2155 case NAND_OP_CMD_INSTR:
2156 ns->lines.cle = 1;
2157 ns_nand_write_byte(chip, instr->ctx.cmd.opcode);
2158 break;
2159 case NAND_OP_ADDR_INSTR:
2160 ns->lines.ale = 1;
2161 for (i = 0; i < instr->ctx.addr.naddrs; i++)
2162 ns_nand_write_byte(chip, instr->ctx.addr.addrs[i]);
2163 break;
2164 case NAND_OP_DATA_IN_INSTR:
2165 ns_nand_read_buf(chip, instr->ctx.data.buf.in, instr->ctx.data.len);
2166 break;
2167 case NAND_OP_DATA_OUT_INSTR:
2168 ns_nand_write_buf(chip, instr->ctx.data.buf.out, instr->ctx.data.len);
2169 break;
2170 case NAND_OP_WAITRDY_INSTR:
2171 /* we are always ready */
2172 break;
2173 }
2174 }
2175
2176 return 0;
2177}
2178
Miquel Raynal5cbad9e2018-07-20 17:15:08 +02002179static int ns_attach_chip(struct nand_chip *chip)
2180{
2181 unsigned int eccsteps, eccbytes;
2182
2183 if (!bch)
2184 return 0;
2185
2186 if (!mtd_nand_has_bch()) {
2187 NS_ERR("BCH ECC support is disabled\n");
2188 return -EINVAL;
2189 }
2190
2191 /* Use 512-byte ecc blocks */
2192 eccsteps = nsmtd->writesize / 512;
2193 eccbytes = ((bch * 13) + 7) / 8;
2194
2195 /* Do not bother supporting small page devices */
2196 if (nsmtd->oobsize < 64 || !eccsteps) {
2197 NS_ERR("BCH not available on small page devices\n");
2198 return -EINVAL;
2199 }
2200
2201 if (((eccbytes * eccsteps) + 2) > nsmtd->oobsize) {
2202 NS_ERR("Invalid BCH value %u\n", bch);
2203 return -EINVAL;
2204 }
2205
2206 chip->ecc.mode = NAND_ECC_SOFT;
2207 chip->ecc.algo = NAND_ECC_BCH;
2208 chip->ecc.size = 512;
2209 chip->ecc.strength = bch;
2210 chip->ecc.bytes = eccbytes;
2211
2212 NS_INFO("Using %u-bit/%u bytes BCH ECC\n", bch, chip->ecc.size);
2213
2214 return 0;
2215}
2216
2217static const struct nand_controller_ops ns_controller_ops = {
2218 .attach_chip = ns_attach_chip,
Richard Weinberger1c14fe22019-04-17 20:54:33 +02002219 .exec_op = ns_exec_op,
Miquel Raynal5cbad9e2018-07-20 17:15:08 +02002220};
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 * Module initialization function
2224 */
Adrian Bunk2b9175c2005-11-29 14:49:38 +00002225static int __init ns_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 struct nand_chip *chip;
Richard Weinberger74aee142019-04-17 20:54:32 +02002228 struct nandsim *ns;
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002229 int retval = -ENOMEM, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 if (bus_width != 8 && bus_width != 16) {
2232 NS_ERR("wrong bus width (%d), use only 8 or 16\n", bus_width);
2233 return -EINVAL;
2234 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002235
Richard Weinberger74aee142019-04-17 20:54:32 +02002236 ns = kzalloc(sizeof(struct nandsim), GFP_KERNEL);
2237 if (!ns) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 NS_ERR("unable to allocate core structures.\n");
2239 return -ENOMEM;
2240 }
Richard Weinberger74aee142019-04-17 20:54:32 +02002241 chip = &ns->chip;
Boris BREZILLONed10f162015-12-10 09:00:13 +01002242 nsmtd = nand_to_mtd(chip);
Richard Weinberger74aee142019-04-17 20:54:32 +02002243 nand_set_controller_data(chip, (void *)ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +02002245 chip->ecc.mode = NAND_ECC_SOFT;
Rafał Miłecki8ae6bcd2016-03-23 11:19:03 +01002246 chip->ecc.algo = NAND_ECC_HAMMING;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002247 /* The NAND_SKIP_BBTSCAN option is necessary for 'overridesize' */
2248 /* and 'badblocks' parameters to work */
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002249 chip->options |= NAND_SKIP_BBTSCAN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002251 switch (bbt) {
2252 case 2:
Gustavo A. R. Silva64f1da12019-02-08 11:49:30 -06002253 chip->bbt_options |= NAND_BBT_NO_OOB;
2254 /* fall through */
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002255 case 1:
Gustavo A. R. Silva64f1da12019-02-08 11:49:30 -06002256 chip->bbt_options |= NAND_BBT_USE_FLASH;
2257 /* fall through */
Sebastian Andrzej Siewiorce85b792010-09-29 19:43:54 +02002258 case 0:
2259 break;
2260 default:
2261 NS_ERR("bbt has to be 0..2\n");
2262 retval = -EINVAL;
2263 goto error;
2264 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002265 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 * Perform minimum nandsim structure initialization to handle
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002267 * the initial ID read command correctly
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 */
Akinobu Mitab00358a2014-10-23 08:41:44 +09002269 if (id_bytes[6] != 0xFF || id_bytes[7] != 0xFF)
Richard Weinberger74aee142019-04-17 20:54:32 +02002270 ns->geom.idbytes = 8;
Akinobu Mitab00358a2014-10-23 08:41:44 +09002271 else if (id_bytes[4] != 0xFF || id_bytes[5] != 0xFF)
Richard Weinberger74aee142019-04-17 20:54:32 +02002272 ns->geom.idbytes = 6;
Akinobu Mitab00358a2014-10-23 08:41:44 +09002273 else if (id_bytes[2] != 0xFF || id_bytes[3] != 0xFF)
Richard Weinberger74aee142019-04-17 20:54:32 +02002274 ns->geom.idbytes = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 else
Richard Weinberger74aee142019-04-17 20:54:32 +02002276 ns->geom.idbytes = 2;
2277 ns->regs.status = NS_STATUS_OK(ns);
2278 ns->nxstate = STATE_UNKNOWN;
2279 ns->options |= OPT_PAGE512; /* temporary value */
2280 memcpy(ns->ids, id_bytes, sizeof(ns->ids));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (bus_width == 16) {
Richard Weinberger74aee142019-04-17 20:54:32 +02002282 ns->busw = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 chip->options |= NAND_BUSWIDTH_16;
2284 }
2285
David Woodhouse552d9202006-05-14 01:20:46 +01002286 nsmtd->owner = THIS_MODULE;
2287
Adrian Hunter514087e72007-03-19 12:47:45 +02002288 if ((retval = parse_weakblocks()) != 0)
2289 goto error;
2290
2291 if ((retval = parse_weakpages()) != 0)
2292 goto error;
2293
2294 if ((retval = parse_gravepages()) != 0)
2295 goto error;
2296
Richard Weinberger1c14fe22019-04-17 20:54:33 +02002297 nand_controller_init(&ns->base);
2298 ns->base.ops = &ns_controller_ops;
2299 chip->controller = &ns->base;
2300
Boris Brezillon00ad3782018-09-06 14:05:14 +02002301 retval = nand_scan(chip, 1);
Ivan Djelicfc2ff592011-03-11 11:05:34 +01002302 if (retval) {
Miquel Raynal5cbad9e2018-07-20 17:15:08 +02002303 NS_ERR("Could not scan NAND Simulator device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 goto error;
2305 }
2306
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002307 if (overridesize) {
David Woodhouse0f07a0b2008-12-10 14:01:46 +00002308 uint64_t new_size = (uint64_t)nsmtd->erasesize << overridesize;
Boris Brezillon629a4422018-10-25 17:10:37 +02002309 struct nand_memory_organization *memorg;
Boris Brezillon6c836d52018-10-29 11:22:16 +01002310 u64 targetsize;
Boris Brezillon629a4422018-10-25 17:10:37 +02002311
2312 memorg = nanddev_get_memorg(&chip->base);
2313
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002314 if (new_size >> overridesize != nsmtd->erasesize) {
2315 NS_ERR("overridesize is too big\n");
Richard Genoudbb0a13a2012-09-12 14:26:26 +02002316 retval = -EINVAL;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002317 goto err_exit;
2318 }
Boris Brezillon6c836d52018-10-29 11:22:16 +01002319
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002320 /* N.B. This relies on nand_scan not doing anything with the size before we change it */
2321 nsmtd->size = new_size;
Boris Brezillon629a4422018-10-25 17:10:37 +02002322 memorg->eraseblocks_per_lun = 1 << overridesize;
Boris Brezillon6c836d52018-10-29 11:22:16 +01002323 targetsize = nanddev_target_size(&chip->base);
Adrian Hunter6eda7a52008-05-30 15:56:26 +03002324 chip->chip_shift = ffs(nsmtd->erasesize) + overridesize - 1;
Boris Brezillon6c836d52018-10-29 11:22:16 +01002325 chip->pagemask = (targetsize >> chip->page_shift) - 1;
Adrian Huntera5ac8ae2007-03-19 12:49:11 +02002326 }
2327
Adrian Hunter57aa6b52007-03-19 12:40:41 +02002328 if ((retval = setup_wear_reporting(nsmtd)) != 0)
2329 goto err_exit;
2330
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002331 if ((retval = init_nandsim(nsmtd)) != 0)
2332 goto err_exit;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +00002333
Boris Brezillone80eba72018-07-05 12:27:31 +02002334 if ((retval = nand_create_bbt(chip)) != 0)
Adrian Hunter514087e72007-03-19 12:47:45 +02002335 goto err_exit;
2336
Richard Weinberger74aee142019-04-17 20:54:32 +02002337 if ((retval = parse_badblocks(ns, nsmtd)) != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002338 goto err_exit;
Artem B. Bityuckiy51502282005-03-19 15:33:59 +00002339
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002340 /* Register NAND partitions */
Richard Weinberger74aee142019-04-17 20:54:32 +02002341 retval = mtd_device_register(nsmtd, &ns->partitions[0],
2342 ns->nbparts);
Jamie Ilesee0e87b2011-05-23 10:23:40 +01002343 if (retval != 0)
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002344 goto err_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Richard Weinberger74aee142019-04-17 20:54:32 +02002346 if ((retval = nandsim_debugfs_create(ns)) != 0)
Mario Rugieroe8e3edb2017-05-29 08:38:41 -03002347 goto err_exit;
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 return 0;
2350
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002351err_exit:
Richard Weinberger74aee142019-04-17 20:54:32 +02002352 free_nandsim(ns);
Boris Brezillon59ac2762018-09-06 14:05:15 +02002353 nand_release(chip);
Richard Weinberger74aee142019-04-17 20:54:32 +02002354 for (i = 0;i < ARRAY_SIZE(ns->partitions); ++i)
2355 kfree(ns->partitions[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356error:
Richard Weinberger74aee142019-04-17 20:54:32 +02002357 kfree(ns);
Adrian Hunter514087e72007-03-19 12:47:45 +02002358 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 return retval;
2361}
2362
2363module_init(ns_init_module);
2364
2365/*
2366 * Module clean-up function
2367 */
2368static void __exit ns_cleanup_module(void)
2369{
Brian Norrisc66b6512016-01-07 11:06:46 -08002370 struct nand_chip *chip = mtd_to_nand(nsmtd);
2371 struct nandsim *ns = nand_get_controller_data(chip);
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002372 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374 free_nandsim(ns); /* Free nandsim private resources */
Boris Brezillon59ac2762018-09-06 14:05:15 +02002375 nand_release(chip); /* Unregister driver */
Adrian Hunter2b77a0e2007-03-19 12:46:43 +02002376 for (i = 0;i < ARRAY_SIZE(ns->partitions); ++i)
2377 kfree(ns->partitions[i].name);
Richard Weinberger74aee142019-04-17 20:54:32 +02002378 kfree(ns); /* Free other structures */
Adrian Hunter514087e72007-03-19 12:47:45 +02002379 free_lists();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
2382module_exit(ns_cleanup_module);
2383
2384MODULE_LICENSE ("GPL");
2385MODULE_AUTHOR ("Artem B. Bityuckiy");
2386MODULE_DESCRIPTION ("The NAND flash simulator");