1 /* SPDX-License-Identifier: GPL-2.0 */
3 * inftl.h -- defines to support the Inverse NAND Flash Translation Layer
5 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
8 #ifndef __MTD_INFTL_H__
9 #define __MTD_INFTL_H__
12 #error This is a kernel header. Perhaps include nftl-user.h instead?
15 #include <linux/mtd/blktrans.h>
16 #include <linux/mtd/mtd.h>
17 #include <linux/mtd/nftl.h>
19 #include <mtd/inftl-user.h>
22 #define INFTL_MAJOR 96
24 #define INFTL_PARTN_BITS 4
29 struct mtd_blktrans_dev mbd
;
32 struct INFTLMediaHeader MediaHdr
;
35 unsigned char sectors
;
36 unsigned short cylinders
;
41 __u16 LastFreeEUN
; /* To speed up finding a free EUN */
43 __u16
*PUtable
; /* Physical Unit Table */
44 __u16
*VUtable
; /* Virtual Unit Table */
45 unsigned int nb_blocks
; /* number of physical blocks */
46 unsigned int nb_boot_blocks
; /* number of blocks used by the bios */
47 struct erase_info instr
;
50 int INFTL_mount(struct INFTLrecord
*s
);
51 int INFTL_formatblock(struct INFTLrecord
*s
, int block
);
53 void INFTL_dumptables(struct INFTLrecord
*s
);
54 void INFTL_dumpVUchains(struct INFTLrecord
*s
);
56 int inftl_read_oob(struct mtd_info
*mtd
, loff_t offs
, size_t len
,
57 size_t *retlen
, uint8_t *buf
);
58 int inftl_write_oob(struct mtd_info
*mtd
, loff_t offs
, size_t len
,
59 size_t *retlen
, uint8_t *buf
);
61 #endif /* __KERNEL__ */
63 #endif /* __MTD_INFTL_H__ */