blob: c7e8f033125d3eeaadd937cd02a6f86d9164cee6 [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"
Alan30ced0f2006-11-22 16:57:36 +000029#define DRV_VERSION "0.2.10"
Jeff Garzik669a5db2006-08-29 18:12:40 -040030
31/*
32 * A generic parallel ATA driver using libata
33 */
34
35/**
36 * generic_pre_reset - probe begin
37 * @ap: ATA port
38 *
39 * Set up cable type and use generic probe init
40 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040041
Jeff Garzik669a5db2006-08-29 18:12:40 -040042static int generic_pre_reset(struct ata_port *ap)
43{
44 ap->cbl = ATA_CBL_PATA80;
45 return ata_std_prereset(ap);
46}
47
48
49/**
50 * generic_error_handler - Probe specified port on PATA host controller
51 * @ap: Port to probe
52 * @classes:
53 *
54 * LOCKING:
55 * None (inherited from caller).
56 */
57
Jeff Garzik85cd7252006-08-31 00:03:49 -040058
Jeff Garzik669a5db2006-08-29 18:12:40 -040059static void generic_error_handler(struct ata_port *ap)
60{
61 ata_bmdma_drive_eh(ap, generic_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
62}
63
64/**
65 * generic_set_mode - mode setting
66 * @ap: interface to set up
67 *
68 * Use a non standard set_mode function. We don't want to be tuned.
69 * The BIOS configured everything. Our job is not to fiddle. We
70 * read the dma enabled bits from the PCI configuration of the device
Jeff Garzik85cd7252006-08-31 00:03:49 -040071 * and respect them.
Jeff Garzik669a5db2006-08-29 18:12:40 -040072 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040073
Jeff Garzik669a5db2006-08-29 18:12:40 -040074static void generic_set_mode(struct ata_port *ap)
75{
76 int dma_enabled = 0;
77 int i;
78
79 /* Bits 5 and 6 indicate if DMA is active on master/slave */
80 if (ap->ioaddr.bmdma_addr)
81 dma_enabled = inb(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
Jeff Garzik85cd7252006-08-31 00:03:49 -040082
Jeff Garzik669a5db2006-08-29 18:12:40 -040083 for (i = 0; i < ATA_MAX_DEVICES; i++) {
84 struct ata_device *dev = &ap->device[i];
85 if (ata_dev_enabled(dev)) {
86 /* We don't really care */
87 dev->pio_mode = XFER_PIO_0;
88 dev->dma_mode = XFER_MW_DMA_0;
Jeff Garzik85cd7252006-08-31 00:03:49 -040089 /* We do need the right mode information for DMA or PIO
Jeff Garzik669a5db2006-08-29 18:12:40 -040090 and this comes from the current configuration flags */
91 if (dma_enabled & (1 << (5 + i))) {
92 dev->xfer_mode = XFER_MW_DMA_0;
93 dev->xfer_shift = ATA_SHIFT_MWDMA;
94 dev->flags &= ~ATA_DFLAG_PIO;
95 } else {
96 dev->xfer_mode = XFER_PIO_0;
97 dev->xfer_shift = ATA_SHIFT_PIO;
98 dev->flags |= ATA_DFLAG_PIO;
99 }
100 }
101 }
102}
103
104static struct scsi_host_template generic_sht = {
105 .module = THIS_MODULE,
106 .name = DRV_NAME,
107 .ioctl = ata_scsi_ioctl,
108 .queuecommand = ata_scsi_queuecmd,
109 .can_queue = ATA_DEF_QUEUE,
110 .this_id = ATA_SHT_THIS_ID,
111 .sg_tablesize = LIBATA_MAX_PRD,
112 .max_sectors = ATA_MAX_SECTORS,
113 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
114 .emulated = ATA_SHT_EMULATED,
115 .use_clustering = ATA_SHT_USE_CLUSTERING,
116 .proc_name = DRV_NAME,
117 .dma_boundary = ATA_DMA_BOUNDARY,
118 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900119 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400120 .bios_param = ata_std_bios_param,
Alan30ced0f2006-11-22 16:57:36 +0000121 .resume = ata_scsi_device_resume,
122 .suspend = ata_scsi_device_suspend,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400123};
124
125static struct ata_port_operations generic_port_ops = {
126 .set_mode = generic_set_mode,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400127
Jeff Garzik669a5db2006-08-29 18:12:40 -0400128 .port_disable = ata_port_disable,
129 .tf_load = ata_tf_load,
130 .tf_read = ata_tf_read,
131 .check_status = ata_check_status,
132 .exec_command = ata_exec_command,
133 .dev_select = ata_std_dev_select,
134
135 .bmdma_setup = ata_bmdma_setup,
136 .bmdma_start = ata_bmdma_start,
137 .bmdma_stop = ata_bmdma_stop,
138 .bmdma_status = ata_bmdma_status,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400139
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140 .data_xfer = ata_pio_data_xfer,
141
142 .freeze = ata_bmdma_freeze,
143 .thaw = ata_bmdma_thaw,
144 .error_handler = generic_error_handler,
145 .post_internal_cmd = ata_bmdma_post_internal_cmd,
146
147 .qc_prep = ata_qc_prep,
148 .qc_issue = ata_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400149
Jeff Garzik669a5db2006-08-29 18:12:40 -0400150 .irq_handler = ata_interrupt,
151 .irq_clear = ata_bmdma_irq_clear,
152
153 .port_start = ata_port_start,
154 .port_stop = ata_port_stop,
155 .host_stop = ata_host_stop
Jeff Garzik85cd7252006-08-31 00:03:49 -0400156};
157
Jeff Garzik669a5db2006-08-29 18:12:40 -0400158static int all_generic_ide; /* Set to claim all devices */
159
160/**
161 * ata_generic_init - attach generic IDE
162 * @dev: PCI device found
163 * @id: match entry
164 *
165 * Called each time a matching IDE interface is found. We check if the
Jeff Garzik85cd7252006-08-31 00:03:49 -0400166 * interface is one we wish to claim and if so we perform any chip
Jeff Garzik669a5db2006-08-29 18:12:40 -0400167 * specific hacks then let the ATA layer do the heavy lifting.
168 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400169
Jeff Garzik669a5db2006-08-29 18:12:40 -0400170static int ata_generic_init_one(struct pci_dev *dev, const struct pci_device_id *id)
171{
172 u16 command;
173 static struct ata_port_info info = {
174 .sht = &generic_sht,
175 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
176 .pio_mask = 0x1f,
177 .mwdma_mask = 0x07,
178 .udma_mask = 0x3f,
179 .port_ops = &generic_port_ops
180 };
181 static struct ata_port_info *port_info[2] = { &info, &info };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400182
Jeff Garzik669a5db2006-08-29 18:12:40 -0400183 /* Don't use the generic entry unless instructed to do so */
184 if (id->driver_data == 1 && all_generic_ide == 0)
185 return -ENODEV;
186
187 /* Devices that need care */
188 if (dev->vendor == PCI_VENDOR_ID_UMC &&
189 dev->device == PCI_DEVICE_ID_UMC_UM8886A &&
190 (!(PCI_FUNC(dev->devfn) & 1)))
191 return -ENODEV;
192
193 if (dev->vendor == PCI_VENDOR_ID_OPTI &&
194 dev->device == PCI_DEVICE_ID_OPTI_82C558 &&
195 (!(PCI_FUNC(dev->devfn) & 1)))
196 return -ENODEV;
197
198 /* Don't re-enable devices in generic mode or we will break some
199 motherboards with disabled and unused IDE controllers */
200 pci_read_config_word(dev, PCI_COMMAND, &command);
201 if (!(command & PCI_COMMAND_IO))
202 return -ENODEV;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400203
Jeff Garzik669a5db2006-08-29 18:12:40 -0400204 if (dev->vendor == PCI_VENDOR_ID_AL)
205 ata_pci_clear_simplex(dev);
206
207 return ata_pci_init_one(dev, port_info, 2);
208}
209
210static struct pci_device_id ata_generic[] = {
211 { PCI_DEVICE(PCI_VENDOR_ID_PCTECH, PCI_DEVICE_ID_PCTECH_SAMURAI_IDE), },
212 { PCI_DEVICE(PCI_VENDOR_ID_HOLTEK, PCI_DEVICE_ID_HOLTEK_6565), },
Jeff Garzik85cd7252006-08-31 00:03:49 -0400213 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8673F), },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400214 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8886A), },
215 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8886BF), },
216 { PCI_DEVICE(PCI_VENDOR_ID_HINT, PCI_DEVICE_ID_HINT_VXPROII_IDE), },
217 { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C561), },
218 { PCI_DEVICE(PCI_VENDOR_ID_OPTI, PCI_DEVICE_ID_OPTI_82C558), },
219 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO), },
220 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_1), },
221 { PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_2), },
222 /* Must come last. If you add entries adjust this table appropriately */
223 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFFFFFF00UL, 1},
224 { 0, },
225};
226
227static struct pci_driver ata_generic_pci_driver = {
228 .name = DRV_NAME,
229 .id_table = ata_generic,
230 .probe = ata_generic_init_one,
Alan30ced0f2006-11-22 16:57:36 +0000231 .remove = ata_pci_remove_one,
232 .suspend = ata_pci_device_suspend,
233 .resume = ata_pci_device_resume,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400234};
235
236static int __init ata_generic_init(void)
237{
Henrik Kretzschmar3f03c672006-10-10 14:28:12 -0700238 return pci_register_driver(&ata_generic_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400239}
240
241
242static void __exit ata_generic_exit(void)
243{
244 pci_unregister_driver(&ata_generic_pci_driver);
245}
246
247
248MODULE_AUTHOR("Alan Cox");
249MODULE_DESCRIPTION("low-level driver for generic ATA");
250MODULE_LICENSE("GPL");
251MODULE_DEVICE_TABLE(pci, ata_generic);
252MODULE_VERSION(DRV_VERSION);
253
254module_init(ata_generic_init);
255module_exit(ata_generic_exit);
256
257module_param(all_generic_ide, int, 0);