Files
android_development/ndk/platforms/android-3/include/linux/mtd/bbm.h
David 'Digit' Turner 7012117d4a Unify NDK platform headers.
This commit removes duplication of system headers per platform, i.e. remove
copies of common headers like <stdlib.h> from arch-arm/usr/include and arch-x86/usr/include
and move them to a common include directory. More specifically:

- common headers:        android-N/arch-A/usr/include --> android-N/include
- arch-specific headers: android-N/arch-A/usr-include --> android-N/arch-A/include
- arch-specific libs:    android-N/arch-A/usr/lib     --> android-N/arch-A/lib

Change-Id: Ifdba5038d108901931f3e3a7c14ebe6270d2d276

NOTE: This also contains careful separation of API-level-specific headers.
      For example, platforms/android-5/include/pthread.h contains new function
      declarations that are not available when using platforms/android-3/include/pthread.h

NOTE: The NDK's build-platforms.sh script has been updated to understand the new
      layout. This change in develeopment/ndk does not change the layout of
      platform files under $NDK/platforms after build-platforms.sh is called.
2010-09-22 18:04:36 +02:00

76 lines
1.8 KiB
C

/****************************************************************************
****************************************************************************
***
*** This header was automatically generated from a Linux kernel header
*** of the same name, to make information necessary for userspace to
*** call into the kernel available to libc. It contains only constants,
*** structures, and macros generated from the original header, and thus,
*** contains no copyrightable information.
***
****************************************************************************
****************************************************************************/
#ifndef __LINUX_MTD_BBM_H
#define __LINUX_MTD_BBM_H
#define NAND_MAX_CHIPS 8
struct nand_bbt_descr {
int options;
int pages[NAND_MAX_CHIPS];
int offs;
int veroffs;
uint8_t version[NAND_MAX_CHIPS];
int len;
int maxblocks;
int reserved_block_code;
uint8_t *pattern;
};
#define NAND_BBT_NRBITS_MSK 0x0000000F
#define NAND_BBT_1BIT 0x00000001
#define NAND_BBT_2BIT 0x00000002
#define NAND_BBT_4BIT 0x00000004
#define NAND_BBT_8BIT 0x00000008
#define NAND_BBT_LASTBLOCK 0x00000010
#define NAND_BBT_ABSPAGE 0x00000020
#define NAND_BBT_SEARCH 0x00000040
#define NAND_BBT_PERCHIP 0x00000080
#define NAND_BBT_VERSION 0x00000100
#define NAND_BBT_CREATE 0x00000200
#define NAND_BBT_SCANALLPAGES 0x00000400
#define NAND_BBT_SCANEMPTY 0x00000800
#define NAND_BBT_WRITE 0x00001000
#define NAND_BBT_SAVECONTENT 0x00002000
#define NAND_BBT_SCAN2NDPAGE 0x00004000
#define NAND_BBT_SCAN_MAXBLOCKS 4
#define ONENAND_BADBLOCK_POS 0
struct bbm_info {
int bbt_erase_shift;
int badblockpos;
int options;
uint8_t *bbt;
int (*isbad_bbt)(struct mtd_info *mtd, loff_t ofs, int allowbbt);
struct nand_bbt_descr *badblock_pattern;
void *priv;
};
#endif