it8172.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  *      IT8172 IDE controller support
  5.  *
  6.  * Copyright 2000 MontaVista Software Inc.
  7.  * Author: MontaVista Software, Inc.
  8.  *              stevel@mvista.com or source@mvista.com
  9.  *
  10.  *  This program is free software; you can redistribute  it and/or modify it
  11.  *  under  the terms of  the GNU General  Public License as published by the
  12.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  13.  *  option) any later version.
  14.  *
  15.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  16.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  17.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  18.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  19.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  20.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  21.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  22.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  23.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  *
  26.  *  You should have received a copy of the  GNU General Public License along
  27.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  28.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  29.  */
  30. #include <linux/config.h>
  31. #include <linux/types.h>
  32. #include <linux/kernel.h>
  33. #include <linux/ioport.h>
  34. #include <linux/pci.h>
  35. #include <linux/hdreg.h>
  36. #include <linux/ide.h>
  37. #include <linux/delay.h>
  38. #include <linux/init.h>
  39. #include <asm/io.h>
  40. #include <asm/it8172/it8172_int.h>
  41. #include "ide_modes.h"
  42. /*
  43.  * Prototypes
  44.  */
  45. static void it8172_tune_drive (ide_drive_t *drive, byte pio);
  46. #if defined(CONFIG_BLK_DEV_IDEDMA) && defined(CONFIG_IT8172_TUNING)
  47. static byte it8172_dma_2_pio (byte xfer_rate);
  48. static int it8172_tune_chipset (ide_drive_t *drive, byte speed);
  49. static int it8172_config_chipset_for_dma (ide_drive_t *drive);
  50. static int it8172_dmaproc(ide_dma_action_t func, ide_drive_t *drive);
  51. #endif
  52. unsigned int __init pci_init_it8172 (struct pci_dev *dev, const char *name);
  53. void __init ide_init_it8172 (ide_hwif_t *hwif);
  54. static void it8172_tune_drive (ide_drive_t *drive, byte pio)
  55. {
  56.     unsigned long flags;
  57.     u16 drive_enables;
  58.     u32 drive_timing;
  59.     int is_slave = (&HWIF(drive)->drives[1] == drive);
  60.     
  61.     pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
  62.     pci_read_config_word(HWIF(drive)->pci_dev, 0x40, &drive_enables);
  63.     pci_read_config_dword(HWIF(drive)->pci_dev, 0x44, &drive_timing);
  64.     /*
  65.      * FIX! The DIOR/DIOW pulse width and recovery times in port 0x44
  66.      * are being left at the default values of 8 PCI clocks (242 nsec
  67.      * for a 33 MHz clock). These can be safely shortened at higher
  68.      * PIO modes. The DIOR/DIOW pulse width and recovery times only
  69.      * apply to PIO modes, not to the DMA modes.
  70.      */
  71.     
  72.     /*
  73.      * Enable port 0x44. The IT8172G spec is confused; it calls
  74.      * this register the "Slave IDE Timing Register", but in fact,
  75.      * it controls timing for both master and slave drives.
  76.      */
  77.     drive_enables |= 0x4000;
  78.     if (is_slave) {
  79. drive_enables &= 0xc006;
  80. if (pio > 1)
  81.     /* enable prefetch and IORDY sample-point */
  82.     drive_enables |= 0x0060;
  83.     } else {
  84. drive_enables &= 0xc060;
  85. if (pio > 1)
  86.     /* enable prefetch and IORDY sample-point */
  87.     drive_enables |= 0x0006;
  88.     }
  89.     save_flags(flags);
  90.     cli();
  91.     pci_write_config_word(HWIF(drive)->pci_dev, 0x40, drive_enables);
  92.     restore_flags(flags);
  93. }
  94. #if defined(CONFIG_BLK_DEV_IDEDMA) && defined(CONFIG_IT8172_TUNING)
  95. /*
  96.  *
  97.  */
  98. static byte it8172_dma_2_pio (byte xfer_rate)
  99. {
  100.     switch(xfer_rate) {
  101.     case XFER_UDMA_5:
  102.     case XFER_UDMA_4:
  103.     case XFER_UDMA_3:
  104.     case XFER_UDMA_2:
  105.     case XFER_UDMA_1:
  106.     case XFER_UDMA_0:
  107.     case XFER_MW_DMA_2:
  108.     case XFER_PIO_4:
  109. return 4;
  110.     case XFER_MW_DMA_1:
  111.     case XFER_PIO_3:
  112. return 3;
  113.     case XFER_SW_DMA_2:
  114.     case XFER_PIO_2:
  115. return 2;
  116.     case XFER_MW_DMA_0:
  117.     case XFER_SW_DMA_1:
  118.     case XFER_SW_DMA_0:
  119.     case XFER_PIO_1:
  120.     case XFER_PIO_0:
  121.     case XFER_PIO_SLOW:
  122.     default:
  123. return 0;
  124.     }
  125. }
  126. static int it8172_tune_chipset (ide_drive_t *drive, byte speed)
  127. {
  128.     ide_hwif_t *hwif = HWIF(drive);
  129.     struct pci_dev *dev = hwif->pci_dev;
  130.     int a_speed = 3 << (drive->dn * 4);
  131.     int u_flag = 1 << drive->dn;
  132.     int u_speed = 0;
  133.     int err = 0;
  134.     byte reg48, reg4a;
  135.     pci_read_config_byte(dev, 0x48, &reg48);
  136.     pci_read_config_byte(dev, 0x4a, &reg4a);
  137.     /*
  138.      * Setting the DMA cycle time to 2 or 3 PCI clocks (60 and 91 nsec
  139.      * at 33 MHz PCI clock) seems to cause BadCRC errors during DMA
  140.      * transfers on some drives, even though both numbers meet the minimum
  141.      * ATAPI-4 spec of 73 and 54 nsec for UDMA 1 and 2 respectively.
  142.      * So the faster times are just commented out here. The good news is
  143.      * that the slower cycle time has very little affect on transfer
  144.      * performance.
  145.      */
  146.     
  147.     switch(speed) {
  148.     case XFER_UDMA_4:
  149.     case XFER_UDMA_2: //u_speed = 2 << (drive->dn * 4); break;
  150.     case XFER_UDMA_5:
  151.     case XFER_UDMA_3:
  152.     case XFER_UDMA_1: //u_speed = 1 << (drive->dn * 4); break;
  153.     case XFER_UDMA_0: u_speed = 0 << (drive->dn * 4); break;
  154.     case XFER_MW_DMA_2:
  155.     case XFER_MW_DMA_1:
  156.     case XFER_MW_DMA_0:
  157.     case XFER_SW_DMA_2: break;
  158.     default: return -1;
  159.     }
  160.     if (speed >= XFER_UDMA_0) {
  161. pci_write_config_byte(dev, 0x48, reg48 | u_flag);
  162. reg4a &= ~a_speed;
  163. pci_write_config_byte(dev, 0x4a, reg4a | u_speed);
  164.     } else {
  165. pci_write_config_byte(dev, 0x48, reg48 & ~u_flag);
  166. pci_write_config_byte(dev, 0x4a, reg4a & ~a_speed);
  167.     }
  168.     it8172_tune_drive(drive, it8172_dma_2_pio(speed));
  169.     if (!drive->init_speed)
  170. drive->init_speed = speed;
  171.     err = ide_config_drive_speed(drive, speed);
  172.     drive->current_speed = speed;
  173.     return err;
  174. }
  175. static int it8172_config_chipset_for_dma (ide_drive_t *drive)
  176. {
  177.     struct hd_driveid *id = drive->id;
  178.     byte speed;
  179.     if (id->dma_ultra & 0x0010) {
  180. speed = XFER_UDMA_2;
  181.     } else if (id->dma_ultra & 0x0008) {
  182. speed = XFER_UDMA_1;
  183.     } else if (id->dma_ultra & 0x0004) {
  184. speed = XFER_UDMA_2;
  185.     } else if (id->dma_ultra & 0x0002) {
  186. speed = XFER_UDMA_1;
  187.     } else if (id->dma_ultra & 0x0001) {
  188. speed = XFER_UDMA_0;
  189.     } else if (id->dma_mword & 0x0004) {
  190. speed = XFER_MW_DMA_2;
  191.     } else if (id->dma_mword & 0x0002) {
  192. speed = XFER_MW_DMA_1;
  193.     } else if (id->dma_mword & 0x0001) {
  194. speed = XFER_MW_DMA_0;
  195.     } else if (id->dma_1word & 0x0004) {
  196. speed = XFER_SW_DMA_2;
  197.     } else {
  198. speed = XFER_PIO_0 + ide_get_best_pio_mode(drive, 255, 4, NULL);
  199.     }
  200.     (void) it8172_tune_chipset(drive, speed);
  201.     return ((int)((id->dma_ultra >> 11) & 7) ? ide_dma_on :
  202.     ((id->dma_ultra >> 8) & 7) ? ide_dma_on :
  203.     ((id->dma_mword >> 8) & 7) ? ide_dma_on :
  204.     ((id->dma_1word >> 8) & 7) ? ide_dma_on :
  205.     ide_dma_off_quietly);
  206. }
  207. static int it8172_dmaproc(ide_dma_action_t func, ide_drive_t *drive)
  208. {
  209.     switch (func) {
  210.     case ide_dma_check:
  211. return ide_dmaproc((ide_dma_action_t)it8172_config_chipset_for_dma(drive),
  212.    drive);
  213.     default :
  214. break;
  215.     }
  216.     /* Other cases are done by generic IDE-DMA code. */
  217.     return ide_dmaproc(func, drive);
  218. }
  219. #endif /* defined(CONFIG_BLK_DEV_IDEDMA) && (CONFIG_IT8172_TUNING) */
  220. unsigned int __init pci_init_it8172 (struct pci_dev *dev, const char *name)
  221. {
  222.     unsigned char progif;
  223.     
  224.     /*
  225.      * Place both IDE interfaces into PCI "native" mode
  226.      */
  227.     (void)pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
  228.     (void)pci_write_config_byte(dev, PCI_CLASS_PROG, progif | 0x05);    
  229.     return IT8172_IDE_IRQ;
  230. }
  231. void __init ide_init_it8172 (ide_hwif_t *hwif)
  232. {
  233.     struct pci_dev* dev = hwif->pci_dev;
  234.     unsigned long cmdBase, ctrlBase;
  235.     
  236.     hwif->tuneproc = &it8172_tune_drive;
  237.     hwif->drives[0].autotune = 1;
  238.     hwif->drives[1].autotune = 1;
  239.     if (!hwif->dma_base)
  240. return;
  241. #ifndef CONFIG_BLK_DEV_IDEDMA
  242.     hwif->autodma = 0;
  243. #else /* CONFIG_BLK_DEV_IDEDMA */
  244. #ifdef CONFIG_IT8172_TUNING
  245.     hwif->autodma = 1;
  246.     hwif->dmaproc = &it8172_dmaproc;
  247.     hwif->speedproc = &it8172_tune_chipset;
  248. #endif /* CONFIG_IT8172_TUNING */
  249. #endif /* !CONFIG_BLK_DEV_IDEDMA */
  250.     cmdBase = dev->resource[0].start;
  251.     ctrlBase = dev->resource[1].start;
  252.     
  253.     ide_init_hwif_ports(&hwif->hw, cmdBase, ctrlBase | 2, NULL);
  254.     memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
  255.     hwif->noprobe = 0;
  256. }