1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright 2017 - Free Electrons
10 #ifndef __LINUX_MTD_NAND_H
11 #define __LINUX_MTD_NAND_H
13 #include <linux/mtd/mtd.h>
16 * struct nand_memory_organization - Memory organization structure
17 * @bits_per_cell: number of bits per NAND cell
18 * @pagesize: page size
19 * @oobsize: OOB area size
20 * @pages_per_eraseblock: number of pages per eraseblock
21 * @eraseblocks_per_lun: number of eraseblocks per LUN (Logical Unit Number)
22 * @planes_per_lun: number of planes per LUN
23 * @luns_per_target: number of LUN per target (target is a synonym for die)
24 * @ntargets: total number of targets exposed by the NAND device
26 struct nand_memory_organization {
27 unsigned int bits_per_cell;
28 unsigned int pagesize;
30 unsigned int pages_per_eraseblock;
31 unsigned int eraseblocks_per_lun;
32 unsigned int planes_per_lun;
33 unsigned int luns_per_target;
34 unsigned int ntargets;
37 #define NAND_MEMORG(bpc, ps, os, ppe, epl, ppl, lpt, nt) \
39 .bits_per_cell = (bpc), \
42 .pages_per_eraseblock = (ppe), \
43 .eraseblocks_per_lun = (epl), \
44 .planes_per_lun = (ppl), \
45 .luns_per_target = (lpt), \
50 * struct nand_row_converter - Information needed to convert an absolute offset
52 * @lun_addr_shift: position of the LUN identifier in the row address
53 * @eraseblock_addr_shift: position of the eraseblock identifier in the row
56 struct nand_row_converter {
57 unsigned int lun_addr_shift;
58 unsigned int eraseblock_addr_shift;
62 * struct nand_pos - NAND position object
63 * @target: the NAND target/die
64 * @lun: the LUN identifier
65 * @plane: the plane within the LUN
66 * @eraseblock: the eraseblock within the LUN
67 * @page: the page within the LUN
69 * These information are usually used by specific sub-layers to select the
70 * appropriate target/die and generate a row address to pass to the device.
76 unsigned int eraseblock;
81 * struct nand_page_io_req - NAND I/O request object
82 * @pos: the position this I/O request is targeting
83 * @dataoffs: the offset within the page
84 * @datalen: number of data bytes to read from/write to this page
85 * @databuf: buffer to store data in or get data from
86 * @ooboffs: the OOB offset within the page
87 * @ooblen: the number of OOB bytes to read from/write to this page
88 * @oobbuf: buffer to store OOB data in or get OOB data from
89 * @mode: one of the %MTD_OPS_XXX mode
91 * This object is used to pass per-page I/O requests to NAND sub-layers. This
92 * way all useful information are already formatted in a useful way and
93 * specific NAND layers can focus on translating these information into
94 * specific commands/operations.
96 struct nand_page_io_req {
98 unsigned int dataoffs;
104 unsigned int ooboffs;
114 * struct nand_ecc_req - NAND ECC requirements
115 * @strength: ECC strength
116 * @step_size: ECC step/block size
118 struct nand_ecc_req {
119 unsigned int strength;
120 unsigned int step_size;
123 #define NAND_ECCREQ(str, stp) { .strength = (str), .step_size = (stp) }
126 * struct nand_bbt - bad block table object
127 * @cache: in memory BBT cache
130 unsigned long *cache;
136 * struct nand_ops - NAND operations
137 * @erase: erase a specific block. No need to check if the block is bad before
138 * erasing, this has been taken care of by the generic NAND layer
139 * @markbad: mark a specific block bad. No need to check if the block is
140 * already marked bad, this has been taken care of by the generic
141 * NAND layer. This method should just write the BBM (Bad Block
142 * Marker) so that future call to struct_nand_ops->isbad() return
144 * @isbad: check whether a block is bad or not. This method should just read
145 * the BBM and return whether the block is bad or not based on what it
148 * These are all low level operations that should be implemented by specialized
149 * NAND layers (SPI NAND, raw NAND, ...).
152 int (*erase)(struct nand_device *nand, const struct nand_pos *pos);
153 int (*markbad)(struct nand_device *nand, const struct nand_pos *pos);
154 bool (*isbad)(struct nand_device *nand, const struct nand_pos *pos);
158 * struct nand_device - NAND device
159 * @mtd: MTD instance attached to the NAND device
160 * @memorg: memory layout
161 * @eccreq: ECC requirements
162 * @rowconv: position to row address converter
163 * @bbt: bad block table info
164 * @ops: NAND operations attached to the NAND device
166 * Generic NAND object. Specialized NAND layers (raw NAND, SPI NAND, OneNAND)
167 * should declare their own NAND object embedding a nand_device struct (that's
168 * how inheritance is done).
169 * struct_nand_device->memorg and struct_nand_device->eccreq should be filled
170 * at device detection time to reflect the NAND device
171 * capabilities/requirements. Once this is done nanddev_init() can be called.
172 * It will take care of converting NAND information into MTD ones, which means
173 * the specialized NAND layers should never manually tweak
174 * struct_nand_device->mtd except for the ->_read/write() hooks.
178 struct nand_memory_organization memorg;
179 struct nand_ecc_req eccreq;
180 struct nand_row_converter rowconv;
182 const struct nand_ops *ops;
186 * struct nand_io_iter - NAND I/O iterator
187 * @req: current I/O request
188 * @oobbytes_per_page: maximum number of OOB bytes per page
189 * @dataleft: remaining number of data bytes to read/write
190 * @oobleft: remaining number of OOB bytes to read/write
192 * Can be used by specialized NAND layers to iterate over all pages covered
193 * by an MTD I/O request, which should greatly simplifies the boiler-plate
194 * code needed to read/write data from/to a NAND device.
196 struct nand_io_iter {
197 struct nand_page_io_req req;
198 unsigned int oobbytes_per_page;
199 unsigned int dataleft;
200 unsigned int oobleft;
204 * mtd_to_nanddev() - Get the NAND device attached to the MTD instance
207 * Return: the NAND device embedding @mtd.
209 static inline struct nand_device *mtd_to_nanddev(struct mtd_info *mtd)
211 return container_of(mtd, struct nand_device, mtd);
215 * nanddev_to_mtd() - Get the MTD device attached to a NAND device
218 * Return: the MTD device embedded in @nand.
220 static inline struct mtd_info *nanddev_to_mtd(struct nand_device *nand)
226 * nanddev_bits_per_cell() - Get the number of bits per cell
229 * Return: the number of bits per cell.
231 static inline unsigned int nanddev_bits_per_cell(const struct nand_device *nand)
233 return nand->memorg.bits_per_cell;
237 * nanddev_page_size() - Get NAND page size
240 * Return: the page size.
242 static inline size_t nanddev_page_size(const struct nand_device *nand)
244 return nand->memorg.pagesize;
248 * nanddev_per_page_oobsize() - Get NAND OOB size
251 * Return: the OOB size.
253 static inline unsigned int
254 nanddev_per_page_oobsize(const struct nand_device *nand)
256 return nand->memorg.oobsize;
260 * nanddev_pages_per_eraseblock() - Get the number of pages per eraseblock
263 * Return: the number of pages per eraseblock.
265 static inline unsigned int
266 nanddev_pages_per_eraseblock(const struct nand_device *nand)
268 return nand->memorg.pages_per_eraseblock;
272 * nanddev_per_page_oobsize() - Get NAND erase block size
275 * Return: the eraseblock size.
277 static inline size_t nanddev_eraseblock_size(const struct nand_device *nand)
279 return nand->memorg.pagesize * nand->memorg.pages_per_eraseblock;
283 * nanddev_eraseblocks_per_lun() - Get the number of eraseblocks per LUN
286 * Return: the number of eraseblocks per LUN.
288 static inline unsigned int
289 nanddev_eraseblocks_per_lun(const struct nand_device *nand)
291 return nand->memorg.eraseblocks_per_lun;
295 * nanddev_target_size() - Get the total size provided by a single target/die
298 * Return: the total size exposed by a single target/die in bytes.
300 static inline u64 nanddev_target_size(const struct nand_device *nand)
302 return (u64)nand->memorg.luns_per_target *
303 nand->memorg.eraseblocks_per_lun *
304 nand->memorg.pages_per_eraseblock *
305 nand->memorg.pagesize;
309 * nanddev_ntarget() - Get the total of targets
312 * Return: the number of targets/dies exposed by @nand.
314 static inline unsigned int nanddev_ntargets(const struct nand_device *nand)
316 return nand->memorg.ntargets;
320 * nanddev_neraseblocks() - Get the total number of erasablocks
323 * Return: the total number of eraseblocks exposed by @nand.
325 static inline unsigned int nanddev_neraseblocks(const struct nand_device *nand)
327 return (u64)nand->memorg.luns_per_target *
328 nand->memorg.eraseblocks_per_lun *
329 nand->memorg.pages_per_eraseblock;
333 * nanddev_size() - Get NAND size
336 * Return: the total size (in bytes) exposed by @nand.
338 static inline u64 nanddev_size(const struct nand_device *nand)
340 return nanddev_target_size(nand) * nanddev_ntargets(nand);
344 * nanddev_get_memorg() - Extract memory organization info from a NAND device
347 * This can be used by the upper layer to fill the memorg info before calling
350 * Return: the memorg object embedded in the NAND device.
352 static inline struct nand_memory_organization *
353 nanddev_get_memorg(struct nand_device *nand)
355 return &nand->memorg;
358 int nanddev_init(struct nand_device *nand, const struct nand_ops *ops,
359 struct module *owner);
360 void nanddev_cleanup(struct nand_device *nand);
363 * nanddev_register() - Register a NAND device
366 * Register a NAND device.
367 * This function is just a wrapper around mtd_device_register()
368 * registering the MTD device embedded in @nand.
370 * Return: 0 in case of success, a negative error code otherwise.
372 static inline int nanddev_register(struct nand_device *nand)
374 return mtd_device_register(&nand->mtd, NULL, 0);
378 * nanddev_unregister() - Unregister a NAND device
381 * Unregister a NAND device.
382 * This function is just a wrapper around mtd_device_unregister()
383 * unregistering the MTD device embedded in @nand.
385 * Return: 0 in case of success, a negative error code otherwise.
387 static inline int nanddev_unregister(struct nand_device *nand)
389 return mtd_device_unregister(&nand->mtd);
393 * nanddev_set_of_node() - Attach a DT node to a NAND device
397 * Attach a DT node to a NAND device.
399 static inline void nanddev_set_of_node(struct nand_device *nand,
400 struct device_node *np)
402 mtd_set_of_node(&nand->mtd, np);
406 * nanddev_get_of_node() - Retrieve the DT node attached to a NAND device
409 * Return: the DT node attached to @nand.
411 static inline struct device_node *nanddev_get_of_node(struct nand_device *nand)
413 return mtd_get_of_node(&nand->mtd);
417 * nanddev_offs_to_pos() - Convert an absolute NAND offset into a NAND position
419 * @offs: absolute NAND offset (usually passed by the MTD layer)
420 * @pos: a NAND position object to fill in
422 * Converts @offs into a nand_pos representation.
424 * Return: the offset within the NAND page pointed by @pos.
426 static inline unsigned int nanddev_offs_to_pos(struct nand_device *nand,
428 struct nand_pos *pos)
430 unsigned int pageoffs;
433 pageoffs = do_div(tmp, nand->memorg.pagesize);
434 pos->page = do_div(tmp, nand->memorg.pages_per_eraseblock);
435 pos->eraseblock = do_div(tmp, nand->memorg.eraseblocks_per_lun);
436 pos->plane = pos->eraseblock % nand->memorg.planes_per_lun;
437 pos->lun = do_div(tmp, nand->memorg.luns_per_target);
444 * nanddev_pos_cmp() - Compare two NAND positions
445 * @a: First NAND position
446 * @b: Second NAND position
448 * Compares two NAND positions.
450 * Return: -1 if @a < @b, 0 if @a == @b and 1 if @a > @b.
452 static inline int nanddev_pos_cmp(const struct nand_pos *a,
453 const struct nand_pos *b)
455 if (a->target != b->target)
456 return a->target < b->target ? -1 : 1;
458 if (a->lun != b->lun)
459 return a->lun < b->lun ? -1 : 1;
461 if (a->eraseblock != b->eraseblock)
462 return a->eraseblock < b->eraseblock ? -1 : 1;
464 if (a->page != b->page)
465 return a->page < b->page ? -1 : 1;
471 * nanddev_pos_to_offs() - Convert a NAND position into an absolute offset
473 * @pos: the NAND position to convert
475 * Converts @pos NAND position into an absolute offset.
477 * Return: the absolute offset. Note that @pos points to the beginning of a
478 * page, if one wants to point to a specific offset within this page
479 * the returned offset has to be adjusted manually.
481 static inline loff_t nanddev_pos_to_offs(struct nand_device *nand,
482 const struct nand_pos *pos)
489 (pos->target * nand->memorg.luns_per_target)) *
490 nand->memorg.eraseblocks_per_lun) *
491 nand->memorg.pages_per_eraseblock);
493 return (loff_t)npages * nand->memorg.pagesize;
497 * nanddev_pos_to_row() - Extract a row address from a NAND position
499 * @pos: the position to convert
501 * Converts a NAND position into a row address that can then be passed to the
504 * Return: the row address extracted from @pos.
506 static inline unsigned int nanddev_pos_to_row(struct nand_device *nand,
507 const struct nand_pos *pos)
509 return (pos->lun << nand->rowconv.lun_addr_shift) |
510 (pos->eraseblock << nand->rowconv.eraseblock_addr_shift) |
515 * nanddev_pos_next_target() - Move a position to the next target/die
517 * @pos: the position to update
519 * Updates @pos to point to the start of the next target/die. Useful when you
520 * want to iterate over all targets/dies of a NAND device.
522 static inline void nanddev_pos_next_target(struct nand_device *nand,
523 struct nand_pos *pos)
533 * nanddev_pos_next_lun() - Move a position to the next LUN
535 * @pos: the position to update
537 * Updates @pos to point to the start of the next LUN. Useful when you want to
538 * iterate over all LUNs of a NAND device.
540 static inline void nanddev_pos_next_lun(struct nand_device *nand,
541 struct nand_pos *pos)
543 if (pos->lun >= nand->memorg.luns_per_target - 1)
544 return nanddev_pos_next_target(nand, pos);
553 * nanddev_pos_next_eraseblock() - Move a position to the next eraseblock
555 * @pos: the position to update
557 * Updates @pos to point to the start of the next eraseblock. Useful when you
558 * want to iterate over all eraseblocks of a NAND device.
560 static inline void nanddev_pos_next_eraseblock(struct nand_device *nand,
561 struct nand_pos *pos)
563 if (pos->eraseblock >= nand->memorg.eraseblocks_per_lun - 1)
564 return nanddev_pos_next_lun(nand, pos);
568 pos->plane = pos->eraseblock % nand->memorg.planes_per_lun;
572 * nanddev_pos_next_eraseblock() - Move a position to the next page
574 * @pos: the position to update
576 * Updates @pos to point to the start of the next page. Useful when you want to
577 * iterate over all pages of a NAND device.
579 static inline void nanddev_pos_next_page(struct nand_device *nand,
580 struct nand_pos *pos)
582 if (pos->page >= nand->memorg.pages_per_eraseblock - 1)
583 return nanddev_pos_next_eraseblock(nand, pos);
589 * nand_io_iter_init - Initialize a NAND I/O iterator
591 * @offs: absolute offset
593 * @iter: NAND I/O iterator
595 * Initializes a NAND iterator based on the information passed by the MTD
598 static inline void nanddev_io_iter_init(struct nand_device *nand,
599 loff_t offs, struct mtd_oob_ops *req,
600 struct nand_io_iter *iter)
602 struct mtd_info *mtd = nanddev_to_mtd(nand);
604 iter->req.mode = req->mode;
605 iter->req.dataoffs = nanddev_offs_to_pos(nand, offs, &iter->req.pos);
606 iter->req.ooboffs = req->ooboffs;
607 iter->oobbytes_per_page = mtd_oobavail(mtd, req);
608 iter->dataleft = req->len;
609 iter->oobleft = req->ooblen;
610 iter->req.databuf.in = req->datbuf;
611 iter->req.datalen = min_t(unsigned int,
612 nand->memorg.pagesize - iter->req.dataoffs,
614 iter->req.oobbuf.in = req->oobbuf;
615 iter->req.ooblen = min_t(unsigned int,
616 iter->oobbytes_per_page - iter->req.ooboffs,
621 * nand_io_iter_next_page - Move to the next page
623 * @iter: NAND I/O iterator
625 * Updates the @iter to point to the next page.
627 static inline void nanddev_io_iter_next_page(struct nand_device *nand,
628 struct nand_io_iter *iter)
630 nanddev_pos_next_page(nand, &iter->req.pos);
631 iter->dataleft -= iter->req.datalen;
632 iter->req.databuf.in += iter->req.datalen;
633 iter->oobleft -= iter->req.ooblen;
634 iter->req.oobbuf.in += iter->req.ooblen;
635 iter->req.dataoffs = 0;
636 iter->req.ooboffs = 0;
637 iter->req.datalen = min_t(unsigned int, nand->memorg.pagesize,
639 iter->req.ooblen = min_t(unsigned int, iter->oobbytes_per_page,
644 * nand_io_iter_end - Should end iteration or not
646 * @iter: NAND I/O iterator
648 * Check whether @iter has reached the end of the NAND portion it was asked to
651 * Return: true if @iter has reached the end of the iteration request, false
654 static inline bool nanddev_io_iter_end(struct nand_device *nand,
655 const struct nand_io_iter *iter)
657 if (iter->dataleft || iter->oobleft)
664 * nand_io_for_each_page - Iterate over all NAND pages contained in an MTD I/O
667 * @start: start address to read/write from
668 * @req: MTD I/O request
669 * @iter: NAND I/O iterator
671 * Should be used for iterate over pages that are contained in an MTD request.
673 #define nanddev_io_for_each_page(nand, start, req, iter) \
674 for (nanddev_io_iter_init(nand, start, req, iter); \
675 !nanddev_io_iter_end(nand, iter); \
676 nanddev_io_iter_next_page(nand, iter))
678 bool nanddev_isbad(struct nand_device *nand, const struct nand_pos *pos);
679 bool nanddev_isreserved(struct nand_device *nand, const struct nand_pos *pos);
680 int nanddev_erase(struct nand_device *nand, const struct nand_pos *pos);
681 int nanddev_markbad(struct nand_device *nand, const struct nand_pos *pos);
683 /* BBT related functions */
684 enum nand_bbt_block_status {
685 NAND_BBT_BLOCK_STATUS_UNKNOWN,
688 NAND_BBT_BLOCK_RESERVED,
689 NAND_BBT_BLOCK_FACTORY_BAD,
690 NAND_BBT_BLOCK_NUM_STATUS,
693 int nanddev_bbt_init(struct nand_device *nand);
694 void nanddev_bbt_cleanup(struct nand_device *nand);
695 int nanddev_bbt_update(struct nand_device *nand);
696 int nanddev_bbt_get_block_status(const struct nand_device *nand,
698 int nanddev_bbt_set_block_status(struct nand_device *nand, unsigned int entry,
699 enum nand_bbt_block_status status);
700 int nanddev_bbt_markbad(struct nand_device *nand, unsigned int block);
703 * nanddev_bbt_pos_to_entry() - Convert a NAND position into a BBT entry
705 * @pos: the NAND position we want to get BBT entry for
707 * Return the BBT entry used to store information about the eraseblock pointed
710 * Return: the BBT entry storing information about eraseblock pointed by @pos.
712 static inline unsigned int nanddev_bbt_pos_to_entry(struct nand_device *nand,
713 const struct nand_pos *pos)
715 return pos->eraseblock +
716 ((pos->lun + (pos->target * nand->memorg.luns_per_target)) *
717 nand->memorg.eraseblocks_per_lun);
721 * nanddev_bbt_is_initialized() - Check if the BBT has been initialized
724 * Return: true if the BBT has been initialized, false otherwise.
726 static inline bool nanddev_bbt_is_initialized(struct nand_device *nand)
728 return !!nand->bbt.cache;
731 /* MTD -> NAND helper functions. */
732 int nanddev_mtd_erase(struct mtd_info *mtd, struct erase_info *einfo);
734 #endif /* __LINUX_MTD_NAND_H */