chiark / gitweb /
mtd_probe: add autodetection for xD cards
[elogind.git] / extras / mtd_probe / mtd_probe.h
1 /*
2  * mtd_probe.h
3  * This file is part of mtd_probe
4  *
5  * Copyright (C) 2010 - Maxim Levitsky
6  *
7  * mtd_probe is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * mtd_probe is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with mtd_probe; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, 
20  * Boston, MA  02110-1301  USA
21  */
22 #include <mtd/mtd-user.h>
23
24 /* Full oob structure as written on the flash */
25 struct sm_oob {
26         uint32_t reserved;
27         uint8_t data_status;
28         uint8_t block_status;
29         uint8_t lba_copy1[2];
30         uint8_t ecc2[3];
31         uint8_t lba_copy2[2];
32         uint8_t ecc1[3];
33 } __attribute__((packed));
34
35
36 /* one sector is always 512 bytes, but it can consist of two nand pages */
37 #define SM_SECTOR_SIZE          512
38
39 /* oob area is also 16 bytes, but might be from two pages */
40 #define SM_OOB_SIZE             16
41
42 /* This is maximum zone size, and all devices that have more that one zone
43    have this size */
44 #define SM_MAX_ZONE_SIZE        1024
45
46 /* support for small page nand */
47 #define SM_SMALL_PAGE           256
48 #define SM_SMALL_OOB_SIZE       8
49
50
51 void probe_smart_media(int mtd_fd, mtd_info_t *info);