blob: fdfff87066a97bb07a427e1f34930737a32195d6 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * inftl.h -- defines to support the Inverse NAND Flash Translation Layer
4 *
5 * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#ifndef __MTD_INFTL_H__
9#define __MTD_INFTL_H__
10
11#ifndef __KERNEL__
12#error This is a kernel header. Perhaps include nftl-user.h instead?
13#endif
14
15#include <linux/mtd/blktrans.h>
16#include <linux/mtd/mtd.h>
17#include <linux/mtd/nftl.h>
18
19#include <mtd/inftl-user.h>
20
21#ifndef INFTL_MAJOR
Sean Youngbfabb982005-06-13 14:08:48 +010022#define INFTL_MAJOR 96
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#endif
24#define INFTL_PARTN_BITS 4
25
26#ifdef __KERNEL__
27
28struct INFTLrecord {
29 struct mtd_blktrans_dev mbd;
30 __u16 MediaUnit;
31 __u32 EraseSize;
32 struct INFTLMediaHeader MediaHdr;
33 int usecount;
34 unsigned char heads;
35 unsigned char sectors;
36 unsigned short cylinders;
37 __u16 numvunits;
38 __u16 firstEUN;
39 __u16 lastEUN;
40 __u16 numfreeEUNs;
Brian Norrisf4a2da02010-08-18 09:10:58 -070041 __u16 LastFreeEUN; /* To speed up finding a free EUN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int head,sect,cyl;
Brian Norrisf4a2da02010-08-18 09:10:58 -070043 __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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50int INFTL_mount(struct INFTLrecord *s);
51int INFTL_formatblock(struct INFTLrecord *s, int block);
52
Adrian Bunk0500abf2006-03-31 02:29:42 -080053void INFTL_dumptables(struct INFTLrecord *s);
54void INFTL_dumpVUchains(struct INFTLrecord *s);
55
Adrian Bunka8e8aa22008-04-14 17:19:58 +030056int inftl_read_oob(struct mtd_info *mtd, loff_t offs, size_t len,
57 size_t *retlen, uint8_t *buf);
58int inftl_write_oob(struct mtd_info *mtd, loff_t offs, size_t len,
59 size_t *retlen, uint8_t *buf);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif /* __KERNEL__ */
62
63#endif /* __MTD_INFTL_H__ */