nand.h 36 KB

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