blob: 1defba3eefe7bec6a06d0039201f95d36cdee5ec [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070094ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
95
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020096static void ide_port_init_devices_data(ide_hwif_t *);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * Do not even *think* about calling this!
100 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100101void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* bulk initialize hwif & drive info with zeros */
104 memset(hwif, 0, sizeof(ide_hwif_t));
105
106 /* fill in any non-zero initial values */
107 hwif->index = index;
108 hwif->major = ide_hwif_to_major[index];
109
110 hwif->name[0] = 'i';
111 hwif->name[1] = 'd';
112 hwif->name[2] = 'e';
113 hwif->name[3] = '0' + index;
114
115 hwif->bus_state = BUSSTATE_ON;
116
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800117 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 default_hwif_iops(hwif);
120 default_hwif_transport(hwif);
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200121
122 ide_port_init_devices_data(hwif);
123}
124EXPORT_SYMBOL_GPL(ide_init_port_data);
125
126static void ide_port_init_devices_data(ide_hwif_t *hwif)
127{
128 int unit;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 for (unit = 0; unit < MAX_DRIVES; ++unit) {
131 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200132 u8 j = (hwif->index * MAX_DRIVES) + unit;
133
134 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 drive->media = ide_disk;
137 drive->select.all = (unit<<4)|0xa0;
138 drive->hwif = hwif;
139 drive->ctl = 0x08;
140 drive->ready_stat = READY_STAT;
141 drive->bad_wstat = BAD_W_STAT;
142 drive->special.b.recalibrate = 1;
143 drive->special.b.set_geometry = 1;
144 drive->name[0] = 'h';
145 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200146 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800150 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void __init init_ide_data (void)
155{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 unsigned int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* Initialise all interface structures */
159 for (index = 0; index < MAX_HWIFS; ++index) {
Bartlomiej Zolnierkiewicz05734262008-04-18 00:46:25 +0200160 ide_hwif_t *hwif = &ide_hwifs[index];
161
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100162 ide_init_port_data(hwif, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +0100166void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100167{
168 ide_hwgroup_t *hwgroup = hwif->hwgroup;
169
170 spin_lock_irq(&ide_lock);
171 /*
172 * Remove us from the hwgroup, and free
173 * the hwgroup if we were the only member
174 */
175 if (hwif->next == hwif) {
176 BUG_ON(hwgroup->hwif != hwif);
177 kfree(hwgroup);
178 } else {
179 /* There is another interface in hwgroup.
180 * Unlink us, and set hwgroup->drive and ->hwif to
181 * something sane.
182 */
183 ide_hwif_t *g = hwgroup->hwif;
184
185 while (g->next != hwif)
186 g = g->next;
187 g->next = hwif->next;
188 if (hwgroup->hwif == hwif) {
189 /* Chose a random hwif for hwgroup->hwif.
190 * It's guaranteed that there are no drives
191 * left in the hwgroup.
192 */
193 BUG_ON(hwgroup->drive != NULL);
194 hwgroup->hwif = g;
195 }
196 BUG_ON(hwgroup->hwif == hwif);
197 }
198 spin_unlock_irq(&ide_lock);
199}
200
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200201/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200202static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200203{
204 int i;
205
206 for (i = 0; i < MAX_DRIVES; i++) {
207 ide_drive_t *drive = &hwif->drives[i];
208
209 if (drive->present) {
210 spin_unlock_irq(&ide_lock);
211 device_unregister(&drive->gendev);
212 wait_for_completion(&drive->gendev_rel_comp);
213 spin_lock_irq(&ide_lock);
214 }
215 }
216}
217
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200218void ide_port_unregister_devices(ide_hwif_t *hwif)
219{
220 mutex_lock(&ide_cfg_mtx);
221 spin_lock_irq(&ide_lock);
222 __ide_port_unregister_devices(hwif);
223 hwif->present = 0;
224 ide_port_init_devices_data(hwif);
225 spin_unlock_irq(&ide_lock);
226 mutex_unlock(&ide_cfg_mtx);
227}
228EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700231 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200232 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * Perform the final unregister of an IDE interface. At the moment
235 * we don't refcount interfaces so this will also get split up.
236 *
237 * Locking:
238 * The caller must not hold the IDE locks
239 * The drive present/vanishing is not yet properly locked
240 * Take care with the callbacks. These have been split to avoid
241 * deadlocking the IDE layer. The shutdown callback is called
242 * before we take the lock and free resources. It is up to the
243 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700244 * the interface will not be reopened (present/vanishing locking
245 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * call the cleanup callback with the ide locks held.
247 *
248 * Unregister restores the hwif structures to the default state.
249 * This is raving bonkers.
250 */
251
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200252void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200254 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200256 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 BUG_ON(in_interrupt());
259 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200261 mutex_lock(&ide_cfg_mtx);
262
263 spin_lock_irq(&ide_lock);
264 if (hwif->present) {
265 __ide_port_unregister_devices(hwif);
266 hwif->present = 0;
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 spin_unlock_irq(&ide_lock);
269
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200270 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 hwgroup = hwif->hwgroup;
273 /*
274 * free the irq if we were the only hwif using it
275 */
276 g = hwgroup->hwif;
277 do {
278 if (g->irq == hwif->irq)
279 ++irq_count;
280 g = g->next;
281 } while (g != hwgroup->hwif);
282 if (irq_count == 1)
283 free_irq(hwif->irq, hwgroup);
284
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100285 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200287 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800289 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /*
292 * Remove us from the kernel's knowledge
293 */
294 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
295 kfree(hwif->sg_table);
296 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200298 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200299 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200301 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* restore hwif data to pristine status */
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200303 ide_init_port_data(hwif, hwif->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 spin_unlock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz2b54ed92008-07-05 20:30:51 +0200305
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200306 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309EXPORT_SYMBOL(ide_unregister);
310
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100311void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
312{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200313 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100314 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100315 hwif->chipset = hw->chipset;
316 hwif->gendev.parent = hw->dev;
317 hwif->ack_intr = hw->ack_intr;
318}
319EXPORT_SYMBOL_GPL(ide_init_port_hw);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/*
322 * Locks for IDE setting functionality
323 */
324
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200325DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200327EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * ide_spin_wait_hwgroup - wait for group
331 * @drive: drive in the group
332 *
333 * Wait for an IDE device group to go non busy and then return
334 * holding the ide_lock which guards the hwgroup->busy status
335 * and right to use it.
336 */
337
338int ide_spin_wait_hwgroup (ide_drive_t *drive)
339{
340 ide_hwgroup_t *hwgroup = HWGROUP(drive);
341 unsigned long timeout = jiffies + (3 * HZ);
342
343 spin_lock_irq(&ide_lock);
344
345 while (hwgroup->busy) {
346 unsigned long lflags;
347 spin_unlock_irq(&ide_lock);
348 local_irq_set(lflags);
349 if (time_after(jiffies, timeout)) {
350 local_irq_restore(lflags);
351 printk(KERN_ERR "%s: channel busy\n", drive->name);
352 return -EBUSY;
353 }
354 local_irq_restore(lflags);
355 spin_lock_irq(&ide_lock);
356 }
357 return 0;
358}
359
360EXPORT_SYMBOL(ide_spin_wait_hwgroup);
361
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200362int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200364 if (drive->no_io_32bit)
365 return -EPERM;
366
367 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
368 return -EINVAL;
369
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100370 if (ide_spin_wait_hwgroup(drive))
371 return -EBUSY;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100374
375 spin_unlock_irq(&ide_lock);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200380static int set_ksettings(ide_drive_t *drive, int arg)
381{
382 if (arg < 0 || arg > 1)
383 return -EINVAL;
384
385 if (ide_spin_wait_hwgroup(drive))
386 return -EBUSY;
387 drive->keep_settings = arg;
388 spin_unlock_irq(&ide_lock);
389
390 return 0;
391}
392
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200393int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200396 ide_hwif_t *hwif = drive->hwif;
397 int err = -EPERM;
398
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200399 if (arg < 0 || arg > 1)
400 return -EINVAL;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200403 goto out;
404
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200405 if (hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200406 goto out;
407
408 err = -EBUSY;
409 if (ide_spin_wait_hwgroup(drive))
410 goto out;
411 /*
412 * set ->busy flag, unlock and let it ride
413 */
414 hwif->hwgroup->busy = 1;
415 spin_unlock_irq(&ide_lock);
416
417 err = 0;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100420 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200421 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100422 } else
423 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200424
425 /*
426 * lock, clear ->busy flag and unlock before leaving
427 */
428 spin_lock_irq(&ide_lock);
429 hwif->hwgroup->busy = 0;
430 spin_unlock_irq(&ide_lock);
431out:
432 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200434 if (arg < 0 || arg > 1)
435 return -EINVAL;
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -EPERM;
438#endif
439}
440
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200441int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200443 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200444 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200445 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200447 if (arg < 0 || arg > 255)
448 return -EINVAL;
449
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200450 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200451 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (drive->special.b.set_tune)
455 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100456
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200457 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
458 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 drive->tune_req = (u8) arg;
461 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200462
463 blk_execute_rq(drive->queue, NULL, rq, 0);
464 blk_put_request(rq);
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return 0;
467}
468
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200469static int set_unmaskirq(ide_drive_t *drive, int arg)
470{
471 if (drive->no_unmask)
472 return -EPERM;
473
474 if (arg < 0 || arg > 1)
475 return -EINVAL;
476
477 if (ide_spin_wait_hwgroup(drive))
478 return -EBUSY;
479 drive->unmask = arg;
480 spin_unlock_irq(&ide_lock);
481
482 return 0;
483}
484
David Brownellb887d2e2006-08-14 23:11:05 -0700485static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100488 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200489 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct request_pm_state rqpm;
491 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200492 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100494 /* Call ACPI _GTM only once */
495 if (!(drive->dn % 2))
496 ide_acpi_get_timing(hwif);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 memset(&rqpm, 0, sizeof(rqpm));
499 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200500 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
501 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
502 rq->special = &args;
503 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700505 if (mesg.event == PM_EVENT_PRETHAW)
506 mesg.event = PM_EVENT_FREEZE;
507 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200509 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
510 blk_put_request(rq);
Shaohua Li5e321322007-10-11 23:53:58 +0200511 /* only call ACPI _PS3 after both drivers are suspended */
512 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
513 && hwif->drives[1].present)
514 || !hwif->drives[0].present
515 || !hwif->drives[1].present))
516 ide_acpi_set_state(hwif, 0);
517 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520static int generic_ide_resume(struct device *dev)
521{
522 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100523 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200524 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 struct request_pm_state rqpm;
526 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200527 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100529 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200530 if (!(drive->dn % 2)) {
531 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100532 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200533 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100534
535 ide_acpi_exec_tfs(drive);
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 memset(&rqpm, 0, sizeof(rqpm));
538 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200539 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
540 rq->cmd_type = REQ_TYPE_PM_RESUME;
541 rq->cmd_flags |= REQ_PREEMPT;
542 rq->special = &args;
543 rq->data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700545 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200547 err = blk_execute_rq(drive->queue, NULL, rq, 1);
548 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200549
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200550 if (err == 0 && dev->driver) {
551 ide_driver_t *drv = to_ide_driver(dev->driver);
552
553 if (drv->resume)
554 drv->resume(drive);
555 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200556
557 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
561 unsigned int cmd, unsigned long arg)
562{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200563 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700566 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200567 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200569 switch (cmd) {
570 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
571 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
572 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
573 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
574 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
575 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
576 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
577 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
578 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 case HDIO_OBSOLETE_IDENTITY:
583 case HDIO_GET_IDENTITY:
584 if (bdev != bdev->bd_contains)
585 return -EINVAL;
586 if (drive->id_read == 0)
587 return -ENOMSG;
588 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
589 return -EFAULT;
590 return 0;
591
592 case HDIO_GET_NICE:
593 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
594 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
Bartlomiej Zolnierkiewicz92b83c82008-02-02 19:56:45 +0100595 drive->nice1 << IDE_NICE_1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 (long __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597#ifdef CONFIG_IDE_TASK_IOCTL
598 case HDIO_DRIVE_TASKFILE:
599 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
600 return -EACCES;
601 switch(drive->media) {
602 case ide_disk:
603 return ide_taskfile_ioctl(drive, cmd, arg);
604 default:
605 return -ENOMSG;
606 }
607#endif /* CONFIG_IDE_TASK_IOCTL */
608
609 case HDIO_DRIVE_CMD:
610 if (!capable(CAP_SYS_RAWIO))
611 return -EACCES;
612 return ide_cmd_ioctl(drive, cmd, arg);
613
614 case HDIO_DRIVE_TASK:
615 if (!capable(CAP_SYS_RAWIO))
616 return -EACCES;
617 return ide_task_ioctl(drive, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 case HDIO_SET_NICE:
619 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
620 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
621 return -EPERM;
622 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
623 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
624 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
625 drive->dsc_overlap = 0;
626 return -EPERM;
627 }
628 drive->nice1 = (arg >> IDE_NICE_1) & 1;
629 return 0;
630 case HDIO_DRIVE_RESET:
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100631 if (!capable(CAP_SYS_ADMIN))
632 return -EACCES;
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /*
635 * Abort the current command on the
636 * group if there is one, taking
637 * care not to allow anything else
638 * to be queued and to die on the
639 * spot if we miss one somehow
640 */
641
642 spin_lock_irqsave(&ide_lock, flags);
643
Alan Cox913759a2006-10-03 01:14:33 -0700644 if (HWGROUP(drive)->resetting) {
645 spin_unlock_irqrestore(&ide_lock, flags);
646 return -EBUSY;
647 }
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 ide_abort(drive, "drive reset");
650
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700651 BUG_ON(HWGROUP(drive)->handler);
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Ensure nothing gets queued after we
654 drop the lock. Reset will clear the busy */
Bartlomiej Zolnierkiewiczdbecebc2008-02-26 21:50:35 +0100655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 HWGROUP(drive)->busy = 1;
657 spin_unlock_irqrestore(&ide_lock, flags);
658 (void) ide_do_reset(drive);
659
660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 case HDIO_GET_BUSSTATE:
662 if (!capable(CAP_SYS_ADMIN))
663 return -EACCES;
664 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
665 return -EFAULT;
666 return 0;
667
668 case HDIO_SET_BUSSTATE:
669 if (!capable(CAP_SYS_ADMIN))
670 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return -EOPNOTSUPP;
672 default:
673 return -EINVAL;
674 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200675
676read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200677 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200678 spin_lock_irqsave(&ide_lock, flags);
679 err = *val;
680 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200681 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200682 return err >= 0 ? put_user(err, (long __user *)arg) : err;
683
684set_val:
685 if (bdev != bdev->bd_contains)
686 err = -EINVAL;
687 else {
688 if (!capable(CAP_SYS_ADMIN))
689 err = -EACCES;
690 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200691 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200692 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200693 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200694 }
695 }
696 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699EXPORT_SYMBOL(generic_ide_ioctl);
700
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200701static int ide_bus_match(struct device *dev, struct device_driver *drv)
702{
703 return 1;
704}
705
Kay Sievers263756e2005-12-12 18:03:44 +0100706static char *media_string(ide_drive_t *drive)
707{
708 switch (drive->media) {
709 case ide_disk:
710 return "disk";
711 case ide_cdrom:
712 return "cdrom";
713 case ide_tape:
714 return "tape";
715 case ide_floppy:
716 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200717 case ide_optical:
718 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100719 default:
720 return "UNKNOWN";
721 }
722}
723
724static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
725{
726 ide_drive_t *drive = to_ide_device(dev);
727 return sprintf(buf, "%s\n", media_string(drive));
728}
729
730static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
731{
732 ide_drive_t *drive = to_ide_device(dev);
733 return sprintf(buf, "%s\n", drive->name);
734}
735
736static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
737{
738 ide_drive_t *drive = to_ide_device(dev);
739 return sprintf(buf, "ide:m-%s\n", media_string(drive));
740}
741
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100742static ssize_t model_show(struct device *dev, struct device_attribute *attr,
743 char *buf)
744{
745 ide_drive_t *drive = to_ide_device(dev);
746 return sprintf(buf, "%s\n", drive->id->model);
747}
748
749static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
750 char *buf)
751{
752 ide_drive_t *drive = to_ide_device(dev);
753 return sprintf(buf, "%s\n", drive->id->fw_rev);
754}
755
756static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
757 char *buf)
758{
759 ide_drive_t *drive = to_ide_device(dev);
760 return sprintf(buf, "%s\n", drive->id->serial_no);
761}
762
Kay Sievers263756e2005-12-12 18:03:44 +0100763static struct device_attribute ide_dev_attrs[] = {
764 __ATTR_RO(media),
765 __ATTR_RO(drivename),
766 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100767 __ATTR_RO(model),
768 __ATTR_RO(firmware),
769 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100770 __ATTR_NULL
771};
772
Kay Sievers7eff2e72007-08-14 15:15:12 +0200773static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100774{
775 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100776
Kay Sievers7eff2e72007-08-14 15:15:12 +0200777 add_uevent_var(env, "MEDIA=%s", media_string(drive));
778 add_uevent_var(env, "DRIVENAME=%s", drive->name);
779 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100780 return 0;
781}
782
Russell King4031bbe2006-01-06 11:41:00 +0000783static int generic_ide_probe(struct device *dev)
784{
785 ide_drive_t *drive = to_ide_device(dev);
786 ide_driver_t *drv = to_ide_driver(dev->driver);
787
788 return drv->probe ? drv->probe(drive) : -ENODEV;
789}
790
791static int generic_ide_remove(struct device *dev)
792{
793 ide_drive_t *drive = to_ide_device(dev);
794 ide_driver_t *drv = to_ide_driver(dev->driver);
795
796 if (drv->remove)
797 drv->remove(drive);
798
799 return 0;
800}
801
802static void generic_ide_shutdown(struct device *dev)
803{
804 ide_drive_t *drive = to_ide_device(dev);
805 ide_driver_t *drv = to_ide_driver(dev->driver);
806
807 if (dev->driver && drv->shutdown)
808 drv->shutdown(drive);
809}
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811struct bus_type ide_bus_type = {
812 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200813 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100814 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000815 .probe = generic_ide_probe,
816 .remove = generic_ide_remove,
817 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100818 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 .suspend = generic_ide_suspend,
820 .resume = generic_ide_resume,
821};
822
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200823EXPORT_SYMBOL_GPL(ide_bus_type);
824
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200825int ide_vlb_clk;
826EXPORT_SYMBOL_GPL(ide_vlb_clk);
827
828module_param_named(vlb_clock, ide_vlb_clk, int, 0);
829MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
830
831int ide_pci_clk;
832EXPORT_SYMBOL_GPL(ide_pci_clk);
833
834module_param_named(pci_clock, ide_pci_clk, int, 0);
835MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
836
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200837static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
838{
839 int a, b, i, j = 1;
840 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
841
842 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
843 sscanf(s, "%d.%d", &a, &b) != 2)
844 return -EINVAL;
845
846 i = a * MAX_DRIVES + b;
847
848 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
849 return -EINVAL;
850
851 if (j)
852 *dev_param_mask |= (1 << i);
853 else
854 *dev_param_mask &= (1 << i);
855
856 return 0;
857}
858
859static unsigned int ide_nodma;
860
861module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
862MODULE_PARM_DESC(nodma, "disallow DMA for a device");
863
864static unsigned int ide_noflush;
865
866module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
867MODULE_PARM_DESC(noflush, "disable flush requests for a device");
868
869static unsigned int ide_noprobe;
870
871module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
872MODULE_PARM_DESC(noprobe, "skip probing for a device");
873
874static unsigned int ide_nowerr;
875
876module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
877MODULE_PARM_DESC(nowerr, "ignore the WRERR_STAT bit for a device");
878
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200879static unsigned int ide_cdroms;
880
881module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
882MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
883
884struct chs_geom {
885 unsigned int cyl;
886 u8 head;
887 u8 sect;
888};
889
890static unsigned int ide_disks;
891static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
892
893static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
894{
895 int a, b, c = 0, h = 0, s = 0, i, j = 1;
896
897 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
898 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
899 return -EINVAL;
900
901 i = a * MAX_DRIVES + b;
902
903 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
904 return -EINVAL;
905
906 if (c > INT_MAX || h > 255 || s > 255)
907 return -EINVAL;
908
909 if (j)
910 ide_disks |= (1 << i);
911 else
912 ide_disks &= (1 << i);
913
914 ide_disks_chs[i].cyl = c;
915 ide_disks_chs[i].head = h;
916 ide_disks_chs[i].sect = s;
917
918 return 0;
919}
920
921module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
922MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
923
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200924static void ide_dev_apply_params(ide_drive_t *drive)
925{
926 int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
927
928 if (ide_nodma & (1 << i)) {
929 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
930 drive->nodma = 1;
931 }
932 if (ide_noflush & (1 << i)) {
933 printk(KERN_INFO "ide: disabling flush requests for %s\n",
934 drive->name);
935 drive->noflush = 1;
936 }
937 if (ide_noprobe & (1 << i)) {
938 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
939 drive->noprobe = 1;
940 }
941 if (ide_nowerr & (1 << i)) {
942 printk(KERN_INFO "ide: ignoring the WRERR_STAT bit for %s\n",
943 drive->name);
944 drive->bad_wstat = BAD_R_STAT;
945 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200946 if (ide_cdroms & (1 << i)) {
947 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
948 drive->present = 1;
949 drive->media = ide_cdrom;
950 /* an ATAPI device ignores DRDY */
951 drive->ready_stat = 0;
952 }
953 if (ide_disks & (1 << i)) {
954 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
955 drive->head = drive->bios_head = ide_disks_chs[i].head;
956 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
957 drive->forced_geom = 1;
958 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
959 drive->name,
960 drive->cyl, drive->head, drive->sect);
961 drive->present = 1;
962 drive->media = ide_disk;
963 drive->ready_stat = READY_STAT;
964 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200965}
966
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200967static unsigned int ide_ignore_cable;
968
969static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
970{
971 int i, j = 1;
972
973 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
974 return -EINVAL;
975
976 if (i >= MAX_HWIFS || j < 0 || j > 1)
977 return -EINVAL;
978
979 if (j)
980 ide_ignore_cable |= (1 << i);
981 else
982 ide_ignore_cable &= (1 << i);
983
984 return 0;
985}
986
987module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
988MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
989
990void ide_port_apply_params(ide_hwif_t *hwif)
991{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200992 int i;
993
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200994 if (ide_ignore_cable & (1 << hwif->index)) {
995 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
996 hwif->name);
997 hwif->cbl = ATA_CBL_PATA40_SHORT;
998 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200999
1000 for (i = 0; i < MAX_DRIVES; i++)
1001 ide_dev_apply_params(&hwif->drives[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001002}
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/*
1005 * This is gets invoked once during initialization, to set *everything* up
1006 */
1007static int __init ide_init(void)
1008{
Randy Dunlap349ae232006-10-03 01:14:23 -07001009 int ret;
1010
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +01001011 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +01001012
Randy Dunlap349ae232006-10-03 01:14:23 -07001013 ret = bus_register(&ide_bus_type);
1014 if (ret < 0) {
1015 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1016 return ret;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001019 ide_port_class = class_create(THIS_MODULE, "ide_port");
1020 if (IS_ERR(ide_port_class)) {
1021 ret = PTR_ERR(ide_port_class);
1022 goto out_port_class;
1023 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 init_ide_data();
1026
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001027 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001030
1031out_port_class:
1032 bus_unregister(&ide_bus_type);
1033
1034 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001037static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001041 class_destroy(ide_port_class);
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 bus_unregister(&ide_bus_type);
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001047module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +02001049MODULE_LICENSE("GPL");