blob: 8a178a55a027715d2fae6d11f1ec2683114b7180 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * This file provides autodetection for ISA PnP IDE interfaces.
3 * It was tested with "ESS ES1868 Plug and Play AudioDrive" IDE interface.
4 *
5 * Copyright (C) 2000 Andrey Panin <pazke@donpac.ru>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * You should have received a copy of the GNU General Public License
13 * (for example /usr/src/linux/COPYING); if not, write to the Free
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020014 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17#include <linux/init.h>
18#include <linux/pnp.h>
19#include <linux/ide.h>
20
21/* Add your devices here :)) */
22static struct pnp_device_id idepnp_devices[] = {
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020023 /* Generic ESDI/IDE/ATA compatible hard disk controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 {.id = "PNP0600", .driver_data = 0},
25 {.id = ""}
26};
27
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020028static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
30 hw_regs_t hw;
31 ide_hwif_t *hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) && pnp_irq_valid(dev, 0)))
34 return -1;
35
36 memset(&hw, 0, sizeof(hw));
37 ide_std_init_ports(&hw, pnp_port_start(dev, 0),
38 pnp_port_start(dev, 1));
39 hw.irq = pnp_irq(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Bartlomiej Zolnierkiewicz59bff5b2008-04-26 17:36:32 +020041 hwif = ide_find_port();
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010042 if (hwif) {
43 u8 index = hwif->index;
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010044 u8 idx[4] = { index, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010046 ide_init_port_data(hwif, index);
47 ide_init_port_hw(hwif, &hw);
48
49 printk(KERN_INFO "ide%d: generic PnP IDE interface\n", index);
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020050 pnp_set_drvdata(dev, hwif);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010051
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +010052 ide_device_add(idx, NULL);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return 0;
55 }
56
57 return -1;
58}
59
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020060static void idepnp_remove(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 ide_hwif_t *hwif = pnp_get_drvdata(dev);
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +010063
64 if (hwif)
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +020065 ide_unregister(hwif->index);
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +010066 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 printk(KERN_ERR "idepnp: Unable to remove device, please report.\n");
68}
69
70static struct pnp_driver idepnp_driver = {
71 .name = "ide",
72 .id_table = idepnp_devices,
73 .probe = idepnp_probe,
74 .remove = idepnp_remove,
75};
76
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010077static int __init pnpide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010079 return pnp_register_driver(&idepnp_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
Tejun Heo68550362007-01-27 13:47:02 +010081
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010082static void __exit pnpide_exit(void)
Tejun Heo68550362007-01-27 13:47:02 +010083{
84 pnp_unregister_driver(&idepnp_driver);
85}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010086
87module_init(pnpide_init);
88module_exit(pnpide_exit);
Adrian Bunka62ee642008-04-02 21:22:02 +020089
90MODULE_LICENSE("GPL");