at91sam926x_mc.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * include/asm-arm/arch-at91/at91sam926x_mc.h
  3. *
  4. * Memory Controllers (SMC, SDRAMC) - System peripherals registers.
  5. * Based on AT91SAM9261 datasheet revision D.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #ifndef AT91SAM926x_MC_H
  13. #define AT91SAM926x_MC_H
  14. /* SDRAM Controller (SDRAMC) registers */
  15. #define AT91_SDRAMC_MR (AT91_SDRAMC + 0x00) /* SDRAM Controller Mode Register */
  16. #define AT91_SDRAMC_MODE (0xf << 0) /* Command Mode */
  17. #define AT91_SDRAMC_MODE_NORMAL 0
  18. #define AT91_SDRAMC_MODE_NOP 1
  19. #define AT91_SDRAMC_MODE_PRECHARGE 2
  20. #define AT91_SDRAMC_MODE_LMR 3
  21. #define AT91_SDRAMC_MODE_REFRESH 4
  22. #define AT91_SDRAMC_MODE_EXT_LMR 5
  23. #define AT91_SDRAMC_MODE_DEEP 6
  24. #define AT91_SDRAMC_TR (AT91_SDRAMC + 0x04) /* SDRAM Controller Refresh Timer Register */
  25. #define AT91_SDRAMC_COUNT (0xfff << 0) /* Refresh Timer Counter */
  26. #define AT91_SDRAMC_CR (AT91_SDRAMC + 0x08) /* SDRAM Controller Configuration Register */
  27. #define AT91_SDRAMC_NC (3 << 0) /* Number of Column Bits */
  28. #define AT91_SDRAMC_NC_8 (0 << 0)
  29. #define AT91_SDRAMC_NC_9 (1 << 0)
  30. #define AT91_SDRAMC_NC_10 (2 << 0)
  31. #define AT91_SDRAMC_NC_11 (3 << 0)
  32. #define AT91_SDRAMC_NR (3 << 2) /* Number of Row Bits */
  33. #define AT91_SDRAMC_NR_11 (0 << 2)
  34. #define AT91_SDRAMC_NR_12 (1 << 2)
  35. #define AT91_SDRAMC_NR_13 (2 << 2)
  36. #define AT91_SDRAMC_NB (1 << 4) /* Number of Banks */
  37. #define AT91_SDRAMC_NB_2 (0 << 4)
  38. #define AT91_SDRAMC_NB_4 (1 << 4)
  39. #define AT91_SDRAMC_CAS (3 << 5) /* CAS Latency */
  40. #define AT91_SDRAMC_CAS_1 (1 << 5)
  41. #define AT91_SDRAMC_CAS_2 (2 << 5)
  42. #define AT91_SDRAMC_CAS_3 (3 << 5)
  43. #define AT91_SDRAMC_DBW (1 << 7) /* Data Bus Width */
  44. #define AT91_SDRAMC_DBW_32 (0 << 7)
  45. #define AT91_SDRAMC_DBW_16 (1 << 7)
  46. #define AT91_SDRAMC_TWR (0xf << 8) /* Write Recovery Delay */
  47. #define AT91_SDRAMC_TRC (0xf << 12) /* Row Cycle Delay */
  48. #define AT91_SDRAMC_TRP (0xf << 16) /* Row Precharge Delay */
  49. #define AT91_SDRAMC_TRCD (0xf << 20) /* Row to Column Delay */
  50. #define AT91_SDRAMC_TRAS (0xf << 24) /* Active to Precharge Delay */
  51. #define AT91_SDRAMC_TXSR (0xf << 28) /* Exit Self Refresh to Active Delay */
  52. #define AT91_SDRAMC_LPR (AT91_SDRAMC + 0x10) /* SDRAM Controller Low Power Register */
  53. #define AT91_SDRAMC_LPCB (3 << 0) /* Low-power Configurations */
  54. #define AT91_SDRAMC_LPCB_DISABLE 0
  55. #define AT91_SDRAMC_LPCB_SELF_REFRESH 1
  56. #define AT91_SDRAMC_LPCB_POWER_DOWN 2
  57. #define AT91_SDRAMC_LPCB_DEEP_POWER_DOWN 3
  58. #define AT91_SDRAMC_PASR (7 << 4) /* Partial Array Self Refresh */
  59. #define AT91_SDRAMC_TCSR (3 << 8) /* Temperature Compensated Self Refresh */
  60. #define AT91_SDRAMC_DS (3 << 10) /* Drive Strenght */
  61. #define AT91_SDRAMC_TIMEOUT (3 << 12) /* Time to define when Low Power Mode is enabled */
  62. #define AT91_SDRAMC_TIMEOUT_0_CLK_CYCLES (0 << 12)
  63. #define AT91_SDRAMC_TIMEOUT_64_CLK_CYCLES (1 << 12)
  64. #define AT91_SDRAMC_TIMEOUT_128_CLK_CYCLES (2 << 12)
  65. #define AT91_SDRAMC_IER (AT91_SDRAMC + 0x14) /* SDRAM Controller Interrupt Enable Register */
  66. #define AT91_SDRAMC_IDR (AT91_SDRAMC + 0x18) /* SDRAM Controller Interrupt Disable Register */
  67. #define AT91_SDRAMC_IMR (AT91_SDRAMC + 0x1C) /* SDRAM Controller Interrupt Mask Register */
  68. #define AT91_SDRAMC_ISR (AT91_SDRAMC + 0x20) /* SDRAM Controller Interrupt Status Register */
  69. #define AT91_SDRAMC_RES (1 << 0) /* Refresh Error Status */
  70. #define AT91_SDRAMC_MDR (AT91_SDRAMC + 0x24) /* SDRAM Memory Device Register */
  71. #define AT91_SDRAMC_MD (3 << 0) /* Memory Device Type */
  72. #define AT91_SDRAMC_MD_SDRAM 0
  73. #define AT91_SDRAMC_MD_LOW_POWER_SDRAM 1
  74. /* Static Memory Controller (SMC) registers */
  75. #define AT91_SMC_SETUP(n) (AT91_SMC + 0x00 + ((n)*0x10)) /* Setup Register for CS n */
  76. #define AT91_SMC_NWESETUP (0x3f << 0) /* NWE Setup Length */
  77. #define AT91_SMC_NWESETUP_(x) ((x) << 0)
  78. #define AT91_SMC_NCS_WRSETUP (0x3f << 8) /* NCS Setup Length in Write Access */
  79. #define AT91_SMC_NCS_WRSETUP_(x) ((x) << 8)
  80. #define AT91_SMC_NRDSETUP (0x3f << 16) /* NRD Setup Length */
  81. #define AT91_SMC_NRDSETUP_(x) ((x) << 16)
  82. #define AT91_SMC_NCS_RDSETUP (0x3f << 24) /* NCS Setup Length in Read Access */
  83. #define AT91_SMC_NCS_RDSETUP_(x) ((x) << 24)
  84. #define AT91_SMC_PULSE(n) (AT91_SMC + 0x04 + ((n)*0x10)) /* Pulse Register for CS n */
  85. #define AT91_SMC_NWEPULSE (0x7f << 0) /* NWE Pulse Length */
  86. #define AT91_SMC_NWEPULSE_(x) ((x) << 0)
  87. #define AT91_SMC_NCS_WRPULSE (0x7f << 8) /* NCS Pulse Length in Write Access */
  88. #define AT91_SMC_NCS_WRPULSE_(x)((x) << 8)
  89. #define AT91_SMC_NRDPULSE (0x7f << 16) /* NRD Pulse Length */
  90. #define AT91_SMC_NRDPULSE_(x) ((x) << 16)
  91. #define AT91_SMC_NCS_RDPULSE (0x7f << 24) /* NCS Pulse Length in Read Access */
  92. #define AT91_SMC_NCS_RDPULSE_(x)((x) << 24)
  93. #define AT91_SMC_CYCLE(n) (AT91_SMC + 0x08 + ((n)*0x10)) /* Cycle Register for CS n */
  94. #define AT91_SMC_NWECYCLE (0x1ff << 0 ) /* Total Write Cycle Length */
  95. #define AT91_SMC_NWECYCLE_(x) ((x) << 0)
  96. #define AT91_SMC_NRDCYCLE (0x1ff << 16) /* Total Read Cycle Length */
  97. #define AT91_SMC_NRDCYCLE_(x) ((x) << 16)
  98. #define AT91_SMC_MODE(n) (AT91_SMC + 0x0c + ((n)*0x10)) /* Mode Register for CS n */
  99. #define AT91_SMC_READMODE (1 << 0) /* Read Mode */
  100. #define AT91_SMC_WRITEMODE (1 << 1) /* Write Mode */
  101. #define AT91_SMC_EXNWMODE (3 << 4) /* NWAIT Mode */
  102. #define AT91_SMC_EXNWMODE_DISABLE (0 << 4)
  103. #define AT91_SMC_EXNWMODE_FROZEN (2 << 4)
  104. #define AT91_SMC_EXNWMODE_READY (3 << 4)
  105. #define AT91_SMC_BAT (1 << 8) /* Byte Access Type */
  106. #define AT91_SMC_BAT_SELECT (0 << 8)
  107. #define AT91_SMC_BAT_WRITE (1 << 8)
  108. #define AT91_SMC_DBW (3 << 12) /* Data Bus Width */
  109. #define AT91_SMC_DBW_8 (0 << 12)
  110. #define AT91_SMC_DBW_16 (1 << 12)
  111. #define AT91_SMC_DBW_32 (2 << 12)
  112. #define AT91_SMC_TDF (0xf << 16) /* Data Float Time. */
  113. #define AT91_SMC_TDF_(x) ((x) << 16)
  114. #define AT91_SMC_TDFMODE (1 << 20) /* TDF Optimization - Enabled */
  115. #define AT91_SMC_PMEN (1 << 24) /* Page Mode Enabled */
  116. #define AT91_SMC_PS (3 << 28) /* Page Size */
  117. #define AT91_SMC_PS_4 (0 << 28)
  118. #define AT91_SMC_PS_8 (1 << 28)
  119. #define AT91_SMC_PS_16 (2 << 28)
  120. #define AT91_SMC_PS_32 (3 << 28)
  121. #if defined(AT91_SMC1) /* The AT91SAM9263 has 2 Static Memory contollers */
  122. #define AT91_SMC1_SETUP(n) (AT91_SMC1 + 0x00 + ((n)*0x10)) /* Setup Register for CS n */
  123. #define AT91_SMC1_PULSE(n) (AT91_SMC1 + 0x04 + ((n)*0x10)) /* Pulse Register for CS n */
  124. #define AT91_SMC1_CYCLE(n) (AT91_SMC1 + 0x08 + ((n)*0x10)) /* Cycle Register for CS n */
  125. #define AT91_SMC1_MODE(n) (AT91_SMC1 + 0x0c + ((n)*0x10)) /* Mode Register for CS n */
  126. #endif
  127. #endif