xref: /rk3399_rockchip-uboot/include/linux/mtd/mtd.h (revision ac7eb8a315e25863637a8d2c02af18815458b63f)
1932394acSWolfgang Denk /*
2932394acSWolfgang Denk  * $Id: mtd.h,v 1.56 2004/08/09 18:46:04 dmarlin Exp $
3932394acSWolfgang Denk  *
4932394acSWolfgang Denk  * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al.
5932394acSWolfgang Denk  *
6932394acSWolfgang Denk  * Released under GPL
7932394acSWolfgang Denk  */
8932394acSWolfgang Denk 
9932394acSWolfgang Denk #ifndef __MTD_MTD_H__
10932394acSWolfgang Denk #define __MTD_MTD_H__
11932394acSWolfgang Denk #include <linux/types.h>
12932394acSWolfgang Denk #include <linux/mtd/mtd-abi.h>
13932394acSWolfgang Denk 
14932394acSWolfgang Denk #define MAX_MTD_DEVICES 16
15932394acSWolfgang Denk 
16932394acSWolfgang Denk #define MTD_ERASE_PENDING      	0x01
17932394acSWolfgang Denk #define MTD_ERASING		0x02
18932394acSWolfgang Denk #define MTD_ERASE_SUSPEND	0x04
19932394acSWolfgang Denk #define MTD_ERASE_DONE          0x08
20932394acSWolfgang Denk #define MTD_ERASE_FAILED        0x10
21932394acSWolfgang Denk 
22932394acSWolfgang Denk /* If the erase fails, fail_addr might indicate exactly which block failed.  If
23932394acSWolfgang Denk    fail_addr = 0xffffffff, the failure was not at the device level or was not
24932394acSWolfgang Denk    specific to any particular block. */
25932394acSWolfgang Denk struct erase_info {
26932394acSWolfgang Denk 	struct mtd_info *mtd;
27932394acSWolfgang Denk 	u_int32_t addr;
28932394acSWolfgang Denk 	u_int32_t len;
29932394acSWolfgang Denk 	u_int32_t fail_addr;
30932394acSWolfgang Denk 	u_long time;
31932394acSWolfgang Denk 	u_long retries;
32932394acSWolfgang Denk 	u_int dev;
33932394acSWolfgang Denk 	u_int cell;
34932394acSWolfgang Denk 	void (*callback) (struct erase_info *self);
35932394acSWolfgang Denk 	u_long priv;
36932394acSWolfgang Denk 	u_char state;
37932394acSWolfgang Denk 	struct erase_info *next;
38932394acSWolfgang Denk };
39932394acSWolfgang Denk 
40932394acSWolfgang Denk struct mtd_erase_region_info {
41932394acSWolfgang Denk 	u_int32_t offset;			/* At which this region starts, from the beginning of the MTD */
42932394acSWolfgang Denk 	u_int32_t erasesize;		/* For this region */
43932394acSWolfgang Denk 	u_int32_t numblocks;		/* Number of blocks of erasesize in this region */
44932394acSWolfgang Denk };
45932394acSWolfgang Denk 
46932394acSWolfgang Denk struct mtd_info {
47932394acSWolfgang Denk 	u_char type;
48932394acSWolfgang Denk 	u_int32_t flags;
49*ac7eb8a3SWolfgang Denk 	u_int32_t size;	 /* Total size of the MTD */
50932394acSWolfgang Denk 
51932394acSWolfgang Denk 	/* "Major" erase size for the device. Na�ve users may take this
52932394acSWolfgang Denk 	 * to be the only erase size available, or may use the more detailed
53932394acSWolfgang Denk 	 * information below if they desire
54932394acSWolfgang Denk 	 */
55932394acSWolfgang Denk 	u_int32_t erasesize;
56932394acSWolfgang Denk 
57*ac7eb8a3SWolfgang Denk 	u_int32_t oobblock;  /* Size of OOB blocks (e.g. 512) */
58*ac7eb8a3SWolfgang Denk 	u_int32_t oobsize;   /* Amount of OOB data per block (e.g. 16) */
59*ac7eb8a3SWolfgang Denk 	u_int32_t oobavail;  /* Number of bytes in OOB area available for fs  */
60932394acSWolfgang Denk 	u_int32_t ecctype;
61932394acSWolfgang Denk 	u_int32_t eccsize;
62932394acSWolfgang Denk 
63932394acSWolfgang Denk 
64*ac7eb8a3SWolfgang Denk 	/* Kernel-only stuff starts here. */
65932394acSWolfgang Denk 	char *name;
66932394acSWolfgang Denk 	int index;
67932394acSWolfgang Denk 
68*ac7eb8a3SWolfgang Denk 	/* oobinfo is a nand_oobinfo structure, which can be set by iotcl (MEMSETOOBINFO) */
69932394acSWolfgang Denk 	struct nand_oobinfo oobinfo;
70932394acSWolfgang Denk 
71932394acSWolfgang Denk 	/* Data for variable erase regions. If numeraseregions is zero,
72932394acSWolfgang Denk 	 * it means that the whole device has erasesize as given above.
73932394acSWolfgang Denk 	 */
74932394acSWolfgang Denk 	int numeraseregions;
75932394acSWolfgang Denk 	struct mtd_erase_region_info *eraseregions;
76932394acSWolfgang Denk 
77932394acSWolfgang Denk 	/* This really shouldn't be here. It can go away in 2.5 */
78932394acSWolfgang Denk 	u_int32_t bank_size;
79932394acSWolfgang Denk 
80932394acSWolfgang Denk 	int (*erase) (struct mtd_info *mtd, struct erase_info *instr);
81932394acSWolfgang Denk 
82932394acSWolfgang Denk 	/* This stuff for eXecute-In-Place */
83932394acSWolfgang Denk 	int (*point) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf);
84932394acSWolfgang Denk 
85932394acSWolfgang Denk 	/* We probably shouldn't allow XIP if the unpoint isn't a NULL */
86932394acSWolfgang Denk 	void (*unpoint) (struct mtd_info *mtd, u_char * addr, loff_t from, size_t len);
87932394acSWolfgang Denk 
88932394acSWolfgang Denk 
89932394acSWolfgang Denk 	int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
90932394acSWolfgang Denk 	int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
91932394acSWolfgang Denk 
92932394acSWolfgang Denk 	int (*read_ecc) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf, u_char *eccbuf, struct nand_oobinfo *oobsel);
93932394acSWolfgang Denk 	int (*write_ecc) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf, u_char *eccbuf, struct nand_oobinfo *oobsel);
94932394acSWolfgang Denk 
95932394acSWolfgang Denk 	int (*read_oob) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
96932394acSWolfgang Denk 	int (*write_oob) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
97932394acSWolfgang Denk 
98932394acSWolfgang Denk 	/*
99932394acSWolfgang Denk 	 * Methods to access the protection register area, present in some
100932394acSWolfgang Denk 	 * flash devices. The user data is one time programmable but the
101932394acSWolfgang Denk 	 * factory data is read only.
102932394acSWolfgang Denk 	 */
103932394acSWolfgang Denk 	int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
104932394acSWolfgang Denk 
105932394acSWolfgang Denk 	int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
106932394acSWolfgang Denk 
107932394acSWolfgang Denk 	/* This function is not yet implemented */
108932394acSWolfgang Denk 	int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
109932394acSWolfgang Denk #if 0
110932394acSWolfgang Denk 	/* kvec-based read/write methods. We need these especially for NAND flash,
111932394acSWolfgang Denk 	   with its limited number of write cycles per erase.
112932394acSWolfgang Denk 	   NB: The 'count' parameter is the number of _vectors_, each of
113932394acSWolfgang Denk 	   which contains an (ofs, len) tuple.
114932394acSWolfgang Denk 	*/
115932394acSWolfgang Denk 	int (*readv) (struct mtd_info *mtd, struct kvec *vecs, unsigned long count, loff_t from, size_t *retlen);
116932394acSWolfgang Denk 	int (*readv_ecc) (struct mtd_info *mtd, struct kvec *vecs, unsigned long count, loff_t from,
117932394acSWolfgang Denk 		size_t *retlen, u_char *eccbuf, struct nand_oobinfo *oobsel);
118932394acSWolfgang Denk 	int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
119932394acSWolfgang Denk 	int (*writev_ecc) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to,
120932394acSWolfgang Denk 		size_t *retlen, u_char *eccbuf, struct nand_oobinfo *oobsel);
121932394acSWolfgang Denk #endif
122932394acSWolfgang Denk 	/* Sync */
123932394acSWolfgang Denk 	void (*sync) (struct mtd_info *mtd);
124932394acSWolfgang Denk #if 0
125932394acSWolfgang Denk 	/* Chip-supported device locking */
126932394acSWolfgang Denk 	int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len);
127932394acSWolfgang Denk 	int (*unlock) (struct mtd_info *mtd, loff_t ofs, size_t len);
128932394acSWolfgang Denk 
129932394acSWolfgang Denk 	/* Power Management functions */
130932394acSWolfgang Denk 	int (*suspend) (struct mtd_info *mtd);
131932394acSWolfgang Denk 	void (*resume) (struct mtd_info *mtd);
132932394acSWolfgang Denk #endif
133932394acSWolfgang Denk 	/* Bad block management functions */
134932394acSWolfgang Denk 	int (*block_isbad) (struct mtd_info *mtd, loff_t ofs);
135932394acSWolfgang Denk 	int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
136932394acSWolfgang Denk 
137932394acSWolfgang Denk 	void *priv;
138932394acSWolfgang Denk 
139932394acSWolfgang Denk 	struct module *owner;
140932394acSWolfgang Denk 	int usecount;
141932394acSWolfgang Denk };
142932394acSWolfgang Denk 
143932394acSWolfgang Denk 
144932394acSWolfgang Denk 	/* Kernel-side ioctl definitions */
145932394acSWolfgang Denk 
146932394acSWolfgang Denk extern int add_mtd_device(struct mtd_info *mtd);
147932394acSWolfgang Denk extern int del_mtd_device (struct mtd_info *mtd);
148932394acSWolfgang Denk 
149932394acSWolfgang Denk extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
150932394acSWolfgang Denk 
151932394acSWolfgang Denk extern void put_mtd_device(struct mtd_info *mtd);
152932394acSWolfgang Denk 
153932394acSWolfgang Denk #if 0
154932394acSWolfgang Denk struct mtd_notifier {
155932394acSWolfgang Denk 	void (*add)(struct mtd_info *mtd);
156932394acSWolfgang Denk 	void (*remove)(struct mtd_info *mtd);
157932394acSWolfgang Denk 	struct list_head list;
158932394acSWolfgang Denk };
159932394acSWolfgang Denk 
160932394acSWolfgang Denk 
161932394acSWolfgang Denk extern void register_mtd_user (struct mtd_notifier *new);
162932394acSWolfgang Denk extern int unregister_mtd_user (struct mtd_notifier *old);
163932394acSWolfgang Denk 
164932394acSWolfgang Denk int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
165932394acSWolfgang Denk 		       unsigned long count, loff_t to, size_t *retlen);
166932394acSWolfgang Denk 
167932394acSWolfgang Denk int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
168932394acSWolfgang Denk 		      unsigned long count, loff_t from, size_t *retlen);
169932394acSWolfgang Denk #endif
170932394acSWolfgang Denk 
171932394acSWolfgang Denk #define MTD_ERASE(mtd, args...) (*(mtd->erase))(mtd, args)
172932394acSWolfgang Denk #define MTD_POINT(mtd, a,b,c,d) (*(mtd->point))(mtd, a,b,c, (u_char **)(d))
173932394acSWolfgang Denk #define MTD_UNPOINT(mtd, arg) (*(mtd->unpoint))(mtd, (u_char *)arg)
174932394acSWolfgang Denk #define MTD_READ(mtd, args...) (*(mtd->read))(mtd, args)
175932394acSWolfgang Denk #define MTD_WRITE(mtd, args...) (*(mtd->write))(mtd, args)
176932394acSWolfgang Denk #define MTD_READV(mtd, args...) (*(mtd->readv))(mtd, args)
177932394acSWolfgang Denk #define MTD_WRITEV(mtd, args...) (*(mtd->writev))(mtd, args)
178932394acSWolfgang Denk #define MTD_READECC(mtd, args...) (*(mtd->read_ecc))(mtd, args)
179932394acSWolfgang Denk #define MTD_WRITEECC(mtd, args...) (*(mtd->write_ecc))(mtd, args)
180932394acSWolfgang Denk #define MTD_READOOB(mtd, args...) (*(mtd->read_oob))(mtd, args)
181932394acSWolfgang Denk #define MTD_WRITEOOB(mtd, args...) (*(mtd->write_oob))(mtd, args)
182932394acSWolfgang Denk #define MTD_SYNC(mtd) do { if (mtd->sync) (*(mtd->sync))(mtd);  } while (0)
183932394acSWolfgang Denk 
184932394acSWolfgang Denk 
185932394acSWolfgang Denk #ifdef CONFIG_MTD_PARTITIONS
186932394acSWolfgang Denk void mtd_erase_callback(struct erase_info *instr);
187932394acSWolfgang Denk #else
188932394acSWolfgang Denk static inline void mtd_erase_callback(struct erase_info *instr)
189932394acSWolfgang Denk {
190932394acSWolfgang Denk 	if (instr->callback)
191932394acSWolfgang Denk 		instr->callback(instr);
192932394acSWolfgang Denk }
193932394acSWolfgang Denk #endif
194932394acSWolfgang Denk 
195932394acSWolfgang Denk /*
196932394acSWolfgang Denk  * Debugging macro and defines
197932394acSWolfgang Denk  */
198932394acSWolfgang Denk #define MTD_DEBUG_LEVEL0	(0)	/* Quiet   */
199932394acSWolfgang Denk #define MTD_DEBUG_LEVEL1	(1)	/* Audible */
200932394acSWolfgang Denk #define MTD_DEBUG_LEVEL2	(2)	/* Loud    */
201932394acSWolfgang Denk #define MTD_DEBUG_LEVEL3	(3)	/* Noisy   */
202932394acSWolfgang Denk 
203932394acSWolfgang Denk #ifdef CONFIG_MTD_DEBUG
204932394acSWolfgang Denk #define DEBUG(n, args...)				\
205932394acSWolfgang Denk  	do {						\
206932394acSWolfgang Denk 		if (n <= CONFIG_MTD_DEBUG_VERBOSE)	\
207932394acSWolfgang Denk 			printk(KERN_INFO args);		\
208932394acSWolfgang Denk 	} while(0)
209932394acSWolfgang Denk #else /* CONFIG_MTD_DEBUG */
210932394acSWolfgang Denk #define DEBUG(n, args...) do { } while(0)
211932394acSWolfgang Denk 
212932394acSWolfgang Denk #endif /* CONFIG_MTD_DEBUG */
213932394acSWolfgang Denk 
214932394acSWolfgang Denk #endif /* __MTD_MTD_H__ */
215