11da177e4SLinus Torvalds /* 2a1452a37SDavid Woodhouse * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org> et al. 31da177e4SLinus Torvalds * 4a1452a37SDavid Woodhouse * This program is free software; you can redistribute it and/or modify 5a1452a37SDavid Woodhouse * it under the terms of the GNU General Public License as published by 6a1452a37SDavid Woodhouse * the Free Software Foundation; either version 2 of the License, or 7a1452a37SDavid Woodhouse * (at your option) any later version. 8a1452a37SDavid Woodhouse * 9a1452a37SDavid Woodhouse * This program is distributed in the hope that it will be useful, 10a1452a37SDavid Woodhouse * but WITHOUT ANY WARRANTY; without even the implied warranty of 11a1452a37SDavid Woodhouse * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12a1452a37SDavid Woodhouse * GNU General Public License for more details. 13a1452a37SDavid Woodhouse * 14a1452a37SDavid Woodhouse * You should have received a copy of the GNU General Public License 15a1452a37SDavid Woodhouse * along with this program; if not, write to the Free Software 16a1452a37SDavid Woodhouse * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 17a1452a37SDavid Woodhouse * 181da177e4SLinus Torvalds */ 191da177e4SLinus Torvalds 201da177e4SLinus Torvalds #ifndef __MTD_MTD_H__ 211da177e4SLinus Torvalds #define __MTD_MTD_H__ 221da177e4SLinus Torvalds 231da177e4SLinus Torvalds #include <linux/types.h> 241da177e4SLinus Torvalds #include <linux/module.h> 251da177e4SLinus Torvalds #include <linux/uio.h> 26963a6fb0SNicolas Pitre #include <linux/notifier.h> 271f24b5a8SDavid Brownell #include <linux/device.h> 281da177e4SLinus Torvalds 291da177e4SLinus Torvalds #include <mtd/mtd-abi.h> 301da177e4SLinus Torvalds 3169423d99SAdrian Hunter #include <asm/div64.h> 3269423d99SAdrian Hunter 331da177e4SLinus Torvalds #define MTD_CHAR_MAJOR 90 341da177e4SLinus Torvalds #define MTD_BLOCK_MAJOR 31 351da177e4SLinus Torvalds 361da177e4SLinus Torvalds #define MTD_ERASE_PENDING 0x01 371da177e4SLinus Torvalds #define MTD_ERASING 0x02 381da177e4SLinus Torvalds #define MTD_ERASE_SUSPEND 0x04 391da177e4SLinus Torvalds #define MTD_ERASE_DONE 0x08 401da177e4SLinus Torvalds #define MTD_ERASE_FAILED 0x10 411da177e4SLinus Torvalds 4269423d99SAdrian Hunter #define MTD_FAIL_ADDR_UNKNOWN -1LL 43bb0eb217SAdrian Hunter 441da177e4SLinus Torvalds /* If the erase fails, fail_addr might indicate exactly which block failed. If 45bb0eb217SAdrian Hunter fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level or was not 461da177e4SLinus Torvalds specific to any particular block. */ 471da177e4SLinus Torvalds struct erase_info { 481da177e4SLinus Torvalds struct mtd_info *mtd; 4969423d99SAdrian Hunter uint64_t addr; 5069423d99SAdrian Hunter uint64_t len; 5169423d99SAdrian Hunter uint64_t fail_addr; 521da177e4SLinus Torvalds u_long time; 531da177e4SLinus Torvalds u_long retries; 5426cdb67cSDavid Woodhouse unsigned dev; 5526cdb67cSDavid Woodhouse unsigned cell; 561da177e4SLinus Torvalds void (*callback) (struct erase_info *self); 571da177e4SLinus Torvalds u_long priv; 581da177e4SLinus Torvalds u_char state; 591da177e4SLinus Torvalds struct erase_info *next; 601da177e4SLinus Torvalds }; 611da177e4SLinus Torvalds 621da177e4SLinus Torvalds struct mtd_erase_region_info { 6369423d99SAdrian Hunter uint64_t offset; /* At which this region starts, from the beginning of the MTD */ 6426cdb67cSDavid Woodhouse uint32_t erasesize; /* For this region */ 6526cdb67cSDavid Woodhouse uint32_t numblocks; /* Number of blocks of erasesize in this region */ 660ecbc81aSRodolfo Giometti unsigned long *lockmap; /* If keeping bitmap of locks */ 671da177e4SLinus Torvalds }; 681da177e4SLinus Torvalds 698593fbc6SThomas Gleixner /* 708593fbc6SThomas Gleixner * oob operation modes 718593fbc6SThomas Gleixner * 728593fbc6SThomas Gleixner * MTD_OOB_PLACE: oob data are placed at the given offset 738593fbc6SThomas Gleixner * MTD_OOB_AUTO: oob data are automatically placed at the free areas 748593fbc6SThomas Gleixner * which are defined by the ecclayout 75b64d39d8SMaxim Levitsky * MTD_OOB_RAW: mode to read oob and data without doing ECC checking 768593fbc6SThomas Gleixner */ 778593fbc6SThomas Gleixner typedef enum { 788593fbc6SThomas Gleixner MTD_OOB_PLACE, 798593fbc6SThomas Gleixner MTD_OOB_AUTO, 808593fbc6SThomas Gleixner MTD_OOB_RAW, 818593fbc6SThomas Gleixner } mtd_oob_mode_t; 828593fbc6SThomas Gleixner 838593fbc6SThomas Gleixner /** 848593fbc6SThomas Gleixner * struct mtd_oob_ops - oob operation operands 858593fbc6SThomas Gleixner * @mode: operation mode 868593fbc6SThomas Gleixner * 877014568bSVitaly Wool * @len: number of data bytes to write/read 888593fbc6SThomas Gleixner * 897014568bSVitaly Wool * @retlen: number of data bytes written/read 908593fbc6SThomas Gleixner * 917014568bSVitaly Wool * @ooblen: number of oob bytes to write/read 927014568bSVitaly Wool * @oobretlen: number of oob bytes written/read 938593fbc6SThomas Gleixner * @ooboffs: offset of oob data in the oob area (only relevant when 948593fbc6SThomas Gleixner * mode = MTD_OOB_PLACE) 958593fbc6SThomas Gleixner * @datbuf: data buffer - if NULL only oob data are read/written 968593fbc6SThomas Gleixner * @oobbuf: oob data buffer 9773a4421cSArtem Bityutskiy * 98025dfdafSFrederik Schwarzer * Note, it is allowed to read more than one OOB area at one go, but not write. 9973a4421cSArtem Bityutskiy * The interface assumes that the OOB write requests program only one page's 10073a4421cSArtem Bityutskiy * OOB area. 1018593fbc6SThomas Gleixner */ 1028593fbc6SThomas Gleixner struct mtd_oob_ops { 1038593fbc6SThomas Gleixner mtd_oob_mode_t mode; 1048593fbc6SThomas Gleixner size_t len; 1058593fbc6SThomas Gleixner size_t retlen; 1068593fbc6SThomas Gleixner size_t ooblen; 1077014568bSVitaly Wool size_t oobretlen; 1088593fbc6SThomas Gleixner uint32_t ooboffs; 1098593fbc6SThomas Gleixner uint8_t *datbuf; 1108593fbc6SThomas Gleixner uint8_t *oobbuf; 1118593fbc6SThomas Gleixner }; 1128593fbc6SThomas Gleixner 113cc26c3cdSBrian Norris #define MTD_MAX_OOBFREE_ENTRIES_LARGE 32 114cc26c3cdSBrian Norris #define MTD_MAX_ECCPOS_ENTRIES_LARGE 448 115cc26c3cdSBrian Norris #define MTD_MAX_ECCPOS_ENTRIES_OLD 64 /* Previous maximum */ 116cc26c3cdSBrian Norris /* 117cc26c3cdSBrian Norris * Correct ECC layout control structure. This replaces old nand_ecclayout 118cc26c3cdSBrian Norris * (mtd-abi.h) that is exported via ECCGETLAYOUT ioctl. It should be expandable 119cc26c3cdSBrian Norris * in the future simply by the above macros. 120cc26c3cdSBrian Norris */ 121cc26c3cdSBrian Norris struct nand_ecclayout { 122cc26c3cdSBrian Norris __u32 eccbytes; 123cc26c3cdSBrian Norris __u32 eccpos[MTD_MAX_ECCPOS_ENTRIES_LARGE]; 124cc26c3cdSBrian Norris __u32 oobavail; 125cc26c3cdSBrian Norris struct nand_oobfree oobfree[MTD_MAX_OOBFREE_ENTRIES_LARGE]; 126cc26c3cdSBrian Norris }; 127cc26c3cdSBrian Norris 1281da177e4SLinus Torvalds struct mtd_info { 1291da177e4SLinus Torvalds u_char type; 13026cdb67cSDavid Woodhouse uint32_t flags; 13169423d99SAdrian Hunter uint64_t size; // Total size of the MTD 1321da177e4SLinus Torvalds 133151e7659SDavid Woodhouse /* "Major" erase size for the device. Naïve users may take this 1341da177e4SLinus Torvalds * to be the only erase size available, or may use the more detailed 1351da177e4SLinus Torvalds * information below if they desire 1361da177e4SLinus Torvalds */ 13726cdb67cSDavid Woodhouse uint32_t erasesize; 138783ed81fSArtem B. Bityutskiy /* Minimal writable flash unit size. In case of NOR flash it is 1 (even 139783ed81fSArtem B. Bityutskiy * though individual bits can be cleared), in case of NAND flash it is 140783ed81fSArtem B. Bityutskiy * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR 141783ed81fSArtem B. Bityutskiy * it is of ECC block size, etc. It is illegal to have writesize = 0. 142783ed81fSArtem B. Bityutskiy * Any driver registering a struct mtd_info must ensure a writesize of 143783ed81fSArtem B. Bityutskiy * 1 or larger. 14428318776SJoern Engel */ 14526cdb67cSDavid Woodhouse uint32_t writesize; 1461da177e4SLinus Torvalds 14726cdb67cSDavid Woodhouse uint32_t oobsize; // Amount of OOB data per block (e.g. 16) 14826cdb67cSDavid Woodhouse uint32_t oobavail; // Available OOB bytes per block 1491da177e4SLinus Torvalds 15069423d99SAdrian Hunter /* 15169423d99SAdrian Hunter * If erasesize is a power of 2 then the shift is stored in 15269423d99SAdrian Hunter * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize. 15369423d99SAdrian Hunter */ 15469423d99SAdrian Hunter unsigned int erasesize_shift; 15569423d99SAdrian Hunter unsigned int writesize_shift; 15669423d99SAdrian Hunter /* Masks based on erasesize_shift and writesize_shift */ 15769423d99SAdrian Hunter unsigned int erasesize_mask; 15869423d99SAdrian Hunter unsigned int writesize_mask; 1591da177e4SLinus Torvalds 1601da177e4SLinus Torvalds // Kernel-only stuff starts here. 161eadcf0d7SGreg Kroah-Hartman const char *name; 1621da177e4SLinus Torvalds int index; 1631da177e4SLinus Torvalds 1645bd34c09SThomas Gleixner /* ecc layout structure pointer - read only ! */ 1655bd34c09SThomas Gleixner struct nand_ecclayout *ecclayout; 1661da177e4SLinus Torvalds 1671da177e4SLinus Torvalds /* Data for variable erase regions. If numeraseregions is zero, 1681da177e4SLinus Torvalds * it means that the whole device has erasesize as given above. 1691da177e4SLinus Torvalds */ 1701da177e4SLinus Torvalds int numeraseregions; 1711da177e4SLinus Torvalds struct mtd_erase_region_info *eraseregions; 1721da177e4SLinus Torvalds 173b38178eeSJörn Engel /* 174b38178eeSJörn Engel * Erase is an asynchronous operation. Device drivers are supposed 175b38178eeSJörn Engel * to call instr->callback() whenever the operation completes, even 176b38178eeSJörn Engel * if it completes with a failure. 177b38178eeSJörn Engel * Callers are supposed to pass a callback function and wait for it 178b38178eeSJörn Engel * to be called before writing to the block. 179b38178eeSJörn Engel */ 1801da177e4SLinus Torvalds int (*erase) (struct mtd_info *mtd, struct erase_info *instr); 1811da177e4SLinus Torvalds 1821da177e4SLinus Torvalds /* This stuff for eXecute-In-Place */ 183a98889f3SJared Hulbert /* phys is optional and may be set to NULL */ 184a98889f3SJared Hulbert int (*point) (struct mtd_info *mtd, loff_t from, size_t len, 185a98889f3SJared Hulbert size_t *retlen, void **virt, resource_size_t *phys); 1861da177e4SLinus Torvalds 1871da177e4SLinus Torvalds /* We probably shouldn't allow XIP if the unpoint isn't a NULL */ 188a98889f3SJared Hulbert void (*unpoint) (struct mtd_info *mtd, loff_t from, size_t len); 1891da177e4SLinus Torvalds 190402d3265SDavid Howells /* Allow NOMMU mmap() to directly map the device (if not NULL) 191402d3265SDavid Howells * - return the address to which the offset maps 192402d3265SDavid Howells * - return -ENOSYS to indicate refusal to do the mapping 193402d3265SDavid Howells */ 194402d3265SDavid Howells unsigned long (*get_unmapped_area) (struct mtd_info *mtd, 195402d3265SDavid Howells unsigned long len, 196402d3265SDavid Howells unsigned long offset, 197402d3265SDavid Howells unsigned long flags); 198402d3265SDavid Howells 199402d3265SDavid Howells /* Backing device capabilities for this device 200402d3265SDavid Howells * - provides mmap capabilities 201402d3265SDavid Howells */ 202402d3265SDavid Howells struct backing_dev_info *backing_dev_info; 203402d3265SDavid Howells 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 2061da177e4SLinus Torvalds int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf); 2071da177e4SLinus Torvalds 208388bbb09SRichard Purdie /* In blackbox flight recorder like scenarios we want to make successful 209388bbb09SRichard Purdie writes in interrupt context. panic_write() is only intended to be 210388bbb09SRichard Purdie called when its known the kernel is about to panic and we need the 211388bbb09SRichard Purdie write to succeed. Since the kernel is not going to be running for much 212388bbb09SRichard Purdie longer, this function can break locks and delay to ensure the write 213388bbb09SRichard Purdie succeeds (but not sleep). */ 214388bbb09SRichard Purdie 215388bbb09SRichard Purdie int (*panic_write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf); 216388bbb09SRichard Purdie 2178593fbc6SThomas Gleixner int (*read_oob) (struct mtd_info *mtd, loff_t from, 2188593fbc6SThomas Gleixner struct mtd_oob_ops *ops); 2198593fbc6SThomas Gleixner int (*write_oob) (struct mtd_info *mtd, loff_t to, 2208593fbc6SThomas Gleixner struct mtd_oob_ops *ops); 2211da177e4SLinus Torvalds 2221da177e4SLinus Torvalds /* 2231da177e4SLinus Torvalds * Methods to access the protection register area, present in some 2241da177e4SLinus Torvalds * flash devices. The user data is one time programmable but the 2251da177e4SLinus Torvalds * factory data is read only. 2261da177e4SLinus Torvalds */ 227f77814ddSNicolas Pitre int (*get_fact_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len); 2281da177e4SLinus Torvalds int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 229f77814ddSNicolas Pitre int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len); 230f77814ddSNicolas Pitre int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 2311da177e4SLinus Torvalds int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 232f77814ddSNicolas Pitre int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len); 2331da177e4SLinus Torvalds 2342528e8cdSThomas Gleixner /* kvec-based read/write methods. 2351da177e4SLinus Torvalds NB: The 'count' parameter is the number of _vectors_, each of 2361da177e4SLinus Torvalds which contains an (ofs, len) tuple. 2371da177e4SLinus Torvalds */ 2381da177e4SLinus Torvalds int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen); 2391da177e4SLinus Torvalds 2401da177e4SLinus Torvalds /* Sync */ 2411da177e4SLinus Torvalds void (*sync) (struct mtd_info *mtd); 2421da177e4SLinus Torvalds 2431da177e4SLinus Torvalds /* Chip-supported device locking */ 24469423d99SAdrian Hunter int (*lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); 24569423d99SAdrian Hunter int (*unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); 2469938424fSRichard Cochran int (*is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); 2471da177e4SLinus Torvalds 2481da177e4SLinus Torvalds /* Power Management functions */ 2491da177e4SLinus Torvalds int (*suspend) (struct mtd_info *mtd); 2501da177e4SLinus Torvalds void (*resume) (struct mtd_info *mtd); 2511da177e4SLinus Torvalds 2521da177e4SLinus Torvalds /* Bad block management functions */ 2531da177e4SLinus Torvalds int (*block_isbad) (struct mtd_info *mtd, loff_t ofs); 2541da177e4SLinus Torvalds int (*block_markbad) (struct mtd_info *mtd, loff_t ofs); 2551da177e4SLinus Torvalds 256963a6fb0SNicolas Pitre struct notifier_block reboot_notifier; /* default mode before reboot */ 257963a6fb0SNicolas Pitre 2587fac4648SThomas Gleixner /* ECC status information */ 2597fac4648SThomas Gleixner struct mtd_ecc_stats ecc_stats; 26029072b96SThomas Gleixner /* Subpage shift (NAND) */ 26129072b96SThomas Gleixner int subpage_sft; 2627fac4648SThomas Gleixner 2631da177e4SLinus Torvalds void *priv; 2641da177e4SLinus Torvalds 2651da177e4SLinus Torvalds struct module *owner; 2661f24b5a8SDavid Brownell struct device dev; 2671da177e4SLinus Torvalds int usecount; 2689fe912ceSArtem Bityutskiy 2699fe912ceSArtem Bityutskiy /* If the driver is something smart, like UBI, it may need to maintain 2709fe912ceSArtem Bityutskiy * its own reference counting. The below functions are only for driver. 2719fe912ceSArtem Bityutskiy * The driver may register its callbacks. These callbacks are not 2729fe912ceSArtem Bityutskiy * supposed to be called by MTD users */ 2739fe912ceSArtem Bityutskiy int (*get_device) (struct mtd_info *mtd); 2749fe912ceSArtem Bityutskiy void (*put_device) (struct mtd_info *mtd); 2751da177e4SLinus Torvalds }; 2761da177e4SLinus Torvalds 2771f24b5a8SDavid Brownell static inline struct mtd_info *dev_to_mtd(struct device *dev) 2781f24b5a8SDavid Brownell { 2796afc4fdbSSaeed Bishara return dev ? dev_get_drvdata(dev) : NULL; 2801f24b5a8SDavid Brownell } 2811f24b5a8SDavid Brownell 28226cdb67cSDavid Woodhouse static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd) 28369423d99SAdrian Hunter { 28469423d99SAdrian Hunter if (mtd->erasesize_shift) 28569423d99SAdrian Hunter return sz >> mtd->erasesize_shift; 28669423d99SAdrian Hunter do_div(sz, mtd->erasesize); 28769423d99SAdrian Hunter return sz; 28869423d99SAdrian Hunter } 28969423d99SAdrian Hunter 29026cdb67cSDavid Woodhouse static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd) 29169423d99SAdrian Hunter { 29269423d99SAdrian Hunter if (mtd->erasesize_shift) 29369423d99SAdrian Hunter return sz & mtd->erasesize_mask; 29469423d99SAdrian Hunter return do_div(sz, mtd->erasesize); 29569423d99SAdrian Hunter } 29669423d99SAdrian Hunter 29726cdb67cSDavid Woodhouse static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd) 29869423d99SAdrian Hunter { 29969423d99SAdrian Hunter if (mtd->writesize_shift) 30069423d99SAdrian Hunter return sz >> mtd->writesize_shift; 30169423d99SAdrian Hunter do_div(sz, mtd->writesize); 30269423d99SAdrian Hunter return sz; 30369423d99SAdrian Hunter } 30469423d99SAdrian Hunter 30526cdb67cSDavid Woodhouse static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd) 30669423d99SAdrian Hunter { 30769423d99SAdrian Hunter if (mtd->writesize_shift) 30869423d99SAdrian Hunter return sz & mtd->writesize_mask; 30969423d99SAdrian Hunter return do_div(sz, mtd->writesize); 31069423d99SAdrian Hunter } 3111da177e4SLinus Torvalds 3121da177e4SLinus Torvalds /* Kernel-side ioctl definitions */ 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvalds extern int add_mtd_device(struct mtd_info *mtd); 3151da177e4SLinus Torvalds extern int del_mtd_device (struct mtd_info *mtd); 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num); 3183bd45657SMaxim Levitsky extern int __get_mtd_device(struct mtd_info *mtd); 3193bd45657SMaxim Levitsky extern void __put_mtd_device(struct mtd_info *mtd); 3207799308fSArtem Bityutskiy extern struct mtd_info *get_mtd_device_nm(const char *name); 3211da177e4SLinus Torvalds extern void put_mtd_device(struct mtd_info *mtd); 3221da177e4SLinus Torvalds 3231da177e4SLinus Torvalds 3241da177e4SLinus Torvalds struct mtd_notifier { 3251da177e4SLinus Torvalds void (*add)(struct mtd_info *mtd); 3261da177e4SLinus Torvalds void (*remove)(struct mtd_info *mtd); 3271da177e4SLinus Torvalds struct list_head list; 3281da177e4SLinus Torvalds }; 3291da177e4SLinus Torvalds 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvalds extern void register_mtd_user (struct mtd_notifier *new); 3321da177e4SLinus Torvalds extern int unregister_mtd_user (struct mtd_notifier *old); 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvalds int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, 3351da177e4SLinus Torvalds unsigned long count, loff_t to, size_t *retlen); 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvalds int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs, 3381da177e4SLinus Torvalds unsigned long count, loff_t from, size_t *retlen); 3391da177e4SLinus Torvalds 3401da177e4SLinus Torvalds #ifdef CONFIG_MTD_PARTITIONS 3411da177e4SLinus Torvalds void mtd_erase_callback(struct erase_info *instr); 3421da177e4SLinus Torvalds #else 3431da177e4SLinus Torvalds static inline void mtd_erase_callback(struct erase_info *instr) 3441da177e4SLinus Torvalds { 3451da177e4SLinus Torvalds if (instr->callback) 3461da177e4SLinus Torvalds instr->callback(instr); 3471da177e4SLinus Torvalds } 3481da177e4SLinus Torvalds #endif 3491da177e4SLinus Torvalds 3501da177e4SLinus Torvalds /* 3511da177e4SLinus Torvalds * Debugging macro and defines 3521da177e4SLinus Torvalds */ 3531da177e4SLinus Torvalds #define MTD_DEBUG_LEVEL0 (0) /* Quiet */ 3541da177e4SLinus Torvalds #define MTD_DEBUG_LEVEL1 (1) /* Audible */ 3551da177e4SLinus Torvalds #define MTD_DEBUG_LEVEL2 (2) /* Loud */ 3561da177e4SLinus Torvalds #define MTD_DEBUG_LEVEL3 (3) /* Noisy */ 3571da177e4SLinus Torvalds 3581da177e4SLinus Torvalds #ifdef CONFIG_MTD_DEBUG 3591da177e4SLinus Torvalds #define DEBUG(n, args...) \ 3601da177e4SLinus Torvalds do { \ 3611da177e4SLinus Torvalds if (n <= CONFIG_MTD_DEBUG_VERBOSE) \ 3621da177e4SLinus Torvalds printk(KERN_INFO args); \ 3631da177e4SLinus Torvalds } while(0) 3641da177e4SLinus Torvalds #else /* CONFIG_MTD_DEBUG */ 36595b1bc20SDavid Brownell #define DEBUG(n, args...) \ 36695b1bc20SDavid Brownell do { \ 36795b1bc20SDavid Brownell if (0) \ 36895b1bc20SDavid Brownell printk(KERN_INFO args); \ 36995b1bc20SDavid Brownell } while(0) 3701da177e4SLinus Torvalds 3711da177e4SLinus Torvalds #endif /* CONFIG_MTD_DEBUG */ 3721da177e4SLinus Torvalds 3731da177e4SLinus Torvalds #endif /* __MTD_MTD_H__ */ 374