nand.h 32 KB

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