diff options
author | Alessandro Rubini <rubini@unipv.it> | 2009-07-29 18:51:56 +0200 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-09-20 05:59:42 -0700 |
commit | 63234717d170d39ee9cc873f29930b0fb142a114 (patch) | |
tree | 8a47072187027064f3e0b0ecdb6c65baf7ad0455 /arch/arm/mach-nomadik/include/mach/nand.h | |
parent | 6469f540ea37d53db089c8fea9c0c77a3d9353d4 (diff) |
mtd: nand: driver for Nomadik 8815 SoC (on NHK8815 board)
Signed-off-by: Alessandro Rubini <rubini@unipv.it>
Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'arch/arm/mach-nomadik/include/mach/nand.h')
-rw-r--r-- | arch/arm/mach-nomadik/include/mach/nand.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-nomadik/include/mach/nand.h b/arch/arm/mach-nomadik/include/mach/nand.h new file mode 100644 index 00000000000..c3c8254c22a --- /dev/null +++ b/arch/arm/mach-nomadik/include/mach/nand.h @@ -0,0 +1,16 @@ +#ifndef __ASM_ARCH_NAND_H +#define __ASM_ARCH_NAND_H + +struct nomadik_nand_platform_data { + struct mtd_partition *parts; + int nparts; + int options; + int (*init) (void); + int (*exit) (void); +}; + +#define NAND_IO_DATA 0x40000000 +#define NAND_IO_CMD 0x40800000 +#define NAND_IO_ADDR 0x41000000 + +#endif /* __ASM_ARCH_NAND_H */ |