diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-09-13 07:26:22 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-09-13 07:26:22 +0000 |
commit | 83d96d137bb815e1e5de6f31fe9234adc8ab3eec (patch) | |
tree | cd191a137336ae56a7976a461a840c9c957b7843 /target/linux/ar71xx/files/include | |
parent | 22c82787d3b1e8ba818f5f90d8623c911885f913 (diff) | |
download | master-187ad058-83d96d137bb815e1e5de6f31fe9234adc8ab3eec.tar.gz master-187ad058-83d96d137bb815e1e5de6f31fe9234adc8ab3eec.tar.bz2 master-187ad058-83d96d137bb815e1e5de6f31fe9234adc8ab3eec.zip |
ar71xx: ar934x_nfc: experimental NAND Flash Controller driver for AR934x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33385 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/include')
-rw-r--r-- | target/linux/ar71xx/files/include/linux/platform/ar934x_nfc.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/include/linux/platform/ar934x_nfc.h b/target/linux/ar71xx/files/include/linux/platform/ar934x_nfc.h new file mode 100644 index 0000000000..3e4c6d9883 --- /dev/null +++ b/target/linux/ar71xx/files/include/linux/platform/ar934x_nfc.h @@ -0,0 +1,30 @@ +/* + * Platform data definition for the built-in NAND controller of the + * Atheros AR934x SoCs + * + * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + */ + +#ifndef _AR934X_NFC_PLATFORM_H +#define _AR934X_NFC_PLATFORM_H + +#define AR934X_NFC_DRIVER_NAME "ar934x-nfc" + +struct mtd_info; +struct mtd_partition; + +struct ar934x_nfc_platform_data { + const char *name; + struct mtd_partition *parts; + int nr_parts; + + void (*hw_reset)(bool active); + void (*select_chip)(int chip_no); + int (*scan_fixup)(struct mtd_info *mtd); +}; + +#endif /* _AR934X_NFC_PLATFORM_H */ |