at91sam9_smc.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * arch/arm/mach-at91/include/mach/at91sam9_smc.h
  3. *
  4. * Copyright (C) 2007 Andrew Victor
  5. * Copyright (C) 2007 Atmel Corporation.
  6. *
  7. * Static Memory Controllers (SMC) - System peripherals registers.
  8. * Based on AT91SAM9261 datasheet revision D.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. */
  15. #ifndef AT91SAM9_SMC_H
  16. #define AT91SAM9_SMC_H
  17. #include <mach/cpu.h>
  18. #ifndef __ASSEMBLY__
  19. struct sam9_smc_config {
  20. /* Setup register */
  21. u8 ncs_read_setup;
  22. u8 nrd_setup;
  23. u8 ncs_write_setup;
  24. u8 nwe_setup;
  25. /* Pulse register */
  26. u8 ncs_read_pulse;
  27. u8 nrd_pulse;
  28. u8 ncs_write_pulse;
  29. u8 nwe_pulse;
  30. /* Cycle register */
  31. u16 read_cycle;
  32. u16 write_cycle;
  33. /* Mode register */
  34. u32 mode;
  35. u8 tdf_cycles:4;
  36. };
  37. extern void sam9_smc_configure(int id, int cs, struct sam9_smc_config *config);
  38. extern void sam9_smc_read(int id, int cs, struct sam9_smc_config *config);
  39. extern void sam9_smc_read_mode(int id, int cs, struct sam9_smc_config *config);
  40. extern void sam9_smc_write_mode(int id, int cs, struct sam9_smc_config *config);
  41. #endif
  42. #define AT91_SMC_SETUP 0x00 /* Setup Register for CS n */
  43. #define AT91_SMC_NWESETUP (0x3f << 0) /* NWE Setup Length */
  44. #define AT91_SMC_NWESETUP_(x) ((x) << 0)
  45. #define AT91_SMC_NCS_WRSETUP (0x3f << 8) /* NCS Setup Length in Write Access */
  46. #define AT91_SMC_NCS_WRSETUP_(x) ((x) << 8)
  47. #define AT91_SMC_NRDSETUP (0x3f << 16) /* NRD Setup Length */
  48. #define AT91_SMC_NRDSETUP_(x) ((x) << 16)
  49. #define AT91_SMC_NCS_RDSETUP (0x3f << 24) /* NCS Setup Length in Read Access */
  50. #define AT91_SMC_NCS_RDSETUP_(x) ((x) << 24)
  51. #define AT91_SMC_PULSE 0x04 /* Pulse Register for CS n */
  52. #define AT91_SMC_NWEPULSE (0x7f << 0) /* NWE Pulse Length */
  53. #define AT91_SMC_NWEPULSE_(x) ((x) << 0)
  54. #define AT91_SMC_NCS_WRPULSE (0x7f << 8) /* NCS Pulse Length in Write Access */
  55. #define AT91_SMC_NCS_WRPULSE_(x)((x) << 8)
  56. #define AT91_SMC_NRDPULSE (0x7f << 16) /* NRD Pulse Length */
  57. #define AT91_SMC_NRDPULSE_(x) ((x) << 16)
  58. #define AT91_SMC_NCS_RDPULSE (0x7f << 24) /* NCS Pulse Length in Read Access */
  59. #define AT91_SMC_NCS_RDPULSE_(x)((x) << 24)
  60. #define AT91_SMC_CYCLE 0x08 /* Cycle Register for CS n */
  61. #define AT91_SMC_NWECYCLE (0x1ff << 0 ) /* Total Write Cycle Length */
  62. #define AT91_SMC_NWECYCLE_(x) ((x) << 0)
  63. #define AT91_SMC_NRDCYCLE (0x1ff << 16) /* Total Read Cycle Length */
  64. #define AT91_SMC_NRDCYCLE_(x) ((x) << 16)
  65. #define AT91_SMC_MODE 0x0c /* Mode Register for CS n */
  66. #define AT91_SMC_READMODE (1 << 0) /* Read Mode */
  67. #define AT91_SMC_WRITEMODE (1 << 1) /* Write Mode */
  68. #define AT91_SMC_EXNWMODE (3 << 4) /* NWAIT Mode */
  69. #define AT91_SMC_EXNWMODE_DISABLE (0 << 4)
  70. #define AT91_SMC_EXNWMODE_FROZEN (2 << 4)
  71. #define AT91_SMC_EXNWMODE_READY (3 << 4)
  72. #define AT91_SMC_BAT (1 << 8) /* Byte Access Type */
  73. #define AT91_SMC_BAT_SELECT (0 << 8)
  74. #define AT91_SMC_BAT_WRITE (1 << 8)
  75. #define AT91_SMC_DBW (3 << 12) /* Data Bus Width */
  76. #define AT91_SMC_DBW_8 (0 << 12)
  77. #define AT91_SMC_DBW_16 (1 << 12)
  78. #define AT91_SMC_DBW_32 (2 << 12)
  79. #define AT91_SMC_TDF (0xf << 16) /* Data Float Time. */
  80. #define AT91_SMC_TDF_(x) ((x) << 16)
  81. #define AT91_SMC_TDFMODE (1 << 20) /* TDF Optimization - Enabled */
  82. #define AT91_SMC_PMEN (1 << 24) /* Page Mode Enabled */
  83. #define AT91_SMC_PS (3 << 28) /* Page Size */
  84. #define AT91_SMC_PS_4 (0 << 28)
  85. #define AT91_SMC_PS_8 (1 << 28)
  86. #define AT91_SMC_PS_16 (2 << 28)
  87. #define AT91_SMC_PS_32 (3 << 28)
  88. #endif