blob: 7daf0135cbac678a0e22dcda2c388ceebf843f9b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995-1998 Linus Torvalds & author (see below)
3 */
4
5/*
6 * Principal Author: mlord@pobox.com (Mark Lord)
7 *
8 * See linux/MAINTAINERS for address of current maintainer.
9 *
10 * This file provides support for disabling the buggy read-ahead
11 * mode of the RZ1000 IDE chipset, commonly used on Intel motherboards.
12 *
13 * Dunno if this fixes both ports, or only the primary port (?).
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/types.h>
17#include <linux/module.h>
18#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/pci.h>
20#include <linux/ide.h>
21#include <linux/init.h>
22
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020023#define DRV_NAME "rz1000"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static void __devinit init_hwif_rz1000 (ide_hwif_t *hwif)
26{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010027 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 u16 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 if (!pci_read_config_word (dev, 0x40, &reg) &&
31 !pci_write_config_word(dev, 0x40, reg & 0xdfff)) {
32 printk(KERN_INFO "%s: disabled chipset read-ahead "
33 "(buggy RZ1000/RZ1001)\n", hwif->name);
34 } else {
Bartlomiej Zolnierkiewicz746f3122007-10-20 00:32:29 +020035 if (hwif->mate)
36 hwif->mate->serialized = hwif->serialized = 1;
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +010037 hwif->host_flags |= IDE_HFLAG_NO_UNMASK_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 printk(KERN_INFO "%s: serialized, disabled unmasking "
39 "(buggy RZ1000/RZ1001)\n", hwif->name);
40 }
41}
42
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +020043static const struct ide_port_info rz1000_chipset __devinitdata = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020044 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .init_hwif = init_hwif_rz1000,
Bartlomiej Zolnierkiewicz528a5722007-10-20 00:32:30 +020046 .chipset = ide_rz1000,
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +020047 .host_flags = IDE_HFLAG_NO_DMA,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50static int __devinit rz1000_init_one(struct pci_dev *dev, const struct pci_device_id *id)
51{
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +020052 return ide_pci_init_one(dev, &rz1000_chipset, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +020055static const struct pci_device_id rz1000_pci_tbl[] = {
56 { PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_RZ1000), 0 },
57 { PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_RZ1001), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 { 0, },
59};
60MODULE_DEVICE_TABLE(pci, rz1000_pci_tbl);
61
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +020062static struct pci_driver rz1000_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .name = "RZ1000_IDE",
64 .id_table = rz1000_pci_tbl,
65 .probe = rz1000_init_one,
Bartlomiej Zolnierkiewicz0fd18802008-07-24 22:53:24 +020066 .remove = ide_pci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +010069static int __init rz1000_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +020071 return ide_pci_register_driver(&rz1000_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Bartlomiej Zolnierkiewicz0fd18802008-07-24 22:53:24 +020074static void __exit rz1000_ide_exit(void)
75{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +020076 pci_unregister_driver(&rz1000_pci_driver);
Bartlomiej Zolnierkiewicz0fd18802008-07-24 22:53:24 +020077}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079module_init(rz1000_ide_init);
Bartlomiej Zolnierkiewicz0fd18802008-07-24 22:53:24 +020080module_exit(rz1000_ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82MODULE_AUTHOR("Andre Hedrick");
83MODULE_DESCRIPTION("PCI driver module for RZ1000 IDE");
84MODULE_LICENSE("GPL");
85