blob: 080314e3d6b7d20b76d031e50208f1a20477b202 [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 Zolnierkiewicz931ee0d2008-07-15 21:21:47 +020077__cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
78EXPORT_SYMBOL(ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020080static void ide_port_init_devices_data(ide_hwif_t *);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Do not even *think* about calling this!
84 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010085void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* bulk initialize hwif & drive info with zeros */
88 memset(hwif, 0, sizeof(ide_hwif_t));
89
90 /* fill in any non-zero initial values */
91 hwif->index = index;
92 hwif->major = ide_hwif_to_major[index];
93
94 hwif->name[0] = 'i';
95 hwif->name[1] = 'd';
96 hwif->name[2] = 'e';
97 hwif->name[3] = '0' + index;
98
99 hwif->bus_state = BUSSTATE_ON;
100
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800101 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200103 hwif->tp_ops = &default_tp_ops;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200104
105 ide_port_init_devices_data(hwif);
106}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200107
108static void ide_port_init_devices_data(ide_hwif_t *hwif)
109{
110 int unit;
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 for (unit = 0; unit < MAX_DRIVES; ++unit) {
113 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200114 u8 j = (hwif->index * MAX_DRIVES) + unit;
115
116 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 drive->media = ide_disk;
119 drive->select.all = (unit<<4)|0xa0;
120 drive->hwif = hwif;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200121 drive->ready_stat = ATA_DRDY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 drive->bad_wstat = BAD_W_STAT;
123 drive->special.b.recalibrate = 1;
124 drive->special.b.set_geometry = 1;
125 drive->name[0] = 'h';
126 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200127 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800131 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200134
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200135/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200136static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200137{
138 int i;
139
140 for (i = 0; i < MAX_DRIVES; i++) {
141 ide_drive_t *drive = &hwif->drives[i];
142
143 if (drive->present) {
144 spin_unlock_irq(&ide_lock);
145 device_unregister(&drive->gendev);
146 wait_for_completion(&drive->gendev_rel_comp);
147 spin_lock_irq(&ide_lock);
148 }
149 }
150}
151
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200152void ide_port_unregister_devices(ide_hwif_t *hwif)
153{
154 mutex_lock(&ide_cfg_mtx);
155 spin_lock_irq(&ide_lock);
156 __ide_port_unregister_devices(hwif);
157 hwif->present = 0;
158 ide_port_init_devices_data(hwif);
159 spin_unlock_irq(&ide_lock);
160 mutex_unlock(&ide_cfg_mtx);
161}
162EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700165 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200166 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
168 * Perform the final unregister of an IDE interface. At the moment
169 * we don't refcount interfaces so this will also get split up.
170 *
171 * Locking:
172 * The caller must not hold the IDE locks
173 * The drive present/vanishing is not yet properly locked
174 * Take care with the callbacks. These have been split to avoid
175 * deadlocking the IDE layer. The shutdown callback is called
176 * before we take the lock and free resources. It is up to the
177 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700178 * the interface will not be reopened (present/vanishing locking
179 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * call the cleanup callback with the ide locks held.
181 *
182 * Unregister restores the hwif structures to the default state.
183 * This is raving bonkers.
184 */
185
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200186void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200188 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200190 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 BUG_ON(in_interrupt());
193 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200195 mutex_lock(&ide_cfg_mtx);
196
197 spin_lock_irq(&ide_lock);
198 if (hwif->present) {
199 __ide_port_unregister_devices(hwif);
200 hwif->present = 0;
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 spin_unlock_irq(&ide_lock);
203
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200204 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 hwgroup = hwif->hwgroup;
207 /*
208 * free the irq if we were the only hwif using it
209 */
210 g = hwgroup->hwif;
211 do {
212 if (g->irq == hwif->irq)
213 ++irq_count;
214 g = g->next;
215 } while (g != hwgroup->hwif);
216 if (irq_count == 1)
217 free_irq(hwif->irq, hwgroup);
218
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100219 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200221 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800223 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /*
226 * Remove us from the kernel's knowledge
227 */
228 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
229 kfree(hwif->sg_table);
230 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200232 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200233 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200235 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100238void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
239{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200240 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100241 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100242 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200243 hwif->dev = hw->dev;
244 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100245 hwif->ack_intr = hw->ack_intr;
Bartlomiej Zolnierkiewiczd6276b52008-07-23 19:55:56 +0200246 hwif->config_data = hw->config;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100247}
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * Locks for IDE setting functionality
251 */
252
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200253DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200255EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * ide_spin_wait_hwgroup - wait for group
259 * @drive: drive in the group
260 *
261 * Wait for an IDE device group to go non busy and then return
262 * holding the ide_lock which guards the hwgroup->busy status
263 * and right to use it.
264 */
265
266int ide_spin_wait_hwgroup (ide_drive_t *drive)
267{
268 ide_hwgroup_t *hwgroup = HWGROUP(drive);
269 unsigned long timeout = jiffies + (3 * HZ);
270
271 spin_lock_irq(&ide_lock);
272
273 while (hwgroup->busy) {
274 unsigned long lflags;
275 spin_unlock_irq(&ide_lock);
276 local_irq_set(lflags);
277 if (time_after(jiffies, timeout)) {
278 local_irq_restore(lflags);
279 printk(KERN_ERR "%s: channel busy\n", drive->name);
280 return -EBUSY;
281 }
282 local_irq_restore(lflags);
283 spin_lock_irq(&ide_lock);
284 }
285 return 0;
286}
287
288EXPORT_SYMBOL(ide_spin_wait_hwgroup);
289
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200290int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200292 if (drive->no_io_32bit)
293 return -EPERM;
294
295 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
296 return -EINVAL;
297
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100298 if (ide_spin_wait_hwgroup(drive))
299 return -EBUSY;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100302
303 spin_unlock_irq(&ide_lock);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 0;
306}
307
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200308static int set_ksettings(ide_drive_t *drive, int arg)
309{
310 if (arg < 0 || arg > 1)
311 return -EINVAL;
312
313 if (ide_spin_wait_hwgroup(drive))
314 return -EBUSY;
315 drive->keep_settings = arg;
316 spin_unlock_irq(&ide_lock);
317
318 return 0;
319}
320
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200321int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200324 ide_hwif_t *hwif = drive->hwif;
325 int err = -EPERM;
326
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200327 if (arg < 0 || arg > 1)
328 return -EINVAL;
329
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200330 if (ata_id_has_dma(drive->id) == 0)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200331 goto out;
332
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200333 if (hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200334 goto out;
335
336 err = -EBUSY;
337 if (ide_spin_wait_hwgroup(drive))
338 goto out;
339 /*
340 * set ->busy flag, unlock and let it ride
341 */
342 hwif->hwgroup->busy = 1;
343 spin_unlock_irq(&ide_lock);
344
345 err = 0;
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100348 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200349 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100350 } else
351 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200352
353 /*
354 * lock, clear ->busy flag and unlock before leaving
355 */
356 spin_lock_irq(&ide_lock);
357 hwif->hwgroup->busy = 0;
358 spin_unlock_irq(&ide_lock);
359out:
360 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200362 if (arg < 0 || arg > 1)
363 return -EINVAL;
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return -EPERM;
366#endif
367}
368
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200369int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200371 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200372 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200373 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200375 if (arg < 0 || arg > 255)
376 return -EINVAL;
377
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200378 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200379 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (drive->special.b.set_tune)
383 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100384
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200385 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
386 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 drive->tune_req = (u8) arg;
389 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200390
391 blk_execute_rq(drive->queue, NULL, rq, 0);
392 blk_put_request(rq);
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return 0;
395}
396
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200397static int set_unmaskirq(ide_drive_t *drive, int arg)
398{
399 if (drive->no_unmask)
400 return -EPERM;
401
402 if (arg < 0 || arg > 1)
403 return -EINVAL;
404
405 if (ide_spin_wait_hwgroup(drive))
406 return -EBUSY;
407 drive->unmask = arg;
408 spin_unlock_irq(&ide_lock);
409
410 return 0;
411}
412
David Brownellb887d2e2006-08-14 23:11:05 -0700413static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100416 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200417 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct request_pm_state rqpm;
419 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200420 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100422 /* Call ACPI _GTM only once */
423 if (!(drive->dn % 2))
424 ide_acpi_get_timing(hwif);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 memset(&rqpm, 0, sizeof(rqpm));
427 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200428 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
429 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
430 rq->special = &args;
431 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700433 if (mesg.event == PM_EVENT_PRETHAW)
434 mesg.event = PM_EVENT_FREEZE;
435 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200437 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
438 blk_put_request(rq);
Shaohua Li5e321322007-10-11 23:53:58 +0200439 /* only call ACPI _PS3 after both drivers are suspended */
440 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
441 && hwif->drives[1].present)
442 || !hwif->drives[0].present
443 || !hwif->drives[1].present))
444 ide_acpi_set_state(hwif, 0);
445 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
448static int generic_ide_resume(struct device *dev)
449{
450 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100451 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200452 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct request_pm_state rqpm;
454 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200455 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100457 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200458 if (!(drive->dn % 2)) {
459 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100460 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200461 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100462
463 ide_acpi_exec_tfs(drive);
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 memset(&rqpm, 0, sizeof(rqpm));
466 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200467 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
468 rq->cmd_type = REQ_TYPE_PM_RESUME;
469 rq->cmd_flags |= REQ_PREEMPT;
470 rq->special = &args;
471 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700473 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200475 err = blk_execute_rq(drive->queue, NULL, rq, 1);
476 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200477
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200478 if (err == 0 && dev->driver) {
479 ide_driver_t *drv = to_ide_driver(dev->driver);
480
481 if (drv->resume)
482 drv->resume(drive);
483 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200484
485 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200488static int generic_drive_reset(ide_drive_t *drive)
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200489{
490 struct request *rq;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200491 int ret = 0;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200492
493 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
494 rq->cmd_type = REQ_TYPE_SPECIAL;
495 rq->cmd_len = 1;
496 rq->cmd[0] = REQ_DRIVE_RESET;
497 rq->cmd_flags |= REQ_SOFTBARRIER;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200498 if (blk_execute_rq(drive->queue, NULL, rq, 1))
499 ret = rq->errors;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200500 blk_put_request(rq);
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200501 return ret;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200502}
503
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200504static inline void ide_id_to_hd_driveid(u16 *id)
505{
506#ifdef __BIG_ENDIAN
507 /* accessed in struct hd_driveid as 8-bit values */
508 id[ATA_ID_MAX_MULTSECT] = __cpu_to_le16(id[ATA_ID_MAX_MULTSECT]);
509 id[ATA_ID_CAPABILITY] = __cpu_to_le16(id[ATA_ID_CAPABILITY]);
510 id[ATA_ID_OLD_PIO_MODES] = __cpu_to_le16(id[ATA_ID_OLD_PIO_MODES]);
511 id[ATA_ID_OLD_DMA_MODES] = __cpu_to_le16(id[ATA_ID_OLD_DMA_MODES]);
512 id[ATA_ID_MULTSECT] = __cpu_to_le16(id[ATA_ID_MULTSECT]);
513
514 /* as 32-bit values */
515 *(u32 *)&id[ATA_ID_LBA_CAPACITY] = ata_id_u32(id, ATA_ID_LBA_CAPACITY);
516 *(u32 *)&id[ATA_ID_SPG] = ata_id_u32(id, ATA_ID_SPG);
517
518 /* as 64-bit value */
519 *(u64 *)&id[ATA_ID_LBA_CAPACITY_2] =
520 ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
521#endif
522}
523
524static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd,
525 unsigned long arg)
526{
527 u16 *id = NULL;
528 int size = (cmd == HDIO_GET_IDENTITY) ? (ATA_ID_WORDS * 2) : 142;
529 int rc = 0;
530
531 if (drive->id_read == 0) {
532 rc = -ENOMSG;
533 goto out;
534 }
535
536 id = kmalloc(size, GFP_KERNEL);
537 if (id == NULL) {
538 rc = -ENOMEM;
539 goto out;
540 }
541
542 memcpy(id, drive->id, size);
543 ide_id_to_hd_driveid(id);
544
545 if (copy_to_user((void __user *)arg, id, size))
546 rc = -EFAULT;
547
548 kfree(id);
549out:
550 return rc;
551}
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
554 unsigned int cmd, unsigned long arg)
555{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200556 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 ide_driver_t *drv;
Linus Torvalds19850262007-07-17 15:57:42 -0700558 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200559 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200561 switch (cmd) {
562 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
563 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
564 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
565 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
566 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
567 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
568 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
569 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
570 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 case HDIO_OBSOLETE_IDENTITY:
575 case HDIO_GET_IDENTITY:
576 if (bdev != bdev->bd_contains)
577 return -EINVAL;
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200578 return ide_get_identity_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 case HDIO_GET_NICE:
580 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
581 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
Bartlomiej Zolnierkiewicz92b83c82008-02-02 19:56:45 +0100582 drive->nice1 << IDE_NICE_1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 (long __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#ifdef CONFIG_IDE_TASK_IOCTL
585 case HDIO_DRIVE_TASKFILE:
586 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
587 return -EACCES;
588 switch(drive->media) {
589 case ide_disk:
590 return ide_taskfile_ioctl(drive, cmd, arg);
591 default:
592 return -ENOMSG;
593 }
594#endif /* CONFIG_IDE_TASK_IOCTL */
595
596 case HDIO_DRIVE_CMD:
597 if (!capable(CAP_SYS_RAWIO))
598 return -EACCES;
599 return ide_cmd_ioctl(drive, cmd, arg);
600
601 case HDIO_DRIVE_TASK:
602 if (!capable(CAP_SYS_RAWIO))
603 return -EACCES;
604 return ide_task_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 case HDIO_SET_NICE:
606 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
607 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
608 return -EPERM;
609 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
610 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
611 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
612 drive->dsc_overlap = 0;
613 return -EPERM;
614 }
615 drive->nice1 = (arg >> IDE_NICE_1) & 1;
616 return 0;
617 case HDIO_DRIVE_RESET:
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100618 if (!capable(CAP_SYS_ADMIN))
619 return -EACCES;
620
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200621 return generic_drive_reset(drive);
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 case HDIO_GET_BUSSTATE:
624 if (!capable(CAP_SYS_ADMIN))
625 return -EACCES;
626 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
627 return -EFAULT;
628 return 0;
629
630 case HDIO_SET_BUSSTATE:
631 if (!capable(CAP_SYS_ADMIN))
632 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -EOPNOTSUPP;
634 default:
635 return -EINVAL;
636 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200637
638read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200639 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200640 spin_lock_irqsave(&ide_lock, flags);
641 err = *val;
642 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200643 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200644 return err >= 0 ? put_user(err, (long __user *)arg) : err;
645
646set_val:
647 if (bdev != bdev->bd_contains)
648 err = -EINVAL;
649 else {
650 if (!capable(CAP_SYS_ADMIN))
651 err = -EACCES;
652 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200653 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200654 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200655 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200656 }
657 }
658 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661EXPORT_SYMBOL(generic_ide_ioctl);
662
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200663/**
664 * ide_device_get - get an additional reference to a ide_drive_t
665 * @drive: device to get a reference to
666 *
667 * Gets a reference to the ide_drive_t and increments the use count of the
668 * underlying LLDD module.
669 */
670int ide_device_get(ide_drive_t *drive)
671{
672 struct device *host_dev;
673 struct module *module;
674
675 if (!get_device(&drive->gendev))
676 return -ENXIO;
677
678 host_dev = drive->hwif->host->dev[0];
679 module = host_dev ? host_dev->driver->owner : NULL;
680
681 if (module && !try_module_get(module)) {
682 put_device(&drive->gendev);
683 return -ENXIO;
684 }
685
686 return 0;
687}
688EXPORT_SYMBOL_GPL(ide_device_get);
689
690/**
691 * ide_device_put - release a reference to a ide_drive_t
692 * @drive: device to release a reference on
693 *
694 * Release a reference to the ide_drive_t and decrements the use count of
695 * the underlying LLDD module.
696 */
697void ide_device_put(ide_drive_t *drive)
698{
699#ifdef CONFIG_MODULE_UNLOAD
700 struct device *host_dev = drive->hwif->host->dev[0];
701 struct module *module = host_dev ? host_dev->driver->owner : NULL;
702
703 if (module)
704 module_put(module);
705#endif
706 put_device(&drive->gendev);
707}
708EXPORT_SYMBOL_GPL(ide_device_put);
709
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200710static int ide_bus_match(struct device *dev, struct device_driver *drv)
711{
712 return 1;
713}
714
Kay Sievers263756e2005-12-12 18:03:44 +0100715static char *media_string(ide_drive_t *drive)
716{
717 switch (drive->media) {
718 case ide_disk:
719 return "disk";
720 case ide_cdrom:
721 return "cdrom";
722 case ide_tape:
723 return "tape";
724 case ide_floppy:
725 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200726 case ide_optical:
727 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100728 default:
729 return "UNKNOWN";
730 }
731}
732
733static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
734{
735 ide_drive_t *drive = to_ide_device(dev);
736 return sprintf(buf, "%s\n", media_string(drive));
737}
738
739static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
740{
741 ide_drive_t *drive = to_ide_device(dev);
742 return sprintf(buf, "%s\n", drive->name);
743}
744
745static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
746{
747 ide_drive_t *drive = to_ide_device(dev);
748 return sprintf(buf, "ide:m-%s\n", media_string(drive));
749}
750
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100751static ssize_t model_show(struct device *dev, struct device_attribute *attr,
752 char *buf)
753{
754 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200755 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_PROD]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100756}
757
758static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
759 char *buf)
760{
761 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200762 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_FW_REV]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100763}
764
765static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
766 char *buf)
767{
768 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200769 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_SERNO]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100770}
771
Kay Sievers263756e2005-12-12 18:03:44 +0100772static struct device_attribute ide_dev_attrs[] = {
773 __ATTR_RO(media),
774 __ATTR_RO(drivename),
775 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100776 __ATTR_RO(model),
777 __ATTR_RO(firmware),
778 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100779 __ATTR_NULL
780};
781
Kay Sievers7eff2e72007-08-14 15:15:12 +0200782static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100783{
784 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100785
Kay Sievers7eff2e72007-08-14 15:15:12 +0200786 add_uevent_var(env, "MEDIA=%s", media_string(drive));
787 add_uevent_var(env, "DRIVENAME=%s", drive->name);
788 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100789 return 0;
790}
791
Russell King4031bbe2006-01-06 11:41:00 +0000792static int generic_ide_probe(struct device *dev)
793{
794 ide_drive_t *drive = to_ide_device(dev);
795 ide_driver_t *drv = to_ide_driver(dev->driver);
796
797 return drv->probe ? drv->probe(drive) : -ENODEV;
798}
799
800static int generic_ide_remove(struct device *dev)
801{
802 ide_drive_t *drive = to_ide_device(dev);
803 ide_driver_t *drv = to_ide_driver(dev->driver);
804
805 if (drv->remove)
806 drv->remove(drive);
807
808 return 0;
809}
810
811static void generic_ide_shutdown(struct device *dev)
812{
813 ide_drive_t *drive = to_ide_device(dev);
814 ide_driver_t *drv = to_ide_driver(dev->driver);
815
816 if (dev->driver && drv->shutdown)
817 drv->shutdown(drive);
818}
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820struct bus_type ide_bus_type = {
821 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200822 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100823 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000824 .probe = generic_ide_probe,
825 .remove = generic_ide_remove,
826 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100827 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 .suspend = generic_ide_suspend,
829 .resume = generic_ide_resume,
830};
831
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200832EXPORT_SYMBOL_GPL(ide_bus_type);
833
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200834int ide_vlb_clk;
835EXPORT_SYMBOL_GPL(ide_vlb_clk);
836
837module_param_named(vlb_clock, ide_vlb_clk, int, 0);
838MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
839
840int ide_pci_clk;
841EXPORT_SYMBOL_GPL(ide_pci_clk);
842
843module_param_named(pci_clock, ide_pci_clk, int, 0);
844MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
845
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200846static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
847{
848 int a, b, i, j = 1;
849 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
850
851 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
852 sscanf(s, "%d.%d", &a, &b) != 2)
853 return -EINVAL;
854
855 i = a * MAX_DRIVES + b;
856
857 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
858 return -EINVAL;
859
860 if (j)
861 *dev_param_mask |= (1 << i);
862 else
863 *dev_param_mask &= (1 << i);
864
865 return 0;
866}
867
868static unsigned int ide_nodma;
869
870module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
871MODULE_PARM_DESC(nodma, "disallow DMA for a device");
872
873static unsigned int ide_noflush;
874
875module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
876MODULE_PARM_DESC(noflush, "disable flush requests for a device");
877
878static unsigned int ide_noprobe;
879
880module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
881MODULE_PARM_DESC(noprobe, "skip probing for a device");
882
883static unsigned int ide_nowerr;
884
885module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200886MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200887
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200888static unsigned int ide_cdroms;
889
890module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
891MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
892
893struct chs_geom {
894 unsigned int cyl;
895 u8 head;
896 u8 sect;
897};
898
899static unsigned int ide_disks;
900static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
901
902static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
903{
904 int a, b, c = 0, h = 0, s = 0, i, j = 1;
905
906 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
907 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
908 return -EINVAL;
909
910 i = a * MAX_DRIVES + b;
911
912 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
913 return -EINVAL;
914
915 if (c > INT_MAX || h > 255 || s > 255)
916 return -EINVAL;
917
918 if (j)
919 ide_disks |= (1 << i);
920 else
921 ide_disks &= (1 << i);
922
923 ide_disks_chs[i].cyl = c;
924 ide_disks_chs[i].head = h;
925 ide_disks_chs[i].sect = s;
926
927 return 0;
928}
929
930module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
931MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
932
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200933static void ide_dev_apply_params(ide_drive_t *drive)
934{
935 int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
936
937 if (ide_nodma & (1 << i)) {
938 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
939 drive->nodma = 1;
940 }
941 if (ide_noflush & (1 << i)) {
942 printk(KERN_INFO "ide: disabling flush requests for %s\n",
943 drive->name);
944 drive->noflush = 1;
945 }
946 if (ide_noprobe & (1 << i)) {
947 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
948 drive->noprobe = 1;
949 }
950 if (ide_nowerr & (1 << i)) {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200951 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200952 drive->name);
953 drive->bad_wstat = BAD_R_STAT;
954 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200955 if (ide_cdroms & (1 << i)) {
956 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
957 drive->present = 1;
958 drive->media = ide_cdrom;
959 /* an ATAPI device ignores DRDY */
960 drive->ready_stat = 0;
961 }
962 if (ide_disks & (1 << i)) {
963 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
964 drive->head = drive->bios_head = ide_disks_chs[i].head;
965 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
966 drive->forced_geom = 1;
967 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
968 drive->name,
969 drive->cyl, drive->head, drive->sect);
970 drive->present = 1;
971 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200972 drive->ready_stat = ATA_DRDY;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200973 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200974}
975
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200976static unsigned int ide_ignore_cable;
977
978static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
979{
980 int i, j = 1;
981
982 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
983 return -EINVAL;
984
985 if (i >= MAX_HWIFS || j < 0 || j > 1)
986 return -EINVAL;
987
988 if (j)
989 ide_ignore_cable |= (1 << i);
990 else
991 ide_ignore_cable &= (1 << i);
992
993 return 0;
994}
995
996module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
997MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
998
999void ide_port_apply_params(ide_hwif_t *hwif)
1000{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +02001001 int i;
1002
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001003 if (ide_ignore_cable & (1 << hwif->index)) {
1004 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
1005 hwif->name);
1006 hwif->cbl = ATA_CBL_PATA40_SHORT;
1007 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +02001008
1009 for (i = 0; i < MAX_DRIVES; i++)
1010 ide_dev_apply_params(&hwif->drives[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
1014 * This is gets invoked once during initialization, to set *everything* up
1015 */
1016static int __init ide_init(void)
1017{
Randy Dunlap349ae232006-10-03 01:14:23 -07001018 int ret;
1019
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +01001020 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +01001021
Randy Dunlap349ae232006-10-03 01:14:23 -07001022 ret = bus_register(&ide_bus_type);
1023 if (ret < 0) {
1024 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1025 return ret;
1026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001028 ide_port_class = class_create(THIS_MODULE, "ide_port");
1029 if (IS_ERR(ide_port_class)) {
1030 ret = PTR_ERR(ide_port_class);
1031 goto out_port_class;
1032 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001033
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001034 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001037
1038out_port_class:
1039 bus_unregister(&ide_bus_type);
1040
1041 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001044static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001048 class_destroy(ide_port_class);
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 bus_unregister(&ide_bus_type);
1051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001054module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001056MODULE_LICENSE("GPL");