blob: d4a6b102a77227d29b4052281704f4053700156d [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)
3 * Copyrifht (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#define _IDE_C /* Tell ide.h it's really us */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/module.h>
50#include <linux/types.h>
51#include <linux/string.h>
52#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/interrupt.h>
54#include <linux/major.h>
55#include <linux/errno.h>
56#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/slab.h>
58#include <linux/init.h>
59#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64
65/* default maximum number of failures */
66#define IDE_DEFAULT_MAX_FAILURES 1
67
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +020068struct class *ide_port_class;
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
71 IDE2_MAJOR, IDE3_MAJOR,
72 IDE4_MAJOR, IDE5_MAJOR,
73 IDE6_MAJOR, IDE7_MAJOR,
74 IDE8_MAJOR, IDE9_MAJOR };
75
Matthias Kaehlckeef298882007-07-09 23:17:55 +020076DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +020078__cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
79EXPORT_SYMBOL(ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020081static void ide_port_init_devices_data(ide_hwif_t *);
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * Do not even *think* about calling this!
85 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010086void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* bulk initialize hwif & drive info with zeros */
89 memset(hwif, 0, sizeof(ide_hwif_t));
90
91 /* fill in any non-zero initial values */
92 hwif->index = index;
93 hwif->major = ide_hwif_to_major[index];
94
95 hwif->name[0] = 'i';
96 hwif->name[1] = 'd';
97 hwif->name[2] = 'e';
98 hwif->name[3] = '0' + index;
99
100 hwif->bus_state = BUSSTATE_ON;
101
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800102 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 default_hwif_iops(hwif);
105 default_hwif_transport(hwif);
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200106
107 ide_port_init_devices_data(hwif);
108}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200109
110static void ide_port_init_devices_data(ide_hwif_t *hwif)
111{
112 int unit;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 for (unit = 0; unit < MAX_DRIVES; ++unit) {
115 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200116 u8 j = (hwif->index * MAX_DRIVES) + unit;
117
118 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 drive->media = ide_disk;
121 drive->select.all = (unit<<4)|0xa0;
122 drive->hwif = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 drive->ready_stat = READY_STAT;
124 drive->bad_wstat = BAD_W_STAT;
125 drive->special.b.recalibrate = 1;
126 drive->special.b.set_geometry = 1;
127 drive->name[0] = 'h';
128 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200129 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800133 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200136
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +0100137void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100138{
139 ide_hwgroup_t *hwgroup = hwif->hwgroup;
140
141 spin_lock_irq(&ide_lock);
142 /*
143 * Remove us from the hwgroup, and free
144 * the hwgroup if we were the only member
145 */
146 if (hwif->next == hwif) {
147 BUG_ON(hwgroup->hwif != hwif);
148 kfree(hwgroup);
149 } else {
150 /* There is another interface in hwgroup.
151 * Unlink us, and set hwgroup->drive and ->hwif to
152 * something sane.
153 */
154 ide_hwif_t *g = hwgroup->hwif;
155
156 while (g->next != hwif)
157 g = g->next;
158 g->next = hwif->next;
159 if (hwgroup->hwif == hwif) {
160 /* Chose a random hwif for hwgroup->hwif.
161 * It's guaranteed that there are no drives
162 * left in the hwgroup.
163 */
164 BUG_ON(hwgroup->drive != NULL);
165 hwgroup->hwif = g;
166 }
167 BUG_ON(hwgroup->hwif == hwif);
168 }
169 spin_unlock_irq(&ide_lock);
170}
171
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200172/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200173static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200174{
175 int i;
176
177 for (i = 0; i < MAX_DRIVES; i++) {
178 ide_drive_t *drive = &hwif->drives[i];
179
180 if (drive->present) {
181 spin_unlock_irq(&ide_lock);
182 device_unregister(&drive->gendev);
183 wait_for_completion(&drive->gendev_rel_comp);
184 spin_lock_irq(&ide_lock);
185 }
186 }
187}
188
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200189void ide_port_unregister_devices(ide_hwif_t *hwif)
190{
191 mutex_lock(&ide_cfg_mtx);
192 spin_lock_irq(&ide_lock);
193 __ide_port_unregister_devices(hwif);
194 hwif->present = 0;
195 ide_port_init_devices_data(hwif);
196 spin_unlock_irq(&ide_lock);
197 mutex_unlock(&ide_cfg_mtx);
198}
199EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700202 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200203 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * Perform the final unregister of an IDE interface. At the moment
206 * we don't refcount interfaces so this will also get split up.
207 *
208 * Locking:
209 * The caller must not hold the IDE locks
210 * The drive present/vanishing is not yet properly locked
211 * Take care with the callbacks. These have been split to avoid
212 * deadlocking the IDE layer. The shutdown callback is called
213 * before we take the lock and free resources. It is up to the
214 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700215 * the interface will not be reopened (present/vanishing locking
216 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * call the cleanup callback with the ide locks held.
218 *
219 * Unregister restores the hwif structures to the default state.
220 * This is raving bonkers.
221 */
222
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200223void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200225 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200227 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 BUG_ON(in_interrupt());
230 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200232 mutex_lock(&ide_cfg_mtx);
233
234 spin_lock_irq(&ide_lock);
235 if (hwif->present) {
236 __ide_port_unregister_devices(hwif);
237 hwif->present = 0;
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 spin_unlock_irq(&ide_lock);
240
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200241 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 hwgroup = hwif->hwgroup;
244 /*
245 * free the irq if we were the only hwif using it
246 */
247 g = hwgroup->hwif;
248 do {
249 if (g->irq == hwif->irq)
250 ++irq_count;
251 g = g->next;
252 } while (g != hwgroup->hwif);
253 if (irq_count == 1)
254 free_irq(hwif->irq, hwgroup);
255
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100256 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200258 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800260 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /*
263 * Remove us from the kernel's knowledge
264 */
265 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
266 kfree(hwif->sg_table);
267 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200269 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200270 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200272 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* restore hwif data to pristine status */
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200274 ide_init_port_data(hwif, hwif->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 spin_unlock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200276
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200277 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280EXPORT_SYMBOL(ide_unregister);
281
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100282void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
283{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200284 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100285 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100286 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200287 hwif->dev = hw->dev;
288 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100289 hwif->ack_intr = hw->ack_intr;
290}
291EXPORT_SYMBOL_GPL(ide_init_port_hw);
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*
294 * Locks for IDE setting functionality
295 */
296
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200297DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200299EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * ide_spin_wait_hwgroup - wait for group
303 * @drive: drive in the group
304 *
305 * Wait for an IDE device group to go non busy and then return
306 * holding the ide_lock which guards the hwgroup->busy status
307 * and right to use it.
308 */
309
310int ide_spin_wait_hwgroup (ide_drive_t *drive)
311{
312 ide_hwgroup_t *hwgroup = HWGROUP(drive);
313 unsigned long timeout = jiffies + (3 * HZ);
314
315 spin_lock_irq(&ide_lock);
316
317 while (hwgroup->busy) {
318 unsigned long lflags;
319 spin_unlock_irq(&ide_lock);
320 local_irq_set(lflags);
321 if (time_after(jiffies, timeout)) {
322 local_irq_restore(lflags);
323 printk(KERN_ERR "%s: channel busy\n", drive->name);
324 return -EBUSY;
325 }
326 local_irq_restore(lflags);
327 spin_lock_irq(&ide_lock);
328 }
329 return 0;
330}
331
332EXPORT_SYMBOL(ide_spin_wait_hwgroup);
333
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200334int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200336 if (drive->no_io_32bit)
337 return -EPERM;
338
339 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
340 return -EINVAL;
341
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100342 if (ide_spin_wait_hwgroup(drive))
343 return -EBUSY;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100346
347 spin_unlock_irq(&ide_lock);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return 0;
350}
351
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200352static int set_ksettings(ide_drive_t *drive, int arg)
353{
354 if (arg < 0 || arg > 1)
355 return -EINVAL;
356
357 if (ide_spin_wait_hwgroup(drive))
358 return -EBUSY;
359 drive->keep_settings = arg;
360 spin_unlock_irq(&ide_lock);
361
362 return 0;
363}
364
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200365int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200368 ide_hwif_t *hwif = drive->hwif;
369 int err = -EPERM;
370
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200371 if (arg < 0 || arg > 1)
372 return -EINVAL;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200375 goto out;
376
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200377 if (hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200378 goto out;
379
380 err = -EBUSY;
381 if (ide_spin_wait_hwgroup(drive))
382 goto out;
383 /*
384 * set ->busy flag, unlock and let it ride
385 */
386 hwif->hwgroup->busy = 1;
387 spin_unlock_irq(&ide_lock);
388
389 err = 0;
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100392 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200393 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100394 } else
395 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200396
397 /*
398 * lock, clear ->busy flag and unlock before leaving
399 */
400 spin_lock_irq(&ide_lock);
401 hwif->hwgroup->busy = 0;
402 spin_unlock_irq(&ide_lock);
403out:
404 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200406 if (arg < 0 || arg > 1)
407 return -EINVAL;
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -EPERM;
410#endif
411}
412
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200413int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200415 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200416 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200417 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200419 if (arg < 0 || arg > 255)
420 return -EINVAL;
421
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200422 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200423 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (drive->special.b.set_tune)
427 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100428
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200429 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
430 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 drive->tune_req = (u8) arg;
433 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200434
435 blk_execute_rq(drive->queue, NULL, rq, 0);
436 blk_put_request(rq);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0;
439}
440
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200441static int set_unmaskirq(ide_drive_t *drive, int arg)
442{
443 if (drive->no_unmask)
444 return -EPERM;
445
446 if (arg < 0 || arg > 1)
447 return -EINVAL;
448
449 if (ide_spin_wait_hwgroup(drive))
450 return -EBUSY;
451 drive->unmask = arg;
452 spin_unlock_irq(&ide_lock);
453
454 return 0;
455}
456
David Brownellb887d2e2006-08-14 23:11:05 -0700457static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100460 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200461 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct request_pm_state rqpm;
463 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200464 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100466 /* Call ACPI _GTM only once */
467 if (!(drive->dn % 2))
468 ide_acpi_get_timing(hwif);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 memset(&rqpm, 0, sizeof(rqpm));
471 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200472 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
473 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
474 rq->special = &args;
475 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700477 if (mesg.event == PM_EVENT_PRETHAW)
478 mesg.event = PM_EVENT_FREEZE;
479 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200481 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
482 blk_put_request(rq);
Shaohua Li5e321322007-10-11 23:53:58 +0200483 /* only call ACPI _PS3 after both drivers are suspended */
484 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
485 && hwif->drives[1].present)
486 || !hwif->drives[0].present
487 || !hwif->drives[1].present))
488 ide_acpi_set_state(hwif, 0);
489 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static int generic_ide_resume(struct device *dev)
493{
494 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100495 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200496 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct request_pm_state rqpm;
498 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200499 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100501 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200502 if (!(drive->dn % 2)) {
503 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100504 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200505 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100506
507 ide_acpi_exec_tfs(drive);
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 memset(&rqpm, 0, sizeof(rqpm));
510 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200511 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
512 rq->cmd_type = REQ_TYPE_PM_RESUME;
513 rq->cmd_flags |= REQ_PREEMPT;
514 rq->special = &args;
515 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700517 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200519 err = blk_execute_rq(drive->queue, NULL, rq, 1);
520 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200521
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200522 if (err == 0 && dev->driver) {
523 ide_driver_t *drv = to_ide_driver(dev->driver);
524
525 if (drv->resume)
526 drv->resume(drive);
527 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200528
529 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200532static int generic_drive_reset(ide_drive_t *drive)
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200533{
534 struct request *rq;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200535 int ret = 0;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200536
537 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
538 rq->cmd_type = REQ_TYPE_SPECIAL;
539 rq->cmd_len = 1;
540 rq->cmd[0] = REQ_DRIVE_RESET;
541 rq->cmd_flags |= REQ_SOFTBARRIER;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200542 if (blk_execute_rq(drive->queue, NULL, rq, 1))
543 ret = rq->errors;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200544 blk_put_request(rq);
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200545 return ret;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
549 unsigned int cmd, unsigned long arg)
550{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200551 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700554 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200555 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200557 switch (cmd) {
558 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
559 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
560 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
561 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
562 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
563 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
564 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
565 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
566 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 case HDIO_OBSOLETE_IDENTITY:
571 case HDIO_GET_IDENTITY:
572 if (bdev != bdev->bd_contains)
573 return -EINVAL;
574 if (drive->id_read == 0)
575 return -ENOMSG;
576 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
577 return -EFAULT;
578 return 0;
579
580 case HDIO_GET_NICE:
581 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
582 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
Bartlomiej Zolnierkiewicz92b83c82008-02-02 19:56:45 +0100583 drive->nice1 << IDE_NICE_1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 (long __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#ifdef CONFIG_IDE_TASK_IOCTL
586 case HDIO_DRIVE_TASKFILE:
587 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
588 return -EACCES;
589 switch(drive->media) {
590 case ide_disk:
591 return ide_taskfile_ioctl(drive, cmd, arg);
592 default:
593 return -ENOMSG;
594 }
595#endif /* CONFIG_IDE_TASK_IOCTL */
596
597 case HDIO_DRIVE_CMD:
598 if (!capable(CAP_SYS_RAWIO))
599 return -EACCES;
600 return ide_cmd_ioctl(drive, cmd, arg);
601
602 case HDIO_DRIVE_TASK:
603 if (!capable(CAP_SYS_RAWIO))
604 return -EACCES;
605 return ide_task_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 case HDIO_SET_NICE:
607 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
608 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
609 return -EPERM;
610 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
611 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
612 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
613 drive->dsc_overlap = 0;
614 return -EPERM;
615 }
616 drive->nice1 = (arg >> IDE_NICE_1) & 1;
617 return 0;
618 case HDIO_DRIVE_RESET:
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100619 if (!capable(CAP_SYS_ADMIN))
620 return -EACCES;
621
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200622 return generic_drive_reset(drive);
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 case HDIO_GET_BUSSTATE:
625 if (!capable(CAP_SYS_ADMIN))
626 return -EACCES;
627 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
628 return -EFAULT;
629 return 0;
630
631 case HDIO_SET_BUSSTATE:
632 if (!capable(CAP_SYS_ADMIN))
633 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return -EOPNOTSUPP;
635 default:
636 return -EINVAL;
637 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200638
639read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200640 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200641 spin_lock_irqsave(&ide_lock, flags);
642 err = *val;
643 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200644 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200645 return err >= 0 ? put_user(err, (long __user *)arg) : err;
646
647set_val:
648 if (bdev != bdev->bd_contains)
649 err = -EINVAL;
650 else {
651 if (!capable(CAP_SYS_ADMIN))
652 err = -EACCES;
653 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200654 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200655 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200656 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200657 }
658 }
659 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
662EXPORT_SYMBOL(generic_ide_ioctl);
663
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200664static int ide_bus_match(struct device *dev, struct device_driver *drv)
665{
666 return 1;
667}
668
Kay Sievers263756e2005-12-12 18:03:44 +0100669static char *media_string(ide_drive_t *drive)
670{
671 switch (drive->media) {
672 case ide_disk:
673 return "disk";
674 case ide_cdrom:
675 return "cdrom";
676 case ide_tape:
677 return "tape";
678 case ide_floppy:
679 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200680 case ide_optical:
681 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100682 default:
683 return "UNKNOWN";
684 }
685}
686
687static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
688{
689 ide_drive_t *drive = to_ide_device(dev);
690 return sprintf(buf, "%s\n", media_string(drive));
691}
692
693static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
694{
695 ide_drive_t *drive = to_ide_device(dev);
696 return sprintf(buf, "%s\n", drive->name);
697}
698
699static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
700{
701 ide_drive_t *drive = to_ide_device(dev);
702 return sprintf(buf, "ide:m-%s\n", media_string(drive));
703}
704
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100705static ssize_t model_show(struct device *dev, struct device_attribute *attr,
706 char *buf)
707{
708 ide_drive_t *drive = to_ide_device(dev);
709 return sprintf(buf, "%s\n", drive->id->model);
710}
711
712static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
713 char *buf)
714{
715 ide_drive_t *drive = to_ide_device(dev);
716 return sprintf(buf, "%s\n", drive->id->fw_rev);
717}
718
719static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
720 char *buf)
721{
722 ide_drive_t *drive = to_ide_device(dev);
723 return sprintf(buf, "%s\n", drive->id->serial_no);
724}
725
Kay Sievers263756e2005-12-12 18:03:44 +0100726static struct device_attribute ide_dev_attrs[] = {
727 __ATTR_RO(media),
728 __ATTR_RO(drivename),
729 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100730 __ATTR_RO(model),
731 __ATTR_RO(firmware),
732 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100733 __ATTR_NULL
734};
735
Kay Sievers7eff2e72007-08-14 15:15:12 +0200736static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100737{
738 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100739
Kay Sievers7eff2e72007-08-14 15:15:12 +0200740 add_uevent_var(env, "MEDIA=%s", media_string(drive));
741 add_uevent_var(env, "DRIVENAME=%s", drive->name);
742 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100743 return 0;
744}
745
Russell King4031bbe2006-01-06 11:41:00 +0000746static int generic_ide_probe(struct device *dev)
747{
748 ide_drive_t *drive = to_ide_device(dev);
749 ide_driver_t *drv = to_ide_driver(dev->driver);
750
751 return drv->probe ? drv->probe(drive) : -ENODEV;
752}
753
754static int generic_ide_remove(struct device *dev)
755{
756 ide_drive_t *drive = to_ide_device(dev);
757 ide_driver_t *drv = to_ide_driver(dev->driver);
758
759 if (drv->remove)
760 drv->remove(drive);
761
762 return 0;
763}
764
765static void generic_ide_shutdown(struct device *dev)
766{
767 ide_drive_t *drive = to_ide_device(dev);
768 ide_driver_t *drv = to_ide_driver(dev->driver);
769
770 if (dev->driver && drv->shutdown)
771 drv->shutdown(drive);
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774struct bus_type ide_bus_type = {
775 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200776 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100777 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000778 .probe = generic_ide_probe,
779 .remove = generic_ide_remove,
780 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100781 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 .suspend = generic_ide_suspend,
783 .resume = generic_ide_resume,
784};
785
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200786EXPORT_SYMBOL_GPL(ide_bus_type);
787
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200788int ide_vlb_clk;
789EXPORT_SYMBOL_GPL(ide_vlb_clk);
790
791module_param_named(vlb_clock, ide_vlb_clk, int, 0);
792MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
793
794int ide_pci_clk;
795EXPORT_SYMBOL_GPL(ide_pci_clk);
796
797module_param_named(pci_clock, ide_pci_clk, int, 0);
798MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
799
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200800static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
801{
802 int a, b, i, j = 1;
803 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
804
805 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
806 sscanf(s, "%d.%d", &a, &b) != 2)
807 return -EINVAL;
808
809 i = a * MAX_DRIVES + b;
810
811 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
812 return -EINVAL;
813
814 if (j)
815 *dev_param_mask |= (1 << i);
816 else
817 *dev_param_mask &= (1 << i);
818
819 return 0;
820}
821
822static unsigned int ide_nodma;
823
824module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
825MODULE_PARM_DESC(nodma, "disallow DMA for a device");
826
827static unsigned int ide_noflush;
828
829module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
830MODULE_PARM_DESC(noflush, "disable flush requests for a device");
831
832static unsigned int ide_noprobe;
833
834module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
835MODULE_PARM_DESC(noprobe, "skip probing for a device");
836
837static unsigned int ide_nowerr;
838
839module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
840MODULE_PARM_DESC(nowerr, "ignore the WRERR_STAT bit for a device");
841
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200842static unsigned int ide_cdroms;
843
844module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
845MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
846
847struct chs_geom {
848 unsigned int cyl;
849 u8 head;
850 u8 sect;
851};
852
853static unsigned int ide_disks;
854static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
855
856static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
857{
858 int a, b, c = 0, h = 0, s = 0, i, j = 1;
859
860 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
861 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
862 return -EINVAL;
863
864 i = a * MAX_DRIVES + b;
865
866 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
867 return -EINVAL;
868
869 if (c > INT_MAX || h > 255 || s > 255)
870 return -EINVAL;
871
872 if (j)
873 ide_disks |= (1 << i);
874 else
875 ide_disks &= (1 << i);
876
877 ide_disks_chs[i].cyl = c;
878 ide_disks_chs[i].head = h;
879 ide_disks_chs[i].sect = s;
880
881 return 0;
882}
883
884module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
885MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
886
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200887static void ide_dev_apply_params(ide_drive_t *drive)
888{
889 int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
890
891 if (ide_nodma & (1 << i)) {
892 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
893 drive->nodma = 1;
894 }
895 if (ide_noflush & (1 << i)) {
896 printk(KERN_INFO "ide: disabling flush requests for %s\n",
897 drive->name);
898 drive->noflush = 1;
899 }
900 if (ide_noprobe & (1 << i)) {
901 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
902 drive->noprobe = 1;
903 }
904 if (ide_nowerr & (1 << i)) {
905 printk(KERN_INFO "ide: ignoring the WRERR_STAT bit for %s\n",
906 drive->name);
907 drive->bad_wstat = BAD_R_STAT;
908 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200909 if (ide_cdroms & (1 << i)) {
910 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
911 drive->present = 1;
912 drive->media = ide_cdrom;
913 /* an ATAPI device ignores DRDY */
914 drive->ready_stat = 0;
915 }
916 if (ide_disks & (1 << i)) {
917 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
918 drive->head = drive->bios_head = ide_disks_chs[i].head;
919 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
920 drive->forced_geom = 1;
921 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
922 drive->name,
923 drive->cyl, drive->head, drive->sect);
924 drive->present = 1;
925 drive->media = ide_disk;
926 drive->ready_stat = READY_STAT;
927 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200928}
929
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200930static unsigned int ide_ignore_cable;
931
932static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
933{
934 int i, j = 1;
935
936 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
937 return -EINVAL;
938
939 if (i >= MAX_HWIFS || j < 0 || j > 1)
940 return -EINVAL;
941
942 if (j)
943 ide_ignore_cable |= (1 << i);
944 else
945 ide_ignore_cable &= (1 << i);
946
947 return 0;
948}
949
950module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
951MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
952
953void ide_port_apply_params(ide_hwif_t *hwif)
954{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200955 int i;
956
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200957 if (ide_ignore_cable & (1 << hwif->index)) {
958 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
959 hwif->name);
960 hwif->cbl = ATA_CBL_PATA40_SHORT;
961 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200962
963 for (i = 0; i < MAX_DRIVES; i++)
964 ide_dev_apply_params(&hwif->drives[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200965}
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967/*
968 * This is gets invoked once during initialization, to set *everything* up
969 */
970static int __init ide_init(void)
971{
Randy Dunlap349ae232006-10-03 01:14:23 -0700972 int ret;
973
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100974 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100975
Randy Dunlap349ae232006-10-03 01:14:23 -0700976 ret = bus_register(&ide_bus_type);
977 if (ret < 0) {
978 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
979 return ret;
980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200982 ide_port_class = class_create(THIS_MODULE, "ide_port");
983 if (IS_ERR(ide_port_class)) {
984 ret = PTR_ERR(ide_port_class);
985 goto out_port_class;
986 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200987
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200988 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200991
992out_port_class:
993 bus_unregister(&ide_bus_type);
994
995 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200998static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001002 class_destroy(ide_port_class);
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 bus_unregister(&ide_bus_type);
1005}
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001008module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001010MODULE_LICENSE("GPL");