]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
932394ac WD |
2 | /* |
3 | * (C) Copyright 2005 | |
4 | * 2N Telekomunikace, a.s. <www.2n.cz> | |
5 | * Ladislav Michl <[email protected]> | |
932394ac WD |
6 | */ |
7 | ||
8 | #ifndef _NAND_H_ | |
9 | #define _NAND_H_ | |
10 | ||
c1783474 SW |
11 | #include <config.h> |
12 | ||
13 | /* | |
14 | * All boards using a given driver must convert to self-init | |
15 | * at the same time, so do it here. When all drivers are | |
16 | * converted, this will go away. | |
17 | */ | |
0b0b4f59 BS |
18 | #ifdef CONFIG_SPL_BUILD |
19 | #if defined(CONFIG_NAND_FSL_ELBC) || defined(CONFIG_NAND_FSL_IFC) | |
20 | #define CONFIG_SYS_NAND_SELF_INIT | |
21 | #endif | |
22 | #else | |
a1b81ab2 PK |
23 | #if defined(CONFIG_NAND_FSL_ELBC) || defined(CONFIG_NAND_ATMEL)\ |
24 | || defined(CONFIG_NAND_FSL_IFC) | |
c1783474 SW |
25 | #define CONFIG_SYS_NAND_SELF_INIT |
26 | #endif | |
0b0b4f59 | 27 | #endif |
c1783474 | 28 | |
9d2e3947 | 29 | extern void nand_init(void); |
203db38a | 30 | unsigned long nand_size(void); |
9d2e3947 | 31 | |
7b15e2bb | 32 | #include <linux/compat.h> |
932394ac | 33 | #include <linux/mtd/mtd.h> |
6ae3900a | 34 | #include <linux/mtd/rawnand.h> |
932394ac | 35 | |
b616d9b0 SW |
36 | int nand_mtd_to_devnum(struct mtd_info *mtd); |
37 | ||
578931b3 SW |
38 | #ifdef CONFIG_SYS_NAND_SELF_INIT |
39 | void board_nand_init(void); | |
b616d9b0 | 40 | int nand_register(int devnum, struct mtd_info *mtd); |
578931b3 | 41 | #else |
69fb8be4 | 42 | extern int board_nand_init(struct nand_chip *nand); |
578931b3 | 43 | #endif |
69fb8be4 | 44 | |
932394ac | 45 | extern int nand_curr_device; |
932394ac | 46 | |
151c06ec SW |
47 | static inline int nand_read(struct mtd_info *info, loff_t ofs, size_t *len, |
48 | u_char *buf) | |
932394ac | 49 | { |
dfe64e2c | 50 | return mtd_read(info, ofs, *len, (size_t *)len, buf); |
932394ac WD |
51 | } |
52 | ||
151c06ec SW |
53 | static inline int nand_write(struct mtd_info *info, loff_t ofs, size_t *len, |
54 | u_char *buf) | |
932394ac | 55 | { |
dfe64e2c | 56 | return mtd_write(info, ofs, *len, (size_t *)len, buf); |
932394ac WD |
57 | } |
58 | ||
151c06ec | 59 | static inline int nand_block_isbad(struct mtd_info *info, loff_t ofs) |
932394ac | 60 | { |
dfe64e2c | 61 | return mtd_block_isbad(info, ofs); |
932394ac WD |
62 | } |
63 | ||
151c06ec | 64 | static inline int nand_erase(struct mtd_info *info, loff_t off, size_t size) |
932394ac | 65 | { |
8e9655f8 WD |
66 | struct erase_info instr; |
67 | ||
68 | instr.mtd = info; | |
69 | instr.addr = off; | |
70 | instr.len = size; | |
71 | instr.callback = 0; | |
72 | ||
dfe64e2c | 73 | return mtd_erase(info, &instr); |
932394ac WD |
74 | } |
75 | ||
2255b2d2 SR |
76 | |
77 | /***************************************************************************** | |
78 | * declarations from nand_util.c | |
79 | ****************************************************************************/ | |
80 | ||
cfa460ad | 81 | typedef struct mtd_oob_ops mtd_oob_ops_t; |
2255b2d2 | 82 | |
2255b2d2 | 83 | struct nand_erase_options { |
30486322 SW |
84 | loff_t length; /* number of bytes to erase */ |
85 | loff_t offset; /* first address in NAND to erase */ | |
2255b2d2 SR |
86 | int quiet; /* don't display progress messages */ |
87 | int jffs2; /* if true: format for jffs2 usage | |
88 | * (write appropriate cleanmarker blocks) */ | |
89 | int scrub; /* if true, really clean NAND by erasing | |
90 | * bad blocks (UNSAFE) */ | |
30486322 SW |
91 | |
92 | /* Don't include skipped bad blocks in size to be erased */ | |
93 | int spread; | |
a67cc37e HS |
94 | /* maximum size that actual may be in order to not exceed the buf */ |
95 | loff_t lim; | |
2255b2d2 SR |
96 | }; |
97 | ||
98 | typedef struct nand_erase_options nand_erase_options_t; | |
99 | ||
151c06ec | 100 | int nand_read_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length, |
c39d6a0e | 101 | size_t *actual, loff_t lim, u_char *buffer); |
a6c9aa1f | 102 | |
004a1fdb PT |
103 | #define WITH_DROP_FFS (1 << 0) /* drop trailing all-0xff pages */ |
104 | #define WITH_WR_VERIFY (1 << 1) /* verify data was written correctly */ | |
a6c9aa1f | 105 | |
151c06ec | 106 | int nand_write_skip_bad(struct mtd_info *mtd, loff_t offset, size_t *length, |
c39d6a0e | 107 | size_t *actual, loff_t lim, u_char *buffer, int flags); |
151c06ec SW |
108 | int nand_erase_opts(struct mtd_info *mtd, |
109 | const nand_erase_options_t *opts); | |
110 | int nand_torture(struct mtd_info *mtd, loff_t offset); | |
111 | int nand_verify_page_oob(struct mtd_info *mtd, struct mtd_oob_ops *ops, | |
112 | loff_t ofs); | |
113 | int nand_verify(struct mtd_info *mtd, loff_t ofs, size_t len, u_char *buf); | |
2255b2d2 SR |
114 | |
115 | #define NAND_LOCK_STATUS_TIGHT 0x01 | |
2255b2d2 SR |
116 | #define NAND_LOCK_STATUS_UNLOCK 0x04 |
117 | ||
151c06ec SW |
118 | int nand_lock(struct mtd_info *mtd, int tight); |
119 | int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length, | |
120 | int allexcept); | |
121 | int nand_get_lock_status(struct mtd_info *mtd, loff_t offset); | |
2255b2d2 | 122 | |
12c2f1ee | 123 | int nand_spl_load_image(uint32_t offs, unsigned int size, void *dst); |
e1a89e93 | 124 | int nand_spl_read_block(int block, int offset, int len, void *dst); |
bb085b87 SS |
125 | void nand_deselect(void); |
126 | ||
6d0f6bcf | 127 | #ifdef CONFIG_SYS_NAND_SELECT_DEVICE |
43a2b0e7 SR |
128 | void board_nand_select_device(struct nand_chip *nand, int chip); |
129 | #endif | |
130 | ||
e4c09508 SW |
131 | __attribute__((noreturn)) void nand_boot(void); |
132 | ||
c9f7351b BG |
133 | #ifdef CONFIG_ENV_OFFSET_OOB |
134 | #define ENV_OOB_MARKER 0x30425645 /*"EVB0" in little-endian -- offset is stored | |
135 | as block number*/ | |
136 | #define ENV_OOB_MARKER_OLD 0x30564e45 /*"ENV0" in little-endian -- offset is | |
137 | stored as byte number */ | |
138 | #define ENV_OFFSET_SIZE 8 | |
151c06ec | 139 | int get_nand_env_oob(struct mtd_info *mtd, unsigned long *result); |
c9f7351b | 140 | #endif |
4dfd3605 | 141 | int spl_nand_erase_one(int block, int page); |
4ccae81c BB |
142 | |
143 | /* platform specific init functions */ | |
144 | void sunxi_nand_init(void); | |
2afc741a | 145 | |
ad92dff2 M |
146 | /* |
147 | * get_nand_dev_by_index - Get the nand info based in index. | |
148 | * | |
149 | * @dev - index to the nand device. | |
150 | * | |
151 | * returns pointer to the nand device info structure or NULL on failure. | |
152 | */ | |
153 | struct mtd_info *get_nand_dev_by_index(int dev); | |
154 | ||
2afc741a | 155 | #endif /* _NAND_H_ */ |