nand.h 322 B

12345678910111213141516
  1. #ifndef __ASM_ARCH_NAND_H
  2. #define __ASM_ARCH_NAND_H
  3. struct nomadik_nand_platform_data {
  4. struct mtd_partition *parts;
  5. int nparts;
  6. int options;
  7. int (*init) (void);
  8. int (*exit) (void);
  9. };
  10. #define NAND_IO_DATA 0x40000000
  11. #define NAND_IO_CMD 0x40800000
  12. #define NAND_IO_ADDR 0x41000000
  13. #endif /* __ASM_ARCH_NAND_H */