blob: 46a2d4ca812bbf1b045b2d333958cfce003484a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
Pavel Machekfc410692008-07-23 19:56:02 +02003 * Copyright (C) 2003-2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6/*
7 * Mostly written by Mark Lord <mlord@pobox.com>
8 * and Gadi Oxman <gadio@netvision.net.il>
9 * and Andre Hedrick <andre@linux-ide.org>
10 *
11 * See linux/MAINTAINERS for address of current maintainer.
12 *
13 * This is the multiple IDE interface driver, as evolved from hd.c.
14 * It supports up to MAX_HWIFS IDE interfaces, on one or more IRQs
15 * (usually 14 & 15).
16 * There can be up to two drives per interface, as per the ATA-2 spec.
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * ...
19 *
20 * From hd.c:
21 * |
22 * | It traverses the request-list, using interrupts to jump between functions.
23 * | As nearly all functions can be called within interrupts, we may not sleep.
24 * | Special care is recommended. Have Fun!
25 * |
26 * | modified by Drew Eckhardt to check nr of hd's from the CMOS.
27 * |
28 * | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
29 * | in the early extended-partition checks and added DM partitions.
30 * |
31 * | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
32 * |
33 * | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
34 * | and general streamlining by Mark Lord (mlord@pobox.com).
35 *
36 * October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
37 *
38 * Mark Lord (mlord@pobox.com) (IDE Perf.Pkg)
39 * Delman Lee (delman@ieee.org) ("Mr. atdisk2")
40 * Scott Snyder (snyder@fnald0.fnal.gov) (ATAPI IDE cd-rom)
41 *
42 * This was a rewrite of just about everything from hd.c, though some original
43 * code is still sprinkled about. Think of it as a major evolution, with
44 * inspiration from lots of linux users, esp. hamish@zot.apana.org.au
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/module.h>
48#include <linux/types.h>
49#include <linux/string.h>
50#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/interrupt.h>
52#include <linux/major.h>
53#include <linux/errno.h>
54#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/slab.h>
56#include <linux/init.h>
57#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/ide.h>
Bartlomiej Zolnierkiewicz3ceca722008-10-10 22:39:27 +020059#include <linux/hdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63
64/* default maximum number of failures */
65#define IDE_DEFAULT_MAX_FAILURES 1
66
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +020067struct class *ide_port_class;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
70 IDE2_MAJOR, IDE3_MAJOR,
71 IDE4_MAJOR, IDE5_MAJOR,
72 IDE6_MAJOR, IDE7_MAJOR,
73 IDE8_MAJOR, IDE9_MAJOR };
74
Matthias Kaehlckeef298882007-07-09 23:17:55 +020075DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020077static void ide_port_init_devices_data(ide_hwif_t *);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * Do not even *think* about calling this!
81 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010082void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* bulk initialize hwif & drive info with zeros */
85 memset(hwif, 0, sizeof(ide_hwif_t));
86
87 /* fill in any non-zero initial values */
88 hwif->index = index;
89 hwif->major = ide_hwif_to_major[index];
90
91 hwif->name[0] = 'i';
92 hwif->name[1] = 'd';
93 hwif->name[2] = 'e';
94 hwif->name[3] = '0' + index;
95
Aleksey Makarovf36d4022006-01-09 15:59:27 -080096 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +020098 hwif->tp_ops = &default_tp_ops;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020099
100 ide_port_init_devices_data(hwif);
101}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200102
103static void ide_port_init_devices_data(ide_hwif_t *hwif)
104{
105 int unit;
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 for (unit = 0; unit < MAX_DRIVES; ++unit) {
108 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200109 u8 j = (hwif->index * MAX_DRIVES) + unit;
110
111 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz7f612f22008-10-13 21:39:40 +0200114 drive->select = (unit << 4) | ATA_DEVICE_OBS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 drive->hwif = hwif;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200116 drive->ready_stat = ATA_DRDY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 drive->bad_wstat = BAD_W_STAT;
118 drive->special.b.recalibrate = 1;
119 drive->special.b.set_geometry = 1;
120 drive->name[0] = 'h';
121 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200122 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800126 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200129
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200130static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200131{
132 int i;
133
134 for (i = 0; i < MAX_DRIVES; i++) {
135 ide_drive_t *drive = &hwif->drives[i];
136
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200137 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200138 device_unregister(&drive->gendev);
139 wait_for_completion(&drive->gendev_rel_comp);
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200140 }
141 }
142}
143
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200144void ide_port_unregister_devices(ide_hwif_t *hwif)
145{
146 mutex_lock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200147 __ide_port_unregister_devices(hwif);
148 hwif->present = 0;
149 ide_port_init_devices_data(hwif);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200150 mutex_unlock(&ide_cfg_mtx);
151}
152EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700155 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200156 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 * Perform the final unregister of an IDE interface. At the moment
159 * we don't refcount interfaces so this will also get split up.
160 *
161 * Locking:
162 * The caller must not hold the IDE locks
163 * The drive present/vanishing is not yet properly locked
164 * Take care with the callbacks. These have been split to avoid
165 * deadlocking the IDE layer. The shutdown callback is called
166 * before we take the lock and free resources. It is up to the
167 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700168 * the interface will not be reopened (present/vanishing locking
169 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * call the cleanup callback with the ide locks held.
171 *
172 * Unregister restores the hwif structures to the default state.
173 * This is raving bonkers.
174 */
175
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200176void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200178 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200180 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 BUG_ON(in_interrupt());
183 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200185 mutex_lock(&ide_cfg_mtx);
186
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200187 if (hwif->present) {
188 __ide_port_unregister_devices(hwif);
189 hwif->present = 0;
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200192 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 hwgroup = hwif->hwgroup;
195 /*
196 * free the irq if we were the only hwif using it
197 */
198 g = hwgroup->hwif;
199 do {
200 if (g->irq == hwif->irq)
201 ++irq_count;
202 g = g->next;
203 } while (g != hwgroup->hwif);
204 if (irq_count == 1)
205 free_irq(hwif->irq, hwgroup);
206
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100207 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200209 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800211 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /*
214 * Remove us from the kernel's knowledge
215 */
216 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
217 kfree(hwif->sg_table);
218 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Bartlomiej Zolnierkiewicz2bbd57c2008-10-13 21:39:47 +0200220 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200222 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100225void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
226{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200227 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100228 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100229 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200230 hwif->dev = hw->dev;
231 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100232 hwif->ack_intr = hw->ack_intr;
Bartlomiej Zolnierkiewiczd6276b52008-07-23 19:55:56 +0200233 hwif->config_data = hw->config;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100234}
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*
237 * Locks for IDE setting functionality
238 */
239
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200240DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200242ide_devset_get(io_32bit, io_32bit);
243
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200244static int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200246 if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200247 return -EPERM;
248
249 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
250 return -EINVAL;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255}
256
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200257ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200258
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200259static int set_ksettings(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200260{
261 if (arg < 0 || arg > 1)
262 return -EINVAL;
263
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200264 if (arg)
265 drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS;
266 else
267 drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200268
269 return 0;
270}
271
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200272ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200273
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200274static int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200277 int err = -EPERM;
278
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200279 if (arg < 0 || arg > 1)
280 return -EINVAL;
281
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200282 if (ata_id_has_dma(drive->id) == 0)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200283 goto out;
284
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200285 if (drive->hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200286 goto out;
287
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200288 err = 0;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100291 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200292 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100293 } else
294 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200295
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200296out:
297 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200299 if (arg < 0 || arg > 1)
300 return -EINVAL;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -EPERM;
303#endif
304}
305
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200306/*
307 * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
308 */
309static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
310{
311 switch (req_pio) {
312 case 202:
313 case 201:
314 case 200:
315 case 102:
316 case 101:
317 case 100:
318 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
319 case 9:
320 case 8:
321 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
322 case 7:
323 case 6:
324 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
325 default:
326 return 0;
327 }
328}
329
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200330static int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200332 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100333 ide_hwgroup_t *hwgroup = hwif->hwgroup;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200334 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200336 if (arg < 0 || arg > 255)
337 return -EINVAL;
338
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200339 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200340 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200342
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200343 if (set_pio_mode_abuse(drive->hwif, arg)) {
344 if (arg == 8 || arg == 9) {
345 unsigned long flags;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100346
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200347 /* take lock for IDE_DFLAG_[NO_]UNMASK/[NO_]IO_32BIT */
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100348 spin_lock_irqsave(&hwgroup->lock, flags);
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200349 port_ops->set_pio_mode(drive, arg);
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100350 spin_unlock_irqrestore(&hwgroup->lock, flags);
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200351 } else
352 port_ops->set_pio_mode(drive, arg);
353 } else {
354 int keep_dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100355
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200356 ide_set_pio(drive, arg);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200357
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200358 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
359 if (keep_dma)
360 ide_dma_on(drive);
361 }
362 }
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
365}
366
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200367ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200368
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200369static int set_unmaskirq(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200370{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200371 if (drive->dev_flags & IDE_DFLAG_NO_UNMASK)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200372 return -EPERM;
373
374 if (arg < 0 || arg > 1)
375 return -EINVAL;
376
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200377 if (arg)
378 drive->dev_flags |= IDE_DFLAG_UNMASK;
379 else
380 drive->dev_flags &= ~IDE_DFLAG_UNMASK;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200381
382 return 0;
383}
384
Bartlomiej Zolnierkiewiczf8790482008-10-13 21:39:45 +0200385ide_ext_devset_rw_sync(io_32bit, io_32bit);
386ide_ext_devset_rw_sync(keepsettings, ksettings);
387ide_ext_devset_rw_sync(unmaskirq, unmaskirq);
388ide_ext_devset_rw_sync(using_dma, using_dma);
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200389__IDE_DEVSET(pio_mode, DS_SYNC, NULL, set_pio_mode);
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200390
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200391/**
392 * ide_device_get - get an additional reference to a ide_drive_t
393 * @drive: device to get a reference to
394 *
395 * Gets a reference to the ide_drive_t and increments the use count of the
396 * underlying LLDD module.
397 */
398int ide_device_get(ide_drive_t *drive)
399{
400 struct device *host_dev;
401 struct module *module;
402
403 if (!get_device(&drive->gendev))
404 return -ENXIO;
405
406 host_dev = drive->hwif->host->dev[0];
407 module = host_dev ? host_dev->driver->owner : NULL;
408
409 if (module && !try_module_get(module)) {
410 put_device(&drive->gendev);
411 return -ENXIO;
412 }
413
414 return 0;
415}
416EXPORT_SYMBOL_GPL(ide_device_get);
417
418/**
419 * ide_device_put - release a reference to a ide_drive_t
420 * @drive: device to release a reference on
421 *
422 * Release a reference to the ide_drive_t and decrements the use count of
423 * the underlying LLDD module.
424 */
425void ide_device_put(ide_drive_t *drive)
426{
427#ifdef CONFIG_MODULE_UNLOAD
428 struct device *host_dev = drive->hwif->host->dev[0];
429 struct module *module = host_dev ? host_dev->driver->owner : NULL;
430
431 if (module)
432 module_put(module);
433#endif
434 put_device(&drive->gendev);
435}
436EXPORT_SYMBOL_GPL(ide_device_put);
437
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200438static int ide_bus_match(struct device *dev, struct device_driver *drv)
439{
440 return 1;
441}
442
Kay Sievers7eff2e72007-08-14 15:15:12 +0200443static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100444{
445 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100446
Bartlomiej Zolnierkiewiczebdab072009-01-02 16:12:48 +0100447 add_uevent_var(env, "MEDIA=%s", ide_media_string(drive));
Kay Sievers7eff2e72007-08-14 15:15:12 +0200448 add_uevent_var(env, "DRIVENAME=%s", drive->name);
Bartlomiej Zolnierkiewiczebdab072009-01-02 16:12:48 +0100449 add_uevent_var(env, "MODALIAS=ide:m-%s", ide_media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100450 return 0;
451}
452
Russell King4031bbe2006-01-06 11:41:00 +0000453static int generic_ide_probe(struct device *dev)
454{
455 ide_drive_t *drive = to_ide_device(dev);
456 ide_driver_t *drv = to_ide_driver(dev->driver);
457
458 return drv->probe ? drv->probe(drive) : -ENODEV;
459}
460
461static int generic_ide_remove(struct device *dev)
462{
463 ide_drive_t *drive = to_ide_device(dev);
464 ide_driver_t *drv = to_ide_driver(dev->driver);
465
466 if (drv->remove)
467 drv->remove(drive);
468
469 return 0;
470}
471
472static void generic_ide_shutdown(struct device *dev)
473{
474 ide_drive_t *drive = to_ide_device(dev);
475 ide_driver_t *drv = to_ide_driver(dev->driver);
476
477 if (dev->driver && drv->shutdown)
478 drv->shutdown(drive);
479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481struct bus_type ide_bus_type = {
482 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200483 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100484 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000485 .probe = generic_ide_probe,
486 .remove = generic_ide_remove,
487 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100488 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .suspend = generic_ide_suspend,
490 .resume = generic_ide_resume,
491};
492
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200493EXPORT_SYMBOL_GPL(ide_bus_type);
494
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200495int ide_vlb_clk;
496EXPORT_SYMBOL_GPL(ide_vlb_clk);
497
498module_param_named(vlb_clock, ide_vlb_clk, int, 0);
499MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
500
501int ide_pci_clk;
502EXPORT_SYMBOL_GPL(ide_pci_clk);
503
504module_param_named(pci_clock, ide_pci_clk, int, 0);
505MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
506
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200507static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
508{
509 int a, b, i, j = 1;
510 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
511
512 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
513 sscanf(s, "%d.%d", &a, &b) != 2)
514 return -EINVAL;
515
516 i = a * MAX_DRIVES + b;
517
518 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
519 return -EINVAL;
520
521 if (j)
522 *dev_param_mask |= (1 << i);
523 else
524 *dev_param_mask &= (1 << i);
525
526 return 0;
527}
528
529static unsigned int ide_nodma;
530
531module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
532MODULE_PARM_DESC(nodma, "disallow DMA for a device");
533
534static unsigned int ide_noflush;
535
536module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
537MODULE_PARM_DESC(noflush, "disable flush requests for a device");
538
539static unsigned int ide_noprobe;
540
541module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
542MODULE_PARM_DESC(noprobe, "skip probing for a device");
543
544static unsigned int ide_nowerr;
545
546module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200547MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200548
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200549static unsigned int ide_cdroms;
550
551module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
552MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
553
554struct chs_geom {
555 unsigned int cyl;
556 u8 head;
557 u8 sect;
558};
559
560static unsigned int ide_disks;
561static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
562
563static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
564{
565 int a, b, c = 0, h = 0, s = 0, i, j = 1;
566
567 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
568 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
569 return -EINVAL;
570
571 i = a * MAX_DRIVES + b;
572
573 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
574 return -EINVAL;
575
576 if (c > INT_MAX || h > 255 || s > 255)
577 return -EINVAL;
578
579 if (j)
580 ide_disks |= (1 << i);
581 else
582 ide_disks &= (1 << i);
583
584 ide_disks_chs[i].cyl = c;
585 ide_disks_chs[i].head = h;
586 ide_disks_chs[i].sect = s;
587
588 return 0;
589}
590
591module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
592MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
593
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200594static void ide_dev_apply_params(ide_drive_t *drive, u8 unit)
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200595{
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200596 int i = drive->hwif->index * MAX_DRIVES + unit;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200597
598 if (ide_nodma & (1 << i)) {
599 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200600 drive->dev_flags |= IDE_DFLAG_NODMA;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200601 }
602 if (ide_noflush & (1 << i)) {
603 printk(KERN_INFO "ide: disabling flush requests for %s\n",
604 drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200605 drive->dev_flags |= IDE_DFLAG_NOFLUSH;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200606 }
607 if (ide_noprobe & (1 << i)) {
608 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200609 drive->dev_flags |= IDE_DFLAG_NOPROBE;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200610 }
611 if (ide_nowerr & (1 << i)) {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200612 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200613 drive->name);
614 drive->bad_wstat = BAD_R_STAT;
615 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200616 if (ide_cdroms & (1 << i)) {
617 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200618 drive->dev_flags |= IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200619 drive->media = ide_cdrom;
620 /* an ATAPI device ignores DRDY */
621 drive->ready_stat = 0;
622 }
623 if (ide_disks & (1 << i)) {
624 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
625 drive->head = drive->bios_head = ide_disks_chs[i].head;
626 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200627
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200628 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
629 drive->name,
630 drive->cyl, drive->head, drive->sect);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200631
632 drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200633 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200634 drive->ready_stat = ATA_DRDY;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200635 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200636}
637
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200638static unsigned int ide_ignore_cable;
639
640static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
641{
642 int i, j = 1;
643
644 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
645 return -EINVAL;
646
647 if (i >= MAX_HWIFS || j < 0 || j > 1)
648 return -EINVAL;
649
650 if (j)
651 ide_ignore_cable |= (1 << i);
652 else
653 ide_ignore_cable &= (1 << i);
654
655 return 0;
656}
657
658module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
659MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
660
661void ide_port_apply_params(ide_hwif_t *hwif)
662{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200663 int i;
664
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200665 if (ide_ignore_cable & (1 << hwif->index)) {
666 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
667 hwif->name);
668 hwif->cbl = ATA_CBL_PATA40_SHORT;
669 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200670
671 for (i = 0; i < MAX_DRIVES; i++)
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200672 ide_dev_apply_params(&hwif->drives[i], i);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/*
676 * This is gets invoked once during initialization, to set *everything* up
677 */
678static int __init ide_init(void)
679{
Randy Dunlap349ae232006-10-03 01:14:23 -0700680 int ret;
681
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100682 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100683
Randy Dunlap349ae232006-10-03 01:14:23 -0700684 ret = bus_register(&ide_bus_type);
685 if (ret < 0) {
686 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
687 return ret;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200690 ide_port_class = class_create(THIS_MODULE, "ide_port");
691 if (IS_ERR(ide_port_class)) {
692 ret = PTR_ERR(ide_port_class);
693 goto out_port_class;
694 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200695
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200696 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200699
700out_port_class:
701 bus_unregister(&ide_bus_type);
702
703 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200706static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200710 class_destroy(ide_port_class);
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 bus_unregister(&ide_bus_type);
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200716module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200718MODULE_LICENSE("GPL");