libata-link: implement and use link/device iterators
[deliverable/linux.git] / drivers / ata / ata_generic.c
1 /*
2 * ata_generic.c - Generic PATA/SATA controller driver.
3 * Copyright 2005 Red Hat Inc <alan@redhat.com>, all rights reserved.
4 *
5 * Elements from ide/pci/generic.c
6 * 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
10 *
11 * 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
16 * work.
17 */
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"
29 #define DRV_VERSION "0.2.13"
30
31 /*
32 * A generic parallel ATA driver using libata
33 */
34
35 /**
36 * generic_set_mode - mode setting
37 * @ap: interface to set up
38 * @unused: returned device on error
39 *
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
43 * and respect them.
44 */
45
46 static int generic_set_mode(struct ata_port *ap, struct ata_device **unused)
47 {
48 int dma_enabled = 0;
49 struct ata_device *dev;
50
51 /* Bits 5 and 6 indicate if DMA is active on master/slave */
52 if (ap->ioaddr.bmdma_addr)
53 dma_enabled = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
54
55 ata_link_for_each_dev(dev, &ap->link) {
56 if (ata_dev_enabled(dev)) {
57 /* We don't really care */
58 dev->pio_mode = XFER_PIO_0;
59 dev->dma_mode = XFER_MW_DMA_0;
60 /* We do need the right mode information for DMA or PIO
61 and this comes from the current configuration flags */
62 if (dma_enabled & (1 << (5 + dev->devno))) {
63 ata_id_to_dma_mode(dev, XFER_MW_DMA_0);
64 dev->flags &= ~ATA_DFLAG_PIO;
65 } else {
66 ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
67 dev->xfer_mode = XFER_PIO_0;
68 dev->xfer_shift = ATA_SHIFT_PIO;
69 dev->flags |= ATA_DFLAG_PIO;
70 }
71 }
72 }
73 return 0;
74 }
75
76 static struct scsi_host_template generic_sht = {
77 .module = THIS_MODULE,
78 .name = DRV_NAME,
79 .ioctl = ata_scsi_ioctl,
80 .queuecommand = ata_scsi_queuecmd,
81 .can_queue = ATA_DEF_QUEUE,
82 .this_id = ATA_SHT_THIS_ID,
83 .sg_tablesize = LIBATA_MAX_PRD,
84 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
85 .emulated = ATA_SHT_EMULATED,
86 .use_clustering = ATA_SHT_USE_CLUSTERING,
87 .proc_name = DRV_NAME,
88 .dma_boundary = ATA_DMA_BOUNDARY,
89 .slave_configure = ata_scsi_slave_config,
90 .slave_destroy = ata_scsi_slave_destroy,
91 .bios_param = ata_std_bios_param,
92 };
93
94 static struct ata_port_operations generic_port_ops = {
95 .set_mode = generic_set_mode,
96
97 .port_disable = ata_port_disable,
98 .tf_load = ata_tf_load,
99 .tf_read = ata_tf_read,
100 .check_status = ata_check_status,
101 .exec_command = ata_exec_command,
102 .dev_select = ata_std_dev_select,
103
104 .bmdma_setup = ata_bmdma_setup,
105 .bmdma_start = ata_bmdma_start,
106 .bmdma_stop = ata_bmdma_stop,
107 .bmdma_status = ata_bmdma_status,
108
109 .data_xfer = ata_data_xfer,
110
111 .freeze = ata_bmdma_freeze,
112 .thaw = ata_bmdma_thaw,
113 .error_handler = ata_bmdma_error_handler,
114 .post_internal_cmd = ata_bmdma_post_internal_cmd,
115 .cable_detect = ata_cable_unknown,
116
117 .qc_prep = ata_qc_prep,
118 .qc_issue = ata_qc_issue_prot,
119
120 .irq_handler = ata_interrupt,
121 .irq_clear = ata_bmdma_irq_clear,
122 .irq_on = ata_irq_on,
123 .irq_ack = ata_irq_ack,
124
125 .port_start = ata_port_start,
126 };
127
128 static 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
136 * interface is one we wish to claim and if so we perform any chip
137 * specific hacks then let the ATA layer do the heavy lifting.
138 */
139
140 static int ata_generic_init_one(struct pci_dev *dev, const struct pci_device_id *id)
141 {
142 u16 command;
143 static const struct ata_port_info info = {
144 .sht = &generic_sht,
145 .flags = ATA_FLAG_SLAVE_POSS,
146 .pio_mask = 0x1f,
147 .mwdma_mask = 0x07,
148 .udma_mask = ATA_UDMA5,
149 .port_ops = &generic_port_ops
150 };
151 const struct ata_port_info *ppi[] = { &info, NULL };
152
153 /* 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;
173
174 if (dev->vendor == PCI_VENDOR_ID_AL)
175 ata_pci_clear_simplex(dev);
176
177 return ata_pci_init_one(dev, ppi);
178 }
179
180 static 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), },
183 { PCI_DEVICE(PCI_VENDOR_ID_UMC, PCI_DEVICE_ID_UMC_UM8673F), },
184 { 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
197 static struct pci_driver ata_generic_pci_driver = {
198 .name = DRV_NAME,
199 .id_table = ata_generic,
200 .probe = ata_generic_init_one,
201 .remove = ata_pci_remove_one,
202 #ifdef CONFIG_PM
203 .suspend = ata_pci_device_suspend,
204 .resume = ata_pci_device_resume,
205 #endif
206 };
207
208 static int __init ata_generic_init(void)
209 {
210 return pci_register_driver(&ata_generic_pci_driver);
211 }
212
213
214 static void __exit ata_generic_exit(void)
215 {
216 pci_unregister_driver(&ata_generic_pci_driver);
217 }
218
219
220 MODULE_AUTHOR("Alan Cox");
221 MODULE_DESCRIPTION("low-level driver for generic ATA");
222 MODULE_LICENSE("GPL");
223 MODULE_DEVICE_TABLE(pci, ata_generic);
224 MODULE_VERSION(DRV_VERSION);
225
226 module_init(ata_generic_init);
227 module_exit(ata_generic_exit);
228
229 module_param(all_generic_ide, int, 0);
This page took 0.058426 seconds and 6 git commands to generate.