rz1000.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * linux/drivers/ide/pci/rz1000.c Version 0.06 January 12, 2003
  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/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/delay.h>
  22. #include <linux/timer.h>
  23. #include <linux/mm.h>
  24. #include <linux/ioport.h>
  25. #include <linux/blkdev.h>
  26. #include <linux/hdreg.h>
  27. #include <linux/pci.h>
  28. #include <linux/ide.h>
  29. #include <linux/init.h>
  30. #include <asm/io.h>
  31. static void __devinit init_hwif_rz1000 (ide_hwif_t *hwif)
  32. {
  33. u16 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. printk(KERN_INFO "%s: disabled chipset read-ahead "
  39. "(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(KERN_INFO "%s: serialized, disabled unmasking "
  45. "(buggy RZ1000/RZ1001)\n", hwif->name);
  46. }
  47. }
  48. static ide_pci_device_t rz1000_chipset __devinitdata = {
  49. .name = "RZ100x",
  50. .init_hwif = init_hwif_rz1000,
  51. .channels = 2,
  52. .autodma = NODMA,
  53. .bootable = ON_BOARD,
  54. };
  55. static int __devinit rz1000_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  56. {
  57. return ide_setup_pci_device(dev, &rz1000_chipset);
  58. }
  59. static struct pci_device_id rz1000_pci_tbl[] = {
  60. { PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_RZ1000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  61. { PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_RZ1001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  62. { 0, },
  63. };
  64. MODULE_DEVICE_TABLE(pci, rz1000_pci_tbl);
  65. static struct pci_driver driver = {
  66. .name = "RZ1000_IDE",
  67. .id_table = rz1000_pci_tbl,
  68. .probe = rz1000_init_one,
  69. };
  70. static int rz1000_ide_init(void)
  71. {
  72. return ide_pci_register_driver(&driver);
  73. }
  74. module_init(rz1000_ide_init);
  75. MODULE_AUTHOR("Andre Hedrick");
  76. MODULE_DESCRIPTION("PCI driver module for RZ1000 IDE");
  77. MODULE_LICENSE("GPL");