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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/rz1000.c Version 0.05 December 8, 1997
  3.  *
  4.  *  Copyright (C) 1995-1998  Linus Torvalds & author (see below)
  5.  */
  6. /*
  7.  *  Principal Author:  mlord@pobox.com (Mark Lord)
  8.  *
  9.  *  See linux/MAINTAINERS for address of current maintainer.
  10.  *
  11.  *  This file provides support for disabling the buggy read-ahead
  12.  *  mode of the RZ1000 IDE chipset, commonly used on Intel motherboards.
  13.  *
  14.  *  Dunno if this fixes both ports, or only the primary port (?).
  15.  */
  16. #undef REALLY_SLOW_IO /* most systems can safely undef this */
  17. #include <linux/config.h> /* for CONFIG_BLK_DEV_IDEPCI */
  18. #include <linux/types.h>
  19. #include <linux/kernel.h>
  20. #include <linux/delay.h>
  21. #include <linux/timer.h>
  22. #include <linux/mm.h>
  23. #include <linux/ioport.h>
  24. #include <linux/blkdev.h>
  25. #include <linux/hdreg.h>
  26. #include <linux/pci.h>
  27. #include <linux/ide.h>
  28. #include <linux/init.h>
  29. #include <asm/io.h>
  30. #ifdef CONFIG_BLK_DEV_IDEPCI
  31. void __init ide_init_rz1000 (ide_hwif_t *hwif) /* called from ide-pci.c */
  32. {
  33. unsigned short reg;
  34. struct pci_dev *dev = hwif->pci_dev;
  35. hwif->chipset = ide_rz1000;
  36. if (!pci_read_config_word (dev, 0x40, &reg)
  37.  && !pci_write_config_word(dev, 0x40, reg & 0xdfff))
  38. {
  39. printk("%s: disabled chipset read-ahead (buggy RZ1000/RZ1001)n", hwif->name);
  40. } else {
  41. hwif->serialized = 1;
  42. hwif->drives[0].no_unmask = 1;
  43. hwif->drives[1].no_unmask = 1;
  44. printk("%s: serialized, disabled unmasking (buggy RZ1000/RZ1001)n", hwif->name);
  45. }
  46. }
  47. #else
  48. static void __init init_rz1000 (struct pci_dev *dev, const char *name)
  49. {
  50. unsigned short reg, h;
  51. if (!pci_read_config_word (dev, PCI_COMMAND, &reg) && !(reg & PCI_COMMAND_IO)) {
  52. printk("%s: buggy IDE controller disabled (BIOS)n", name);
  53. return;
  54. }
  55. if (!pci_read_config_word (dev, 0x40, &reg)
  56.  && !pci_write_config_word(dev, 0x40, reg & 0xdfff))
  57. {
  58. printk("IDE: disabled chipset read-ahead (buggy %s)n", name);
  59. } else {
  60. for (h = 0; h < MAX_HWIFS; ++h) {
  61. ide_hwif_t *hwif = &ide_hwifs[h];
  62. if ((hwif->io_ports[IDE_DATA_OFFSET] == 0x1f0 || hwif->io_ports[IDE_DATA_OFFSET] == 0x170)
  63.  && (hwif->chipset == ide_unknown || hwif->chipset == ide_generic))
  64. {
  65. hwif->chipset = ide_rz1000;
  66. hwif->serialized = 1;
  67. hwif->drives[0].no_unmask = 1;
  68. hwif->drives[1].no_unmask = 1;
  69. if (hwif->io_ports[IDE_DATA_OFFSET] == 0x170)
  70. hwif->channel = 1;
  71. printk("%s: serialized, disabled unmasking (buggy %s)n", hwif->name, name);
  72. }
  73. }
  74. }
  75. }
  76. void __init ide_probe_for_rz100x (void) /* called from ide.c */
  77. {
  78. struct pci_dev *dev = NULL;
  79. while ((dev = pci_find_device(PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_RZ1000, dev))!=NULL)
  80. init_rz1000 (dev, "RZ1000");
  81. while ((dev = pci_find_device(PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_RZ1001, dev))!=NULL)
  82. init_rz1000 (dev, "RZ1001");
  83. }
  84. #endif /* CONFIG_BLK_DEV_IDEPCI */