blob: 434dd02a4bdce1f719ebec2c5bfec6f597d8a85e [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 default_hwif_transport(hwif);
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200105
106 ide_port_init_devices_data(hwif);
107}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200108
109static void ide_port_init_devices_data(ide_hwif_t *hwif)
110{
111 int unit;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 for (unit = 0; unit < MAX_DRIVES; ++unit) {
114 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200115 u8 j = (hwif->index * MAX_DRIVES) + unit;
116
117 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 drive->media = ide_disk;
120 drive->select.all = (unit<<4)|0xa0;
121 drive->hwif = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 drive->ready_stat = READY_STAT;
123 drive->bad_wstat = BAD_W_STAT;
124 drive->special.b.recalibrate = 1;
125 drive->special.b.set_geometry = 1;
126 drive->name[0] = 'h';
127 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200128 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800132 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200135
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +0100136void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100137{
138 ide_hwgroup_t *hwgroup = hwif->hwgroup;
139
140 spin_lock_irq(&ide_lock);
141 /*
142 * Remove us from the hwgroup, and free
143 * the hwgroup if we were the only member
144 */
145 if (hwif->next == hwif) {
146 BUG_ON(hwgroup->hwif != hwif);
147 kfree(hwgroup);
148 } else {
149 /* There is another interface in hwgroup.
150 * Unlink us, and set hwgroup->drive and ->hwif to
151 * something sane.
152 */
153 ide_hwif_t *g = hwgroup->hwif;
154
155 while (g->next != hwif)
156 g = g->next;
157 g->next = hwif->next;
158 if (hwgroup->hwif == hwif) {
159 /* Chose a random hwif for hwgroup->hwif.
160 * It's guaranteed that there are no drives
161 * left in the hwgroup.
162 */
163 BUG_ON(hwgroup->drive != NULL);
164 hwgroup->hwif = g;
165 }
166 BUG_ON(hwgroup->hwif == hwif);
167 }
168 spin_unlock_irq(&ide_lock);
169}
170
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200171/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200172static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200173{
174 int i;
175
176 for (i = 0; i < MAX_DRIVES; i++) {
177 ide_drive_t *drive = &hwif->drives[i];
178
179 if (drive->present) {
180 spin_unlock_irq(&ide_lock);
181 device_unregister(&drive->gendev);
182 wait_for_completion(&drive->gendev_rel_comp);
183 spin_lock_irq(&ide_lock);
184 }
185 }
186}
187
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200188void ide_port_unregister_devices(ide_hwif_t *hwif)
189{
190 mutex_lock(&ide_cfg_mtx);
191 spin_lock_irq(&ide_lock);
192 __ide_port_unregister_devices(hwif);
193 hwif->present = 0;
194 ide_port_init_devices_data(hwif);
195 spin_unlock_irq(&ide_lock);
196 mutex_unlock(&ide_cfg_mtx);
197}
198EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700201 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200202 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * Perform the final unregister of an IDE interface. At the moment
205 * we don't refcount interfaces so this will also get split up.
206 *
207 * Locking:
208 * The caller must not hold the IDE locks
209 * The drive present/vanishing is not yet properly locked
210 * Take care with the callbacks. These have been split to avoid
211 * deadlocking the IDE layer. The shutdown callback is called
212 * before we take the lock and free resources. It is up to the
213 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700214 * the interface will not be reopened (present/vanishing locking
215 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * call the cleanup callback with the ide locks held.
217 *
218 * Unregister restores the hwif structures to the default state.
219 * This is raving bonkers.
220 */
221
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200222void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200224 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200226 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 BUG_ON(in_interrupt());
229 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200231 mutex_lock(&ide_cfg_mtx);
232
233 spin_lock_irq(&ide_lock);
234 if (hwif->present) {
235 __ide_port_unregister_devices(hwif);
236 hwif->present = 0;
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 spin_unlock_irq(&ide_lock);
239
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200240 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 hwgroup = hwif->hwgroup;
243 /*
244 * free the irq if we were the only hwif using it
245 */
246 g = hwgroup->hwif;
247 do {
248 if (g->irq == hwif->irq)
249 ++irq_count;
250 g = g->next;
251 } while (g != hwgroup->hwif);
252 if (irq_count == 1)
253 free_irq(hwif->irq, hwgroup);
254
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100255 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200257 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800259 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /*
262 * Remove us from the kernel's knowledge
263 */
264 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
265 kfree(hwif->sg_table);
266 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200268 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200269 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200271 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* restore hwif data to pristine status */
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200273 ide_init_port_data(hwif, hwif->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 spin_unlock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200275
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200276 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279EXPORT_SYMBOL(ide_unregister);
280
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100281void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
282{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200283 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100284 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100285 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200286 hwif->dev = hw->dev;
287 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100288 hwif->ack_intr = hw->ack_intr;
289}
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * Locks for IDE setting functionality
293 */
294
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200295DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200297EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * ide_spin_wait_hwgroup - wait for group
301 * @drive: drive in the group
302 *
303 * Wait for an IDE device group to go non busy and then return
304 * holding the ide_lock which guards the hwgroup->busy status
305 * and right to use it.
306 */
307
308int ide_spin_wait_hwgroup (ide_drive_t *drive)
309{
310 ide_hwgroup_t *hwgroup = HWGROUP(drive);
311 unsigned long timeout = jiffies + (3 * HZ);
312
313 spin_lock_irq(&ide_lock);
314
315 while (hwgroup->busy) {
316 unsigned long lflags;
317 spin_unlock_irq(&ide_lock);
318 local_irq_set(lflags);
319 if (time_after(jiffies, timeout)) {
320 local_irq_restore(lflags);
321 printk(KERN_ERR "%s: channel busy\n", drive->name);
322 return -EBUSY;
323 }
324 local_irq_restore(lflags);
325 spin_lock_irq(&ide_lock);
326 }
327 return 0;
328}
329
330EXPORT_SYMBOL(ide_spin_wait_hwgroup);
331
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200332int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200334 if (drive->no_io_32bit)
335 return -EPERM;
336
337 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
338 return -EINVAL;
339
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100340 if (ide_spin_wait_hwgroup(drive))
341 return -EBUSY;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100344
345 spin_unlock_irq(&ide_lock);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200350static int set_ksettings(ide_drive_t *drive, int arg)
351{
352 if (arg < 0 || arg > 1)
353 return -EINVAL;
354
355 if (ide_spin_wait_hwgroup(drive))
356 return -EBUSY;
357 drive->keep_settings = arg;
358 spin_unlock_irq(&ide_lock);
359
360 return 0;
361}
362
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200363int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200366 ide_hwif_t *hwif = drive->hwif;
367 int err = -EPERM;
368
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200369 if (arg < 0 || arg > 1)
370 return -EINVAL;
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200373 goto out;
374
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200375 if (hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200376 goto out;
377
378 err = -EBUSY;
379 if (ide_spin_wait_hwgroup(drive))
380 goto out;
381 /*
382 * set ->busy flag, unlock and let it ride
383 */
384 hwif->hwgroup->busy = 1;
385 spin_unlock_irq(&ide_lock);
386
387 err = 0;
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100390 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200391 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100392 } else
393 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200394
395 /*
396 * lock, clear ->busy flag and unlock before leaving
397 */
398 spin_lock_irq(&ide_lock);
399 hwif->hwgroup->busy = 0;
400 spin_unlock_irq(&ide_lock);
401out:
402 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200404 if (arg < 0 || arg > 1)
405 return -EINVAL;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EPERM;
408#endif
409}
410
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200411int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200413 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200414 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200415 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200417 if (arg < 0 || arg > 255)
418 return -EINVAL;
419
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200420 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200421 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (drive->special.b.set_tune)
425 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100426
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200427 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
428 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 drive->tune_req = (u8) arg;
431 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200432
433 blk_execute_rq(drive->queue, NULL, rq, 0);
434 blk_put_request(rq);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200439static int set_unmaskirq(ide_drive_t *drive, int arg)
440{
441 if (drive->no_unmask)
442 return -EPERM;
443
444 if (arg < 0 || arg > 1)
445 return -EINVAL;
446
447 if (ide_spin_wait_hwgroup(drive))
448 return -EBUSY;
449 drive->unmask = arg;
450 spin_unlock_irq(&ide_lock);
451
452 return 0;
453}
454
David Brownellb887d2e2006-08-14 23:11:05 -0700455static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100458 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200459 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct request_pm_state rqpm;
461 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200462 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100464 /* Call ACPI _GTM only once */
465 if (!(drive->dn % 2))
466 ide_acpi_get_timing(hwif);
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 memset(&rqpm, 0, sizeof(rqpm));
469 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200470 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
471 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
472 rq->special = &args;
473 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700475 if (mesg.event == PM_EVENT_PRETHAW)
476 mesg.event = PM_EVENT_FREEZE;
477 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200479 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
480 blk_put_request(rq);
Shaohua Li5e321322007-10-11 23:53:58 +0200481 /* only call ACPI _PS3 after both drivers are suspended */
482 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
483 && hwif->drives[1].present)
484 || !hwif->drives[0].present
485 || !hwif->drives[1].present))
486 ide_acpi_set_state(hwif, 0);
487 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490static int generic_ide_resume(struct device *dev)
491{
492 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100493 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200494 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct request_pm_state rqpm;
496 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200497 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100499 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200500 if (!(drive->dn % 2)) {
501 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100502 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200503 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100504
505 ide_acpi_exec_tfs(drive);
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 memset(&rqpm, 0, sizeof(rqpm));
508 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200509 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
510 rq->cmd_type = REQ_TYPE_PM_RESUME;
511 rq->cmd_flags |= REQ_PREEMPT;
512 rq->special = &args;
513 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700515 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200517 err = blk_execute_rq(drive->queue, NULL, rq, 1);
518 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200519
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200520 if (err == 0 && dev->driver) {
521 ide_driver_t *drv = to_ide_driver(dev->driver);
522
523 if (drv->resume)
524 drv->resume(drive);
525 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200526
527 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200530static int generic_drive_reset(ide_drive_t *drive)
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200531{
532 struct request *rq;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200533 int ret = 0;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200534
535 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
536 rq->cmd_type = REQ_TYPE_SPECIAL;
537 rq->cmd_len = 1;
538 rq->cmd[0] = REQ_DRIVE_RESET;
539 rq->cmd_flags |= REQ_SOFTBARRIER;
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200540 if (blk_execute_rq(drive->queue, NULL, rq, 1))
541 ret = rq->errors;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200542 blk_put_request(rq);
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200543 return ret;
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
547 unsigned int cmd, unsigned long arg)
548{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200549 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700552 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200553 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200555 switch (cmd) {
556 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
557 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
558 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
559 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
560 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
561 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
562 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
563 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
564 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case HDIO_OBSOLETE_IDENTITY:
569 case HDIO_GET_IDENTITY:
570 if (bdev != bdev->bd_contains)
571 return -EINVAL;
572 if (drive->id_read == 0)
573 return -ENOMSG;
574 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
575 return -EFAULT;
576 return 0;
577
578 case HDIO_GET_NICE:
579 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
580 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
Bartlomiej Zolnierkiewicz92b83c82008-02-02 19:56:45 +0100581 drive->nice1 << IDE_NICE_1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 (long __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583#ifdef CONFIG_IDE_TASK_IOCTL
584 case HDIO_DRIVE_TASKFILE:
585 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
586 return -EACCES;
587 switch(drive->media) {
588 case ide_disk:
589 return ide_taskfile_ioctl(drive, cmd, arg);
590 default:
591 return -ENOMSG;
592 }
593#endif /* CONFIG_IDE_TASK_IOCTL */
594
595 case HDIO_DRIVE_CMD:
596 if (!capable(CAP_SYS_RAWIO))
597 return -EACCES;
598 return ide_cmd_ioctl(drive, cmd, arg);
599
600 case HDIO_DRIVE_TASK:
601 if (!capable(CAP_SYS_RAWIO))
602 return -EACCES;
603 return ide_task_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 case HDIO_SET_NICE:
605 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
606 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
607 return -EPERM;
608 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
609 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
610 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
611 drive->dsc_overlap = 0;
612 return -EPERM;
613 }
614 drive->nice1 = (arg >> IDE_NICE_1) & 1;
615 return 0;
616 case HDIO_DRIVE_RESET:
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100617 if (!capable(CAP_SYS_ADMIN))
618 return -EACCES;
619
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200620 return generic_drive_reset(drive);
Elias Oltmanns79e36a92008-07-16 20:33:48 +0200621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 case HDIO_GET_BUSSTATE:
623 if (!capable(CAP_SYS_ADMIN))
624 return -EACCES;
625 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
626 return -EFAULT;
627 return 0;
628
629 case HDIO_SET_BUSSTATE:
630 if (!capable(CAP_SYS_ADMIN))
631 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return -EOPNOTSUPP;
633 default:
634 return -EINVAL;
635 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200636
637read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200638 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200639 spin_lock_irqsave(&ide_lock, flags);
640 err = *val;
641 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200642 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200643 return err >= 0 ? put_user(err, (long __user *)arg) : err;
644
645set_val:
646 if (bdev != bdev->bd_contains)
647 err = -EINVAL;
648 else {
649 if (!capable(CAP_SYS_ADMIN))
650 err = -EACCES;
651 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200652 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200653 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200654 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200655 }
656 }
657 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660EXPORT_SYMBOL(generic_ide_ioctl);
661
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200662static int ide_bus_match(struct device *dev, struct device_driver *drv)
663{
664 return 1;
665}
666
Kay Sievers263756e2005-12-12 18:03:44 +0100667static char *media_string(ide_drive_t *drive)
668{
669 switch (drive->media) {
670 case ide_disk:
671 return "disk";
672 case ide_cdrom:
673 return "cdrom";
674 case ide_tape:
675 return "tape";
676 case ide_floppy:
677 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200678 case ide_optical:
679 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100680 default:
681 return "UNKNOWN";
682 }
683}
684
685static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
686{
687 ide_drive_t *drive = to_ide_device(dev);
688 return sprintf(buf, "%s\n", media_string(drive));
689}
690
691static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
692{
693 ide_drive_t *drive = to_ide_device(dev);
694 return sprintf(buf, "%s\n", drive->name);
695}
696
697static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
698{
699 ide_drive_t *drive = to_ide_device(dev);
700 return sprintf(buf, "ide:m-%s\n", media_string(drive));
701}
702
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100703static ssize_t model_show(struct device *dev, struct device_attribute *attr,
704 char *buf)
705{
706 ide_drive_t *drive = to_ide_device(dev);
707 return sprintf(buf, "%s\n", drive->id->model);
708}
709
710static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
711 char *buf)
712{
713 ide_drive_t *drive = to_ide_device(dev);
714 return sprintf(buf, "%s\n", drive->id->fw_rev);
715}
716
717static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
718 char *buf)
719{
720 ide_drive_t *drive = to_ide_device(dev);
721 return sprintf(buf, "%s\n", drive->id->serial_no);
722}
723
Kay Sievers263756e2005-12-12 18:03:44 +0100724static struct device_attribute ide_dev_attrs[] = {
725 __ATTR_RO(media),
726 __ATTR_RO(drivename),
727 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100728 __ATTR_RO(model),
729 __ATTR_RO(firmware),
730 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100731 __ATTR_NULL
732};
733
Kay Sievers7eff2e72007-08-14 15:15:12 +0200734static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100735{
736 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100737
Kay Sievers7eff2e72007-08-14 15:15:12 +0200738 add_uevent_var(env, "MEDIA=%s", media_string(drive));
739 add_uevent_var(env, "DRIVENAME=%s", drive->name);
740 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100741 return 0;
742}
743
Russell King4031bbe2006-01-06 11:41:00 +0000744static int generic_ide_probe(struct device *dev)
745{
746 ide_drive_t *drive = to_ide_device(dev);
747 ide_driver_t *drv = to_ide_driver(dev->driver);
748
749 return drv->probe ? drv->probe(drive) : -ENODEV;
750}
751
752static int generic_ide_remove(struct device *dev)
753{
754 ide_drive_t *drive = to_ide_device(dev);
755 ide_driver_t *drv = to_ide_driver(dev->driver);
756
757 if (drv->remove)
758 drv->remove(drive);
759
760 return 0;
761}
762
763static void generic_ide_shutdown(struct device *dev)
764{
765 ide_drive_t *drive = to_ide_device(dev);
766 ide_driver_t *drv = to_ide_driver(dev->driver);
767
768 if (dev->driver && drv->shutdown)
769 drv->shutdown(drive);
770}
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772struct bus_type ide_bus_type = {
773 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200774 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100775 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000776 .probe = generic_ide_probe,
777 .remove = generic_ide_remove,
778 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100779 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .suspend = generic_ide_suspend,
781 .resume = generic_ide_resume,
782};
783
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200784EXPORT_SYMBOL_GPL(ide_bus_type);
785
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200786int ide_vlb_clk;
787EXPORT_SYMBOL_GPL(ide_vlb_clk);
788
789module_param_named(vlb_clock, ide_vlb_clk, int, 0);
790MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
791
792int ide_pci_clk;
793EXPORT_SYMBOL_GPL(ide_pci_clk);
794
795module_param_named(pci_clock, ide_pci_clk, int, 0);
796MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
797
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200798static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
799{
800 int a, b, i, j = 1;
801 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
802
803 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
804 sscanf(s, "%d.%d", &a, &b) != 2)
805 return -EINVAL;
806
807 i = a * MAX_DRIVES + b;
808
809 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
810 return -EINVAL;
811
812 if (j)
813 *dev_param_mask |= (1 << i);
814 else
815 *dev_param_mask &= (1 << i);
816
817 return 0;
818}
819
820static unsigned int ide_nodma;
821
822module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
823MODULE_PARM_DESC(nodma, "disallow DMA for a device");
824
825static unsigned int ide_noflush;
826
827module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
828MODULE_PARM_DESC(noflush, "disable flush requests for a device");
829
830static unsigned int ide_noprobe;
831
832module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
833MODULE_PARM_DESC(noprobe, "skip probing for a device");
834
835static unsigned int ide_nowerr;
836
837module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
838MODULE_PARM_DESC(nowerr, "ignore the WRERR_STAT bit for a device");
839
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200840static unsigned int ide_cdroms;
841
842module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
843MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
844
845struct chs_geom {
846 unsigned int cyl;
847 u8 head;
848 u8 sect;
849};
850
851static unsigned int ide_disks;
852static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
853
854static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
855{
856 int a, b, c = 0, h = 0, s = 0, i, j = 1;
857
858 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
859 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
860 return -EINVAL;
861
862 i = a * MAX_DRIVES + b;
863
864 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
865 return -EINVAL;
866
867 if (c > INT_MAX || h > 255 || s > 255)
868 return -EINVAL;
869
870 if (j)
871 ide_disks |= (1 << i);
872 else
873 ide_disks &= (1 << i);
874
875 ide_disks_chs[i].cyl = c;
876 ide_disks_chs[i].head = h;
877 ide_disks_chs[i].sect = s;
878
879 return 0;
880}
881
882module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
883MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
884
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200885static void ide_dev_apply_params(ide_drive_t *drive)
886{
887 int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
888
889 if (ide_nodma & (1 << i)) {
890 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
891 drive->nodma = 1;
892 }
893 if (ide_noflush & (1 << i)) {
894 printk(KERN_INFO "ide: disabling flush requests for %s\n",
895 drive->name);
896 drive->noflush = 1;
897 }
898 if (ide_noprobe & (1 << i)) {
899 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
900 drive->noprobe = 1;
901 }
902 if (ide_nowerr & (1 << i)) {
903 printk(KERN_INFO "ide: ignoring the WRERR_STAT bit for %s\n",
904 drive->name);
905 drive->bad_wstat = BAD_R_STAT;
906 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200907 if (ide_cdroms & (1 << i)) {
908 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
909 drive->present = 1;
910 drive->media = ide_cdrom;
911 /* an ATAPI device ignores DRDY */
912 drive->ready_stat = 0;
913 }
914 if (ide_disks & (1 << i)) {
915 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
916 drive->head = drive->bios_head = ide_disks_chs[i].head;
917 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
918 drive->forced_geom = 1;
919 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
920 drive->name,
921 drive->cyl, drive->head, drive->sect);
922 drive->present = 1;
923 drive->media = ide_disk;
924 drive->ready_stat = READY_STAT;
925 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200926}
927
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200928static unsigned int ide_ignore_cable;
929
930static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
931{
932 int i, j = 1;
933
934 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
935 return -EINVAL;
936
937 if (i >= MAX_HWIFS || j < 0 || j > 1)
938 return -EINVAL;
939
940 if (j)
941 ide_ignore_cable |= (1 << i);
942 else
943 ide_ignore_cable &= (1 << i);
944
945 return 0;
946}
947
948module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
949MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
950
951void ide_port_apply_params(ide_hwif_t *hwif)
952{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200953 int i;
954
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200955 if (ide_ignore_cable & (1 << hwif->index)) {
956 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
957 hwif->name);
958 hwif->cbl = ATA_CBL_PATA40_SHORT;
959 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200960
961 for (i = 0; i < MAX_DRIVES; i++)
962 ide_dev_apply_params(&hwif->drives[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200963}
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965/*
966 * This is gets invoked once during initialization, to set *everything* up
967 */
968static int __init ide_init(void)
969{
Randy Dunlap349ae232006-10-03 01:14:23 -0700970 int ret;
971
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100972 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100973
Randy Dunlap349ae232006-10-03 01:14:23 -0700974 ret = bus_register(&ide_bus_type);
975 if (ret < 0) {
976 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
977 return ret;
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200980 ide_port_class = class_create(THIS_MODULE, "ide_port");
981 if (IS_ERR(ide_port_class)) {
982 ret = PTR_ERR(ide_port_class);
983 goto out_port_class;
984 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200985
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200986 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200989
990out_port_class:
991 bus_unregister(&ide_bus_type);
992
993 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200996static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001000 class_destroy(ide_port_class);
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 bus_unregister(&ide_bus_type);
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001006module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001008MODULE_LICENSE("GPL");