xref: /rk3399_rockchip-uboot/include/linux/mtd/mtd.h (revision 932394ac43e2e778e664eeb6e456fecd0fae6e59)
1*932394acSWolfgang Denk /*
2*932394acSWolfgang Denk  * $Id: mtd.h,v 1.56 2004/08/09 18:46:04 dmarlin Exp $
3*932394acSWolfgang Denk  *
4*932394acSWolfgang Denk  * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al.
5*932394acSWolfgang Denk  *
6*932394acSWolfgang Denk  * Released under GPL
7*932394acSWolfgang Denk  */
8*932394acSWolfgang Denk 
9*932394acSWolfgang Denk #ifndef __MTD_MTD_H__
10*932394acSWolfgang Denk #define __MTD_MTD_H__
11*932394acSWolfgang Denk #include <linux/types.h>
12*932394acSWolfgang Denk #include <linux/mtd/mtd-abi.h>
13*932394acSWolfgang Denk 
14*932394acSWolfgang Denk #define MAX_MTD_DEVICES 16
15*932394acSWolfgang Denk 
16*932394acSWolfgang Denk #define MTD_ERASE_PENDING      	0x01
17*932394acSWolfgang Denk #define MTD_ERASING		0x02
18*932394acSWolfgang Denk #define MTD_ERASE_SUSPEND	0x04
19*932394acSWolfgang Denk #define MTD_ERASE_DONE          0x08
20*932394acSWolfgang Denk #define MTD_ERASE_FAILED        0x10
21*932394acSWolfgang Denk 
22*932394acSWolfgang Denk /* If the erase fails, fail_addr might indicate exactly which block failed.  If
23*932394acSWolfgang Denk    fail_addr = 0xffffffff, the failure was not at the device level or was not
24*932394acSWolfgang Denk    specific to any particular block. */
25*932394acSWolfgang Denk struct erase_info {
26*932394acSWolfgang Denk 	struct mtd_info *mtd;
27*932394acSWolfgang Denk 	u_int32_t addr;
28*932394acSWolfgang Denk 	u_int32_t len;
29*932394acSWolfgang Denk 	u_int32_t fail_addr;
30*932394acSWolfgang Denk 	u_long time;
31*932394acSWolfgang Denk 	u_long retries;
32*932394acSWolfgang Denk 	u_int dev;
33*932394acSWolfgang Denk 	u_int cell;
34*932394acSWolfgang Denk 	void (*callback) (struct erase_info *self);
35*932394acSWolfgang Denk 	u_long priv;
36*932394acSWolfgang Denk 	u_char state;
37*932394acSWolfgang Denk 	struct erase_info *next;
38*932394acSWolfgang Denk };
39*932394acSWolfgang Denk 
40*932394acSWolfgang Denk struct mtd_erase_region_info {
41*932394acSWolfgang Denk 	u_int32_t offset;			/* At which this region starts, from the beginning of the MTD */
42*932394acSWolfgang Denk 	u_int32_t erasesize;		/* For this region */
43*932394acSWolfgang Denk 	u_int32_t numblocks;		/* Number of blocks of erasesize in this region */
44*932394acSWolfgang Denk };
45*932394acSWolfgang Denk 
46*932394acSWolfgang Denk struct mtd_info {
47*932394acSWolfgang Denk 	u_char type;
48*932394acSWolfgang Denk 	u_int32_t flags;
49*932394acSWolfgang Denk 	u_int32_t size;	 // Total size of the MTD
50*932394acSWolfgang Denk 
51*932394acSWolfgang Denk 	/* "Major" erase size for the device. Na�ve users may take this
52*932394acSWolfgang Denk 	 * to be the only erase size available, or may use the more detailed
53*932394acSWolfgang Denk 	 * information below if they desire
54*932394acSWolfgang Denk 	 */
55*932394acSWolfgang Denk 	u_int32_t erasesize;
56*932394acSWolfgang Denk 
57*932394acSWolfgang Denk 	u_int32_t oobblock;  // Size of OOB blocks (e.g. 512)
58*932394acSWolfgang Denk 	u_int32_t oobsize;   // Amount of OOB data per block (e.g. 16)
59*932394acSWolfgang Denk 	u_int32_t oobavail;  // Number of bytes in OOB area available for fs
60*932394acSWolfgang Denk 	u_int32_t ecctype;
61*932394acSWolfgang Denk 	u_int32_t eccsize;
62*932394acSWolfgang Denk 
63*932394acSWolfgang Denk 
64*932394acSWolfgang Denk 	// Kernel-only stuff starts here.
65*932394acSWolfgang Denk 	char *name;
66*932394acSWolfgang Denk 	int index;
67*932394acSWolfgang Denk 
68*932394acSWolfgang Denk 	// oobinfo is a nand_oobinfo structure, which can be set by iotcl (MEMSETOOBINFO)
69*932394acSWolfgang Denk 	struct nand_oobinfo oobinfo;
70*932394acSWolfgang Denk 
71*932394acSWolfgang Denk 	/* Data for variable erase regions. If numeraseregions is zero,
72*932394acSWolfgang Denk 	 * it means that the whole device has erasesize as given above.
73*932394acSWolfgang Denk 	 */
74*932394acSWolfgang Denk 	int numeraseregions;
75*932394acSWolfgang Denk 	struct mtd_erase_region_info *eraseregions;
76*932394acSWolfgang Denk 
77*932394acSWolfgang Denk 	/* This really shouldn't be here. It can go away in 2.5 */
78*932394acSWolfgang Denk 	u_int32_t bank_size;
79*932394acSWolfgang Denk 
80*932394acSWolfgang Denk 	int (*erase) (struct mtd_info *mtd, struct erase_info *instr);
81*932394acSWolfgang Denk 
82*932394acSWolfgang Denk 	/* This stuff for eXecute-In-Place */
83*932394acSWolfgang Denk 	int (*point) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf);
84*932394acSWolfgang Denk 
85*932394acSWolfgang Denk 	/* We probably shouldn't allow XIP if the unpoint isn't a NULL */
86*932394acSWolfgang Denk 	void (*unpoint) (struct mtd_info *mtd, u_char * addr, loff_t from, size_t len);
87*932394acSWolfgang Denk 
88*932394acSWolfgang Denk 
89*932394acSWolfgang Denk 	int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
90*932394acSWolfgang Denk 	int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
91*932394acSWolfgang Denk 
92*932394acSWolfgang 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);
93*932394acSWolfgang 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);
94*932394acSWolfgang Denk 
95*932394acSWolfgang Denk 	int (*read_oob) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
96*932394acSWolfgang Denk 	int (*write_oob) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
97*932394acSWolfgang Denk 
98*932394acSWolfgang Denk 	/*
99*932394acSWolfgang Denk 	 * Methods to access the protection register area, present in some
100*932394acSWolfgang Denk 	 * flash devices. The user data is one time programmable but the
101*932394acSWolfgang Denk 	 * factory data is read only.
102*932394acSWolfgang Denk 	 */
103*932394acSWolfgang Denk 	int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
104*932394acSWolfgang Denk 
105*932394acSWolfgang Denk 	int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
106*932394acSWolfgang Denk 
107*932394acSWolfgang Denk 	/* This function is not yet implemented */
108*932394acSWolfgang Denk 	int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
109*932394acSWolfgang Denk #if 0
110*932394acSWolfgang Denk 	/* kvec-based read/write methods. We need these especially for NAND flash,
111*932394acSWolfgang Denk 	   with its limited number of write cycles per erase.
112*932394acSWolfgang Denk 	   NB: The 'count' parameter is the number of _vectors_, each of
113*932394acSWolfgang Denk 	   which contains an (ofs, len) tuple.
114*932394acSWolfgang Denk 	*/
115*932394acSWolfgang Denk 	int (*readv) (struct mtd_info *mtd, struct kvec *vecs, unsigned long count, loff_t from, size_t *retlen);
116*932394acSWolfgang Denk 	int (*readv_ecc) (struct mtd_info *mtd, struct kvec *vecs, unsigned long count, loff_t from,
117*932394acSWolfgang Denk 		size_t *retlen, u_char *eccbuf, struct nand_oobinfo *oobsel);
118*932394acSWolfgang Denk 	int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen);
119*932394acSWolfgang Denk 	int (*writev_ecc) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to,
120*932394acSWolfgang Denk 		size_t *retlen, u_char *eccbuf, struct nand_oobinfo *oobsel);
121*932394acSWolfgang Denk #endif
122*932394acSWolfgang Denk 	/* Sync */
123*932394acSWolfgang Denk 	void (*sync) (struct mtd_info *mtd);
124*932394acSWolfgang Denk #if 0
125*932394acSWolfgang Denk 	/* Chip-supported device locking */
126*932394acSWolfgang Denk 	int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len);
127*932394acSWolfgang Denk 	int (*unlock) (struct mtd_info *mtd, loff_t ofs, size_t len);
128*932394acSWolfgang Denk 
129*932394acSWolfgang Denk 	/* Power Management functions */
130*932394acSWolfgang Denk 	int (*suspend) (struct mtd_info *mtd);
131*932394acSWolfgang Denk 	void (*resume) (struct mtd_info *mtd);
132*932394acSWolfgang Denk #endif
133*932394acSWolfgang Denk 	/* Bad block management functions */
134*932394acSWolfgang Denk 	int (*block_isbad) (struct mtd_info *mtd, loff_t ofs);
135*932394acSWolfgang Denk 	int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
136*932394acSWolfgang Denk 
137*932394acSWolfgang Denk 	void *priv;
138*932394acSWolfgang Denk 
139*932394acSWolfgang Denk 	struct module *owner;
140*932394acSWolfgang Denk 	int usecount;
141*932394acSWolfgang Denk };
142*932394acSWolfgang Denk 
143*932394acSWolfgang Denk 
144*932394acSWolfgang Denk 	/* Kernel-side ioctl definitions */
145*932394acSWolfgang Denk 
146*932394acSWolfgang Denk extern int add_mtd_device(struct mtd_info *mtd);
147*932394acSWolfgang Denk extern int del_mtd_device (struct mtd_info *mtd);
148*932394acSWolfgang Denk 
149*932394acSWolfgang Denk extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
150*932394acSWolfgang Denk 
151*932394acSWolfgang Denk extern void put_mtd_device(struct mtd_info *mtd);
152*932394acSWolfgang Denk 
153*932394acSWolfgang Denk #if 0
154*932394acSWolfgang Denk struct mtd_notifier {
155*932394acSWolfgang Denk 	void (*add)(struct mtd_info *mtd);
156*932394acSWolfgang Denk 	void (*remove)(struct mtd_info *mtd);
157*932394acSWolfgang Denk 	struct list_head list;
158*932394acSWolfgang Denk };
159*932394acSWolfgang Denk 
160*932394acSWolfgang Denk 
161*932394acSWolfgang Denk extern void register_mtd_user (struct mtd_notifier *new);
162*932394acSWolfgang Denk extern int unregister_mtd_user (struct mtd_notifier *old);
163*932394acSWolfgang Denk 
164*932394acSWolfgang Denk int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
165*932394acSWolfgang Denk 		       unsigned long count, loff_t to, size_t *retlen);
166*932394acSWolfgang Denk 
167*932394acSWolfgang Denk int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
168*932394acSWolfgang Denk 		      unsigned long count, loff_t from, size_t *retlen);
169*932394acSWolfgang Denk #endif
170*932394acSWolfgang Denk 
171*932394acSWolfgang Denk #define MTD_ERASE(mtd, args...) (*(mtd->erase))(mtd, args)
172*932394acSWolfgang Denk #define MTD_POINT(mtd, a,b,c,d) (*(mtd->point))(mtd, a,b,c, (u_char **)(d))
173*932394acSWolfgang Denk #define MTD_UNPOINT(mtd, arg) (*(mtd->unpoint))(mtd, (u_char *)arg)
174*932394acSWolfgang Denk #define MTD_READ(mtd, args...) (*(mtd->read))(mtd, args)
175*932394acSWolfgang Denk #define MTD_WRITE(mtd, args...) (*(mtd->write))(mtd, args)
176*932394acSWolfgang Denk #define MTD_READV(mtd, args...) (*(mtd->readv))(mtd, args)
177*932394acSWolfgang Denk #define MTD_WRITEV(mtd, args...) (*(mtd->writev))(mtd, args)
178*932394acSWolfgang Denk #define MTD_READECC(mtd, args...) (*(mtd->read_ecc))(mtd, args)
179*932394acSWolfgang Denk #define MTD_WRITEECC(mtd, args...) (*(mtd->write_ecc))(mtd, args)
180*932394acSWolfgang Denk #define MTD_READOOB(mtd, args...) (*(mtd->read_oob))(mtd, args)
181*932394acSWolfgang Denk #define MTD_WRITEOOB(mtd, args...) (*(mtd->write_oob))(mtd, args)
182*932394acSWolfgang Denk #define MTD_SYNC(mtd) do { if (mtd->sync) (*(mtd->sync))(mtd);  } while (0)
183*932394acSWolfgang Denk 
184*932394acSWolfgang Denk 
185*932394acSWolfgang Denk #ifdef CONFIG_MTD_PARTITIONS
186*932394acSWolfgang Denk void mtd_erase_callback(struct erase_info *instr);
187*932394acSWolfgang Denk #else
188*932394acSWolfgang Denk static inline void mtd_erase_callback(struct erase_info *instr)
189*932394acSWolfgang Denk {
190*932394acSWolfgang Denk 	if (instr->callback)
191*932394acSWolfgang Denk 		instr->callback(instr);
192*932394acSWolfgang Denk }
193*932394acSWolfgang Denk #endif
194*932394acSWolfgang Denk 
195*932394acSWolfgang Denk /*
196*932394acSWolfgang Denk  * Debugging macro and defines
197*932394acSWolfgang Denk  */
198*932394acSWolfgang Denk #define MTD_DEBUG_LEVEL0	(0)	/* Quiet   */
199*932394acSWolfgang Denk #define MTD_DEBUG_LEVEL1	(1)	/* Audible */
200*932394acSWolfgang Denk #define MTD_DEBUG_LEVEL2	(2)	/* Loud    */
201*932394acSWolfgang Denk #define MTD_DEBUG_LEVEL3	(3)	/* Noisy   */
202*932394acSWolfgang Denk 
203*932394acSWolfgang Denk #ifdef CONFIG_MTD_DEBUG
204*932394acSWolfgang Denk #define DEBUG(n, args...)				\
205*932394acSWolfgang Denk  	do {						\
206*932394acSWolfgang Denk 		if (n <= CONFIG_MTD_DEBUG_VERBOSE)	\
207*932394acSWolfgang Denk 			printk(KERN_INFO args);		\
208*932394acSWolfgang Denk 	} while(0)
209*932394acSWolfgang Denk #else /* CONFIG_MTD_DEBUG */
210*932394acSWolfgang Denk #define DEBUG(n, args...) do { } while(0)
211*932394acSWolfgang Denk 
212*932394acSWolfgang Denk #endif /* CONFIG_MTD_DEBUG */
213*932394acSWolfgang Denk 
214*932394acSWolfgang Denk #endif /* __MTD_MTD_H__ */
215