mtd-orion_nand.h 561 B

123456789101112131415161718192021222324
  1. /*
  2. * This file is licensed under the terms of the GNU General Public
  3. * License version 2. This program is licensed "as is" without any
  4. * warranty of any kind, whether express or implied.
  5. */
  6. #ifndef __MTD_ORION_NAND_H
  7. #define __MTD_ORION_NAND_H
  8. /*
  9. * Device bus NAND private data
  10. */
  11. struct orion_nand_data {
  12. struct mtd_partition *parts;
  13. int (*dev_ready)(struct mtd_info *mtd);
  14. u32 nr_parts;
  15. u8 ale; /* address line number connected to ALE */
  16. u8 cle; /* address line number connected to CLE */
  17. u8 width; /* buswidth */
  18. u8 chip_delay;
  19. };
  20. #endif