triflex.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * triflex.c
  3. *
  4. * IDE Chipset driver for the Compaq TriFlex IDE controller.
  5. *
  6. * Known to work with the Compaq Workstation 5x00 series.
  7. *
  8. * Copyright (C) 2002 Hewlett-Packard Development Group, L.P.
  9. * Author: Torben Mathiasen <torben.mathiasen@hp.com>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. * Loosely based on the piix & svwks drivers.
  25. *
  26. * Documentation:
  27. * Not publically available.
  28. */
  29. #include <linux/types.h>
  30. #include <linux/module.h>
  31. #include <linux/kernel.h>
  32. #include <linux/delay.h>
  33. #include <linux/timer.h>
  34. #include <linux/mm.h>
  35. #include <linux/ioport.h>
  36. #include <linux/blkdev.h>
  37. #include <linux/hdreg.h>
  38. #include <linux/pci.h>
  39. #include <linux/ide.h>
  40. #include <linux/init.h>
  41. static int triflex_tune_chipset(ide_drive_t *drive, u8 xferspeed)
  42. {
  43. ide_hwif_t *hwif = HWIF(drive);
  44. struct pci_dev *dev = hwif->pci_dev;
  45. u8 channel_offset = hwif->channel ? 0x74 : 0x70;
  46. u16 timing = 0;
  47. u32 triflex_timings = 0;
  48. u8 unit = (drive->select.b.unit & 0x01);
  49. u8 speed = ide_rate_filter(0, xferspeed);
  50. pci_read_config_dword(dev, channel_offset, &triflex_timings);
  51. switch(speed) {
  52. case XFER_MW_DMA_2:
  53. timing = 0x0103;
  54. break;
  55. case XFER_MW_DMA_1:
  56. timing = 0x0203;
  57. break;
  58. case XFER_MW_DMA_0:
  59. timing = 0x0808;
  60. break;
  61. case XFER_SW_DMA_2:
  62. case XFER_SW_DMA_1:
  63. case XFER_SW_DMA_0:
  64. timing = 0x0f0f;
  65. break;
  66. case XFER_PIO_4:
  67. timing = 0x0202;
  68. break;
  69. case XFER_PIO_3:
  70. timing = 0x0204;
  71. break;
  72. case XFER_PIO_2:
  73. timing = 0x0404;
  74. break;
  75. case XFER_PIO_1:
  76. timing = 0x0508;
  77. break;
  78. case XFER_PIO_0:
  79. timing = 0x0808;
  80. break;
  81. default:
  82. return -1;
  83. }
  84. triflex_timings &= ~(0xFFFF << (16 * unit));
  85. triflex_timings |= (timing << (16 * unit));
  86. pci_write_config_dword(dev, channel_offset, triflex_timings);
  87. return (ide_config_drive_speed(drive, speed));
  88. }
  89. static void triflex_tune_drive(ide_drive_t *drive, u8 pio)
  90. {
  91. int use_pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
  92. (void) triflex_tune_chipset(drive, (XFER_PIO_0 + use_pio));
  93. }
  94. static int triflex_config_drive_for_dma(ide_drive_t *drive)
  95. {
  96. int speed = ide_dma_speed(drive, 0); /* No ultra speeds */
  97. if (!speed) {
  98. u8 pspeed = ide_get_best_pio_mode(drive, 255, 4, NULL);
  99. speed = XFER_PIO_0 + pspeed;
  100. }
  101. (void) triflex_tune_chipset(drive, speed);
  102. return ide_dma_enable(drive);
  103. }
  104. static int triflex_config_drive_xfer_rate(ide_drive_t *drive)
  105. {
  106. ide_hwif_t *hwif = HWIF(drive);
  107. struct hd_driveid *id = drive->id;
  108. if ((id->capability & 1) && drive->autodma) {
  109. if (ide_use_dma(drive)) {
  110. if (triflex_config_drive_for_dma(drive))
  111. return hwif->ide_dma_on(drive);
  112. }
  113. }
  114. hwif->tuneproc(drive, 255);
  115. return hwif->ide_dma_off_quietly(drive);
  116. }
  117. static void __devinit init_hwif_triflex(ide_hwif_t *hwif)
  118. {
  119. hwif->tuneproc = &triflex_tune_drive;
  120. hwif->speedproc = &triflex_tune_chipset;
  121. hwif->atapi_dma = 1;
  122. hwif->mwdma_mask = 0x07;
  123. hwif->swdma_mask = 0x07;
  124. hwif->ide_dma_check = &triflex_config_drive_xfer_rate;
  125. if (!noautodma)
  126. hwif->autodma = 1;
  127. hwif->drives[0].autodma = hwif->autodma;
  128. hwif->drives[1].autodma = hwif->autodma;
  129. }
  130. static ide_pci_device_t triflex_device __devinitdata = {
  131. .name = "TRIFLEX",
  132. .init_hwif = init_hwif_triflex,
  133. .channels = 2,
  134. .autodma = AUTODMA,
  135. .enablebits = {{0x80, 0x01, 0x01}, {0x80, 0x02, 0x02}},
  136. .bootable = ON_BOARD,
  137. };
  138. static int __devinit triflex_init_one(struct pci_dev *dev,
  139. const struct pci_device_id *id)
  140. {
  141. return ide_setup_pci_device(dev, &triflex_device);
  142. }
  143. static struct pci_device_id triflex_pci_tbl[] = {
  144. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE,
  145. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  146. { 0, },
  147. };
  148. MODULE_DEVICE_TABLE(pci, triflex_pci_tbl);
  149. static struct pci_driver driver = {
  150. .name = "TRIFLEX_IDE",
  151. .id_table = triflex_pci_tbl,
  152. .probe = triflex_init_one,
  153. };
  154. static int triflex_ide_init(void)
  155. {
  156. return ide_pci_register_driver(&driver);
  157. }
  158. module_init(triflex_ide_init);
  159. MODULE_AUTHOR("Torben Mathiasen");
  160. MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
  161. MODULE_LICENSE("GPL");