au1xxx_ide.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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. #ifdef CONFIG_PM
  46. /*
  47. * This will enable the device to be powered up when write() or read()
  48. * is called. If this is not defined, the driver will return -EBUSY.
  49. */
  50. #define WAKE_ON_ACCESS 1
  51. typedef struct
  52. {
  53. spinlock_t lock; /* Used to block on state transitions */
  54. au1xxx_power_dev_t *dev; /* Power Managers device structure */
  55. unsigned stopped; /* USed to signaling device is stopped */
  56. } pm_state;
  57. #endif
  58. typedef struct
  59. {
  60. u32 tx_dev_id, rx_dev_id, target_dev_id;
  61. u32 tx_chan, rx_chan;
  62. void *tx_desc_head, *rx_desc_head;
  63. ide_hwif_t *hwif;
  64. #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
  65. ide_drive_t *drive;
  66. u8 white_list, black_list;
  67. struct dbdma_cmd *dma_table_cpu;
  68. dma_addr_t dma_table_dma;
  69. #endif
  70. struct device *dev;
  71. int irq;
  72. u32 regbase;
  73. #ifdef CONFIG_PM
  74. pm_state pm;
  75. #endif
  76. } _auide_hwif;
  77. #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
  78. /* HD white list */
  79. static const struct drive_list_entry dma_white_list [] = {
  80. /*
  81. * Hitachi
  82. */
  83. { "HITACHI_DK14FA-20" , "ALL" },
  84. { "HTS726060M9AT00" , "ALL" },
  85. /*
  86. * Maxtor
  87. */
  88. { "Maxtor 6E040L0" , "ALL" },
  89. { "Maxtor 6Y080P0" , "ALL" },
  90. { "Maxtor 6Y160P0" , "ALL" },
  91. /*
  92. * Seagate
  93. */
  94. { "ST3120026A" , "ALL" },
  95. { "ST320014A" , "ALL" },
  96. { "ST94011A" , "ALL" },
  97. { "ST340016A" , "ALL" },
  98. /*
  99. * Western Digital
  100. */
  101. { "WDC WD400UE-00HCT0" , "ALL" },
  102. { "WDC WD400JB-00JJC0" , "ALL" },
  103. { NULL , NULL }
  104. };
  105. /* HD black list */
  106. static const struct drive_list_entry dma_black_list [] = {
  107. /*
  108. * Western Digital
  109. */
  110. { "WDC WD100EB-00CGH0" , "ALL" },
  111. { "WDC WD200BB-00AUA1" , "ALL" },
  112. { "WDC AC24300L" , "ALL" },
  113. { NULL , NULL }
  114. };
  115. #endif
  116. /* function prototyping */
  117. u8 auide_inb(unsigned long port);
  118. u16 auide_inw(unsigned long port);
  119. u32 auide_inl(unsigned long port);
  120. void auide_insw(unsigned long port, void *addr, u32 count);
  121. void auide_insl(unsigned long port, void *addr, u32 count);
  122. void auide_outb(u8 addr, unsigned long port);
  123. void auide_outbsync(ide_drive_t *drive, u8 addr, unsigned long port);
  124. void auide_outw(u16 addr, unsigned long port);
  125. void auide_outl(u32 addr, unsigned long port);
  126. void auide_outsw(unsigned long port, void *addr, u32 count);
  127. void auide_outsl(unsigned long port, void *addr, u32 count);
  128. static void auide_tune_drive(ide_drive_t *drive, byte pio);
  129. static int auide_tune_chipset (ide_drive_t *drive, u8 speed);
  130. static int auide_ddma_init( _auide_hwif *auide );
  131. static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif);
  132. int __init auide_probe(void);
  133. #ifdef CONFIG_PM
  134. int au1200ide_pm_callback( au1xxx_power_dev_t *dev,
  135. au1xxx_request_t request, void *data);
  136. static int au1xxxide_pm_standby( au1xxx_power_dev_t *dev );
  137. static int au1xxxide_pm_sleep( au1xxx_power_dev_t *dev );
  138. static int au1xxxide_pm_resume( au1xxx_power_dev_t *dev );
  139. static int au1xxxide_pm_getstatus( au1xxx_power_dev_t *dev );
  140. static int au1xxxide_pm_access( au1xxx_power_dev_t *dev );
  141. static int au1xxxide_pm_idle( au1xxx_power_dev_t *dev );
  142. static int au1xxxide_pm_cleanup( au1xxx_power_dev_t *dev );
  143. #endif
  144. /*
  145. * Multi-Word DMA + DbDMA functions
  146. */
  147. #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
  148. static int auide_build_sglist(ide_drive_t *drive, struct request *rq);
  149. static int auide_build_dmatable(ide_drive_t *drive);
  150. static int auide_dma_end(ide_drive_t *drive);
  151. ide_startstop_t auide_dma_intr (ide_drive_t *drive);
  152. static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command);
  153. static int auide_dma_setup(ide_drive_t *drive);
  154. static int auide_dma_check(ide_drive_t *drive);
  155. static int auide_dma_test_irq(ide_drive_t *drive);
  156. static int auide_dma_host_off(ide_drive_t *drive);
  157. static int auide_dma_host_on(ide_drive_t *drive);
  158. static int auide_dma_lostirq(ide_drive_t *drive);
  159. static int auide_dma_on(ide_drive_t *drive);
  160. static void auide_ddma_tx_callback(int irq, void *param,
  161. struct pt_regs *regs);
  162. static void auide_ddma_rx_callback(int irq, void *param,
  163. struct pt_regs *regs);
  164. static int auide_dma_off_quietly(ide_drive_t *drive);
  165. #endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
  166. /*******************************************************************************
  167. * PIO Mode timing calculation : *
  168. * *
  169. * Static Bus Spec ATA Spec *
  170. * Tcsoe = t1 *
  171. * Toecs = t9 *
  172. * Twcs = t9 *
  173. * Tcsh = t2i | t2 *
  174. * Tcsoff = t2i | t2 *
  175. * Twp = t2 *
  176. * Tcsw = t1 *
  177. * Tpm = 0 *
  178. * Ta = t1+t2 *
  179. *******************************************************************************/
  180. #define TCSOE_MASK (0x07<<29)
  181. #define TOECS_MASK (0x07<<26)
  182. #define TWCS_MASK (0x07<<28)
  183. #define TCSH_MASK (0x0F<<24)
  184. #define TCSOFF_MASK (0x07<<20)
  185. #define TWP_MASK (0x3F<<14)
  186. #define TCSW_MASK (0x0F<<10)
  187. #define TPM_MASK (0x0F<<6)
  188. #define TA_MASK (0x3F<<0)
  189. #define TS_MASK (1<<8)
  190. /* Timing parameters PIO mode 0 */
  191. #define SBC_IDE_PIO0_TCSOE (0x04<<29)
  192. #define SBC_IDE_PIO0_TOECS (0x01<<26)
  193. #define SBC_IDE_PIO0_TWCS (0x02<<28)
  194. #define SBC_IDE_PIO0_TCSH (0x08<<24)
  195. #define SBC_IDE_PIO0_TCSOFF (0x07<<20)
  196. #define SBC_IDE_PIO0_TWP (0x10<<14)
  197. #define SBC_IDE_PIO0_TCSW (0x04<<10)
  198. #define SBC_IDE_PIO0_TPM (0x0<<6)
  199. #define SBC_IDE_PIO0_TA (0x15<<0)
  200. /* Timing parameters PIO mode 1 */
  201. #define SBC_IDE_PIO1_TCSOE (0x03<<29)
  202. #define SBC_IDE_PIO1_TOECS (0x01<<26)
  203. #define SBC_IDE_PIO1_TWCS (0x01<<28)
  204. #define SBC_IDE_PIO1_TCSH (0x06<<24)
  205. #define SBC_IDE_PIO1_TCSOFF (0x06<<20)
  206. #define SBC_IDE_PIO1_TWP (0x08<<14)
  207. #define SBC_IDE_PIO1_TCSW (0x03<<10)
  208. #define SBC_IDE_PIO1_TPM (0x00<<6)
  209. #define SBC_IDE_PIO1_TA (0x0B<<0)
  210. /* Timing parameters PIO mode 2 */
  211. #define SBC_IDE_PIO2_TCSOE (0x05<<29)
  212. #define SBC_IDE_PIO2_TOECS (0x01<<26)
  213. #define SBC_IDE_PIO2_TWCS (0x01<<28)
  214. #define SBC_IDE_PIO2_TCSH (0x07<<24)
  215. #define SBC_IDE_PIO2_TCSOFF (0x07<<20)
  216. #define SBC_IDE_PIO2_TWP (0x1F<<14)
  217. #define SBC_IDE_PIO2_TCSW (0x05<<10)
  218. #define SBC_IDE_PIO2_TPM (0x00<<6)
  219. #define SBC_IDE_PIO2_TA (0x22<<0)
  220. /* Timing parameters PIO mode 3 */
  221. #define SBC_IDE_PIO3_TCSOE (0x05<<29)
  222. #define SBC_IDE_PIO3_TOECS (0x01<<26)
  223. #define SBC_IDE_PIO3_TWCS (0x01<<28)
  224. #define SBC_IDE_PIO3_TCSH (0x0D<<24)
  225. #define SBC_IDE_PIO3_TCSOFF (0x0D<<20)
  226. #define SBC_IDE_PIO3_TWP (0x15<<14)
  227. #define SBC_IDE_PIO3_TCSW (0x05<<10)
  228. #define SBC_IDE_PIO3_TPM (0x00<<6)
  229. #define SBC_IDE_PIO3_TA (0x1A<<0)
  230. /* Timing parameters PIO mode 4 */
  231. #define SBC_IDE_PIO4_TCSOE (0x04<<29)
  232. #define SBC_IDE_PIO4_TOECS (0x01<<26)
  233. #define SBC_IDE_PIO4_TWCS (0x01<<28)
  234. #define SBC_IDE_PIO4_TCSH (0x04<<24)
  235. #define SBC_IDE_PIO4_TCSOFF (0x04<<20)
  236. #define SBC_IDE_PIO4_TWP (0x0D<<14)
  237. #define SBC_IDE_PIO4_TCSW (0x03<<10)
  238. #define SBC_IDE_PIO4_TPM (0x00<<6)
  239. #define SBC_IDE_PIO4_TA (0x12<<0)
  240. /* Timing parameters MDMA mode 0 */
  241. #define SBC_IDE_MDMA0_TCSOE (0x03<<29)
  242. #define SBC_IDE_MDMA0_TOECS (0x01<<26)
  243. #define SBC_IDE_MDMA0_TWCS (0x01<<28)
  244. #define SBC_IDE_MDMA0_TCSH (0x07<<24)
  245. #define SBC_IDE_MDMA0_TCSOFF (0x07<<20)
  246. #define SBC_IDE_MDMA0_TWP (0x0C<<14)
  247. #define SBC_IDE_MDMA0_TCSW (0x03<<10)
  248. #define SBC_IDE_MDMA0_TPM (0x00<<6)
  249. #define SBC_IDE_MDMA0_TA (0x0F<<0)
  250. /* Timing parameters MDMA mode 1 */
  251. #define SBC_IDE_MDMA1_TCSOE (0x05<<29)
  252. #define SBC_IDE_MDMA1_TOECS (0x01<<26)
  253. #define SBC_IDE_MDMA1_TWCS (0x01<<28)
  254. #define SBC_IDE_MDMA1_TCSH (0x05<<24)
  255. #define SBC_IDE_MDMA1_TCSOFF (0x05<<20)
  256. #define SBC_IDE_MDMA1_TWP (0x0F<<14)
  257. #define SBC_IDE_MDMA1_TCSW (0x05<<10)
  258. #define SBC_IDE_MDMA1_TPM (0x00<<6)
  259. #define SBC_IDE_MDMA1_TA (0x15<<0)
  260. /* Timing parameters MDMA mode 2 */
  261. #define SBC_IDE_MDMA2_TCSOE (0x04<<29)
  262. #define SBC_IDE_MDMA2_TOECS (0x01<<26)
  263. #define SBC_IDE_MDMA2_TWCS (0x01<<28)
  264. #define SBC_IDE_MDMA2_TCSH (0x04<<24)
  265. #define SBC_IDE_MDMA2_TCSOFF (0x04<<20)
  266. #define SBC_IDE_MDMA2_TWP (0x0D<<14)
  267. #define SBC_IDE_MDMA2_TCSW (0x04<<10)
  268. #define SBC_IDE_MDMA2_TPM (0x00<<6)
  269. #define SBC_IDE_MDMA2_TA (0x12<<0)
  270. #define SBC_IDE_TIMING(mode) \
  271. SBC_IDE_##mode##_TWCS | \
  272. SBC_IDE_##mode##_TCSH | \
  273. SBC_IDE_##mode##_TCSOFF | \
  274. SBC_IDE_##mode##_TWP | \
  275. SBC_IDE_##mode##_TCSW | \
  276. SBC_IDE_##mode##_TPM | \
  277. SBC_IDE_##mode##_TA