it8172.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

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_drive_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 master_data;
  58.     u32 slave_data;
  59.     int is_slave = (&HWIF(drive)->drives[1] == drive);
  60.     int master_port = 0x40;
  61.     int slave_port      = 0x44;
  62.     
  63.     pio = ide_get_best_pio_mode(drive, pio, 5, NULL);
  64.     pci_read_config_word(HWIF(drive)->pci_dev, master_port, &master_data);
  65.     pci_read_config_dword(HWIF(drive)->pci_dev, slave_port, &slave_data);
  66.     /*
  67.      * FIX! The DIOR/DIOW pulse width and recovery times in port 0x44
  68.      * are being left at the default values of 8 PCI clocks (242 nsec
  69.      * for a 33 MHz clock). These can be safely shortened at higher
  70.      * PIO modes.
  71.      */
  72.     
  73.     if (is_slave) {
  74. master_data |= 0x4000;
  75. if (pio > 1)
  76.     /* enable PPE and IE */
  77.     master_data |= 0x0060;
  78.     } else {
  79. master_data &= 0xc060;
  80. if (pio > 1)
  81.     /* enable PPE and IE */
  82.     master_data |= 0x0006;
  83.     }
  84.     save_flags(flags);
  85.     cli();
  86.     pci_write_config_word(HWIF(drive)->pci_dev, master_port, master_data);
  87.     restore_flags(flags);
  88. }
  89. #if defined(CONFIG_BLK_DEV_IDEDMA) && defined(CONFIG_IT8172_TUNING)
  90. /*
  91.  *
  92.  */
  93. static byte it8172_dma_2_pio (byte xfer_rate)
  94. {
  95.     switch(xfer_rate) {
  96.     case XFER_UDMA_5:
  97.     case XFER_UDMA_4:
  98.     case XFER_UDMA_3:
  99.     case XFER_UDMA_2:
  100.     case XFER_UDMA_1:
  101.     case XFER_UDMA_0:
  102.     case XFER_MW_DMA_2:
  103.     case XFER_PIO_4:
  104. return 4;
  105.     case XFER_MW_DMA_1:
  106.     case XFER_PIO_3:
  107. return 3;
  108.     case XFER_SW_DMA_2:
  109.     case XFER_PIO_2:
  110. return 2;
  111.     case XFER_MW_DMA_0:
  112.     case XFER_SW_DMA_1:
  113.     case XFER_SW_DMA_0:
  114.     case XFER_PIO_1:
  115.     case XFER_PIO_0:
  116.     case XFER_PIO_SLOW:
  117.     default:
  118. return 0;
  119.     }
  120. }
  121. static int it8172_tune_chipset (ide_drive_t *drive, byte speed)
  122. {
  123.     ide_hwif_t *hwif = HWIF(drive);
  124.     struct pci_dev *dev = hwif->pci_dev;
  125.     int a_speed = 3 << (drive->dn * 4);
  126.     int u_flag = 1 << drive->dn;
  127.     int u_speed = 0;
  128.     int err = 0;
  129.     byte reg48, reg4a;
  130.     pci_read_config_byte(dev, 0x48, &reg48);
  131.     pci_read_config_byte(dev, 0x4a, &reg4a);
  132.     /*
  133.      * Setting the DMA cycle time to 2 or 3 PCI clocks (60 and 91 nsec
  134.      * at 33 MHz PCI clock) seems to cause BadCRC errors during DMA
  135.      * transfers on some drives, even though both numbers meet the minimum
  136.      * ATAPI-4 spec of 73 and 54 nsec for UDMA 1 and 2 respectively.
  137.      * So the faster times are just commented out here. The good news is
  138.      * that the slower cycle time has very little affect on transfer
  139.      * performance.
  140.      */
  141.     
  142.     switch(speed) {
  143.     case XFER_UDMA_4:
  144.     case XFER_UDMA_2: //u_speed = 2 << (drive->dn * 4); break;
  145.     case XFER_UDMA_5:
  146.     case XFER_UDMA_3:
  147.     case XFER_UDMA_1: //u_speed = 1 << (drive->dn * 4); break;
  148.     case XFER_UDMA_0: u_speed = 0 << (drive->dn * 4); break;
  149.     case XFER_MW_DMA_2:
  150.     case XFER_MW_DMA_1:
  151.     case XFER_SW_DMA_2: break;
  152.     default: return -1;
  153.     }
  154.     if (speed >= XFER_UDMA_0) {
  155. pci_write_config_byte(dev, 0x48, reg48 | u_flag);
  156. reg4a &= ~a_speed;
  157. pci_write_config_byte(dev, 0x4a, reg4a | u_speed);
  158.     } else {
  159. pci_write_config_byte(dev, 0x48, reg48 & ~u_flag);
  160. pci_write_config_byte(dev, 0x4a, reg4a & ~a_speed);
  161.     }
  162.     it8172_tune_drive(drive, it8172_dma_2_pio(speed));
  163.     if (!drive->init_speed)
  164. drive->init_speed = speed;
  165.     err = ide_config_drive_speed(drive, speed);
  166.     drive->current_speed = speed;
  167.     return err;
  168. }
  169. static int it8172_config_drive_for_dma (ide_drive_t *drive)
  170. {
  171.     struct hd_driveid *id = drive->id;
  172.     byte speed;
  173.     if (id->dma_ultra & 0x0010) {
  174. speed = XFER_UDMA_2;
  175.     } else if (id->dma_ultra & 0x0008) {
  176. speed = XFER_UDMA_1;
  177.     } else if (id->dma_ultra & 0x0004) {
  178. speed = XFER_UDMA_2;
  179.     } else if (id->dma_ultra & 0x0002) {
  180. speed = XFER_UDMA_1;
  181.     } else if (id->dma_ultra & 0x0001) {
  182. speed = XFER_UDMA_0;
  183.     } else if (id->dma_mword & 0x0004) {
  184. speed = XFER_MW_DMA_2;
  185.     } else if (id->dma_mword & 0x0002) {
  186. speed = XFER_MW_DMA_1;
  187.     } else if (id->dma_1word & 0x0004) {
  188. speed = XFER_SW_DMA_2;
  189.     } else {
  190. speed = XFER_PIO_0 + ide_get_best_pio_mode(drive, 255, 5, NULL);
  191.     }
  192.     (void) it8172_tune_chipset(drive, speed);
  193.     return ((int)((id->dma_ultra >> 11) & 7) ? ide_dma_on :
  194.     ((id->dma_ultra >> 8) & 7) ? ide_dma_on :
  195.     ((id->dma_mword >> 8) & 7) ? ide_dma_on :
  196.     ((id->dma_1word >> 8) & 7) ? ide_dma_on :
  197.     ide_dma_off_quietly);
  198. }
  199. static int it8172_dmaproc(ide_dma_action_t func, ide_drive_t *drive)
  200. {
  201.     switch (func) {
  202.     case ide_dma_check:
  203. return ide_dmaproc((ide_dma_action_t)it8172_config_drive_for_dma(drive),
  204.    drive);
  205.     default :
  206. break;
  207.     }
  208.     /* Other cases are done by generic IDE-DMA code. */
  209.     return ide_dmaproc(func, drive);
  210. }
  211. #endif /* defined(CONFIG_BLK_DEV_IDEDMA) && (CONFIG_IT8172_TUNING) */
  212. unsigned int __init pci_init_it8172 (struct pci_dev *dev, const char *name)
  213. {
  214.     unsigned char progif;
  215.     
  216.     /*
  217.      * Place both IDE interfaces into PCI "native" mode
  218.      */
  219.     (void)pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
  220.     (void)pci_write_config_byte(dev, PCI_CLASS_PROG, progif | 0x05);    
  221.     return IT8172_IDE_IRQ;
  222. }
  223. void __init ide_init_it8172 (ide_hwif_t *hwif)
  224. {
  225.     struct pci_dev* dev = hwif->pci_dev;
  226.     unsigned long cmdBase, ctrlBase;
  227.     
  228.     hwif->tuneproc = &it8172_tune_drive;
  229.     hwif->drives[0].autotune = 1;
  230.     hwif->drives[1].autotune = 1;
  231.     if (!hwif->dma_base)
  232. return;
  233. #ifndef CONFIG_BLK_DEV_IDEDMA
  234.     hwif->autodma = 0;
  235. #else /* CONFIG_BLK_DEV_IDEDMA */
  236. #ifdef CONFIG_IT8172_TUNING
  237.     hwif->autodma = 1;
  238.     hwif->dmaproc = &it8172_dmaproc;
  239.     hwif->speedproc = &it8172_tune_chipset;
  240. #endif /* CONFIG_IT8172_TUNING */
  241. #endif /* !CONFIG_BLK_DEV_IDEDMA */
  242.     cmdBase = dev->resource[0].start;
  243.     ctrlBase = dev->resource[1].start;
  244.     
  245.     ide_init_hwif_ports(&hwif->hw, cmdBase, ctrlBase | 2, NULL);
  246.     memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
  247.     hwif->noprobe = 0;
  248. }