Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Thomas Gleixner | e4f0648 | 2005-11-07 11:15:37 +0000 | [diff] [blame] | 2 | * Parts of NFTL headers shared with userspace |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | */ |
| 5 | |
| 6 | #ifndef __MTD_NFTL_USER_H__ |
| 7 | #define __MTD_NFTL_USER_H__ |
| 8 | |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 9 | #include <linux/types.h> |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | /* Block Control Information */ |
| 12 | |
| 13 | struct nftl_bci { |
| 14 | unsigned char ECCSig[6]; |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 15 | __u8 Status; |
| 16 | __u8 Status1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | }__attribute__((packed)); |
| 18 | |
| 19 | /* Unit Control Information */ |
| 20 | |
| 21 | struct nftl_uci0 { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 22 | __u16 VirtUnitNum; |
| 23 | __u16 ReplUnitNum; |
| 24 | __u16 SpareVirtUnitNum; |
| 25 | __u16 SpareReplUnitNum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | } __attribute__((packed)); |
| 27 | |
| 28 | struct nftl_uci1 { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 29 | __u32 WearInfo; |
| 30 | __u16 EraseMark; |
| 31 | __u16 EraseMark1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | } __attribute__((packed)); |
| 33 | |
| 34 | struct nftl_uci2 { |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 35 | __u16 FoldMark; |
| 36 | __u16 FoldMark1; |
| 37 | __u32 unused; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } __attribute__((packed)); |
| 39 | |
| 40 | union nftl_uci { |
| 41 | struct nftl_uci0 a; |
| 42 | struct nftl_uci1 b; |
| 43 | struct nftl_uci2 c; |
| 44 | }; |
| 45 | |
| 46 | struct nftl_oob { |
| 47 | struct nftl_bci b; |
| 48 | union nftl_uci u; |
| 49 | }; |
| 50 | |
| 51 | /* NFTL Media Header */ |
| 52 | |
| 53 | struct NFTLMediaHeader { |
| 54 | char DataOrgID[6]; |
Arnd Bergmann | ccef7ab | 2009-02-26 00:51:41 +0100 | [diff] [blame] | 55 | __u16 NumEraseUnits; |
| 56 | __u16 FirstPhysicalEUN; |
| 57 | __u32 FormattedSize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | unsigned char UnitSizeFactor; |
| 59 | } __attribute__((packed)); |
| 60 | |
| 61 | #define MAX_ERASE_ZONES (8192 - 512) |
| 62 | |
| 63 | #define ERASE_MARK 0x3c69 |
| 64 | #define SECTOR_FREE 0xff |
| 65 | #define SECTOR_USED 0x55 |
| 66 | #define SECTOR_IGNORE 0x11 |
| 67 | #define SECTOR_DELETED 0x00 |
| 68 | |
| 69 | #define FOLD_MARK_IN_PROGRESS 0x5555 |
| 70 | |
| 71 | #define ZONE_GOOD 0xff |
| 72 | #define ZONE_BAD_ORIGINAL 0 |
| 73 | #define ZONE_BAD_MARKED 7 |
| 74 | |
| 75 | |
| 76 | #endif /* __MTD_NFTL_USER_H__ */ |