nand.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* linux/include/asm-arm/arch-s3c2410/nand.h
  2. *
  3. * Copyright (c) 2004 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. *
  6. * S3C2410 - NAND device controller platfrom_device info
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. /* struct s3c2410_nand_set
  13. *
  14. * define an set of one or more nand chips registered with an unique mtd
  15. *
  16. * nr_chips = number of chips in this set
  17. * nr_partitions = number of partitions pointed to be partitoons (or zero)
  18. * name = name of set (optional)
  19. * nr_map = map for low-layer logical to physical chip numbers (option)
  20. * partitions = mtd partition list
  21. */
  22. struct s3c2410_nand_set {
  23. int nr_chips;
  24. int nr_partitions;
  25. char *name;
  26. int *nr_map;
  27. struct mtd_partition *partitions;
  28. };
  29. struct s3c2410_platform_nand {
  30. /* timing information for controller, all times in nanoseconds */
  31. int tacls; /* time for active CLE/ALE to nWE/nOE */
  32. int twrph0; /* active time for nWE/nOE */
  33. int twrph1; /* time for release CLE/ALE from nWE/nOE inactive */
  34. int nr_sets;
  35. struct s3c2410_nand_set *sets;
  36. void (*select_chip)(struct s3c2410_nand_set *,
  37. int chip);
  38. };