blob: b7855a13f0ef7e3f81e2cb5d8de801c788b96a1b [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>
53#include <linux/timer.h>
54#include <linux/mm.h>
55#include <linux/interrupt.h>
56#include <linux/major.h>
57#include <linux/errno.h>
58#include <linux/genhd.h>
59#include <linux/blkpg.h>
60#include <linux/slab.h>
61#include <linux/init.h>
62#include <linux/pci.h>
63#include <linux/delay.h>
64#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/completion.h>
66#include <linux/reboot.h>
67#include <linux/cdrom.h>
68#include <linux/seq_file.h>
69#include <linux/device.h>
70#include <linux/bitops.h>
71
72#include <asm/byteorder.h>
73#include <asm/irq.h>
74#include <asm/uaccess.h>
75#include <asm/io.h>
76
77
78/* default maximum number of failures */
79#define IDE_DEFAULT_MAX_FAILURES 1
80
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +020081struct class *ide_port_class;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
84 IDE2_MAJOR, IDE3_MAJOR,
85 IDE4_MAJOR, IDE5_MAJOR,
86 IDE6_MAJOR, IDE7_MAJOR,
87 IDE8_MAJOR, IDE9_MAJOR };
88
Matthias Kaehlckeef298882007-07-09 23:17:55 +020089DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +020091__cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
92EXPORT_SYMBOL(ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020094static void ide_port_init_devices_data(ide_hwif_t *);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * Do not even *think* about calling this!
98 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010099void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* bulk initialize hwif & drive info with zeros */
102 memset(hwif, 0, sizeof(ide_hwif_t));
103
104 /* fill in any non-zero initial values */
105 hwif->index = index;
106 hwif->major = ide_hwif_to_major[index];
107
108 hwif->name[0] = 'i';
109 hwif->name[1] = 'd';
110 hwif->name[2] = 'e';
111 hwif->name[3] = '0' + index;
112
113 hwif->bus_state = BUSSTATE_ON;
114
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800115 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 default_hwif_iops(hwif);
118 default_hwif_transport(hwif);
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200119
120 ide_port_init_devices_data(hwif);
121}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200122
123static void ide_port_init_devices_data(ide_hwif_t *hwif)
124{
125 int unit;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 for (unit = 0; unit < MAX_DRIVES; ++unit) {
128 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200129 u8 j = (hwif->index * MAX_DRIVES) + unit;
130
131 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 drive->media = ide_disk;
134 drive->select.all = (unit<<4)|0xa0;
135 drive->hwif = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 drive->ready_stat = READY_STAT;
137 drive->bad_wstat = BAD_W_STAT;
138 drive->special.b.recalibrate = 1;
139 drive->special.b.set_geometry = 1;
140 drive->name[0] = 'h';
141 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200142 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800146 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200149
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +0100150void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100151{
152 ide_hwgroup_t *hwgroup = hwif->hwgroup;
153
154 spin_lock_irq(&ide_lock);
155 /*
156 * Remove us from the hwgroup, and free
157 * the hwgroup if we were the only member
158 */
159 if (hwif->next == hwif) {
160 BUG_ON(hwgroup->hwif != hwif);
161 kfree(hwgroup);
162 } else {
163 /* There is another interface in hwgroup.
164 * Unlink us, and set hwgroup->drive and ->hwif to
165 * something sane.
166 */
167 ide_hwif_t *g = hwgroup->hwif;
168
169 while (g->next != hwif)
170 g = g->next;
171 g->next = hwif->next;
172 if (hwgroup->hwif == hwif) {
173 /* Chose a random hwif for hwgroup->hwif.
174 * It's guaranteed that there are no drives
175 * left in the hwgroup.
176 */
177 BUG_ON(hwgroup->drive != NULL);
178 hwgroup->hwif = g;
179 }
180 BUG_ON(hwgroup->hwif == hwif);
181 }
182 spin_unlock_irq(&ide_lock);
183}
184
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200185/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200186static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200187{
188 int i;
189
190 for (i = 0; i < MAX_DRIVES; i++) {
191 ide_drive_t *drive = &hwif->drives[i];
192
193 if (drive->present) {
194 spin_unlock_irq(&ide_lock);
195 device_unregister(&drive->gendev);
196 wait_for_completion(&drive->gendev_rel_comp);
197 spin_lock_irq(&ide_lock);
198 }
199 }
200}
201
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200202void ide_port_unregister_devices(ide_hwif_t *hwif)
203{
204 mutex_lock(&ide_cfg_mtx);
205 spin_lock_irq(&ide_lock);
206 __ide_port_unregister_devices(hwif);
207 hwif->present = 0;
208 ide_port_init_devices_data(hwif);
209 spin_unlock_irq(&ide_lock);
210 mutex_unlock(&ide_cfg_mtx);
211}
212EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700215 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200216 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Perform the final unregister of an IDE interface. At the moment
219 * we don't refcount interfaces so this will also get split up.
220 *
221 * Locking:
222 * The caller must not hold the IDE locks
223 * The drive present/vanishing is not yet properly locked
224 * Take care with the callbacks. These have been split to avoid
225 * deadlocking the IDE layer. The shutdown callback is called
226 * before we take the lock and free resources. It is up to the
227 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700228 * the interface will not be reopened (present/vanishing locking
229 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * call the cleanup callback with the ide locks held.
231 *
232 * Unregister restores the hwif structures to the default state.
233 * This is raving bonkers.
234 */
235
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200236void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200238 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200240 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 BUG_ON(in_interrupt());
243 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200245 mutex_lock(&ide_cfg_mtx);
246
247 spin_lock_irq(&ide_lock);
248 if (hwif->present) {
249 __ide_port_unregister_devices(hwif);
250 hwif->present = 0;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 spin_unlock_irq(&ide_lock);
253
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200254 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 hwgroup = hwif->hwgroup;
257 /*
258 * free the irq if we were the only hwif using it
259 */
260 g = hwgroup->hwif;
261 do {
262 if (g->irq == hwif->irq)
263 ++irq_count;
264 g = g->next;
265 } while (g != hwgroup->hwif);
266 if (irq_count == 1)
267 free_irq(hwif->irq, hwgroup);
268
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100269 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200271 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800273 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
276 * Remove us from the kernel's knowledge
277 */
278 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
279 kfree(hwif->sg_table);
280 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200282 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200283 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200285 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* restore hwif data to pristine status */
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200287 ide_init_port_data(hwif, hwif->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 spin_unlock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200289
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200290 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293EXPORT_SYMBOL(ide_unregister);
294
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100295void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
296{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200297 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100298 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100299 hwif->chipset = hw->chipset;
300 hwif->gendev.parent = hw->dev;
301 hwif->ack_intr = hw->ack_intr;
302}
303EXPORT_SYMBOL_GPL(ide_init_port_hw);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
306 * Locks for IDE setting functionality
307 */
308
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200309DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200311EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * ide_spin_wait_hwgroup - wait for group
315 * @drive: drive in the group
316 *
317 * Wait for an IDE device group to go non busy and then return
318 * holding the ide_lock which guards the hwgroup->busy status
319 * and right to use it.
320 */
321
322int ide_spin_wait_hwgroup (ide_drive_t *drive)
323{
324 ide_hwgroup_t *hwgroup = HWGROUP(drive);
325 unsigned long timeout = jiffies + (3 * HZ);
326
327 spin_lock_irq(&ide_lock);
328
329 while (hwgroup->busy) {
330 unsigned long lflags;
331 spin_unlock_irq(&ide_lock);
332 local_irq_set(lflags);
333 if (time_after(jiffies, timeout)) {
334 local_irq_restore(lflags);
335 printk(KERN_ERR "%s: channel busy\n", drive->name);
336 return -EBUSY;
337 }
338 local_irq_restore(lflags);
339 spin_lock_irq(&ide_lock);
340 }
341 return 0;
342}
343
344EXPORT_SYMBOL(ide_spin_wait_hwgroup);
345
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200346int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200348 if (drive->no_io_32bit)
349 return -EPERM;
350
351 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
352 return -EINVAL;
353
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100354 if (ide_spin_wait_hwgroup(drive))
355 return -EBUSY;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100358
359 spin_unlock_irq(&ide_lock);
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362}
363
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200364static int set_ksettings(ide_drive_t *drive, int arg)
365{
366 if (arg < 0 || arg > 1)
367 return -EINVAL;
368
369 if (ide_spin_wait_hwgroup(drive))
370 return -EBUSY;
371 drive->keep_settings = arg;
372 spin_unlock_irq(&ide_lock);
373
374 return 0;
375}
376
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200377int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200380 ide_hwif_t *hwif = drive->hwif;
381 int err = -EPERM;
382
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200383 if (arg < 0 || arg > 1)
384 return -EINVAL;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200387 goto out;
388
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200389 if (hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200390 goto out;
391
392 err = -EBUSY;
393 if (ide_spin_wait_hwgroup(drive))
394 goto out;
395 /*
396 * set ->busy flag, unlock and let it ride
397 */
398 hwif->hwgroup->busy = 1;
399 spin_unlock_irq(&ide_lock);
400
401 err = 0;
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100404 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200405 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100406 } else
407 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200408
409 /*
410 * lock, clear ->busy flag and unlock before leaving
411 */
412 spin_lock_irq(&ide_lock);
413 hwif->hwgroup->busy = 0;
414 spin_unlock_irq(&ide_lock);
415out:
416 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200418 if (arg < 0 || arg > 1)
419 return -EINVAL;
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -EPERM;
422#endif
423}
424
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200425int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200427 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200428 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200429 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200431 if (arg < 0 || arg > 255)
432 return -EINVAL;
433
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200434 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200435 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (drive->special.b.set_tune)
439 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100440
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200441 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
442 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 drive->tune_req = (u8) arg;
445 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200446
447 blk_execute_rq(drive->queue, NULL, rq, 0);
448 blk_put_request(rq);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
451}
452
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200453static int set_unmaskirq(ide_drive_t *drive, int arg)
454{
455 if (drive->no_unmask)
456 return -EPERM;
457
458 if (arg < 0 || arg > 1)
459 return -EINVAL;
460
461 if (ide_spin_wait_hwgroup(drive))
462 return -EBUSY;
463 drive->unmask = arg;
464 spin_unlock_irq(&ide_lock);
465
466 return 0;
467}
468
David Brownellb887d2e2006-08-14 23:11:05 -0700469static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100472 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200473 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct request_pm_state rqpm;
475 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200476 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100478 /* Call ACPI _GTM only once */
479 if (!(drive->dn % 2))
480 ide_acpi_get_timing(hwif);
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 memset(&rqpm, 0, sizeof(rqpm));
483 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200484 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
485 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
486 rq->special = &args;
487 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700489 if (mesg.event == PM_EVENT_PRETHAW)
490 mesg.event = PM_EVENT_FREEZE;
491 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200493 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
494 blk_put_request(rq);
Shaohua Li5e321322007-10-11 23:53:58 +0200495 /* only call ACPI _PS3 after both drivers are suspended */
496 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
497 && hwif->drives[1].present)
498 || !hwif->drives[0].present
499 || !hwif->drives[1].present))
500 ide_acpi_set_state(hwif, 0);
501 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504static int generic_ide_resume(struct device *dev)
505{
506 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100507 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200508 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct request_pm_state rqpm;
510 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200511 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100513 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200514 if (!(drive->dn % 2)) {
515 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100516 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200517 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100518
519 ide_acpi_exec_tfs(drive);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 memset(&rqpm, 0, sizeof(rqpm));
522 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200523 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
524 rq->cmd_type = REQ_TYPE_PM_RESUME;
525 rq->cmd_flags |= REQ_PREEMPT;
526 rq->special = &args;
527 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700529 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200531 err = blk_execute_rq(drive->queue, NULL, rq, 1);
532 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200533
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200534 if (err == 0 && dev->driver) {
535 ide_driver_t *drv = to_ide_driver(dev->driver);
536
537 if (drv->resume)
538 drv->resume(drive);
539 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200540
541 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
545 unsigned int cmd, unsigned long arg)
546{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200547 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700550 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200551 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200553 switch (cmd) {
554 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
555 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
556 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
557 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
558 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
559 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
560 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
561 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
562 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 case HDIO_OBSOLETE_IDENTITY:
567 case HDIO_GET_IDENTITY:
568 if (bdev != bdev->bd_contains)
569 return -EINVAL;
570 if (drive->id_read == 0)
571 return -ENOMSG;
572 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
573 return -EFAULT;
574 return 0;
575
576 case HDIO_GET_NICE:
577 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
578 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
Bartlomiej Zolnierkiewicz92b83c82008-02-02 19:56:45 +0100579 drive->nice1 << IDE_NICE_1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 (long __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#ifdef CONFIG_IDE_TASK_IOCTL
582 case HDIO_DRIVE_TASKFILE:
583 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
584 return -EACCES;
585 switch(drive->media) {
586 case ide_disk:
587 return ide_taskfile_ioctl(drive, cmd, arg);
588 default:
589 return -ENOMSG;
590 }
591#endif /* CONFIG_IDE_TASK_IOCTL */
592
593 case HDIO_DRIVE_CMD:
594 if (!capable(CAP_SYS_RAWIO))
595 return -EACCES;
596 return ide_cmd_ioctl(drive, cmd, arg);
597
598 case HDIO_DRIVE_TASK:
599 if (!capable(CAP_SYS_RAWIO))
600 return -EACCES;
601 return ide_task_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 case HDIO_SET_NICE:
603 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
604 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
605 return -EPERM;
606 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
607 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
608 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
609 drive->dsc_overlap = 0;
610 return -EPERM;
611 }
612 drive->nice1 = (arg >> IDE_NICE_1) & 1;
613 return 0;
614 case HDIO_DRIVE_RESET:
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100615 if (!capable(CAP_SYS_ADMIN))
616 return -EACCES;
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
619 * Abort the current command on the
620 * group if there is one, taking
621 * care not to allow anything else
622 * to be queued and to die on the
623 * spot if we miss one somehow
624 */
625
626 spin_lock_irqsave(&ide_lock, flags);
627
Alan Cox913759a2006-10-03 01:14:33 -0700628 if (HWGROUP(drive)->resetting) {
629 spin_unlock_irqrestore(&ide_lock, flags);
630 return -EBUSY;
631 }
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 ide_abort(drive, "drive reset");
634
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700635 BUG_ON(HWGROUP(drive)->handler);
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Ensure nothing gets queued after we
638 drop the lock. Reset will clear the busy */
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 HWGROUP(drive)->busy = 1;
641 spin_unlock_irqrestore(&ide_lock, flags);
642 (void) ide_do_reset(drive);
643
644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 case HDIO_GET_BUSSTATE:
646 if (!capable(CAP_SYS_ADMIN))
647 return -EACCES;
648 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
649 return -EFAULT;
650 return 0;
651
652 case HDIO_SET_BUSSTATE:
653 if (!capable(CAP_SYS_ADMIN))
654 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return -EOPNOTSUPP;
656 default:
657 return -EINVAL;
658 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200659
660read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200661 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200662 spin_lock_irqsave(&ide_lock, flags);
663 err = *val;
664 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200665 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200666 return err >= 0 ? put_user(err, (long __user *)arg) : err;
667
668set_val:
669 if (bdev != bdev->bd_contains)
670 err = -EINVAL;
671 else {
672 if (!capable(CAP_SYS_ADMIN))
673 err = -EACCES;
674 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200675 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200676 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200677 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200678 }
679 }
680 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683EXPORT_SYMBOL(generic_ide_ioctl);
684
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200685static int ide_bus_match(struct device *dev, struct device_driver *drv)
686{
687 return 1;
688}
689
Kay Sievers263756e2005-12-12 18:03:44 +0100690static char *media_string(ide_drive_t *drive)
691{
692 switch (drive->media) {
693 case ide_disk:
694 return "disk";
695 case ide_cdrom:
696 return "cdrom";
697 case ide_tape:
698 return "tape";
699 case ide_floppy:
700 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200701 case ide_optical:
702 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100703 default:
704 return "UNKNOWN";
705 }
706}
707
708static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
709{
710 ide_drive_t *drive = to_ide_device(dev);
711 return sprintf(buf, "%s\n", media_string(drive));
712}
713
714static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
715{
716 ide_drive_t *drive = to_ide_device(dev);
717 return sprintf(buf, "%s\n", drive->name);
718}
719
720static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
721{
722 ide_drive_t *drive = to_ide_device(dev);
723 return sprintf(buf, "ide:m-%s\n", media_string(drive));
724}
725
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100726static ssize_t model_show(struct device *dev, struct device_attribute *attr,
727 char *buf)
728{
729 ide_drive_t *drive = to_ide_device(dev);
730 return sprintf(buf, "%s\n", drive->id->model);
731}
732
733static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
734 char *buf)
735{
736 ide_drive_t *drive = to_ide_device(dev);
737 return sprintf(buf, "%s\n", drive->id->fw_rev);
738}
739
740static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
741 char *buf)
742{
743 ide_drive_t *drive = to_ide_device(dev);
744 return sprintf(buf, "%s\n", drive->id->serial_no);
745}
746
Kay Sievers263756e2005-12-12 18:03:44 +0100747static struct device_attribute ide_dev_attrs[] = {
748 __ATTR_RO(media),
749 __ATTR_RO(drivename),
750 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100751 __ATTR_RO(model),
752 __ATTR_RO(firmware),
753 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100754 __ATTR_NULL
755};
756
Kay Sievers7eff2e72007-08-14 15:15:12 +0200757static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100758{
759 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100760
Kay Sievers7eff2e72007-08-14 15:15:12 +0200761 add_uevent_var(env, "MEDIA=%s", media_string(drive));
762 add_uevent_var(env, "DRIVENAME=%s", drive->name);
763 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100764 return 0;
765}
766
Russell King4031bbe2006-01-06 11:41:00 +0000767static int generic_ide_probe(struct device *dev)
768{
769 ide_drive_t *drive = to_ide_device(dev);
770 ide_driver_t *drv = to_ide_driver(dev->driver);
771
772 return drv->probe ? drv->probe(drive) : -ENODEV;
773}
774
775static int generic_ide_remove(struct device *dev)
776{
777 ide_drive_t *drive = to_ide_device(dev);
778 ide_driver_t *drv = to_ide_driver(dev->driver);
779
780 if (drv->remove)
781 drv->remove(drive);
782
783 return 0;
784}
785
786static void generic_ide_shutdown(struct device *dev)
787{
788 ide_drive_t *drive = to_ide_device(dev);
789 ide_driver_t *drv = to_ide_driver(dev->driver);
790
791 if (dev->driver && drv->shutdown)
792 drv->shutdown(drive);
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795struct bus_type ide_bus_type = {
796 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200797 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100798 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000799 .probe = generic_ide_probe,
800 .remove = generic_ide_remove,
801 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100802 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 .suspend = generic_ide_suspend,
804 .resume = generic_ide_resume,
805};
806
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200807EXPORT_SYMBOL_GPL(ide_bus_type);
808
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200809int ide_vlb_clk;
810EXPORT_SYMBOL_GPL(ide_vlb_clk);
811
812module_param_named(vlb_clock, ide_vlb_clk, int, 0);
813MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
814
815int ide_pci_clk;
816EXPORT_SYMBOL_GPL(ide_pci_clk);
817
818module_param_named(pci_clock, ide_pci_clk, int, 0);
819MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
820
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200821static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
822{
823 int a, b, i, j = 1;
824 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
825
826 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
827 sscanf(s, "%d.%d", &a, &b) != 2)
828 return -EINVAL;
829
830 i = a * MAX_DRIVES + b;
831
832 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
833 return -EINVAL;
834
835 if (j)
836 *dev_param_mask |= (1 << i);
837 else
838 *dev_param_mask &= (1 << i);
839
840 return 0;
841}
842
843static unsigned int ide_nodma;
844
845module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
846MODULE_PARM_DESC(nodma, "disallow DMA for a device");
847
848static unsigned int ide_noflush;
849
850module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
851MODULE_PARM_DESC(noflush, "disable flush requests for a device");
852
853static unsigned int ide_noprobe;
854
855module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
856MODULE_PARM_DESC(noprobe, "skip probing for a device");
857
858static unsigned int ide_nowerr;
859
860module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
861MODULE_PARM_DESC(nowerr, "ignore the WRERR_STAT bit for a device");
862
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200863static unsigned int ide_cdroms;
864
865module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
866MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
867
868struct chs_geom {
869 unsigned int cyl;
870 u8 head;
871 u8 sect;
872};
873
874static unsigned int ide_disks;
875static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
876
877static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
878{
879 int a, b, c = 0, h = 0, s = 0, i, j = 1;
880
881 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
882 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
883 return -EINVAL;
884
885 i = a * MAX_DRIVES + b;
886
887 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
888 return -EINVAL;
889
890 if (c > INT_MAX || h > 255 || s > 255)
891 return -EINVAL;
892
893 if (j)
894 ide_disks |= (1 << i);
895 else
896 ide_disks &= (1 << i);
897
898 ide_disks_chs[i].cyl = c;
899 ide_disks_chs[i].head = h;
900 ide_disks_chs[i].sect = s;
901
902 return 0;
903}
904
905module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
906MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
907
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200908static void ide_dev_apply_params(ide_drive_t *drive)
909{
910 int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
911
912 if (ide_nodma & (1 << i)) {
913 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
914 drive->nodma = 1;
915 }
916 if (ide_noflush & (1 << i)) {
917 printk(KERN_INFO "ide: disabling flush requests for %s\n",
918 drive->name);
919 drive->noflush = 1;
920 }
921 if (ide_noprobe & (1 << i)) {
922 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
923 drive->noprobe = 1;
924 }
925 if (ide_nowerr & (1 << i)) {
926 printk(KERN_INFO "ide: ignoring the WRERR_STAT bit for %s\n",
927 drive->name);
928 drive->bad_wstat = BAD_R_STAT;
929 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200930 if (ide_cdroms & (1 << i)) {
931 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
932 drive->present = 1;
933 drive->media = ide_cdrom;
934 /* an ATAPI device ignores DRDY */
935 drive->ready_stat = 0;
936 }
937 if (ide_disks & (1 << i)) {
938 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
939 drive->head = drive->bios_head = ide_disks_chs[i].head;
940 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
941 drive->forced_geom = 1;
942 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
943 drive->name,
944 drive->cyl, drive->head, drive->sect);
945 drive->present = 1;
946 drive->media = ide_disk;
947 drive->ready_stat = READY_STAT;
948 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200949}
950
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200951static unsigned int ide_ignore_cable;
952
953static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
954{
955 int i, j = 1;
956
957 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
958 return -EINVAL;
959
960 if (i >= MAX_HWIFS || j < 0 || j > 1)
961 return -EINVAL;
962
963 if (j)
964 ide_ignore_cable |= (1 << i);
965 else
966 ide_ignore_cable &= (1 << i);
967
968 return 0;
969}
970
971module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
972MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
973
974void ide_port_apply_params(ide_hwif_t *hwif)
975{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200976 int i;
977
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200978 if (ide_ignore_cable & (1 << hwif->index)) {
979 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
980 hwif->name);
981 hwif->cbl = ATA_CBL_PATA40_SHORT;
982 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200983
984 for (i = 0; i < MAX_DRIVES; i++)
985 ide_dev_apply_params(&hwif->drives[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200986}
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988/*
989 * This is gets invoked once during initialization, to set *everything* up
990 */
991static int __init ide_init(void)
992{
Randy Dunlap349ae232006-10-03 01:14:23 -0700993 int ret;
994
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100995 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100996
Randy Dunlap349ae232006-10-03 01:14:23 -0700997 ret = bus_register(&ide_bus_type);
998 if (ret < 0) {
999 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1000 return ret;
1001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001003 ide_port_class = class_create(THIS_MODULE, "ide_port");
1004 if (IS_ERR(ide_port_class)) {
1005 ret = PTR_ERR(ide_port_class);
1006 goto out_port_class;
1007 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001008
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001009 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001012
1013out_port_class:
1014 bus_unregister(&ide_bus_type);
1015
1016 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001019static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001023 class_destroy(ide_port_class);
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 bus_unregister(&ide_bus_type);
1026}
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001029module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001031MODULE_LICENSE("GPL");