blob: 083783e851d12f2346918ca7607e23f6218c4ac6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
Pavel Machekfc410692008-07-23 19:56:02 +02003 * Copyright (C) 2003-2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6/*
7 * Mostly written by Mark Lord <mlord@pobox.com>
8 * and Gadi Oxman <gadio@netvision.net.il>
9 * and Andre Hedrick <andre@linux-ide.org>
10 *
11 * See linux/MAINTAINERS for address of current maintainer.
12 *
13 * This is the multiple IDE interface driver, as evolved from hd.c.
14 * It supports up to MAX_HWIFS IDE interfaces, on one or more IRQs
15 * (usually 14 & 15).
16 * There can be up to two drives per interface, as per the ATA-2 spec.
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * ...
19 *
20 * From hd.c:
21 * |
22 * | It traverses the request-list, using interrupts to jump between functions.
23 * | As nearly all functions can be called within interrupts, we may not sleep.
24 * | Special care is recommended. Have Fun!
25 * |
26 * | modified by Drew Eckhardt to check nr of hd's from the CMOS.
27 * |
28 * | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
29 * | in the early extended-partition checks and added DM partitions.
30 * |
31 * | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
32 * |
33 * | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
34 * | and general streamlining by Mark Lord (mlord@pobox.com).
35 *
36 * October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
37 *
38 * Mark Lord (mlord@pobox.com) (IDE Perf.Pkg)
39 * Delman Lee (delman@ieee.org) ("Mr. atdisk2")
40 * Scott Snyder (snyder@fnald0.fnal.gov) (ATAPI IDE cd-rom)
41 *
42 * This was a rewrite of just about everything from hd.c, though some original
43 * code is still sprinkled about. Think of it as a major evolution, with
44 * inspiration from lots of linux users, esp. hamish@zot.apana.org.au
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/module.h>
48#include <linux/types.h>
49#include <linux/string.h>
50#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/interrupt.h>
52#include <linux/major.h>
53#include <linux/errno.h>
54#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/slab.h>
56#include <linux/init.h>
57#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/ide.h>
Bartlomiej Zolnierkiewicz3ceca722008-10-10 22:39:27 +020059#include <linux/hdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63
64/* default maximum number of failures */
65#define IDE_DEFAULT_MAX_FAILURES 1
66
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +020067struct class *ide_port_class;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
70 IDE2_MAJOR, IDE3_MAJOR,
71 IDE4_MAJOR, IDE5_MAJOR,
72 IDE6_MAJOR, IDE7_MAJOR,
73 IDE8_MAJOR, IDE9_MAJOR };
74
Matthias Kaehlckeef298882007-07-09 23:17:55 +020075DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +020077__cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
78EXPORT_SYMBOL(ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +020080static void ide_port_init_devices_data(ide_hwif_t *);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * Do not even *think* about calling this!
84 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010085void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* bulk initialize hwif & drive info with zeros */
88 memset(hwif, 0, sizeof(ide_hwif_t));
89
90 /* fill in any non-zero initial values */
91 hwif->index = index;
92 hwif->major = ide_hwif_to_major[index];
93
94 hwif->name[0] = 'i';
95 hwif->name[1] = 'd';
96 hwif->name[2] = 'e';
97 hwif->name[3] = '0' + index;
98
Aleksey Makarovf36d4022006-01-09 15:59:27 -080099 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200101 hwif->tp_ops = &default_tp_ops;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200102
103 ide_port_init_devices_data(hwif);
104}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200105
106static void ide_port_init_devices_data(ide_hwif_t *hwif)
107{
108 int unit;
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 for (unit = 0; unit < MAX_DRIVES; ++unit) {
111 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200112 u8 j = (hwif->index * MAX_DRIVES) + unit;
113
114 memset(drive, 0, sizeof(*drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz7f612f22008-10-13 21:39:40 +0200117 drive->select = (unit << 4) | ATA_DEVICE_OBS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 drive->hwif = hwif;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200119 drive->ready_stat = ATA_DRDY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 drive->bad_wstat = BAD_W_STAT;
121 drive->special.b.recalibrate = 1;
122 drive->special.b.set_geometry = 1;
123 drive->name[0] = 'h';
124 drive->name[1] = 'd';
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200125 drive->name[2] = 'a' + j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800129 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131}
Bartlomiej Zolnierkiewicz43514ed2008-04-18 00:46:22 +0200132
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200133/* Called with ide_lock held. */
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200134static void __ide_port_unregister_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200135{
136 int i;
137
138 for (i = 0; i < MAX_DRIVES; i++) {
139 ide_drive_t *drive = &hwif->drives[i];
140
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200141 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200142 spin_unlock_irq(&ide_lock);
143 device_unregister(&drive->gendev);
144 wait_for_completion(&drive->gendev_rel_comp);
145 spin_lock_irq(&ide_lock);
146 }
147 }
148}
149
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +0200150void ide_port_unregister_devices(ide_hwif_t *hwif)
151{
152 mutex_lock(&ide_cfg_mtx);
153 spin_lock_irq(&ide_lock);
154 __ide_port_unregister_devices(hwif);
155 hwif->present = 0;
156 ide_port_init_devices_data(hwif);
157 spin_unlock_irq(&ide_lock);
158 mutex_unlock(&ide_cfg_mtx);
159}
160EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700163 * ide_unregister - free an IDE interface
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200164 * @hwif: IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * Perform the final unregister of an IDE interface. At the moment
167 * we don't refcount interfaces so this will also get split up.
168 *
169 * Locking:
170 * The caller must not hold the IDE locks
171 * The drive present/vanishing is not yet properly locked
172 * Take care with the callbacks. These have been split to avoid
173 * deadlocking the IDE layer. The shutdown callback is called
174 * before we take the lock and free resources. It is up to the
175 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700176 * the interface will not be reopened (present/vanishing locking
177 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * call the cleanup callback with the ide locks held.
179 *
180 * Unregister restores the hwif structures to the default state.
181 * This is raving bonkers.
182 */
183
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200184void ide_unregister(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200186 ide_hwif_t *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz71bf9f62008-04-18 00:46:22 +0200188 int irq_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 BUG_ON(in_interrupt());
191 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Bartlomiej Zolnierkiewiczbd8a59e2008-07-05 20:30:51 +0200193 mutex_lock(&ide_cfg_mtx);
194
195 spin_lock_irq(&ide_lock);
196 if (hwif->present) {
197 __ide_port_unregister_devices(hwif);
198 hwif->present = 0;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 spin_unlock_irq(&ide_lock);
201
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200202 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 hwgroup = hwif->hwgroup;
205 /*
206 * free the irq if we were the only hwif using it
207 */
208 g = hwgroup->hwif;
209 do {
210 if (g->irq == hwif->irq)
211 ++irq_count;
212 g = g->next;
213 } while (g != hwgroup->hwif);
214 if (irq_count == 1)
215 free_irq(hwif->irq, hwgroup);
216
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100217 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200219 device_unregister(hwif->portdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800221 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /*
224 * Remove us from the kernel's knowledge
225 */
226 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
227 kfree(hwif->sg_table);
228 unregister_blkdev(hwif->major, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Bartlomiej Zolnierkiewicz2bbd57c2008-10-13 21:39:47 +0200230 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200232 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100235void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
236{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200237 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100238 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100239 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200240 hwif->dev = hw->dev;
241 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100242 hwif->ack_intr = hw->ack_intr;
Bartlomiej Zolnierkiewiczd6276b52008-07-23 19:55:56 +0200243 hwif->config_data = hw->config;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100244}
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
247 * Locks for IDE setting functionality
248 */
249
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200250DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200252ide_devset_get(io_32bit, io_32bit);
253
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200254static int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200256 if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200257 return -EPERM;
258
259 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
260 return -EINVAL;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
265}
266
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200267ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200268
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200269static int set_ksettings(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200270{
271 if (arg < 0 || arg > 1)
272 return -EINVAL;
273
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200274 if (arg)
275 drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS;
276 else
277 drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200278
279 return 0;
280}
281
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200282ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200283
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200284static int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200287 int err = -EPERM;
288
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200289 if (arg < 0 || arg > 1)
290 return -EINVAL;
291
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200292 if (ata_id_has_dma(drive->id) == 0)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200293 goto out;
294
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200295 if (drive->hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200296 goto out;
297
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200298 err = 0;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100301 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200302 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100303 } else
304 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200305
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200306out:
307 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200309 if (arg < 0 || arg > 1)
310 return -EINVAL;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return -EPERM;
313#endif
314}
315
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200316/*
317 * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
318 */
319static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
320{
321 switch (req_pio) {
322 case 202:
323 case 201:
324 case 200:
325 case 102:
326 case 101:
327 case 100:
328 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
329 case 9:
330 case 8:
331 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
332 case 7:
333 case 6:
334 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
335 default:
336 return 0;
337 }
338}
339
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200340static int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200342 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200343 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200345 if (arg < 0 || arg > 255)
346 return -EINVAL;
347
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200348 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200349 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200351
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200352 if (set_pio_mode_abuse(drive->hwif, arg)) {
353 if (arg == 8 || arg == 9) {
354 unsigned long flags;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100355
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200356 /* take lock for IDE_DFLAG_[NO_]UNMASK/[NO_]IO_32BIT */
357 spin_lock_irqsave(&ide_lock, flags);
358 port_ops->set_pio_mode(drive, arg);
359 spin_unlock_irqrestore(&ide_lock, flags);
360 } else
361 port_ops->set_pio_mode(drive, arg);
362 } else {
363 int keep_dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100364
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200365 ide_set_pio(drive, arg);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200366
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200367 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
368 if (keep_dma)
369 ide_dma_on(drive);
370 }
371 }
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200376ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200377
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200378static int set_unmaskirq(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200379{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200380 if (drive->dev_flags & IDE_DFLAG_NO_UNMASK)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200381 return -EPERM;
382
383 if (arg < 0 || arg > 1)
384 return -EINVAL;
385
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200386 if (arg)
387 drive->dev_flags |= IDE_DFLAG_UNMASK;
388 else
389 drive->dev_flags &= ~IDE_DFLAG_UNMASK;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200390
391 return 0;
392}
393
Bartlomiej Zolnierkiewiczf8790482008-10-13 21:39:45 +0200394ide_ext_devset_rw_sync(io_32bit, io_32bit);
395ide_ext_devset_rw_sync(keepsettings, ksettings);
396ide_ext_devset_rw_sync(unmaskirq, unmaskirq);
397ide_ext_devset_rw_sync(using_dma, using_dma);
Bartlomiej Zolnierkiewicz6982daf2008-10-13 21:39:40 +0200398__IDE_DEVSET(pio_mode, DS_SYNC, NULL, set_pio_mode);
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200399
David Brownellb887d2e2006-08-14 23:11:05 -0700400static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200402 ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100403 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200404 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 struct request_pm_state rqpm;
406 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200407 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200409 /* call ACPI _GTM only once */
410 if ((drive->dn & 1) == 0 || pair == NULL)
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100411 ide_acpi_get_timing(hwif);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 memset(&rqpm, 0, sizeof(rqpm));
414 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200415 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
416 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
417 rq->special = &args;
418 rq->data = &rqpm;
Bartlomiej Zolnierkiewicz0d346ba2008-10-13 21:39:38 +0200419 rqpm.pm_step = IDE_PM_START_SUSPEND;
David Brownellb887d2e2006-08-14 23:11:05 -0700420 if (mesg.event == PM_EVENT_PRETHAW)
421 mesg.event = PM_EVENT_FREEZE;
422 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200424 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
425 blk_put_request(rq);
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200426
427 /* call ACPI _PS3 only after both devices are suspended */
428 if (ret == 0 && ((drive->dn & 1) || pair == NULL))
Shaohua Li5e321322007-10-11 23:53:58 +0200429 ide_acpi_set_state(hwif, 0);
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200430
Shaohua Li5e321322007-10-11 23:53:58 +0200431 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434static int generic_ide_resume(struct device *dev)
435{
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200436 ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100437 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200438 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 struct request_pm_state rqpm;
440 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200441 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200443 /* call ACPI _PS0 / _STM only once */
444 if ((drive->dn & 1) == 0 || pair == NULL) {
Shaohua Li5e321322007-10-11 23:53:58 +0200445 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100446 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200447 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100448
449 ide_acpi_exec_tfs(drive);
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 memset(&rqpm, 0, sizeof(rqpm));
452 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200453 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
454 rq->cmd_type = REQ_TYPE_PM_RESUME;
455 rq->cmd_flags |= REQ_PREEMPT;
456 rq->special = &args;
457 rq->data = &rqpm;
Bartlomiej Zolnierkiewicz0d346ba2008-10-13 21:39:38 +0200458 rqpm.pm_step = IDE_PM_START_RESUME;
Pavel Machekca078ba2005-09-03 15:56:57 -0700459 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200461 err = blk_execute_rq(drive->queue, NULL, rq, 1);
462 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200463
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200464 if (err == 0 && dev->driver) {
465 ide_driver_t *drv = to_ide_driver(dev->driver);
466
467 if (drv->resume)
468 drv->resume(drive);
469 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200470
471 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200474/**
475 * ide_device_get - get an additional reference to a ide_drive_t
476 * @drive: device to get a reference to
477 *
478 * Gets a reference to the ide_drive_t and increments the use count of the
479 * underlying LLDD module.
480 */
481int ide_device_get(ide_drive_t *drive)
482{
483 struct device *host_dev;
484 struct module *module;
485
486 if (!get_device(&drive->gendev))
487 return -ENXIO;
488
489 host_dev = drive->hwif->host->dev[0];
490 module = host_dev ? host_dev->driver->owner : NULL;
491
492 if (module && !try_module_get(module)) {
493 put_device(&drive->gendev);
494 return -ENXIO;
495 }
496
497 return 0;
498}
499EXPORT_SYMBOL_GPL(ide_device_get);
500
501/**
502 * ide_device_put - release a reference to a ide_drive_t
503 * @drive: device to release a reference on
504 *
505 * Release a reference to the ide_drive_t and decrements the use count of
506 * the underlying LLDD module.
507 */
508void ide_device_put(ide_drive_t *drive)
509{
510#ifdef CONFIG_MODULE_UNLOAD
511 struct device *host_dev = drive->hwif->host->dev[0];
512 struct module *module = host_dev ? host_dev->driver->owner : NULL;
513
514 if (module)
515 module_put(module);
516#endif
517 put_device(&drive->gendev);
518}
519EXPORT_SYMBOL_GPL(ide_device_put);
520
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200521static int ide_bus_match(struct device *dev, struct device_driver *drv)
522{
523 return 1;
524}
525
Kay Sievers263756e2005-12-12 18:03:44 +0100526static char *media_string(ide_drive_t *drive)
527{
528 switch (drive->media) {
529 case ide_disk:
530 return "disk";
531 case ide_cdrom:
532 return "cdrom";
533 case ide_tape:
534 return "tape";
535 case ide_floppy:
536 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200537 case ide_optical:
538 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100539 default:
540 return "UNKNOWN";
541 }
542}
543
544static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
545{
546 ide_drive_t *drive = to_ide_device(dev);
547 return sprintf(buf, "%s\n", media_string(drive));
548}
549
550static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
551{
552 ide_drive_t *drive = to_ide_device(dev);
553 return sprintf(buf, "%s\n", drive->name);
554}
555
556static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
557{
558 ide_drive_t *drive = to_ide_device(dev);
559 return sprintf(buf, "ide:m-%s\n", media_string(drive));
560}
561
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100562static ssize_t model_show(struct device *dev, struct device_attribute *attr,
563 char *buf)
564{
565 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200566 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_PROD]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100567}
568
569static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
570 char *buf)
571{
572 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200573 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_FW_REV]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100574}
575
576static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
577 char *buf)
578{
579 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200580 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_SERNO]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100581}
582
Kay Sievers263756e2005-12-12 18:03:44 +0100583static struct device_attribute ide_dev_attrs[] = {
584 __ATTR_RO(media),
585 __ATTR_RO(drivename),
586 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100587 __ATTR_RO(model),
588 __ATTR_RO(firmware),
589 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100590 __ATTR_NULL
591};
592
Kay Sievers7eff2e72007-08-14 15:15:12 +0200593static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100594{
595 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100596
Kay Sievers7eff2e72007-08-14 15:15:12 +0200597 add_uevent_var(env, "MEDIA=%s", media_string(drive));
598 add_uevent_var(env, "DRIVENAME=%s", drive->name);
599 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100600 return 0;
601}
602
Russell King4031bbe2006-01-06 11:41:00 +0000603static int generic_ide_probe(struct device *dev)
604{
605 ide_drive_t *drive = to_ide_device(dev);
606 ide_driver_t *drv = to_ide_driver(dev->driver);
607
608 return drv->probe ? drv->probe(drive) : -ENODEV;
609}
610
611static int generic_ide_remove(struct device *dev)
612{
613 ide_drive_t *drive = to_ide_device(dev);
614 ide_driver_t *drv = to_ide_driver(dev->driver);
615
616 if (drv->remove)
617 drv->remove(drive);
618
619 return 0;
620}
621
622static void generic_ide_shutdown(struct device *dev)
623{
624 ide_drive_t *drive = to_ide_device(dev);
625 ide_driver_t *drv = to_ide_driver(dev->driver);
626
627 if (dev->driver && drv->shutdown)
628 drv->shutdown(drive);
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631struct bus_type ide_bus_type = {
632 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200633 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100634 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000635 .probe = generic_ide_probe,
636 .remove = generic_ide_remove,
637 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100638 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .suspend = generic_ide_suspend,
640 .resume = generic_ide_resume,
641};
642
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200643EXPORT_SYMBOL_GPL(ide_bus_type);
644
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200645int ide_vlb_clk;
646EXPORT_SYMBOL_GPL(ide_vlb_clk);
647
648module_param_named(vlb_clock, ide_vlb_clk, int, 0);
649MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
650
651int ide_pci_clk;
652EXPORT_SYMBOL_GPL(ide_pci_clk);
653
654module_param_named(pci_clock, ide_pci_clk, int, 0);
655MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
656
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200657static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
658{
659 int a, b, i, j = 1;
660 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
661
662 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
663 sscanf(s, "%d.%d", &a, &b) != 2)
664 return -EINVAL;
665
666 i = a * MAX_DRIVES + b;
667
668 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
669 return -EINVAL;
670
671 if (j)
672 *dev_param_mask |= (1 << i);
673 else
674 *dev_param_mask &= (1 << i);
675
676 return 0;
677}
678
679static unsigned int ide_nodma;
680
681module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
682MODULE_PARM_DESC(nodma, "disallow DMA for a device");
683
684static unsigned int ide_noflush;
685
686module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
687MODULE_PARM_DESC(noflush, "disable flush requests for a device");
688
689static unsigned int ide_noprobe;
690
691module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
692MODULE_PARM_DESC(noprobe, "skip probing for a device");
693
694static unsigned int ide_nowerr;
695
696module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200697MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200698
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200699static unsigned int ide_cdroms;
700
701module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
702MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
703
704struct chs_geom {
705 unsigned int cyl;
706 u8 head;
707 u8 sect;
708};
709
710static unsigned int ide_disks;
711static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
712
713static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
714{
715 int a, b, c = 0, h = 0, s = 0, i, j = 1;
716
717 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
718 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
719 return -EINVAL;
720
721 i = a * MAX_DRIVES + b;
722
723 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
724 return -EINVAL;
725
726 if (c > INT_MAX || h > 255 || s > 255)
727 return -EINVAL;
728
729 if (j)
730 ide_disks |= (1 << i);
731 else
732 ide_disks &= (1 << i);
733
734 ide_disks_chs[i].cyl = c;
735 ide_disks_chs[i].head = h;
736 ide_disks_chs[i].sect = s;
737
738 return 0;
739}
740
741module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
742MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
743
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200744static void ide_dev_apply_params(ide_drive_t *drive, u8 unit)
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200745{
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200746 int i = drive->hwif->index * MAX_DRIVES + unit;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200747
748 if (ide_nodma & (1 << i)) {
749 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200750 drive->dev_flags |= IDE_DFLAG_NODMA;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200751 }
752 if (ide_noflush & (1 << i)) {
753 printk(KERN_INFO "ide: disabling flush requests for %s\n",
754 drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200755 drive->dev_flags |= IDE_DFLAG_NOFLUSH;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200756 }
757 if (ide_noprobe & (1 << i)) {
758 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200759 drive->dev_flags |= IDE_DFLAG_NOPROBE;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200760 }
761 if (ide_nowerr & (1 << i)) {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200762 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200763 drive->name);
764 drive->bad_wstat = BAD_R_STAT;
765 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200766 if (ide_cdroms & (1 << i)) {
767 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200768 drive->dev_flags |= IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200769 drive->media = ide_cdrom;
770 /* an ATAPI device ignores DRDY */
771 drive->ready_stat = 0;
772 }
773 if (ide_disks & (1 << i)) {
774 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
775 drive->head = drive->bios_head = ide_disks_chs[i].head;
776 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200777
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200778 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
779 drive->name,
780 drive->cyl, drive->head, drive->sect);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200781
782 drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200783 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200784 drive->ready_stat = ATA_DRDY;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200785 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200786}
787
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200788static unsigned int ide_ignore_cable;
789
790static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
791{
792 int i, j = 1;
793
794 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
795 return -EINVAL;
796
797 if (i >= MAX_HWIFS || j < 0 || j > 1)
798 return -EINVAL;
799
800 if (j)
801 ide_ignore_cable |= (1 << i);
802 else
803 ide_ignore_cable &= (1 << i);
804
805 return 0;
806}
807
808module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
809MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
810
811void ide_port_apply_params(ide_hwif_t *hwif)
812{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200813 int i;
814
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200815 if (ide_ignore_cable & (1 << hwif->index)) {
816 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
817 hwif->name);
818 hwif->cbl = ATA_CBL_PATA40_SHORT;
819 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200820
821 for (i = 0; i < MAX_DRIVES; i++)
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200822 ide_dev_apply_params(&hwif->drives[i], i);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/*
826 * This is gets invoked once during initialization, to set *everything* up
827 */
828static int __init ide_init(void)
829{
Randy Dunlap349ae232006-10-03 01:14:23 -0700830 int ret;
831
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100832 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100833
Randy Dunlap349ae232006-10-03 01:14:23 -0700834 ret = bus_register(&ide_bus_type);
835 if (ret < 0) {
836 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
837 return ret;
838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200840 ide_port_class = class_create(THIS_MODULE, "ide_port");
841 if (IS_ERR(ide_port_class)) {
842 ret = PTR_ERR(ide_port_class);
843 goto out_port_class;
844 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200845
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200846 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200849
850out_port_class:
851 bus_unregister(&ide_bus_type);
852
853 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200856static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200860 class_destroy(ide_port_class);
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 bus_unregister(&ide_bus_type);
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200866module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200868MODULE_LICENSE("GPL");