Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2005 |
| 4 | * 2N Telekomunikace, a.s. <www.2n.cz> |
| 5 | * Ladislav Michl <michl@2n.cz> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _NAND_H_ |
| 9 | #define _NAND_H_ |
| 10 | |
Tom Rini | d678a59 | 2024-05-18 20:20:43 -0600 | [diff] [blame] | 11 | #include <config.h> |
| 12 | |
Scott Wood | 9d2e394 | 2008-07-09 17:47:52 -0500 | [diff] [blame] | 13 | extern void nand_init(void); |
Sean Anderson | 333d43f | 2023-11-04 16:37:50 -0400 | [diff] [blame] | 14 | void nand_reinit(void); |
Hou Zhiqiang | 203db38 | 2017-03-17 16:12:31 +0800 | [diff] [blame] | 15 | unsigned long nand_size(void); |
Sean Anderson | 38ef64e | 2023-11-04 16:37:44 -0400 | [diff] [blame] | 16 | unsigned int nand_page_size(void); |
Scott Wood | 9d2e394 | 2008-07-09 17:47:52 -0500 | [diff] [blame] | 17 | |
Mike Frysinger | 7b15e2b | 2012-04-09 13:39:55 +0000 | [diff] [blame] | 18 | #include <linux/compat.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 19 | #include <linux/mtd/mtd.h> |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 20 | |
Scott Wood | b616d9b | 2016-05-30 13:57:55 -0500 | [diff] [blame] | 21 | int nand_mtd_to_devnum(struct mtd_info *mtd); |
| 22 | |
Tom Rini | 068c41f | 2021-12-12 22:12:36 -0500 | [diff] [blame] | 23 | #if CONFIG_IS_ENABLED(SYS_NAND_SELF_INIT) |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 24 | void board_nand_init(void); |
Scott Wood | b616d9b | 2016-05-30 13:57:55 -0500 | [diff] [blame] | 25 | int nand_register(int devnum, struct mtd_info *mtd); |
Sean Anderson | c203482 | 2023-11-04 16:37:49 -0400 | [diff] [blame] | 26 | void nand_unregister(struct mtd_info *mtd); |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 27 | #else |
Tom Rini | 1cefed1 | 2021-09-22 14:50:35 -0400 | [diff] [blame] | 28 | struct nand_chip; |
| 29 | |
Mike Frysinger | 69fb8be | 2008-12-06 02:40:55 -0500 | [diff] [blame] | 30 | extern int board_nand_init(struct nand_chip *nand); |
Scott Wood | 578931b | 2012-01-12 19:07:23 -0600 | [diff] [blame] | 31 | #endif |
Mike Frysinger | 69fb8be | 2008-12-06 02:40:55 -0500 | [diff] [blame] | 32 | |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 33 | extern int nand_curr_device; |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 34 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 35 | static inline int nand_read(struct mtd_info *info, loff_t ofs, size_t *len, |
| 36 | u_char *buf) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 37 | { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 38 | return mtd_read(info, ofs, *len, (size_t *)len, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 39 | } |
| 40 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 41 | static inline int nand_write(struct mtd_info *info, loff_t ofs, size_t *len, |
| 42 | u_char *buf) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 43 | { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 44 | return mtd_write(info, ofs, *len, (size_t *)len, buf); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 45 | } |
| 46 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 47 | static inline int nand_block_isbad(struct mtd_info *info, loff_t ofs) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 48 | { |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 49 | return mtd_block_isbad(info, ofs); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 52 | static inline int nand_erase(struct mtd_info *info, loff_t off, size_t size) |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 53 | { |
Wolfgang Denk | 8e9655f | 2005-11-02 14:29:12 +0100 | [diff] [blame] | 54 | struct erase_info instr; |
| 55 | |
| 56 | instr.mtd = info; |
| 57 | instr.addr = off; |
| 58 | instr.len = size; |
Wolfgang Denk | 8e9655f | 2005-11-02 14:29:12 +0100 | [diff] [blame] | 59 | |
Sergey Lapin | dfe64e2 | 2013-01-14 03:46:50 +0000 | [diff] [blame] | 60 | return mtd_erase(info, &instr); |
Wolfgang Denk | 932394a | 2005-08-17 12:55:25 +0200 | [diff] [blame] | 61 | } |
| 62 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 63 | |
| 64 | /***************************************************************************** |
| 65 | * declarations from nand_util.c |
| 66 | ****************************************************************************/ |
| 67 | |
William Juul | cfa460a | 2007-10-31 13:53:06 +0100 | [diff] [blame] | 68 | typedef struct mtd_oob_ops mtd_oob_ops_t; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 69 | |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 70 | struct nand_erase_options { |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 71 | loff_t length; /* number of bytes to erase */ |
| 72 | loff_t offset; /* first address in NAND to erase */ |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 73 | int quiet; /* don't display progress messages */ |
| 74 | int jffs2; /* if true: format for jffs2 usage |
| 75 | * (write appropriate cleanmarker blocks) */ |
| 76 | int scrub; /* if true, really clean NAND by erasing |
| 77 | * bad blocks (UNSAFE) */ |
Scott Wood | 3048632 | 2010-08-25 14:43:29 -0500 | [diff] [blame] | 78 | |
| 79 | /* Don't include skipped bad blocks in size to be erased */ |
| 80 | int spread; |
Heiko Schocher | a67cc37 | 2013-06-24 18:50:40 +0200 | [diff] [blame] | 81 | /* maximum size that actual may be in order to not exceed the buf */ |
| 82 | loff_t lim; |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | typedef struct nand_erase_options nand_erase_options_t; |
| 86 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 87 | int nand_read_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length, |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 88 | size_t *actual, loff_t lim, u_char *buffer); |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 89 | |
Peter Tyser | 004a1fd | 2015-02-03 11:58:16 -0600 | [diff] [blame] | 90 | #define WITH_DROP_FFS (1 << 0) /* drop trailing all-0xff pages */ |
| 91 | #define WITH_WR_VERIFY (1 << 1) /* verify data was written correctly */ |
Ben Gardiner | a6c9aa1 | 2011-05-24 10:18:35 -0400 | [diff] [blame] | 92 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 93 | int nand_write_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length, |
Tom Rini | c39d6a0 | 2013-03-14 05:32:50 +0000 | [diff] [blame] | 94 | size_t *actual, loff_t lim, u_char *buffer, int flags); |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 95 | int nand_erase_opts(struct mtd_info *mtd, |
| 96 | const nand_erase_options_t *opts); |
| 97 | int nand_torture(struct mtd_info *mtd, loff_t offset); |
| 98 | int nand_verify_page_oob(struct mtd_info *mtd, struct mtd_oob_ops *ops, |
| 99 | loff_t ofs); |
| 100 | int nand_verify(struct mtd_info *mtd, loff_t ofs, size_t len, u_char *buf); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 101 | |
| 102 | #define NAND_LOCK_STATUS_TIGHT 0x01 |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 103 | #define NAND_LOCK_STATUS_UNLOCK 0x04 |
| 104 | |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 105 | int nand_lock(struct mtd_info *mtd, int tight); |
| 106 | int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length, |
| 107 | int allexcept); |
| 108 | int nand_get_lock_status(struct mtd_info *mtd, loff_t offset); |
Stefan Roese | 2255b2d | 2006-10-10 12:36:02 +0200 | [diff] [blame] | 109 | |
Dario Binacchi | 9f6a14c | 2020-05-27 13:56:20 +0200 | [diff] [blame] | 110 | u32 nand_spl_adjust_offset(u32 sector, u32 offs); |
Simon Schwarz | 12c2f1e | 2011-09-14 15:30:16 -0400 | [diff] [blame] | 111 | int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst); |
Thomas Gleixner | e1a89e9 | 2016-07-12 20:28:10 +0200 | [diff] [blame] | 112 | int nand_spl_read_block(int block, int offset, int len, void *dst); |
Simon Schwarz | bb085b8 | 2011-09-14 15:29:26 -0400 | [diff] [blame] | 113 | void nand_deselect(void); |
| 114 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 115 | #ifdef CONFIG_SYS_NAND_SELECT_DEVICE |
Stefan Roese | 43a2b0e | 2006-10-20 14:28:52 +0200 | [diff] [blame] | 116 | void board_nand_select_device(struct nand_chip *nand, int chip); |
| 117 | #endif |
| 118 | |
Scott Wood | e4c0950 | 2008-06-30 14:13:28 -0500 | [diff] [blame] | 119 | __attribute__((noreturn)) void nand_boot(void); |
| 120 | |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 121 | #ifdef CONFIG_ENV_OFFSET_OOB |
| 122 | #define ENV_OOB_MARKER 0x30425645 /*"EVB0" in little-endian -- offset is stored |
| 123 | as block number*/ |
| 124 | #define ENV_OOB_MARKER_OLD 0x30564e45 /*"ENV0" in little-endian -- offset is |
| 125 | stored as byte number */ |
| 126 | #define ENV_OFFSET_SIZE 8 |
Scott Wood | 151c06e | 2016-05-30 13:57:54 -0500 | [diff] [blame] | 127 | int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result); |
Ben Gardiner | c9f7351 | 2010-07-05 13:27:07 -0400 | [diff] [blame] | 128 | #endif |
Heiko Schocher | 4dfd360 | 2014-10-31 08:31:02 +0100 | [diff] [blame] | 129 | int spl_nand_erase_one(int block, int page); |
Boris Brezillon | 4ccae81 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 130 | |
| 131 | /* platform specific init functions */ |
| 132 | void sunxi_nand_init(void); |
Mugunthan V N | 2afc741 | 2017-01-23 16:04:34 -0600 | [diff] [blame] | 133 | |
Mugunthan V N | ad92dff | 2017-06-26 19:12:51 -0500 | [diff] [blame] | 134 | /* |
| 135 | * get_nand_dev_by_index - Get the nand info based in index. |
| 136 | * |
| 137 | * @dev - index to the nand device. |
| 138 | * |
| 139 | * returns pointer to the nand device info structure or NULL on failure. |
| 140 | */ |
| 141 | struct mtd_info *get_nand_dev_by_index(int dev); |
| 142 | |
Mugunthan V N | 2afc741 | 2017-01-23 16:04:34 -0600 | [diff] [blame] | 143 | #endif /* _NAND_H_ */ |