nand.h 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048
  1. /*
  2. * linux/include/linux/mtd/nand.h
  3. *
  4. * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
  5. * Steven J. Hill <sjhill@realitydiluted.com>
  6. * Thomas Gleixner <tglx@linutronix.de>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * Info:
  13. * Contains standard defines and IDs for NAND flash devices
  14. *
  15. * Changelog:
  16. * See git changelog.
  17. */
  18. #ifndef __LINUX_MTD_NAND_H
  19. #define __LINUX_MTD_NAND_H
  20. #include <linux/wait.h>
  21. #include <linux/spinlock.h>
  22. #include <linux/mtd/mtd.h>
  23. #include <linux/mtd/flashchip.h>
  24. #include <linux/mtd/bbm.h>
  25. struct mtd_info;
  26. struct nand_flash_dev;
  27. struct device_node;
  28. /* Scan and identify a NAND device */
  29. extern int nand_scan(struct mtd_info *mtd, int max_chips);
  30. /*
  31. * Separate phases of nand_scan(), allowing board driver to intervene
  32. * and override command or ECC setup according to flash type.
  33. */
  34. extern int nand_scan_ident(struct mtd_info *mtd, int max_chips,
  35. struct nand_flash_dev *table);
  36. extern int nand_scan_tail(struct mtd_info *mtd);
  37. /* Free resources held by the NAND device */
  38. extern void nand_release(struct mtd_info *mtd);
  39. /* Internal helper for board drivers which need to override command function */
  40. extern void nand_wait_ready(struct mtd_info *mtd);
  41. /* locks all blocks present in the device */
  42. extern int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
  43. /* unlocks specified locked blocks */
  44. extern int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
  45. /* The maximum number of NAND chips in an array */
  46. #define NAND_MAX_CHIPS 8
  47. /*
  48. * Constants for hardware specific CLE/ALE/NCE function
  49. *
  50. * These are bits which can be or'ed to set/clear multiple
  51. * bits in one go.
  52. */
  53. /* Select the chip by setting nCE to low */
  54. #define NAND_NCE 0x01
  55. /* Select the command latch by setting CLE to high */
  56. #define NAND_CLE 0x02
  57. /* Select the address latch by setting ALE to high */
  58. #define NAND_ALE 0x04
  59. #define NAND_CTRL_CLE (NAND_NCE | NAND_CLE)
  60. #define NAND_CTRL_ALE (NAND_NCE | NAND_ALE)
  61. #define NAND_CTRL_CHANGE 0x80
  62. /*
  63. * Standard NAND flash commands
  64. */
  65. #define NAND_CMD_READ0 0
  66. #define NAND_CMD_READ1 1
  67. #define NAND_CMD_RNDOUT 5
  68. #define NAND_CMD_PAGEPROG 0x10
  69. #define NAND_CMD_READOOB 0x50
  70. #define NAND_CMD_ERASE1 0x60
  71. #define NAND_CMD_STATUS 0x70
  72. #define NAND_CMD_SEQIN 0x80
  73. #define NAND_CMD_RNDIN 0x85
  74. #define NAND_CMD_READID 0x90
  75. #define NAND_CMD_ERASE2 0xd0
  76. #define NAND_CMD_PARAM 0xec
  77. #define NAND_CMD_GET_FEATURES 0xee
  78. #define NAND_CMD_SET_FEATURES 0xef
  79. #define NAND_CMD_RESET 0xff
  80. #define NAND_CMD_LOCK 0x2a
  81. #define NAND_CMD_UNLOCK1 0x23
  82. #define NAND_CMD_UNLOCK2 0x24
  83. /* Extended commands for large page devices */
  84. #define NAND_CMD_READSTART 0x30
  85. #define NAND_CMD_RNDOUTSTART 0xE0
  86. #define NAND_CMD_CACHEDPROG 0x15
  87. #define NAND_CMD_NONE -1
  88. /* Status bits */
  89. #define NAND_STATUS_FAIL 0x01
  90. #define NAND_STATUS_FAIL_N1 0x02
  91. #define NAND_STATUS_TRUE_READY 0x20
  92. #define NAND_STATUS_READY 0x40
  93. #define NAND_STATUS_WP 0x80
  94. /*
  95. * Constants for ECC_MODES
  96. */
  97. typedef enum {
  98. NAND_ECC_NONE,
  99. NAND_ECC_SOFT,
  100. NAND_ECC_HW,
  101. NAND_ECC_HW_SYNDROME,
  102. NAND_ECC_HW_OOB_FIRST,
  103. NAND_ECC_SOFT_BCH,
  104. } nand_ecc_modes_t;
  105. /*
  106. * Constants for Hardware ECC
  107. */
  108. /* Reset Hardware ECC for read */
  109. #define NAND_ECC_READ 0
  110. /* Reset Hardware ECC for write */
  111. #define NAND_ECC_WRITE 1
  112. /* Enable Hardware ECC before syndrome is read back from flash */
  113. #define NAND_ECC_READSYN 2
  114. /* Bit mask for flags passed to do_nand_read_ecc */
  115. #define NAND_GET_DEVICE 0x80
  116. /*
  117. * Option constants for bizarre disfunctionality and real
  118. * features.
  119. */
  120. /* Buswidth is 16 bit */
  121. #define NAND_BUSWIDTH_16 0x00000002
  122. /* Chip has cache program function */
  123. #define NAND_CACHEPRG 0x00000008
  124. /*
  125. * Chip requires ready check on read (for auto-incremented sequential read).
  126. * True only for small page devices; large page devices do not support
  127. * autoincrement.
  128. */
  129. #define NAND_NEED_READRDY 0x00000100
  130. /* Chip does not allow subpage writes */
  131. #define NAND_NO_SUBPAGE_WRITE 0x00000200
  132. /* Device is one of 'new' xD cards that expose fake nand command set */
  133. #define NAND_BROKEN_XD 0x00000400
  134. /* Device behaves just like nand, but is readonly */
  135. #define NAND_ROM 0x00000800
  136. /* Device supports subpage reads */
  137. #define NAND_SUBPAGE_READ 0x00001000
  138. /* Options valid for Samsung large page devices */
  139. #define NAND_SAMSUNG_LP_OPTIONS NAND_CACHEPRG
  140. /* Macros to identify the above */
  141. #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG))
  142. #define NAND_HAS_SUBPAGE_READ(chip) ((chip->options & NAND_SUBPAGE_READ))
  143. /* Non chip related options */
  144. /* This option skips the bbt scan during initialization. */
  145. #define NAND_SKIP_BBTSCAN 0x00010000
  146. /*
  147. * This option is defined if the board driver allocates its own buffers
  148. * (e.g. because it needs them DMA-coherent).
  149. */
  150. #define NAND_OWN_BUFFERS 0x00020000
  151. /* Chip may not exist, so silence any errors in scan */
  152. #define NAND_SCAN_SILENT_NODEV 0x00040000
  153. /*
  154. * Autodetect nand buswidth with readid/onfi.
  155. * This suppose the driver will configure the hardware in 8 bits mode
  156. * when calling nand_scan_ident, and update its configuration
  157. * before calling nand_scan_tail.
  158. */
  159. #define NAND_BUSWIDTH_AUTO 0x00080000
  160. /*
  161. * This option could be defined by controller drivers to protect against
  162. * kmap'ed, vmalloc'ed highmem buffers being passed from upper layers
  163. */
  164. #define NAND_USE_BOUNCE_BUFFER 0x00100000
  165. /* Options set by nand scan */
  166. /* Nand scan has allocated controller struct */
  167. #define NAND_CONTROLLER_ALLOC 0x80000000
  168. /* Cell info constants */
  169. #define NAND_CI_CHIPNR_MSK 0x03
  170. #define NAND_CI_CELLTYPE_MSK 0x0C
  171. #define NAND_CI_CELLTYPE_SHIFT 2
  172. /* Keep gcc happy */
  173. struct nand_chip;
  174. /* ONFI features */
  175. #define ONFI_FEATURE_16_BIT_BUS (1 << 0)
  176. #define ONFI_FEATURE_EXT_PARAM_PAGE (1 << 7)
  177. /* ONFI timing mode, used in both asynchronous and synchronous mode */
  178. #define ONFI_TIMING_MODE_0 (1 << 0)
  179. #define ONFI_TIMING_MODE_1 (1 << 1)
  180. #define ONFI_TIMING_MODE_2 (1 << 2)
  181. #define ONFI_TIMING_MODE_3 (1 << 3)
  182. #define ONFI_TIMING_MODE_4 (1 << 4)
  183. #define ONFI_TIMING_MODE_5 (1 << 5)
  184. #define ONFI_TIMING_MODE_UNKNOWN (1 << 6)
  185. /* ONFI feature address */
  186. #define ONFI_FEATURE_ADDR_TIMING_MODE 0x1
  187. /* Vendor-specific feature address (Micron) */
  188. #define ONFI_FEATURE_ADDR_READ_RETRY 0x89
  189. /* ONFI subfeature parameters length */
  190. #define ONFI_SUBFEATURE_PARAM_LEN 4
  191. /* ONFI optional commands SET/GET FEATURES supported? */
  192. #define ONFI_OPT_CMD_SET_GET_FEATURES (1 << 2)
  193. struct nand_onfi_params {
  194. /* rev info and features block */
  195. /* 'O' 'N' 'F' 'I' */
  196. u8 sig[4];
  197. __le16 revision;
  198. __le16 features;
  199. __le16 opt_cmd;
  200. u8 reserved0[2];
  201. __le16 ext_param_page_length; /* since ONFI 2.1 */
  202. u8 num_of_param_pages; /* since ONFI 2.1 */
  203. u8 reserved1[17];
  204. /* manufacturer information block */
  205. char manufacturer[12];
  206. char model[20];
  207. u8 jedec_id;
  208. __le16 date_code;
  209. u8 reserved2[13];
  210. /* memory organization block */
  211. __le32 byte_per_page;
  212. __le16 spare_bytes_per_page;
  213. __le32 data_bytes_per_ppage;
  214. __le16 spare_bytes_per_ppage;
  215. __le32 pages_per_block;
  216. __le32 blocks_per_lun;
  217. u8 lun_count;
  218. u8 addr_cycles;
  219. u8 bits_per_cell;
  220. __le16 bb_per_lun;
  221. __le16 block_endurance;
  222. u8 guaranteed_good_blocks;
  223. __le16 guaranteed_block_endurance;
  224. u8 programs_per_page;
  225. u8 ppage_attr;
  226. u8 ecc_bits;
  227. u8 interleaved_bits;
  228. u8 interleaved_ops;
  229. u8 reserved3[13];
  230. /* electrical parameter block */
  231. u8 io_pin_capacitance_max;
  232. __le16 async_timing_mode;
  233. __le16 program_cache_timing_mode;
  234. __le16 t_prog;
  235. __le16 t_bers;
  236. __le16 t_r;
  237. __le16 t_ccs;
  238. __le16 src_sync_timing_mode;
  239. u8 src_ssync_features;
  240. __le16 clk_pin_capacitance_typ;
  241. __le16 io_pin_capacitance_typ;
  242. __le16 input_pin_capacitance_typ;
  243. u8 input_pin_capacitance_max;
  244. u8 driver_strength_support;
  245. __le16 t_int_r;
  246. __le16 t_adl;
  247. u8 reserved4[8];
  248. /* vendor */
  249. __le16 vendor_revision;
  250. u8 vendor[88];
  251. __le16 crc;
  252. } __packed;
  253. #define ONFI_CRC_BASE 0x4F4E
  254. /* Extended ECC information Block Definition (since ONFI 2.1) */
  255. struct onfi_ext_ecc_info {
  256. u8 ecc_bits;
  257. u8 codeword_size;
  258. __le16 bb_per_lun;
  259. __le16 block_endurance;
  260. u8 reserved[2];
  261. } __packed;
  262. #define ONFI_SECTION_TYPE_0 0 /* Unused section. */
  263. #define ONFI_SECTION_TYPE_1 1 /* for additional sections. */
  264. #define ONFI_SECTION_TYPE_2 2 /* for ECC information. */
  265. struct onfi_ext_section {
  266. u8 type;
  267. u8 length;
  268. } __packed;
  269. #define ONFI_EXT_SECTION_MAX 8
  270. /* Extended Parameter Page Definition (since ONFI 2.1) */
  271. struct onfi_ext_param_page {
  272. __le16 crc;
  273. u8 sig[4]; /* 'E' 'P' 'P' 'S' */
  274. u8 reserved0[10];
  275. struct onfi_ext_section sections[ONFI_EXT_SECTION_MAX];
  276. /*
  277. * The actual size of the Extended Parameter Page is in
  278. * @ext_param_page_length of nand_onfi_params{}.
  279. * The following are the variable length sections.
  280. * So we do not add any fields below. Please see the ONFI spec.
  281. */
  282. } __packed;
  283. struct nand_onfi_vendor_micron {
  284. u8 two_plane_read;
  285. u8 read_cache;
  286. u8 read_unique_id;
  287. u8 dq_imped;
  288. u8 dq_imped_num_settings;
  289. u8 dq_imped_feat_addr;
  290. u8 rb_pulldown_strength;
  291. u8 rb_pulldown_strength_feat_addr;
  292. u8 rb_pulldown_strength_num_settings;
  293. u8 otp_mode;
  294. u8 otp_page_start;
  295. u8 otp_data_prot_addr;
  296. u8 otp_num_pages;
  297. u8 otp_feat_addr;
  298. u8 read_retry_options;
  299. u8 reserved[72];
  300. u8 param_revision;
  301. } __packed;
  302. struct jedec_ecc_info {
  303. u8 ecc_bits;
  304. u8 codeword_size;
  305. __le16 bb_per_lun;
  306. __le16 block_endurance;
  307. u8 reserved[2];
  308. } __packed;
  309. /* JEDEC features */
  310. #define JEDEC_FEATURE_16_BIT_BUS (1 << 0)
  311. struct nand_jedec_params {
  312. /* rev info and features block */
  313. /* 'J' 'E' 'S' 'D' */
  314. u8 sig[4];
  315. __le16 revision;
  316. __le16 features;
  317. u8 opt_cmd[3];
  318. __le16 sec_cmd;
  319. u8 num_of_param_pages;
  320. u8 reserved0[18];
  321. /* manufacturer information block */
  322. char manufacturer[12];
  323. char model[20];
  324. u8 jedec_id[6];
  325. u8 reserved1[10];
  326. /* memory organization block */
  327. __le32 byte_per_page;
  328. __le16 spare_bytes_per_page;
  329. u8 reserved2[6];
  330. __le32 pages_per_block;
  331. __le32 blocks_per_lun;
  332. u8 lun_count;
  333. u8 addr_cycles;
  334. u8 bits_per_cell;
  335. u8 programs_per_page;
  336. u8 multi_plane_addr;
  337. u8 multi_plane_op_attr;
  338. u8 reserved3[38];
  339. /* electrical parameter block */
  340. __le16 async_sdr_speed_grade;
  341. __le16 toggle_ddr_speed_grade;
  342. __le16 sync_ddr_speed_grade;
  343. u8 async_sdr_features;
  344. u8 toggle_ddr_features;
  345. u8 sync_ddr_features;
  346. __le16 t_prog;
  347. __le16 t_bers;
  348. __le16 t_r;
  349. __le16 t_r_multi_plane;
  350. __le16 t_ccs;
  351. __le16 io_pin_capacitance_typ;
  352. __le16 input_pin_capacitance_typ;
  353. __le16 clk_pin_capacitance_typ;
  354. u8 driver_strength_support;
  355. __le16 t_adl;
  356. u8 reserved4[36];
  357. /* ECC and endurance block */
  358. u8 guaranteed_good_blocks;
  359. __le16 guaranteed_block_endurance;
  360. struct jedec_ecc_info ecc_info[4];
  361. u8 reserved5[29];
  362. /* reserved */
  363. u8 reserved6[148];
  364. /* vendor */
  365. __le16 vendor_rev_num;
  366. u8 reserved7[88];
  367. /* CRC for Parameter Page */
  368. __le16 crc;
  369. } __packed;
  370. /**
  371. * struct nand_hw_control - Control structure for hardware controller (e.g ECC generator) shared among independent devices
  372. * @lock: protection lock
  373. * @active: the mtd device which holds the controller currently
  374. * @wq: wait queue to sleep on if a NAND operation is in
  375. * progress used instead of the per chip wait queue
  376. * when a hw controller is available.
  377. */
  378. struct nand_hw_control {
  379. spinlock_t lock;
  380. struct nand_chip *active;
  381. wait_queue_head_t wq;
  382. };
  383. /**
  384. * struct nand_ecc_ctrl - Control structure for ECC
  385. * @mode: ECC mode
  386. * @steps: number of ECC steps per page
  387. * @size: data bytes per ECC step
  388. * @bytes: ECC bytes per step
  389. * @strength: max number of correctible bits per ECC step
  390. * @total: total number of ECC bytes per page
  391. * @prepad: padding information for syndrome based ECC generators
  392. * @postpad: padding information for syndrome based ECC generators
  393. * @layout: ECC layout control struct pointer
  394. * @priv: pointer to private ECC control data
  395. * @hwctl: function to control hardware ECC generator. Must only
  396. * be provided if an hardware ECC is available
  397. * @calculate: function for ECC calculation or readback from ECC hardware
  398. * @correct: function for ECC correction, matching to ECC generator (sw/hw)
  399. * @read_page_raw: function to read a raw page without ECC. This function
  400. * should hide the specific layout used by the ECC
  401. * controller and always return contiguous in-band and
  402. * out-of-band data even if they're not stored
  403. * contiguously on the NAND chip (e.g.
  404. * NAND_ECC_HW_SYNDROME interleaves in-band and
  405. * out-of-band data).
  406. * @write_page_raw: function to write a raw page without ECC. This function
  407. * should hide the specific layout used by the ECC
  408. * controller and consider the passed data as contiguous
  409. * in-band and out-of-band data. ECC controller is
  410. * responsible for doing the appropriate transformations
  411. * to adapt to its specific layout (e.g.
  412. * NAND_ECC_HW_SYNDROME interleaves in-band and
  413. * out-of-band data).
  414. * @read_page: function to read a page according to the ECC generator
  415. * requirements; returns maximum number of bitflips corrected in
  416. * any single ECC step, 0 if bitflips uncorrectable, -EIO hw error
  417. * @read_subpage: function to read parts of the page covered by ECC;
  418. * returns same as read_page()
  419. * @write_subpage: function to write parts of the page covered by ECC.
  420. * @write_page: function to write a page according to the ECC generator
  421. * requirements.
  422. * @write_oob_raw: function to write chip OOB data without ECC
  423. * @read_oob_raw: function to read chip OOB data without ECC
  424. * @read_oob: function to read chip OOB data
  425. * @write_oob: function to write chip OOB data
  426. */
  427. struct nand_ecc_ctrl {
  428. nand_ecc_modes_t mode;
  429. int steps;
  430. int size;
  431. int bytes;
  432. int total;
  433. int strength;
  434. int prepad;
  435. int postpad;
  436. struct nand_ecclayout *layout;
  437. void *priv;
  438. void (*hwctl)(struct mtd_info *mtd, int mode);
  439. int (*calculate)(struct mtd_info *mtd, const uint8_t *dat,
  440. uint8_t *ecc_code);
  441. int (*correct)(struct mtd_info *mtd, uint8_t *dat, uint8_t *read_ecc,
  442. uint8_t *calc_ecc);
  443. int (*read_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
  444. uint8_t *buf, int oob_required, int page);
  445. int (*write_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
  446. const uint8_t *buf, int oob_required, int page);
  447. int (*read_page)(struct mtd_info *mtd, struct nand_chip *chip,
  448. uint8_t *buf, int oob_required, int page);
  449. int (*read_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
  450. uint32_t offs, uint32_t len, uint8_t *buf, int page);
  451. int (*write_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
  452. uint32_t offset, uint32_t data_len,
  453. const uint8_t *data_buf, int oob_required, int page);
  454. int (*write_page)(struct mtd_info *mtd, struct nand_chip *chip,
  455. const uint8_t *buf, int oob_required, int page);
  456. int (*write_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
  457. int page);
  458. int (*read_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
  459. int page);
  460. int (*read_oob)(struct mtd_info *mtd, struct nand_chip *chip, int page);
  461. int (*write_oob)(struct mtd_info *mtd, struct nand_chip *chip,
  462. int page);
  463. };
  464. /**
  465. * struct nand_buffers - buffer structure for read/write
  466. * @ecccalc: buffer pointer for calculated ECC, size is oobsize.
  467. * @ecccode: buffer pointer for ECC read from flash, size is oobsize.
  468. * @databuf: buffer pointer for data, size is (page size + oobsize).
  469. *
  470. * Do not change the order of buffers. databuf and oobrbuf must be in
  471. * consecutive order.
  472. */
  473. struct nand_buffers {
  474. uint8_t *ecccalc;
  475. uint8_t *ecccode;
  476. uint8_t *databuf;
  477. };
  478. /**
  479. * struct nand_chip - NAND Private Flash Chip Data
  480. * @IO_ADDR_R: [BOARDSPECIFIC] address to read the 8 I/O lines of the
  481. * flash device
  482. * @IO_ADDR_W: [BOARDSPECIFIC] address to write the 8 I/O lines of the
  483. * flash device.
  484. * @flash_node: [BOARDSPECIFIC] device node describing this instance
  485. * @read_byte: [REPLACEABLE] read one byte from the chip
  486. * @read_word: [REPLACEABLE] read one word from the chip
  487. * @write_byte: [REPLACEABLE] write a single byte to the chip on the
  488. * low 8 I/O lines
  489. * @write_buf: [REPLACEABLE] write data from the buffer to the chip
  490. * @read_buf: [REPLACEABLE] read data from the chip into the buffer
  491. * @select_chip: [REPLACEABLE] select chip nr
  492. * @block_bad: [REPLACEABLE] check if a block is bad, using OOB markers
  493. * @block_markbad: [REPLACEABLE] mark a block bad
  494. * @cmd_ctrl: [BOARDSPECIFIC] hardwarespecific function for controlling
  495. * ALE/CLE/nCE. Also used to write command and address
  496. * @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accessing
  497. * device ready/busy line. If set to NULL no access to
  498. * ready/busy is available and the ready/busy information
  499. * is read from the chip status register.
  500. * @cmdfunc: [REPLACEABLE] hardwarespecific function for writing
  501. * commands to the chip.
  502. * @waitfunc: [REPLACEABLE] hardwarespecific function for wait on
  503. * ready.
  504. * @setup_read_retry: [FLASHSPECIFIC] flash (vendor) specific function for
  505. * setting the read-retry mode. Mostly needed for MLC NAND.
  506. * @ecc: [BOARDSPECIFIC] ECC control structure
  507. * @buffers: buffer structure for read/write
  508. * @hwcontrol: platform-specific hardware control structure
  509. * @erase: [REPLACEABLE] erase function
  510. * @scan_bbt: [REPLACEABLE] function to scan bad block table
  511. * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring
  512. * data from array to read regs (tR).
  513. * @state: [INTERN] the current state of the NAND device
  514. * @oob_poi: "poison value buffer," used for laying out OOB data
  515. * before writing
  516. * @page_shift: [INTERN] number of address bits in a page (column
  517. * address bits).
  518. * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock
  519. * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry
  520. * @chip_shift: [INTERN] number of address bits in one chip
  521. * @options: [BOARDSPECIFIC] various chip options. They can partly
  522. * be set to inform nand_scan about special functionality.
  523. * See the defines for further explanation.
  524. * @bbt_options: [INTERN] bad block specific options. All options used
  525. * here must come from bbm.h. By default, these options
  526. * will be copied to the appropriate nand_bbt_descr's.
  527. * @badblockpos: [INTERN] position of the bad block marker in the oob
  528. * area.
  529. * @badblockbits: [INTERN] minimum number of set bits in a good block's
  530. * bad block marker position; i.e., BBM == 11110111b is
  531. * not bad when badblockbits == 7
  532. * @bits_per_cell: [INTERN] number of bits per cell. i.e., 1 means SLC.
  533. * @ecc_strength_ds: [INTERN] ECC correctability from the datasheet.
  534. * Minimum amount of bit errors per @ecc_step_ds guaranteed
  535. * to be correctable. If unknown, set to zero.
  536. * @ecc_step_ds: [INTERN] ECC step required by the @ecc_strength_ds,
  537. * also from the datasheet. It is the recommended ECC step
  538. * size, if known; if unknown, set to zero.
  539. * @onfi_timing_mode_default: [INTERN] default ONFI timing mode. This field is
  540. * either deduced from the datasheet if the NAND
  541. * chip is not ONFI compliant or set to 0 if it is
  542. * (an ONFI chip is always configured in mode 0
  543. * after a NAND reset)
  544. * @numchips: [INTERN] number of physical chips
  545. * @chipsize: [INTERN] the size of one chip for multichip arrays
  546. * @pagemask: [INTERN] page number mask = number of (pages / chip) - 1
  547. * @pagebuf: [INTERN] holds the pagenumber which is currently in
  548. * data_buf.
  549. * @pagebuf_bitflips: [INTERN] holds the bitflip count for the page which is
  550. * currently in data_buf.
  551. * @subpagesize: [INTERN] holds the subpagesize
  552. * @onfi_version: [INTERN] holds the chip ONFI version (BCD encoded),
  553. * non 0 if ONFI supported.
  554. * @jedec_version: [INTERN] holds the chip JEDEC version (BCD encoded),
  555. * non 0 if JEDEC supported.
  556. * @onfi_params: [INTERN] holds the ONFI page parameter when ONFI is
  557. * supported, 0 otherwise.
  558. * @jedec_params: [INTERN] holds the JEDEC parameter page when JEDEC is
  559. * supported, 0 otherwise.
  560. * @read_retries: [INTERN] the number of read retry modes supported
  561. * @onfi_set_features: [REPLACEABLE] set the features for ONFI nand
  562. * @onfi_get_features: [REPLACEABLE] get the features for ONFI nand
  563. * @bbt: [INTERN] bad block table pointer
  564. * @bbt_td: [REPLACEABLE] bad block table descriptor for flash
  565. * lookup.
  566. * @bbt_md: [REPLACEABLE] bad block table mirror descriptor
  567. * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial
  568. * bad block scan.
  569. * @controller: [REPLACEABLE] a pointer to a hardware controller
  570. * structure which is shared among multiple independent
  571. * devices.
  572. * @priv: [OPTIONAL] pointer to private chip data
  573. * @errstat: [OPTIONAL] hardware specific function to perform
  574. * additional error status checks (determine if errors are
  575. * correctable).
  576. * @write_page: [REPLACEABLE] High-level page write function
  577. */
  578. struct nand_chip {
  579. void __iomem *IO_ADDR_R;
  580. void __iomem *IO_ADDR_W;
  581. struct device_node *flash_node;
  582. uint8_t (*read_byte)(struct mtd_info *mtd);
  583. u16 (*read_word)(struct mtd_info *mtd);
  584. void (*write_byte)(struct mtd_info *mtd, uint8_t byte);
  585. void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
  586. void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
  587. void (*select_chip)(struct mtd_info *mtd, int chip);
  588. int (*block_bad)(struct mtd_info *mtd, loff_t ofs, int getchip);
  589. int (*block_markbad)(struct mtd_info *mtd, loff_t ofs);
  590. void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
  591. int (*dev_ready)(struct mtd_info *mtd);
  592. void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column,
  593. int page_addr);
  594. int(*waitfunc)(struct mtd_info *mtd, struct nand_chip *this);
  595. int (*erase)(struct mtd_info *mtd, int page);
  596. int (*scan_bbt)(struct mtd_info *mtd);
  597. int (*errstat)(struct mtd_info *mtd, struct nand_chip *this, int state,
  598. int status, int page);
  599. int (*write_page)(struct mtd_info *mtd, struct nand_chip *chip,
  600. uint32_t offset, int data_len, const uint8_t *buf,
  601. int oob_required, int page, int cached, int raw);
  602. int (*onfi_set_features)(struct mtd_info *mtd, struct nand_chip *chip,
  603. int feature_addr, uint8_t *subfeature_para);
  604. int (*onfi_get_features)(struct mtd_info *mtd, struct nand_chip *chip,
  605. int feature_addr, uint8_t *subfeature_para);
  606. int (*setup_read_retry)(struct mtd_info *mtd, int retry_mode);
  607. int chip_delay;
  608. unsigned int options;
  609. unsigned int bbt_options;
  610. int page_shift;
  611. int phys_erase_shift;
  612. int bbt_erase_shift;
  613. int chip_shift;
  614. int numchips;
  615. uint64_t chipsize;
  616. int pagemask;
  617. int pagebuf;
  618. unsigned int pagebuf_bitflips;
  619. int subpagesize;
  620. uint8_t bits_per_cell;
  621. uint16_t ecc_strength_ds;
  622. uint16_t ecc_step_ds;
  623. int onfi_timing_mode_default;
  624. int badblockpos;
  625. int badblockbits;
  626. int onfi_version;
  627. int jedec_version;
  628. union {
  629. struct nand_onfi_params onfi_params;
  630. struct nand_jedec_params jedec_params;
  631. };
  632. int read_retries;
  633. flstate_t state;
  634. uint8_t *oob_poi;
  635. struct nand_hw_control *controller;
  636. struct nand_ecc_ctrl ecc;
  637. struct nand_buffers *buffers;
  638. struct nand_hw_control hwcontrol;
  639. uint8_t *bbt;
  640. struct nand_bbt_descr *bbt_td;
  641. struct nand_bbt_descr *bbt_md;
  642. struct nand_bbt_descr *badblock_pattern;
  643. void *priv;
  644. };
  645. static inline void nand_set_flash_node(struct nand_chip *chip,
  646. struct device_node *np)
  647. {
  648. chip->flash_node = np;
  649. }
  650. static inline struct device_node *nand_get_flash_node(struct nand_chip *chip)
  651. {
  652. return chip->flash_node;
  653. }
  654. static inline struct nand_chip *mtd_to_nand(struct mtd_info *mtd)
  655. {
  656. return mtd->priv;
  657. }
  658. /*
  659. * NAND Flash Manufacturer ID Codes
  660. */
  661. #define NAND_MFR_TOSHIBA 0x98
  662. #define NAND_MFR_SAMSUNG 0xec
  663. #define NAND_MFR_FUJITSU 0x04
  664. #define NAND_MFR_NATIONAL 0x8f
  665. #define NAND_MFR_RENESAS 0x07
  666. #define NAND_MFR_STMICRO 0x20
  667. #define NAND_MFR_HYNIX 0xad
  668. #define NAND_MFR_MICRON 0x2c
  669. #define NAND_MFR_AMD 0x01
  670. #define NAND_MFR_MACRONIX 0xc2
  671. #define NAND_MFR_EON 0x92
  672. #define NAND_MFR_SANDISK 0x45
  673. #define NAND_MFR_INTEL 0x89
  674. #define NAND_MFR_ATO 0x9b
  675. /* The maximum expected count of bytes in the NAND ID sequence */
  676. #define NAND_MAX_ID_LEN 8
  677. /*
  678. * A helper for defining older NAND chips where the second ID byte fully
  679. * defined the chip, including the geometry (chip size, eraseblock size, page
  680. * size). All these chips have 512 bytes NAND page size.
  681. */
  682. #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \
  683. { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
  684. .chipsize = (chipsz), .erasesize = (erasesz), .options = (opts) }
  685. /*
  686. * A helper for defining newer chips which report their page size and
  687. * eraseblock size via the extended ID bytes.
  688. *
  689. * The real difference between LEGACY_ID_NAND and EXTENDED_ID_NAND is that with
  690. * EXTENDED_ID_NAND, manufacturers overloaded the same device ID so that the
  691. * device ID now only represented a particular total chip size (and voltage,
  692. * buswidth), and the page size, eraseblock size, and OOB size could vary while
  693. * using the same device ID.
  694. */
  695. #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \
  696. { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
  697. .options = (opts) }
  698. #define NAND_ECC_INFO(_strength, _step) \
  699. { .strength_ds = (_strength), .step_ds = (_step) }
  700. #define NAND_ECC_STRENGTH(type) ((type)->ecc.strength_ds)
  701. #define NAND_ECC_STEP(type) ((type)->ecc.step_ds)
  702. /**
  703. * struct nand_flash_dev - NAND Flash Device ID Structure
  704. * @name: a human-readable name of the NAND chip
  705. * @dev_id: the device ID (the second byte of the full chip ID array)
  706. * @mfr_id: manufecturer ID part of the full chip ID array (refers the same
  707. * memory address as @id[0])
  708. * @dev_id: device ID part of the full chip ID array (refers the same memory
  709. * address as @id[1])
  710. * @id: full device ID array
  711. * @pagesize: size of the NAND page in bytes; if 0, then the real page size (as
  712. * well as the eraseblock size) is determined from the extended NAND
  713. * chip ID array)
  714. * @chipsize: total chip size in MiB
  715. * @erasesize: eraseblock size in bytes (determined from the extended ID if 0)
  716. * @options: stores various chip bit options
  717. * @id_len: The valid length of the @id.
  718. * @oobsize: OOB size
  719. * @ecc: ECC correctability and step information from the datasheet.
  720. * @ecc.strength_ds: The ECC correctability from the datasheet, same as the
  721. * @ecc_strength_ds in nand_chip{}.
  722. * @ecc.step_ds: The ECC step required by the @ecc.strength_ds, same as the
  723. * @ecc_step_ds in nand_chip{}, also from the datasheet.
  724. * For example, the "4bit ECC for each 512Byte" can be set with
  725. * NAND_ECC_INFO(4, 512).
  726. * @onfi_timing_mode_default: the default ONFI timing mode entered after a NAND
  727. * reset. Should be deduced from timings described
  728. * in the datasheet.
  729. *
  730. */
  731. struct nand_flash_dev {
  732. char *name;
  733. union {
  734. struct {
  735. uint8_t mfr_id;
  736. uint8_t dev_id;
  737. };
  738. uint8_t id[NAND_MAX_ID_LEN];
  739. };
  740. unsigned int pagesize;
  741. unsigned int chipsize;
  742. unsigned int erasesize;
  743. unsigned int options;
  744. uint16_t id_len;
  745. uint16_t oobsize;
  746. struct {
  747. uint16_t strength_ds;
  748. uint16_t step_ds;
  749. } ecc;
  750. int onfi_timing_mode_default;
  751. };
  752. /**
  753. * struct nand_manufacturers - NAND Flash Manufacturer ID Structure
  754. * @name: Manufacturer name
  755. * @id: manufacturer ID code of device.
  756. */
  757. struct nand_manufacturers {
  758. int id;
  759. char *name;
  760. };
  761. extern struct nand_flash_dev nand_flash_ids[];
  762. extern struct nand_manufacturers nand_manuf_ids[];
  763. extern int nand_default_bbt(struct mtd_info *mtd);
  764. extern int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs);
  765. extern int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs);
  766. extern int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt);
  767. extern int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
  768. int allowbbt);
  769. extern int nand_do_read(struct mtd_info *mtd, loff_t from, size_t len,
  770. size_t *retlen, uint8_t *buf);
  771. /**
  772. * struct platform_nand_chip - chip level device structure
  773. * @nr_chips: max. number of chips to scan for
  774. * @chip_offset: chip number offset
  775. * @nr_partitions: number of partitions pointed to by partitions (or zero)
  776. * @partitions: mtd partition list
  777. * @chip_delay: R/B delay value in us
  778. * @options: Option flags, e.g. 16bit buswidth
  779. * @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH
  780. * @ecclayout: ECC layout info structure
  781. * @part_probe_types: NULL-terminated array of probe types
  782. */
  783. struct platform_nand_chip {
  784. int nr_chips;
  785. int chip_offset;
  786. int nr_partitions;
  787. struct mtd_partition *partitions;
  788. struct nand_ecclayout *ecclayout;
  789. int chip_delay;
  790. unsigned int options;
  791. unsigned int bbt_options;
  792. const char **part_probe_types;
  793. };
  794. /* Keep gcc happy */
  795. struct platform_device;
  796. /**
  797. * struct platform_nand_ctrl - controller level device structure
  798. * @probe: platform specific function to probe/setup hardware
  799. * @remove: platform specific function to remove/teardown hardware
  800. * @hwcontrol: platform specific hardware control structure
  801. * @dev_ready: platform specific function to read ready/busy pin
  802. * @select_chip: platform specific chip select function
  803. * @cmd_ctrl: platform specific function for controlling
  804. * ALE/CLE/nCE. Also used to write command and address
  805. * @write_buf: platform specific function for write buffer
  806. * @read_buf: platform specific function for read buffer
  807. * @read_byte: platform specific function to read one byte from chip
  808. * @priv: private data to transport driver specific settings
  809. *
  810. * All fields are optional and depend on the hardware driver requirements
  811. */
  812. struct platform_nand_ctrl {
  813. int (*probe)(struct platform_device *pdev);
  814. void (*remove)(struct platform_device *pdev);
  815. void (*hwcontrol)(struct mtd_info *mtd, int cmd);
  816. int (*dev_ready)(struct mtd_info *mtd);
  817. void (*select_chip)(struct mtd_info *mtd, int chip);
  818. void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
  819. void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
  820. void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
  821. unsigned char (*read_byte)(struct mtd_info *mtd);
  822. void *priv;
  823. };
  824. /**
  825. * struct platform_nand_data - container structure for platform-specific data
  826. * @chip: chip level chip structure
  827. * @ctrl: controller level device structure
  828. */
  829. struct platform_nand_data {
  830. struct platform_nand_chip chip;
  831. struct platform_nand_ctrl ctrl;
  832. };
  833. /* Some helpers to access the data structures */
  834. static inline
  835. struct platform_nand_chip *get_platform_nandchip(struct mtd_info *mtd)
  836. {
  837. struct nand_chip *chip = mtd->priv;
  838. return chip->priv;
  839. }
  840. /* return the supported features. */
  841. static inline int onfi_feature(struct nand_chip *chip)
  842. {
  843. return chip->onfi_version ? le16_to_cpu(chip->onfi_params.features) : 0;
  844. }
  845. /* return the supported asynchronous timing mode. */
  846. static inline int onfi_get_async_timing_mode(struct nand_chip *chip)
  847. {
  848. if (!chip->onfi_version)
  849. return ONFI_TIMING_MODE_UNKNOWN;
  850. return le16_to_cpu(chip->onfi_params.async_timing_mode);
  851. }
  852. /* return the supported synchronous timing mode. */
  853. static inline int onfi_get_sync_timing_mode(struct nand_chip *chip)
  854. {
  855. if (!chip->onfi_version)
  856. return ONFI_TIMING_MODE_UNKNOWN;
  857. return le16_to_cpu(chip->onfi_params.src_sync_timing_mode);
  858. }
  859. /*
  860. * Check if it is a SLC nand.
  861. * The !nand_is_slc() can be used to check the MLC/TLC nand chips.
  862. * We do not distinguish the MLC and TLC now.
  863. */
  864. static inline bool nand_is_slc(struct nand_chip *chip)
  865. {
  866. return chip->bits_per_cell == 1;
  867. }
  868. /**
  869. * Check if the opcode's address should be sent only on the lower 8 bits
  870. * @command: opcode to check
  871. */
  872. static inline int nand_opcode_8bits(unsigned int command)
  873. {
  874. switch (command) {
  875. case NAND_CMD_READID:
  876. case NAND_CMD_PARAM:
  877. case NAND_CMD_GET_FEATURES:
  878. case NAND_CMD_SET_FEATURES:
  879. return 1;
  880. default:
  881. break;
  882. }
  883. return 0;
  884. }
  885. /* return the supported JEDEC features. */
  886. static inline int jedec_feature(struct nand_chip *chip)
  887. {
  888. return chip->jedec_version ? le16_to_cpu(chip->jedec_params.features)
  889. : 0;
  890. }
  891. /*
  892. * struct nand_sdr_timings - SDR NAND chip timings
  893. *
  894. * This struct defines the timing requirements of a SDR NAND chip.
  895. * These informations can be found in every NAND datasheets and the timings
  896. * meaning are described in the ONFI specifications:
  897. * www.onfi.org/~/media/ONFI/specs/onfi_3_1_spec.pdf (chapter 4.15 Timing
  898. * Parameters)
  899. *
  900. * All these timings are expressed in picoseconds.
  901. */
  902. struct nand_sdr_timings {
  903. u32 tALH_min;
  904. u32 tADL_min;
  905. u32 tALS_min;
  906. u32 tAR_min;
  907. u32 tCEA_max;
  908. u32 tCEH_min;
  909. u32 tCH_min;
  910. u32 tCHZ_max;
  911. u32 tCLH_min;
  912. u32 tCLR_min;
  913. u32 tCLS_min;
  914. u32 tCOH_min;
  915. u32 tCS_min;
  916. u32 tDH_min;
  917. u32 tDS_min;
  918. u32 tFEAT_max;
  919. u32 tIR_min;
  920. u32 tITC_max;
  921. u32 tRC_min;
  922. u32 tREA_max;
  923. u32 tREH_min;
  924. u32 tRHOH_min;
  925. u32 tRHW_min;
  926. u32 tRHZ_max;
  927. u32 tRLOH_min;
  928. u32 tRP_min;
  929. u32 tRR_min;
  930. u64 tRST_max;
  931. u32 tWB_max;
  932. u32 tWC_min;
  933. u32 tWH_min;
  934. u32 tWHR_min;
  935. u32 tWP_min;
  936. u32 tWW_min;
  937. };
  938. /* get timing characteristics from ONFI timing mode. */
  939. const struct nand_sdr_timings *onfi_async_timing_mode_to_sdr_timings(int mode);
  940. int nand_check_erased_ecc_chunk(void *data, int datalen,
  941. void *ecc, int ecclen,
  942. void *extraoob, int extraooblen,
  943. int threshold);
  944. #endif /* __LINUX_MTD_NAND_H */