2c3db156b1b8ba3744ac558d82e0cb12feec75c6
[openwrt.git] / target / linux / ar71xx / files / include / linux / platform / ar934x_nfc.h
1 /*
2  * Platform data definition for the built-in NAND controller of the
3  * Atheros AR934x SoCs
4  *
5  * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License version 2 as published
9  * by the Free Software Foundation.
10  */
11
12 #ifndef _AR934X_NFC_PLATFORM_H
13 #define _AR934X_NFC_PLATFORM_H
14
15 #define AR934X_NFC_DRIVER_NAME          "ar934x-nfc"
16
17 struct mtd_info;
18 struct mtd_partition;
19
20 struct ar934x_nfc_platform_data {
21         const char *name;
22         struct mtd_partition *parts;
23         int nr_parts;
24
25         bool swap_dma;
26         void (*hw_reset)(bool active);
27         void (*select_chip)(int chip_no);
28         int (*scan_fixup)(struct mtd_info *mtd);
29 };
30
31 #endif /* _AR934X_NFC_PLATFORM_H */