blob: fb5434c8ae6e39bdb96a1f9a4926eb5d45853d09 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * ata_generic.c - Generic PATA/SATA controller driver.
3 * Copyright 2005 Red Hat Inc <alan@redhat.com>, all rights reserved.
4 *
Jeff Garzik85cd7252006-08-31 00:03:49 -04005 * Elements from ide/pci/generic.c
Jeff Garzik669a5db2006-08-29 18:12:40 -04006 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
7 * Portions (C) Copyright 2002 Red Hat Inc <alan@redhat.com>
8 *
9 * May be copied or modified under the terms of the GNU General Public License
Jeff Garzik85cd7252006-08-31 00:03:49 -040010 *
Jeff Garzik669a5db2006-08-29 18:12:40 -040011 * Driver for PCI IDE interfaces implementing the standard bus mastering
12 * interface functionality. This assumes the BIOS did the drive set up and
13 * tuning for us. By default we do not grab all IDE class devices as they
14 * may have other drivers or need fixups to avoid problems. Instead we keep
15 * a default list of stuff without documentation/driver that appears to
Jeff Garzik85cd7252006-08-31 00:03:49 -040016 * work.
Jeff Garzik669a5db2006-08-29 18:12:40 -040017 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/pci.h>
22#include <linux/init.h>
23#include <linux/blkdev.h>
24#include <linux/delay.h>
25#include <scsi/scsi_host.h>
26#include <linux/libata.h>
27
28#define DRV_NAME "ata_generic"
Jeff Garzik2a3103c2007-08-31 04:54:06 -040029#define DRV_VERSION "0.2.13"
Jeff Garzik669a5db2006-08-29 18:12:40 -040030
31/*
32 * A generic parallel ATA driver using libata
33 */
34
35/**
Jeff Garzik669a5db2006-08-29 18:12:40 -040036 * generic_set_mode - mode setting
Tejun Heo02607312007-08-06 18:36:23 +090037 * @link: link to set up
Alanb229a7b2007-01-24 11:47:07 +000038 * @unused: returned device on error
Jeff Garzik669a5db2006-08-29 18:12:40 -040039 *
40 * Use a non standard set_mode function. We don't want to be tuned.
41 * The BIOS configured everything. Our job is not to fiddle. We
42 * read the dma enabled bits from the PCI configuration of the device
Jeff Garzik85cd7252006-08-31 00:03:49 -040043 * and respect them.
Jeff Garzik669a5db2006-08-29 18:12:40 -040044 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040045
Tejun Heo02607312007-08-06 18:36:23 +090046static int generic_set_mode(struct ata_link *link, struct ata_device **unused)
Jeff Garzik669a5db2006-08-29 18:12:40 -040047{
Tejun Heo02607312007-08-06 18:36:23 +090048 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -040049 int dma_enabled = 0;
Tejun Heof58229f2007-08-06 18:36:23 +090050 struct ata_device *dev;
Jeff Garzik669a5db2006-08-29 18:12:40 -040051
52 /* Bits 5 and 6 indicate if DMA is active on master/slave */
53 if (ap->ioaddr.bmdma_addr)
Alan Coxd6f4d5e2007-07-03 15:11:30 +010054 dma_enabled = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
Jeff Garzik85cd7252006-08-31 00:03:49 -040055
Tejun Heo02607312007-08-06 18:36:23 +090056 ata_link_for_each_dev(dev, link) {
Tejun Heof8ab6d82007-11-27 19:43:38 +090057 if (!ata_dev_enabled(dev))
58 continue;
59
60 /* We don't really care */
61 dev->pio_mode = XFER_PIO_0;
62 dev->dma_mode = XFER_MW_DMA_0;
63 /* We do need the right mode information for DMA or PIO
64 and this comes from the current configuration flags */
65 if (dma_enabled & (1 << (5 + dev->devno))) {
66 ata_id_to_dma_mode(dev, XFER_MW_DMA_0);
67 dev->flags &= ~ATA_DFLAG_PIO;
68 } else {
69 ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
70 dev->xfer_mode = XFER_PIO_0;
71 dev->xfer_shift = ATA_SHIFT_PIO;
72 dev->flags |= ATA_DFLAG_PIO;
Jeff Garzik669a5db2006-08-29 18:12:40 -040073 }
74 }
Alanb229a7b2007-01-24 11:47:07 +000075 return 0;
Jeff Garzik669a5db2006-08-29 18:12:40 -040076}
77
78static struct scsi_host_template generic_sht = {
79 .module = THIS_MODULE,
80 .name = DRV_NAME,
81 .ioctl = ata_scsi_ioctl,
82 .queuecommand = ata_scsi_queuecmd,
83 .can_queue = ATA_DEF_QUEUE,
84 .this_id = ATA_SHT_THIS_ID,
85 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -040086 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
87 .emulated = ATA_SHT_EMULATED,
88 .use_clustering = ATA_SHT_USE_CLUSTERING,
89 .proc_name = DRV_NAME,
90 .dma_boundary = ATA_DMA_BOUNDARY,
91 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +090092 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -040093 .bios_param = ata_std_bios_param,
94};
95
96static struct ata_port_operations generic_port_ops = {
97 .set_mode = generic_set_mode,
Jeff Garzik85cd7252006-08-31 00:03:49 -040098
Jeff Garzik669a5db2006-08-29 18:12:40 -040099 .tf_load = ata_tf_load,
100 .tf_read = ata_tf_read,
101 .check_status = ata_check_status,
102 .exec_command = ata_exec_command,
103 .dev_select = ata_std_dev_select,
104
105 .bmdma_setup = ata_bmdma_setup,
106 .bmdma_start = ata_bmdma_start,
107 .bmdma_stop = ata_bmdma_stop,
108 .bmdma_status = ata_bmdma_status,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400109
Tejun Heo0d5ff562007-02-01 15:06:36 +0900110 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400111
112 .freeze = ata_bmdma_freeze,
113 .thaw = ata_bmdma_thaw,
Alan Coxeb4a2c72007-04-11 00:04:20 +0100114 .error_handler = ata_bmdma_error_handler,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400115 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Coxeb4a2c72007-04-11 00:04:20 +0100116 .cable_detect = ata_cable_unknown,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400117
118 .qc_prep = ata_qc_prep,
119 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400120
Jeff Garzik669a5db2006-08-29 18:12:40 -0400121 .irq_handler = ata_interrupt,
122 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900123 .irq_on = ata_irq_on,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400124
Alan Cox81ad1832007-08-22 22:55:41 +0100125 .port_start = ata_sff_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400126};
127
Jeff Garzik669a5db2006-08-29 18:12:40 -0400128static int all_generic_ide; /* Set to claim all devices */
129
130/**
131 * ata_generic_init - attach generic IDE
132 * @dev: PCI device found
133 * @id: match entry
134 *
135 * Called each time a matching IDE interface is found. We check if the
Jeff Garzik85cd7252006-08-31 00:03:49 -0400136 * interface is one we wish to claim and if so we perform any chip
Jeff Garzik669a5db2006-08-29 18:12:40 -0400137 * specific hacks then let the ATA layer do the heavy lifting.
138 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400139
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140static int ata_generic_init_one(struct pci_dev *dev, const struct pci_device_id *id)
141{
142 u16 command;
Tejun Heo1626aeb2007-05-04 12:43:58 +0200143 static const struct ata_port_info info = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400144 .sht = &generic_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400145 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400146 .pio_mask = 0x1f,
147 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400148 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400149 .port_ops = &generic_port_ops
150 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200151 const struct ata_port_info *ppi[] = { &info, NULL };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400152
Jeff Garzik669a5db2006-08-29 18:12:40 -0400153 /* Don't use the generic entry unless instructed to do so */
154 if (id->driver_data == 1 && all_generic_ide == 0)
155 return -ENODEV;
156
157 /* Devices that need care */
158 if (dev->vendor == PCI_VENDOR_ID_UMC &&
159 dev->device == PCI_DEVICE_ID_UMC_UM8886A &&
160 (!(PCI_FUNC(dev->devfn) & 1)))
161 return -ENODEV;
162
163 if (dev->vendor == PCI_VENDOR_ID_OPTI &&
164 dev->device == PCI_DEVICE_ID_OPTI_82C558 &&
165 (!(PCI_FUNC(dev->devfn) & 1)))
166 return -ENODEV;
167
168 /* Don't re-enable devices in generic mode or we will break some
169 motherboards with disabled and unused IDE controllers */
170 pci_read_config_word(dev, PCI_COMMAND, &command);
171 if (!(command & PCI_COMMAND_IO))
172 return -ENODEV;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400173
Jeff Garzik669a5db2006-08-29 18:12:40 -0400174 if (dev->vendor == PCI_VENDOR_ID_AL)
175 ata_pci_clear_simplex(dev);
176
Tejun Heo1626aeb2007-05-04 12:43:58 +0200177 return ata_pci_init_one(dev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400178}
179
180static struct pci_device_id ata_generic[] = {
181 { PCI_DEVICE(PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_SAMURAI_IDE), },
182 { PCI_DEVICE(PCI_VENDOR_ID_HOLTEK, PCI_DEVICE_ID_HOLTEK_6565), },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400183 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8673F), },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400184 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8886A), },
185 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8886BF), },
186 { PCI_DEVICE(PCI_VENDOR_ID_HINT, PCI_DEVICE_ID_HINT_VXPROII_IDE), },
187 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C561), },
188 { PCI_DEVICE(PCI_VENDOR_ID_OPTI, PCI_DEVICE_ID_OPTI_82C558), },
189 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO), },
190 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_1), },
191 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_2), },
192 /* Must come last. If you add entries adjust this table appropriately */
193 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFFFFFF00UL, 1},
194 { 0, },
195};
196
197static struct pci_driver ata_generic_pci_driver = {
198 .name = DRV_NAME,
199 .id_table = ata_generic,
200 .probe = ata_generic_init_one,
Alan30ced0f2006-11-22 16:57:36 +0000201 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900202#ifdef CONFIG_PM
Alan30ced0f2006-11-22 16:57:36 +0000203 .suspend = ata_pci_device_suspend,
204 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900205#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400206};
207
208static int __init ata_generic_init(void)
209{
Henrik Kretzschmar3f03c672006-10-10 14:28:12 -0700210 return pci_register_driver(&ata_generic_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400211}
212
213
214static void __exit ata_generic_exit(void)
215{
216 pci_unregister_driver(&ata_generic_pci_driver);
217}
218
219
220MODULE_AUTHOR("Alan Cox");
221MODULE_DESCRIPTION("low-level driver for generic ATA");
222MODULE_LICENSE("GPL");
223MODULE_DEVICE_TABLE(pci, ata_generic);
224MODULE_VERSION(DRV_VERSION);
225
226module_init(ata_generic_init);
227module_exit(ata_generic_exit);
228
229module_param(all_generic_ide, int, 0);