diff options
author | Nicolas Pitre <nico@cam.org> | 2005-02-05 02:06:19 +0000 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-05-23 12:22:37 +0200 |
commit | 72b56a2d7dccd9ea90f34f6ddb653086a3f3bd2e (patch) | |
tree | 262d070609b8aa3cc7be5a3469b3ab54039b5788 /include | |
parent | 322b12eb57db8cc598ccedfb85fcf2faded08473 (diff) | |
download | op-kernel-dev-72b56a2d7dccd9ea90f34f6ddb653086a3f3bd2e.zip op-kernel-dev-72b56a2d7dccd9ea90f34f6ddb653086a3f3bd2e.tar.gz |
[MTD] Add OTP basisc
add structure definition for OTP region info
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mtd/cfi.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/mtd/cfi.h b/include/linux/mtd/cfi.h index 2ed8c58..d87dc3f 100644 --- a/include/linux/mtd/cfi.h +++ b/include/linux/mtd/cfi.h @@ -1,7 +1,7 @@ /* Common Flash Interface structures * See http://support.intel.com/design/flash/technote/index.htm - * $Id: cfi.h,v 1.50 2004/11/20 12:46:51 dwmw2 Exp $ + * $Id: cfi.h,v 1.51 2005/02/05 02:06:16 nico Exp $ */ #ifndef __MTD_CFI_H__ @@ -148,6 +148,14 @@ struct cfi_pri_intelext { uint8_t extra[0]; } __attribute__((packed)); +struct cfi_intelext_otpinfo { + uint32_t ProtRegAddr; + uint16_t FactGroups; + uint8_t FactProtRegSize; + uint16_t UserGroups; + uint8_t UserProtRegSize; +} __attribute__((packed)); + struct cfi_intelext_blockinfo { uint16_t NumIdentBlocks; uint16_t BlockSize; |