blob: 7624b937398a7c67f0474962ff5d048134b85dd1 [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;
117 drive->select.all = (unit<<4)|0xa0;
118 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 Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200230 if (hwif->dma_base)
Bartlomiej Zolnierkiewicz0d1bad22008-04-26 22:25:19 +0200231 ide_release_dma_engine(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200233 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100236void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
237{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200238 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100239 hwif->irq = hw->irq;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100240 hwif->chipset = hw->chipset;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +0200241 hwif->dev = hw->dev;
242 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100243 hwif->ack_intr = hw->ack_intr;
Bartlomiej Zolnierkiewiczd6276b52008-07-23 19:55:56 +0200244 hwif->config_data = hw->config;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100245}
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/*
248 * Locks for IDE setting functionality
249 */
250
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200251DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200253ide_devset_get(io_32bit, io_32bit);
254
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200255static int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200257 if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200258 return -EPERM;
259
260 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
261 return -EINVAL;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266}
267
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200268ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200269
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200270static int set_ksettings(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200271{
272 if (arg < 0 || arg > 1)
273 return -EINVAL;
274
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200275 if (arg)
276 drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS;
277 else
278 drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200279
280 return 0;
281}
282
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200283ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200284
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200285static int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200288 int err = -EPERM;
289
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200290 if (arg < 0 || arg > 1)
291 return -EINVAL;
292
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +0200293 if (ata_id_has_dma(drive->id) == 0)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200294 goto out;
295
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200296 if (drive->hwif->dma_ops == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200297 goto out;
298
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200299 err = 0;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100302 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200303 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100304 } else
305 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200306
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200307out:
308 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200310 if (arg < 0 || arg > 1)
311 return -EINVAL;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return -EPERM;
314#endif
315}
316
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200317static int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200319 struct request *rq;
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200320 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200321 const struct ide_port_ops *port_ops = hwif->port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200323 if (arg < 0 || arg > 255)
324 return -EINVAL;
325
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200326 if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
Bartlomiej Zolnierkiewicz784506c2008-04-26 17:36:43 +0200327 (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (drive->special.b.set_tune)
331 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100332
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200333 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
334 rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 drive->tune_req = (u8) arg;
337 drive->special.b.set_tune = 1;
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200338
339 blk_execute_rq(drive->queue, NULL, rq, 0);
340 blk_put_request(rq);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return 0;
343}
344
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200345ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK);
Bartlomiej Zolnierkiewicz8185d5a2008-10-10 22:39:28 +0200346
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200347static int set_unmaskirq(ide_drive_t *drive, int arg)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200348{
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200349 if (drive->dev_flags & IDE_DFLAG_NO_UNMASK)
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200350 return -EPERM;
351
352 if (arg < 0 || arg > 1)
353 return -EINVAL;
354
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200355 if (arg)
356 drive->dev_flags |= IDE_DFLAG_UNMASK;
357 else
358 drive->dev_flags &= ~IDE_DFLAG_UNMASK;
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200359
360 return 0;
361}
362
Elias Oltmanns92f1f8f2008-10-10 22:39:40 +0200363#define ide_gen_devset_rw(_name, _func) \
364__IDE_DEVSET(_name, DS_SYNC, get_##_func, set_##_func)
365
366ide_gen_devset_rw(io_32bit, io_32bit);
367ide_gen_devset_rw(keepsettings, ksettings);
368ide_gen_devset_rw(unmaskirq, unmaskirq);
369ide_gen_devset_rw(using_dma, using_dma);
370__IDE_DEVSET(pio_mode, 0, NULL, set_pio_mode);
371
David Brownellb887d2e2006-08-14 23:11:05 -0700372static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200374 ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100375 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200376 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct request_pm_state rqpm;
378 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200379 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200381 /* call ACPI _GTM only once */
382 if ((drive->dn & 1) == 0 || pair == NULL)
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100383 ide_acpi_get_timing(hwif);
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 memset(&rqpm, 0, sizeof(rqpm));
386 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200387 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
388 rq->cmd_type = REQ_TYPE_PM_SUSPEND;
389 rq->special = &args;
390 rq->data = &rqpm;
Bartlomiej Zolnierkiewicz0d346ba2008-10-13 21:39:38 +0200391 rqpm.pm_step = IDE_PM_START_SUSPEND;
David Brownellb887d2e2006-08-14 23:11:05 -0700392 if (mesg.event == PM_EVENT_PRETHAW)
393 mesg.event = PM_EVENT_FREEZE;
394 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200396 ret = blk_execute_rq(drive->queue, NULL, rq, 0);
397 blk_put_request(rq);
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200398
399 /* call ACPI _PS3 only after both devices are suspended */
400 if (ret == 0 && ((drive->dn & 1) || pair == NULL))
Shaohua Li5e321322007-10-11 23:53:58 +0200401 ide_acpi_set_state(hwif, 0);
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200402
Shaohua Li5e321322007-10-11 23:53:58 +0200403 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406static int generic_ide_resume(struct device *dev)
407{
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200408 ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100409 ide_hwif_t *hwif = HWIF(drive);
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200410 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct request_pm_state rqpm;
412 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200413 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Bartlomiej Zolnierkiewicz1ea10312008-10-13 21:39:35 +0200415 /* call ACPI _PS0 / _STM only once */
416 if ((drive->dn & 1) == 0 || pair == NULL) {
Shaohua Li5e321322007-10-11 23:53:58 +0200417 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100418 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200419 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100420
421 ide_acpi_exec_tfs(drive);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 memset(&rqpm, 0, sizeof(rqpm));
424 memset(&args, 0, sizeof(args));
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200425 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
426 rq->cmd_type = REQ_TYPE_PM_RESUME;
427 rq->cmd_flags |= REQ_PREEMPT;
428 rq->special = &args;
429 rq->data = &rqpm;
Bartlomiej Zolnierkiewicz0d346ba2008-10-13 21:39:38 +0200430 rqpm.pm_step = IDE_PM_START_RESUME;
Pavel Machekca078ba2005-09-03 15:56:57 -0700431 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
FUJITA Tomonori5b114712008-07-15 21:21:44 +0200433 err = blk_execute_rq(drive->queue, NULL, rq, 1);
434 blk_put_request(rq);
Lee Trager0d2157f2007-06-08 15:14:30 +0200435
Rafael J. Wysockice9b2b0a2007-06-16 02:24:43 +0200436 if (err == 0 && dev->driver) {
437 ide_driver_t *drv = to_ide_driver(dev->driver);
438
439 if (drv->resume)
440 drv->resume(drive);
441 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200442
443 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +0200446/**
447 * ide_device_get - get an additional reference to a ide_drive_t
448 * @drive: device to get a reference to
449 *
450 * Gets a reference to the ide_drive_t and increments the use count of the
451 * underlying LLDD module.
452 */
453int ide_device_get(ide_drive_t *drive)
454{
455 struct device *host_dev;
456 struct module *module;
457
458 if (!get_device(&drive->gendev))
459 return -ENXIO;
460
461 host_dev = drive->hwif->host->dev[0];
462 module = host_dev ? host_dev->driver->owner : NULL;
463
464 if (module && !try_module_get(module)) {
465 put_device(&drive->gendev);
466 return -ENXIO;
467 }
468
469 return 0;
470}
471EXPORT_SYMBOL_GPL(ide_device_get);
472
473/**
474 * ide_device_put - release a reference to a ide_drive_t
475 * @drive: device to release a reference on
476 *
477 * Release a reference to the ide_drive_t and decrements the use count of
478 * the underlying LLDD module.
479 */
480void ide_device_put(ide_drive_t *drive)
481{
482#ifdef CONFIG_MODULE_UNLOAD
483 struct device *host_dev = drive->hwif->host->dev[0];
484 struct module *module = host_dev ? host_dev->driver->owner : NULL;
485
486 if (module)
487 module_put(module);
488#endif
489 put_device(&drive->gendev);
490}
491EXPORT_SYMBOL_GPL(ide_device_put);
492
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200493static int ide_bus_match(struct device *dev, struct device_driver *drv)
494{
495 return 1;
496}
497
Kay Sievers263756e2005-12-12 18:03:44 +0100498static char *media_string(ide_drive_t *drive)
499{
500 switch (drive->media) {
501 case ide_disk:
502 return "disk";
503 case ide_cdrom:
504 return "cdrom";
505 case ide_tape:
506 return "tape";
507 case ide_floppy:
508 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +0200509 case ide_optical:
510 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +0100511 default:
512 return "UNKNOWN";
513 }
514}
515
516static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
517{
518 ide_drive_t *drive = to_ide_device(dev);
519 return sprintf(buf, "%s\n", media_string(drive));
520}
521
522static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
523{
524 ide_drive_t *drive = to_ide_device(dev);
525 return sprintf(buf, "%s\n", drive->name);
526}
527
528static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
529{
530 ide_drive_t *drive = to_ide_device(dev);
531 return sprintf(buf, "ide:m-%s\n", media_string(drive));
532}
533
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100534static ssize_t model_show(struct device *dev, struct device_attribute *attr,
535 char *buf)
536{
537 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200538 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_PROD]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100539}
540
541static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
542 char *buf)
543{
544 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200545 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_FW_REV]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100546}
547
548static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
549 char *buf)
550{
551 ide_drive_t *drive = to_ide_device(dev);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200552 return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_SERNO]);
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100553}
554
Kay Sievers263756e2005-12-12 18:03:44 +0100555static struct device_attribute ide_dev_attrs[] = {
556 __ATTR_RO(media),
557 __ATTR_RO(drivename),
558 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +0100559 __ATTR_RO(model),
560 __ATTR_RO(firmware),
561 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +0100562 __ATTR_NULL
563};
564
Kay Sievers7eff2e72007-08-14 15:15:12 +0200565static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +0100566{
567 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +0100568
Kay Sievers7eff2e72007-08-14 15:15:12 +0200569 add_uevent_var(env, "MEDIA=%s", media_string(drive));
570 add_uevent_var(env, "DRIVENAME=%s", drive->name);
571 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +0100572 return 0;
573}
574
Russell King4031bbe2006-01-06 11:41:00 +0000575static int generic_ide_probe(struct device *dev)
576{
577 ide_drive_t *drive = to_ide_device(dev);
578 ide_driver_t *drv = to_ide_driver(dev->driver);
579
580 return drv->probe ? drv->probe(drive) : -ENODEV;
581}
582
583static int generic_ide_remove(struct device *dev)
584{
585 ide_drive_t *drive = to_ide_device(dev);
586 ide_driver_t *drv = to_ide_driver(dev->driver);
587
588 if (drv->remove)
589 drv->remove(drive);
590
591 return 0;
592}
593
594static void generic_ide_shutdown(struct device *dev)
595{
596 ide_drive_t *drive = to_ide_device(dev);
597 ide_driver_t *drv = to_ide_driver(dev->driver);
598
599 if (dev->driver && drv->shutdown)
600 drv->shutdown(drive);
601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603struct bus_type ide_bus_type = {
604 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200605 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +0100606 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +0000607 .probe = generic_ide_probe,
608 .remove = generic_ide_remove,
609 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +0100610 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 .suspend = generic_ide_suspend,
612 .resume = generic_ide_resume,
613};
614
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200615EXPORT_SYMBOL_GPL(ide_bus_type);
616
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200617int ide_vlb_clk;
618EXPORT_SYMBOL_GPL(ide_vlb_clk);
619
620module_param_named(vlb_clock, ide_vlb_clk, int, 0);
621MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
622
623int ide_pci_clk;
624EXPORT_SYMBOL_GPL(ide_pci_clk);
625
626module_param_named(pci_clock, ide_pci_clk, int, 0);
627MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
628
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200629static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
630{
631 int a, b, i, j = 1;
632 unsigned int *dev_param_mask = (unsigned int *)kp->arg;
633
634 if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
635 sscanf(s, "%d.%d", &a, &b) != 2)
636 return -EINVAL;
637
638 i = a * MAX_DRIVES + b;
639
640 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
641 return -EINVAL;
642
643 if (j)
644 *dev_param_mask |= (1 << i);
645 else
646 *dev_param_mask &= (1 << i);
647
648 return 0;
649}
650
651static unsigned int ide_nodma;
652
653module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
654MODULE_PARM_DESC(nodma, "disallow DMA for a device");
655
656static unsigned int ide_noflush;
657
658module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
659MODULE_PARM_DESC(noflush, "disable flush requests for a device");
660
661static unsigned int ide_noprobe;
662
663module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
664MODULE_PARM_DESC(noprobe, "skip probing for a device");
665
666static unsigned int ide_nowerr;
667
668module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200669MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200670
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200671static unsigned int ide_cdroms;
672
673module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
674MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
675
676struct chs_geom {
677 unsigned int cyl;
678 u8 head;
679 u8 sect;
680};
681
682static unsigned int ide_disks;
683static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
684
685static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
686{
687 int a, b, c = 0, h = 0, s = 0, i, j = 1;
688
689 if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
690 sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
691 return -EINVAL;
692
693 i = a * MAX_DRIVES + b;
694
695 if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
696 return -EINVAL;
697
698 if (c > INT_MAX || h > 255 || s > 255)
699 return -EINVAL;
700
701 if (j)
702 ide_disks |= (1 << i);
703 else
704 ide_disks &= (1 << i);
705
706 ide_disks_chs[i].cyl = c;
707 ide_disks_chs[i].head = h;
708 ide_disks_chs[i].sect = s;
709
710 return 0;
711}
712
713module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
714MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
715
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200716static void ide_dev_apply_params(ide_drive_t *drive, u8 unit)
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200717{
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200718 int i = drive->hwif->index * MAX_DRIVES + unit;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200719
720 if (ide_nodma & (1 << i)) {
721 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200722 drive->dev_flags |= IDE_DFLAG_NODMA;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200723 }
724 if (ide_noflush & (1 << i)) {
725 printk(KERN_INFO "ide: disabling flush requests for %s\n",
726 drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200727 drive->dev_flags |= IDE_DFLAG_NOFLUSH;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200728 }
729 if (ide_noprobe & (1 << i)) {
730 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200731 drive->dev_flags |= IDE_DFLAG_NOPROBE;
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200732 }
733 if (ide_nowerr & (1 << i)) {
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200734 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200735 drive->name);
736 drive->bad_wstat = BAD_R_STAT;
737 }
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200738 if (ide_cdroms & (1 << i)) {
739 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200740 drive->dev_flags |= IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200741 drive->media = ide_cdrom;
742 /* an ATAPI device ignores DRDY */
743 drive->ready_stat = 0;
744 }
745 if (ide_disks & (1 << i)) {
746 drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl;
747 drive->head = drive->bios_head = ide_disks_chs[i].head;
748 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200749
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200750 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
751 drive->name,
752 drive->cyl, drive->head, drive->sect);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200753
754 drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200755 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200756 drive->ready_stat = ATA_DRDY;
Bartlomiej Zolnierkiewicz4706a7e2008-04-27 15:38:30 +0200757 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200758}
759
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200760static unsigned int ide_ignore_cable;
761
762static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
763{
764 int i, j = 1;
765
766 if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
767 return -EINVAL;
768
769 if (i >= MAX_HWIFS || j < 0 || j > 1)
770 return -EINVAL;
771
772 if (j)
773 ide_ignore_cable |= (1 << i);
774 else
775 ide_ignore_cable &= (1 << i);
776
777 return 0;
778}
779
780module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
781MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
782
783void ide_port_apply_params(ide_hwif_t *hwif)
784{
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200785 int i;
786
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200787 if (ide_ignore_cable & (1 << hwif->index)) {
788 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
789 hwif->name);
790 hwif->cbl = ATA_CBL_PATA40_SHORT;
791 }
Bartlomiej Zolnierkiewicz6e875432008-04-27 15:38:30 +0200792
793 for (i = 0; i < MAX_DRIVES; i++)
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200794 ide_dev_apply_params(&hwif->drives[i], i);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +0200795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/*
798 * This is gets invoked once during initialization, to set *everything* up
799 */
800static int __init ide_init(void)
801{
Randy Dunlap349ae232006-10-03 01:14:23 -0700802 int ret;
803
Bartlomiej Zolnierkiewiczeba8ff92008-02-11 00:32:13 +0100804 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100805
Randy Dunlap349ae232006-10-03 01:14:23 -0700806 ret = bus_register(&ide_bus_type);
807 if (ret < 0) {
808 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
809 return ret;
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200812 ide_port_class = class_create(THIS_MODULE, "ide_port");
813 if (IS_ERR(ide_port_class)) {
814 ret = PTR_ERR(ide_port_class);
815 goto out_port_class;
816 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200817
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200818 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return 0;
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200821
822out_port_class:
823 bus_unregister(&ide_bus_type);
824
825 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200828static void __exit ide_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200832 class_destroy(ide_port_class);
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 bus_unregister(&ide_bus_type);
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837module_init(ide_init);
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200838module_exit(ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Bartlomiej Zolnierkiewicz931ee0d2008-07-15 21:21:47 +0200840MODULE_LICENSE("GPL");