| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | *  Copyright (C) 2001-2002	Andre Hedrick <andre@linux-ide.org> | 
| Alan Cox | ccd32e2 | 2008-11-02 21:40:08 +0100 | [diff] [blame] | 3 | *  Portions (C) Copyright 2002  Red Hat Inc | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or modify it | 
|  | 6 | * under the terms of the GNU General Public License as published by the | 
|  | 7 | * Free Software Foundation; either version 2, or (at your option) any | 
|  | 8 | * later version. | 
|  | 9 | * | 
|  | 10 | * This program is distributed in the hope that it will be useful, but | 
|  | 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|  | 13 | * General Public License for more details. | 
|  | 14 | * | 
|  | 15 | * For the avoidance of doubt the "preferred form" of this code is one which | 
|  | 16 | * is in an open non patent encumbered format. Where cryptographic key signing | 
|  | 17 | * forms part of the process of creating an executable the information | 
|  | 18 | * including keys needed to generate an equivalently functional executable | 
|  | 19 | * are deemed to be part of the source code. | 
|  | 20 | */ | 
|  | 21 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/types.h> | 
|  | 23 | #include <linux/module.h> | 
|  | 24 | #include <linux/kernel.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/pci.h> | 
|  | 26 | #include <linux/ide.h> | 
|  | 27 | #include <linux/init.h> | 
|  | 28 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 29 | #define DRV_NAME "ide_pci_generic" | 
|  | 30 |  | 
| Alan Cox | b189346 | 2005-06-27 15:24:26 -0700 | [diff] [blame] | 31 | static int ide_generic_all;		/* Set to claim all devices */ | 
|  | 32 |  | 
| Patrick Jefferson | a4bea10 | 2006-10-03 01:14:34 -0700 | [diff] [blame] | 33 | module_param_named(all_generic_ide, ide_generic_all, bool, 0444); | 
|  | 34 | MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE storage controllers."); | 
| Alan Cox | b189346 | 2005-06-27 15:24:26 -0700 | [diff] [blame] | 35 |  | 
| Bartlomiej Zolnierkiewicz | 8acf28c | 2007-10-20 00:32:30 +0200 | [diff] [blame] | 36 | #define IDE_HFLAGS_UMC (IDE_HFLAG_NO_DMA | IDE_HFLAG_FORCE_LEGACY_IRQS) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 38 | #define DECLARE_GENERIC_PCI_DEV(extra_flags) \ | 
| Bartlomiej Zolnierkiewicz | 1c3dd32 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 39 | { \ | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 40 | .name		= DRV_NAME, \ | 
| Bartlomiej Zolnierkiewicz | 7cab14a | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 41 | .host_flags	= IDE_HFLAG_TRUST_BIOS_FOR_DMA | \ | 
| Bartlomiej Zolnierkiewicz | 5e71d9c | 2008-04-26 17:36:35 +0200 | [diff] [blame] | 42 | extra_flags, \ | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 43 | .swdma_mask	= ATA_SWDMA2, \ | 
|  | 44 | .mwdma_mask	= ATA_MWDMA2, \ | 
|  | 45 | .udma_mask	= ATA_UDMA6, \ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
| Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 48 | static const struct ide_port_info generic_chipsets[] __devinitdata = { | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 49 | /*  0: Unknown */ | 
|  | 50 | DECLARE_GENERIC_PCI_DEV(0), | 
| Bartlomiej Zolnierkiewicz | 1c3dd32 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 51 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 52 | {	/* 1: NS87410 */ | 
|  | 53 | .name		= DRV_NAME, | 
| Paolo Ciarrocchi | 17deabd | 2008-04-26 17:36:40 +0200 | [diff] [blame] | 54 | .enablebits	= { {0x43, 0x08, 0x08}, {0x47, 0x08, 0x08} }, | 
| Bartlomiej Zolnierkiewicz | 5e71d9c | 2008-04-26 17:36:35 +0200 | [diff] [blame] | 55 | .host_flags	= IDE_HFLAG_TRUST_BIOS_FOR_DMA, | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 56 | .swdma_mask	= ATA_SWDMA2, | 
|  | 57 | .mwdma_mask	= ATA_MWDMA2, | 
|  | 58 | .udma_mask	= ATA_UDMA6, | 
| Bartlomiej Zolnierkiewicz | 1c3dd32 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 59 | }, | 
|  | 60 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 61 | /*  2: SAMURAI / HT6565 / HINT_IDE */ | 
|  | 62 | DECLARE_GENERIC_PCI_DEV(0), | 
|  | 63 | /*  3: UM8673F / UM8886A / UM8886BF */ | 
|  | 64 | DECLARE_GENERIC_PCI_DEV(IDE_HFLAGS_UMC), | 
|  | 65 | /*  4: VIA_IDE / OPTI621V / Piccolo010{2,3,5} */ | 
|  | 66 | DECLARE_GENERIC_PCI_DEV(IDE_HFLAG_NO_AUTODMA), | 
| Bartlomiej Zolnierkiewicz | 1c3dd32 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 67 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 68 | {	/* 5: VIA8237SATA */ | 
|  | 69 | .name		= DRV_NAME, | 
| Bartlomiej Zolnierkiewicz | 7cab14a | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 70 | .host_flags	= IDE_HFLAG_TRUST_BIOS_FOR_DMA | | 
|  | 71 | IDE_HFLAG_OFF_BOARD, | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 72 | .swdma_mask	= ATA_SWDMA2, | 
|  | 73 | .mwdma_mask	= ATA_MWDMA2, | 
|  | 74 | .udma_mask	= ATA_UDMA6, | 
| Bartlomiej Zolnierkiewicz | 1c3dd32 | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 75 | }, | 
|  | 76 |  | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 77 | {	/* 6: Revolution */ | 
|  | 78 | .name		= DRV_NAME, | 
| Bartlomiej Zolnierkiewicz | 8ac2b42 | 2008-02-01 23:09:30 +0100 | [diff] [blame] | 79 | .host_flags	= IDE_HFLAG_CLEAR_SIMPLEX | | 
|  | 80 | IDE_HFLAG_TRUST_BIOS_FOR_DMA | | 
| Bartlomiej Zolnierkiewicz | 7cab14a | 2007-10-19 00:30:06 +0200 | [diff] [blame] | 81 | IDE_HFLAG_OFF_BOARD, | 
| Bartlomiej Zolnierkiewicz | 5f8b6c3 | 2007-10-19 00:30:07 +0200 | [diff] [blame] | 82 | .swdma_mask	= ATA_SWDMA2, | 
|  | 83 | .mwdma_mask	= ATA_MWDMA2, | 
|  | 84 | .udma_mask	= ATA_UDMA6, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } | 
|  | 86 | }; | 
|  | 87 |  | 
|  | 88 | /** | 
|  | 89 | *	generic_init_one	-	called when a PIIX is found | 
|  | 90 | *	@dev: the generic device | 
|  | 91 | *	@id: the matching pci id | 
|  | 92 | * | 
|  | 93 | *	Called when the PCI registration layer (or the IDE initialization) | 
|  | 94 | *	finds a device matching our IDE device tables. | 
|  | 95 | */ | 
| Paolo Ciarrocchi | 17deabd | 2008-04-26 17:36:40 +0200 | [diff] [blame] | 96 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static int __devinit generic_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 
|  | 98 | { | 
| Bartlomiej Zolnierkiewicz | 8562043 | 2007-10-20 00:32:34 +0200 | [diff] [blame] | 99 | const struct ide_port_info *d = &generic_chipsets[id->driver_data]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | int ret = -ENODEV; | 
|  | 101 |  | 
| Alan Cox | b189346 | 2005-06-27 15:24:26 -0700 | [diff] [blame] | 102 | /* Don't use the generic entry unless instructed to do so */ | 
|  | 103 | if (id->driver_data == 0 && ide_generic_all == 0) | 
|  | 104 | goto out; | 
|  | 105 |  | 
| Jiri Slaby | ea30759 | 2007-06-08 15:14:31 +0200 | [diff] [blame] | 106 | switch (dev->vendor) { | 
|  | 107 | case PCI_VENDOR_ID_UMC: | 
|  | 108 | if (dev->device == PCI_DEVICE_ID_UMC_UM8886A && | 
|  | 109 | !(PCI_FUNC(dev->devfn) & 1)) | 
|  | 110 | goto out; /* UM8886A/BF pair */ | 
|  | 111 | break; | 
|  | 112 | case PCI_VENDOR_ID_OPTI: | 
|  | 113 | if (dev->device == PCI_DEVICE_ID_OPTI_82C558 && | 
|  | 114 | !(PCI_FUNC(dev->devfn) & 1)) | 
| Alan Cox | c333526 | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 115 | goto out; | 
| Jiri Slaby | ea30759 | 2007-06-08 15:14:31 +0200 | [diff] [blame] | 116 | break; | 
|  | 117 | case PCI_VENDOR_ID_JMICRON: | 
|  | 118 | if (dev->device != PCI_DEVICE_ID_JMICRON_JMB368 && | 
|  | 119 | PCI_FUNC(dev->devfn) != 1) | 
|  | 120 | goto out; | 
|  | 121 | break; | 
|  | 122 | case PCI_VENDOR_ID_NS: | 
|  | 123 | if (dev->device == PCI_DEVICE_ID_NS_87410 && | 
|  | 124 | (dev->class >> 8) != PCI_CLASS_STORAGE_IDE) | 
|  | 125 | goto out; | 
|  | 126 | break; | 
| Alan Cox | c333526 | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 127 | } | 
| Alan Cox | 15e0c69 | 2006-07-12 15:05:41 +0100 | [diff] [blame] | 128 |  | 
| Alan Cox | 3719bc5 | 2006-10-11 01:21:47 -0700 | [diff] [blame] | 129 | if (dev->vendor != PCI_VENDOR_ID_JMICRON) { | 
| Jiri Slaby | ea30759 | 2007-06-08 15:14:31 +0200 | [diff] [blame] | 130 | u16 command; | 
| Alan Cox | 3719bc5 | 2006-10-11 01:21:47 -0700 | [diff] [blame] | 131 | pci_read_config_word(dev, PCI_COMMAND, &command); | 
|  | 132 | if (!(command & PCI_COMMAND_IO)) { | 
| Bartlomiej Zolnierkiewicz | 28cfd8a | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 133 | printk(KERN_INFO "%s %s: skipping disabled " | 
|  | 134 | "controller\n", d->name, pci_name(dev)); | 
| Alan Cox | 3719bc5 | 2006-10-11 01:21:47 -0700 | [diff] [blame] | 135 | goto out; | 
|  | 136 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } | 
| Bartlomiej Zolnierkiewicz | 6cdf6eb | 2008-07-24 22:53:14 +0200 | [diff] [blame] | 138 | ret = ide_pci_init_one(dev, d, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | out: | 
|  | 140 | return ret; | 
|  | 141 | } | 
|  | 142 |  | 
| Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 143 | static const struct pci_device_id generic_pci_tbl[] = { | 
|  | 144 | { PCI_VDEVICE(NS,	PCI_DEVICE_ID_NS_87410),		 1 }, | 
|  | 145 | { PCI_VDEVICE(PCTECH,	PCI_DEVICE_ID_PCTECH_SAMURAI_IDE),	 2 }, | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 146 | { PCI_VDEVICE(HOLTEK,	PCI_DEVICE_ID_HOLTEK_6565),		 2 }, | 
|  | 147 | { PCI_VDEVICE(UMC,	PCI_DEVICE_ID_UMC_UM8673F),		 3 }, | 
|  | 148 | { PCI_VDEVICE(UMC,	PCI_DEVICE_ID_UMC_UM8886A),		 3 }, | 
|  | 149 | { PCI_VDEVICE(UMC,	PCI_DEVICE_ID_UMC_UM8886BF),		 3 }, | 
|  | 150 | { PCI_VDEVICE(HINT,	PCI_DEVICE_ID_HINT_VXPROII_IDE),	 2 }, | 
|  | 151 | { PCI_VDEVICE(VIA,	PCI_DEVICE_ID_VIA_82C561),		 4 }, | 
|  | 152 | { PCI_VDEVICE(OPTI,	PCI_DEVICE_ID_OPTI_82C558),		 4 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | #ifdef CONFIG_BLK_DEV_IDE_SATA | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 154 | { PCI_VDEVICE(VIA,	PCI_DEVICE_ID_VIA_8237_SATA),		 5 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | #endif | 
| Bartlomiej Zolnierkiewicz | ced3ec8 | 2008-07-24 22:53:32 +0200 | [diff] [blame] | 156 | { PCI_VDEVICE(TOSHIBA,	PCI_DEVICE_ID_TOSHIBA_PICCOLO),		 4 }, | 
|  | 157 | { PCI_VDEVICE(TOSHIBA,	PCI_DEVICE_ID_TOSHIBA_PICCOLO_1),	 4 }, | 
|  | 158 | { PCI_VDEVICE(TOSHIBA,	PCI_DEVICE_ID_TOSHIBA_PICCOLO_2),	 4 }, | 
|  | 159 | { PCI_VDEVICE(NETCELL,	PCI_DEVICE_ID_REVOLUTION),		 6 }, | 
| Bartlomiej Zolnierkiewicz | 9cbcc5e | 2007-10-16 22:29:56 +0200 | [diff] [blame] | 160 | /* | 
|  | 161 | * Must come last.  If you add entries adjust | 
|  | 162 | * this table and generic_chipsets[] appropriately. | 
|  | 163 | */ | 
|  | 164 | { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFFFFFF00UL, 0 }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { 0, }, | 
|  | 166 | }; | 
|  | 167 | MODULE_DEVICE_TABLE(pci, generic_pci_tbl); | 
|  | 168 |  | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 169 | static struct pci_driver generic_pci_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .name		= "PCI_IDE", | 
|  | 171 | .id_table	= generic_pci_tbl, | 
|  | 172 | .probe		= generic_init_one, | 
| Bartlomiej Zolnierkiewicz | f566bca | 2008-07-24 22:53:21 +0200 | [diff] [blame] | 173 | .remove		= ide_pci_remove, | 
| Bartlomiej Zolnierkiewicz | feb22b7 | 2008-10-10 22:39:32 +0200 | [diff] [blame] | 174 | .suspend	= ide_pci_suspend, | 
|  | 175 | .resume		= ide_pci_resume, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | }; | 
|  | 177 |  | 
| Bartlomiej Zolnierkiewicz | 82ab1ee | 2007-01-27 13:46:56 +0100 | [diff] [blame] | 178 | static int __init generic_ide_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 180 | return ide_pci_register_driver(&generic_pci_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } | 
|  | 182 |  | 
| Bartlomiej Zolnierkiewicz | f566bca | 2008-07-24 22:53:21 +0200 | [diff] [blame] | 183 | static void __exit generic_ide_exit(void) | 
|  | 184 | { | 
| Bartlomiej Zolnierkiewicz | a9ab09e | 2008-10-13 21:39:41 +0200 | [diff] [blame] | 185 | pci_unregister_driver(&generic_pci_driver); | 
| Bartlomiej Zolnierkiewicz | f566bca | 2008-07-24 22:53:21 +0200 | [diff] [blame] | 186 | } | 
|  | 187 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | module_init(generic_ide_init); | 
| Bartlomiej Zolnierkiewicz | f566bca | 2008-07-24 22:53:21 +0200 | [diff] [blame] | 189 | module_exit(generic_ide_exit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 |  | 
|  | 191 | MODULE_AUTHOR("Andre Hedrick"); | 
|  | 192 | MODULE_DESCRIPTION("PCI driver module for generic PCI IDE"); | 
|  | 193 | MODULE_LICENSE("GPL"); |