at91sam9_smc.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * [origin: Linux kernel include/asm-arm/arch-at91/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. #ifdef __ASSEMBLY__
  18. #ifndef AT91_SMC_BASE
  19. #define AT91_SMC_BASE AT91_SMC0_BASE
  20. #endif
  21. #define AT91_ASM_SMC_SETUP0 AT91_SMC_BASE
  22. #define AT91_ASM_SMC_PULSE0 (AT91_SMC_BASE + 0x04)
  23. #define AT91_ASM_SMC_CYCLE0 (AT91_SMC_BASE + 0x08)
  24. #define AT91_ASM_SMC_MODE0 (AT91_SMC_BASE + 0x0C)
  25. #else
  26. typedef struct at91_cs {
  27. u32 setup; /* 0x00 SMC Setup Register */
  28. u32 pulse; /* 0x04 SMC Pulse Register */
  29. u32 cycle; /* 0x08 SMC Cycle Register */
  30. u32 mode; /* 0x0C SMC Mode Register */
  31. } at91_cs_t;
  32. typedef struct at91_smc {
  33. at91_cs_t cs[8];
  34. } at91_smc_t;
  35. #endif /* __ASSEMBLY__ */
  36. #define AT91_SMC_SETUP_NWE(x) (x & 0x3f)
  37. #define AT91_SMC_SETUP_NCS_WR(x) ((x & 0x3f) << 8)
  38. #define AT91_SMC_SETUP_NRD(x) ((x & 0x3f) << 16)
  39. #define AT91_SMC_SETUP_NCS_RD(x) ((x & 0x3f) << 24)
  40. #define AT91_SMC_PULSE_NWE(x) (x & 0x7f)
  41. #define AT91_SMC_PULSE_NCS_WR(x) ((x & 0x7f) << 8)
  42. #define AT91_SMC_PULSE_NRD(x) ((x & 0x7f) << 16)
  43. #define AT91_SMC_PULSE_NCS_RD(x) ((x & 0x7f) << 24)
  44. #define AT91_SMC_CYCLE_NWE(x) (x & 0x1ff)
  45. #define AT91_SMC_CYCLE_NRD(x) ((x & 0x1ff) << 16)
  46. #define AT91_SMC_MODE_RM_NCS 0x00000000
  47. #define AT91_SMC_MODE_RM_NRD 0x00000001
  48. #define AT91_SMC_MODE_WM_NCS 0x00000000
  49. #define AT91_SMC_MODE_WM_NWE 0x00000002
  50. #define AT91_SMC_MODE_EXNW_DISABLE 0x00000000
  51. #define AT91_SMC_MODE_EXNW_FROZEN 0x00000020
  52. #define AT91_SMC_MODE_EXNW_READY 0x00000030
  53. #define AT91_SMC_MODE_BAT 0x00000100
  54. #define AT91_SMC_MODE_DBW_8 0x00000000
  55. #define AT91_SMC_MODE_DBW_16 0x00001000
  56. #define AT91_SMC_MODE_DBW_32 0x00002000
  57. #define AT91_SMC_MODE_TDF_CYCLE(x) ((x & 0xf) << 16)
  58. #define AT91_SMC_MODE_TDF 0x00100000
  59. #define AT91_SMC_MODE_PMEN 0x01000000
  60. #define AT91_SMC_MODE_PS_4 0x00000000
  61. #define AT91_SMC_MODE_PS_8 0x10000000
  62. #define AT91_SMC_MODE_PS_16 0x20000000
  63. #define AT91_SMC_MODE_PS_32 0x30000000
  64. #ifdef CONFIG_AT91_LEGACY
  65. #define AT91_SMC_SETUP(n) (AT91_SMC + 0x00 + ((n)*0x10)) /* Setup Register for CS n */
  66. #define AT91_SMC_NWESETUP (0x3f << 0) /* NWE Setup Length */
  67. #define AT91_SMC_NWESETUP_(x) ((x) << 0)
  68. #define AT91_SMC_NCS_WRSETUP (0x3f << 8) /* NCS Setup Length in Write Access */
  69. #define AT91_SMC_NCS_WRSETUP_(x) ((x) << 8)
  70. #define AT91_SMC_NRDSETUP (0x3f << 16) /* NRD Setup Length */
  71. #define AT91_SMC_NRDSETUP_(x) ((x) << 16)
  72. #define AT91_SMC_NCS_RDSETUP (0x3f << 24) /* NCS Setup Length in Read Access */
  73. #define AT91_SMC_NCS_RDSETUP_(x) ((x) << 24)
  74. #define AT91_SMC_PULSE(n) (AT91_SMC + 0x04 + ((n)*0x10)) /* Pulse Register for CS n */
  75. #define AT91_SMC_NWEPULSE (0x7f << 0) /* NWE Pulse Length */
  76. #define AT91_SMC_NWEPULSE_(x) ((x) << 0)
  77. #define AT91_SMC_NCS_WRPULSE (0x7f << 8) /* NCS Pulse Length in Write Access */
  78. #define AT91_SMC_NCS_WRPULSE_(x)((x) << 8)
  79. #define AT91_SMC_NRDPULSE (0x7f << 16) /* NRD Pulse Length */
  80. #define AT91_SMC_NRDPULSE_(x) ((x) << 16)
  81. #define AT91_SMC_NCS_RDPULSE (0x7f << 24) /* NCS Pulse Length in Read Access */
  82. #define AT91_SMC_NCS_RDPULSE_(x)((x) << 24)
  83. #define AT91_SMC_CYCLE(n) (AT91_SMC + 0x08 + ((n)*0x10)) /* Cycle Register for CS n */
  84. #define AT91_SMC_NWECYCLE (0x1ff << 0 ) /* Total Write Cycle Length */
  85. #define AT91_SMC_NWECYCLE_(x) ((x) << 0)
  86. #define AT91_SMC_NRDCYCLE (0x1ff << 16) /* Total Read Cycle Length */
  87. #define AT91_SMC_NRDCYCLE_(x) ((x) << 16)
  88. #define AT91_SMC_MODE(n) (AT91_SMC + 0x0c + ((n)*0x10)) /* Mode Register for CS n */
  89. #define AT91_SMC_READMODE (1 << 0) /* Read Mode */
  90. #define AT91_SMC_WRITEMODE (1 << 1) /* Write Mode */
  91. #define AT91_SMC_EXNWMODE (3 << 4) /* NWAIT Mode */
  92. #define AT91_SMC_EXNWMODE_DISABLE (0 << 4)
  93. #define AT91_SMC_EXNWMODE_FROZEN (2 << 4)
  94. #define AT91_SMC_EXNWMODE_READY (3 << 4)
  95. #define AT91_SMC_BAT (1 << 8) /* Byte Access Type */
  96. #define AT91_SMC_BAT_SELECT (0 << 8)
  97. #define AT91_SMC_BAT_WRITE (1 << 8)
  98. #define AT91_SMC_DBW (3 << 12) /* Data Bus Width */
  99. #define AT91_SMC_DBW_8 (0 << 12)
  100. #define AT91_SMC_DBW_16 (1 << 12)
  101. #define AT91_SMC_DBW_32 (2 << 12)
  102. #define AT91_SMC_TDF (0xf << 16) /* Data Float Time. */
  103. #define AT91_SMC_TDF_(x) ((x) << 16)
  104. #define AT91_SMC_TDFMODE (1 << 20) /* TDF Optimization - Enabled */
  105. #define AT91_SMC_PMEN (1 << 24) /* Page Mode Enabled */
  106. #define AT91_SMC_PS (3 << 28) /* Page Size */
  107. #define AT91_SMC_PS_4 (0 << 28)
  108. #define AT91_SMC_PS_8 (1 << 28)
  109. #define AT91_SMC_PS_16 (2 << 28)
  110. #define AT91_SMC_PS_32 (3 << 28)
  111. #if defined(AT91_SMC1) /* The AT91SAM9263 has 2 Static Memory contollers */
  112. #define AT91_SMC1_SETUP(n) (AT91_SMC1 + 0x00 + ((n)*0x10)) /* Setup Register for CS n */
  113. #define AT91_SMC1_PULSE(n) (AT91_SMC1 + 0x04 + ((n)*0x10)) /* Pulse Register for CS n */
  114. #define AT91_SMC1_CYCLE(n) (AT91_SMC1 + 0x08 + ((n)*0x10)) /* Cycle Register for CS n */
  115. #define AT91_SMC1_MODE(n) (AT91_SMC1 + 0x0c + ((n)*0x10)) /* Mode Register for CS n */
  116. #endif
  117. #endif
  118. #endif