au1xxx_ide.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * include/asm-mips/mach-au1x00/au1xxx_ide.h version 01.30.00 Aug. 02 2005
  3. *
  4. * BRIEF MODULE DESCRIPTION
  5. * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
  6. *
  7. * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
  8. *
  9. * This program is free software; you can redistribute it and/or modify it under
  10. * the terms of the GNU General Public License as published by the Free Software
  11. * Foundation; either version 2 of the License, or (at your option) any later
  12. * version.
  13. *
  14. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  15. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  16. * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
  17. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  23. * POSSIBILITY OF SUCH DAMAGE.
  24. *
  25. * You should have received a copy of the GNU General Public License along with
  26. * this program; if not, write to the Free Software Foundation, Inc.,
  27. * 675 Mass Ave, Cambridge, MA 02139, USA.
  28. *
  29. * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
  30. * Interface and Linux Device Driver" Application Note.
  31. */
  32. #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
  33. #define DMA_WAIT_TIMEOUT 100
  34. #define NUM_DESCRIPTORS PRD_ENTRIES
  35. #else /* CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA */
  36. #define NUM_DESCRIPTORS 2
  37. #endif
  38. #ifndef AU1XXX_ATA_RQSIZE
  39. #define AU1XXX_ATA_RQSIZE 128
  40. #endif
  41. /* Disable Burstable-Support for DBDMA */
  42. #ifndef CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON
  43. #define CONFIG_BLK_DEV_IDE_AU1XXX_BURSTABLE_ON 0
  44. #endif
  45. typedef struct {
  46. u32 tx_dev_id, rx_dev_id, target_dev_id;
  47. u32 tx_chan, rx_chan;
  48. void *tx_desc_head, *rx_desc_head;
  49. ide_hwif_t *hwif;
  50. #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
  51. ide_drive_t *drive;
  52. struct dbdma_cmd *dma_table_cpu;
  53. dma_addr_t dma_table_dma;
  54. #endif
  55. int irq;
  56. u32 regbase;
  57. int ddma_id;
  58. } _auide_hwif;
  59. /******************************************************************************/
  60. /* PIO Mode timing calculation : */
  61. /* */
  62. /* Static Bus Spec ATA Spec */
  63. /* Tcsoe = t1 */
  64. /* Toecs = t9 */
  65. /* Twcs = t9 */
  66. /* Tcsh = t2i | t2 */
  67. /* Tcsoff = t2i | t2 */
  68. /* Twp = t2 */
  69. /* Tcsw = t1 */
  70. /* Tpm = 0 */
  71. /* Ta = t1+t2 */
  72. /******************************************************************************/
  73. #define TCSOE_MASK (0x07 << 29)
  74. #define TOECS_MASK (0x07 << 26)
  75. #define TWCS_MASK (0x07 << 28)
  76. #define TCSH_MASK (0x0F << 24)
  77. #define TCSOFF_MASK (0x07 << 20)
  78. #define TWP_MASK (0x3F << 14)
  79. #define TCSW_MASK (0x0F << 10)
  80. #define TPM_MASK (0x0F << 6)
  81. #define TA_MASK (0x3F << 0)
  82. #define TS_MASK (1 << 8)
  83. /* Timing parameters PIO mode 0 */
  84. #define SBC_IDE_PIO0_TCSOE (0x04 << 29)
  85. #define SBC_IDE_PIO0_TOECS (0x01 << 26)
  86. #define SBC_IDE_PIO0_TWCS (0x02 << 28)
  87. #define SBC_IDE_PIO0_TCSH (0x08 << 24)
  88. #define SBC_IDE_PIO0_TCSOFF (0x07 << 20)
  89. #define SBC_IDE_PIO0_TWP (0x10 << 14)
  90. #define SBC_IDE_PIO0_TCSW (0x04 << 10)
  91. #define SBC_IDE_PIO0_TPM (0x00 << 6)
  92. #define SBC_IDE_PIO0_TA (0x15 << 0)
  93. /* Timing parameters PIO mode 1 */
  94. #define SBC_IDE_PIO1_TCSOE (0x03 << 29)
  95. #define SBC_IDE_PIO1_TOECS (0x01 << 26)
  96. #define SBC_IDE_PIO1_TWCS (0x01 << 28)
  97. #define SBC_IDE_PIO1_TCSH (0x06 << 24)
  98. #define SBC_IDE_PIO1_TCSOFF (0x06 << 20)
  99. #define SBC_IDE_PIO1_TWP (0x08 << 14)
  100. #define SBC_IDE_PIO1_TCSW (0x03 << 10)
  101. #define SBC_IDE_PIO1_TPM (0x00 << 6)
  102. #define SBC_IDE_PIO1_TA (0x0B << 0)
  103. /* Timing parameters PIO mode 2 */
  104. #define SBC_IDE_PIO2_TCSOE (0x05 << 29)
  105. #define SBC_IDE_PIO2_TOECS (0x01 << 26)
  106. #define SBC_IDE_PIO2_TWCS (0x01 << 28)
  107. #define SBC_IDE_PIO2_TCSH (0x07 << 24)
  108. #define SBC_IDE_PIO2_TCSOFF (0x07 << 20)
  109. #define SBC_IDE_PIO2_TWP (0x1F << 14)
  110. #define SBC_IDE_PIO2_TCSW (0x05 << 10)
  111. #define SBC_IDE_PIO2_TPM (0x00 << 6)
  112. #define SBC_IDE_PIO2_TA (0x22 << 0)
  113. /* Timing parameters PIO mode 3 */
  114. #define SBC_IDE_PIO3_TCSOE (0x05 << 29)
  115. #define SBC_IDE_PIO3_TOECS (0x01 << 26)
  116. #define SBC_IDE_PIO3_TWCS (0x01 << 28)
  117. #define SBC_IDE_PIO3_TCSH (0x0D << 24)
  118. #define SBC_IDE_PIO3_TCSOFF (0x0D << 20)
  119. #define SBC_IDE_PIO3_TWP (0x15 << 14)
  120. #define SBC_IDE_PIO3_TCSW (0x05 << 10)
  121. #define SBC_IDE_PIO3_TPM (0x00 << 6)
  122. #define SBC_IDE_PIO3_TA (0x1A << 0)
  123. /* Timing parameters PIO mode 4 */
  124. #define SBC_IDE_PIO4_TCSOE (0x04 << 29)
  125. #define SBC_IDE_PIO4_TOECS (0x01 << 26)
  126. #define SBC_IDE_PIO4_TWCS (0x01 << 28)
  127. #define SBC_IDE_PIO4_TCSH (0x04 << 24)
  128. #define SBC_IDE_PIO4_TCSOFF (0x04 << 20)
  129. #define SBC_IDE_PIO4_TWP (0x0D << 14)
  130. #define SBC_IDE_PIO4_TCSW (0x03 << 10)
  131. #define SBC_IDE_PIO4_TPM (0x00 << 6)
  132. #define SBC_IDE_PIO4_TA (0x12 << 0)
  133. /* Timing parameters MDMA mode 0 */
  134. #define SBC_IDE_MDMA0_TCSOE (0x03 << 29)
  135. #define SBC_IDE_MDMA0_TOECS (0x01 << 26)
  136. #define SBC_IDE_MDMA0_TWCS (0x01 << 28)
  137. #define SBC_IDE_MDMA0_TCSH (0x07 << 24)
  138. #define SBC_IDE_MDMA0_TCSOFF (0x07 << 20)
  139. #define SBC_IDE_MDMA0_TWP (0x0C << 14)
  140. #define SBC_IDE_MDMA0_TCSW (0x03 << 10)
  141. #define SBC_IDE_MDMA0_TPM (0x00 << 6)
  142. #define SBC_IDE_MDMA0_TA (0x0F << 0)
  143. /* Timing parameters MDMA mode 1 */
  144. #define SBC_IDE_MDMA1_TCSOE (0x05 << 29)
  145. #define SBC_IDE_MDMA1_TOECS (0x01 << 26)
  146. #define SBC_IDE_MDMA1_TWCS (0x01 << 28)
  147. #define SBC_IDE_MDMA1_TCSH (0x05 << 24)
  148. #define SBC_IDE_MDMA1_TCSOFF (0x05 << 20)
  149. #define SBC_IDE_MDMA1_TWP (0x0F << 14)
  150. #define SBC_IDE_MDMA1_TCSW (0x05 << 10)
  151. #define SBC_IDE_MDMA1_TPM (0x00 << 6)
  152. #define SBC_IDE_MDMA1_TA (0x15 << 0)
  153. /* Timing parameters MDMA mode 2 */
  154. #define SBC_IDE_MDMA2_TCSOE (0x04 << 29)
  155. #define SBC_IDE_MDMA2_TOECS (0x01 << 26)
  156. #define SBC_IDE_MDMA2_TWCS (0x01 << 28)
  157. #define SBC_IDE_MDMA2_TCSH (0x04 << 24)
  158. #define SBC_IDE_MDMA2_TCSOFF (0x04 << 20)
  159. #define SBC_IDE_MDMA2_TWP (0x0D << 14)
  160. #define SBC_IDE_MDMA2_TCSW (0x04 << 10)
  161. #define SBC_IDE_MDMA2_TPM (0x00 << 6)
  162. #define SBC_IDE_MDMA2_TA (0x12 << 0)
  163. #define SBC_IDE_TIMING(mode) \
  164. (SBC_IDE_##mode##_TWCS | \
  165. SBC_IDE_##mode##_TCSH | \
  166. SBC_IDE_##mode##_TCSOFF | \
  167. SBC_IDE_##mode##_TWP | \
  168. SBC_IDE_##mode##_TCSW | \
  169. SBC_IDE_##mode##_TPM | \
  170. SBC_IDE_##mode##_TA)