~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/mtd/inftl.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  *      inftl.h -- defines to support the Inverse NAND Flash Translation Layer
  4  *
  5  *      (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
  6  */
  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
 22 #define INFTL_MAJOR 96
 23 #endif
 24 #define INFTL_PARTN_BITS 4
 25 
 26 #ifdef __KERNEL__
 27 
 28 struct 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;
 41         __u16 LastFreeEUN;              /* To speed up finding a free EUN */
 42         int head,sect,cyl;
 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;
 48 };
 49 
 50 int INFTL_mount(struct INFTLrecord *s);
 51 int INFTL_formatblock(struct INFTLrecord *s, int block);
 52 
 53 void INFTL_dumptables(struct INFTLrecord *s);
 54 void INFTL_dumpVUchains(struct INFTLrecord *s);
 55 
 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);
 60 
 61 #endif /* __KERNEL__ */
 62 
 63 #endif /* __MTD_INFTL_H__ */
 64 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php