ced3ec8aa7
Prefix messages from IDE PCI host drivers by driver name instead of marketed chipset name (it is still possible to exactly identify the particular chipset basing on driver messages). As a bonus this provides nice code savings for some drivers: text data bss dec hex filename 3826 112 8 3946 f6a drivers/ide/pci/amd74xx.o.before 2786 112 8 2906 b5a drivers/ide/pci/amd74xx.o.after 764 108 0 872 368 drivers/ide/pci/cs5520.o.before 680 108 0 788 314 drivers/ide/pci/cs5520.o.after 1680 112 4 1796 704 drivers/ide/pci/generic.o.before 1155 112 4 1271 4f7 drivers/ide/pci/generic.o.after 7128 792 0 7920 1ef0 drivers/ide/pci/hpt366.o.before 6984 792 0 7776 1e60 drivers/ide/pci/hpt366.o.after 2800 148 0 2948 b84 drivers/ide/pci/pdc202xx_new.o.before 2523 148 0 2671 a6f drivers/ide/pci/pdc202xx_new.o.after 2831 148 0 2979 ba3 drivers/ide/pci/pdc202xx_old.o.before 2683 148 0 2831 b0f drivers/ide/pci/pdc202xx_old.o.after 3776 112 4 3892 f34 drivers/ide/pci/piix.o.before 2804 112 4 2920 b68 drivers/ide/pci/piix.o.after 4693 116 0 4809 12c9 drivers/ide/pci/siimage.o.before 4600 116 0 4716 126c drivers/ide/pci/siimage.o.after Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 1995-1998 Linus Torvalds & author (see below)
|
|
*/
|
|
|
|
/*
|
|
* Principal Author: mlord@pobox.com (Mark Lord)
|
|
*
|
|
* See linux/MAINTAINERS for address of current maintainer.
|
|
*
|
|
* This file provides support for disabling the buggy read-ahead
|
|
* mode of the RZ1000 IDE chipset, commonly used on Intel motherboards.
|
|
*
|
|
* Dunno if this fixes both ports, or only the primary port (?).
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/hdreg.h>
|
|
#include <linux/pci.h>
|
|
#include <linux/ide.h>
|
|
#include <linux/init.h>
|
|
|
|
#define DRV_NAME "rz1000"
|
|
|
|
static void __devinit init_hwif_rz1000 (ide_hwif_t *hwif)
|
|
{
|
|
struct pci_dev *dev = to_pci_dev(hwif->dev);
|
|
u16 reg;
|
|
|
|
if (!pci_read_config_word (dev, 0x40, ®) &&
|
|
!pci_write_config_word(dev, 0x40, reg & 0xdfff)) {
|
|
printk(KERN_INFO "%s: disabled chipset read-ahead "
|
|
"(buggy RZ1000/RZ1001)\n", hwif->name);
|
|
} else {
|
|
if (hwif->mate)
|
|
hwif->mate->serialized = hwif->serialized = 1;
|
|
hwif->host_flags |= IDE_HFLAG_NO_UNMASK_IRQS;
|
|
printk(KERN_INFO "%s: serialized, disabled unmasking "
|
|
"(buggy RZ1000/RZ1001)\n", hwif->name);
|
|
}
|
|
}
|
|
|
|
static const struct ide_port_info rz1000_chipset __devinitdata = {
|
|
.name = DRV_NAME,
|
|
.init_hwif = init_hwif_rz1000,
|
|
.chipset = ide_rz1000,
|
|
.host_flags = IDE_HFLAG_NO_DMA,
|
|
};
|
|
|
|
static int __devinit rz1000_init_one(struct pci_dev *dev, const struct pci_device_id *id)
|
|
{
|
|
return ide_pci_init_one(dev, &rz1000_chipset, NULL);
|
|
}
|
|
|
|
static const struct pci_device_id rz1000_pci_tbl[] = {
|
|
{ PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_RZ1000), 0 },
|
|
{ PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_RZ1001), 0 },
|
|
{ 0, },
|
|
};
|
|
MODULE_DEVICE_TABLE(pci, rz1000_pci_tbl);
|
|
|
|
static struct pci_driver driver = {
|
|
.name = "RZ1000_IDE",
|
|
.id_table = rz1000_pci_tbl,
|
|
.probe = rz1000_init_one,
|
|
.remove = ide_pci_remove,
|
|
};
|
|
|
|
static int __init rz1000_ide_init(void)
|
|
{
|
|
return ide_pci_register_driver(&driver);
|
|
}
|
|
|
|
static void __exit rz1000_ide_exit(void)
|
|
{
|
|
pci_unregister_driver(&driver);
|
|
}
|
|
|
|
module_init(rz1000_ide_init);
|
|
module_exit(rz1000_ide_exit);
|
|
|
|
MODULE_AUTHOR("Andre Hedrick");
|
|
MODULE_DESCRIPTION("PCI driver module for RZ1000 IDE");
|
|
MODULE_LICENSE("GPL");
|
|
|