blob: adbd01784162453968ce3a4c33a035591d97b679 [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
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020021#define DRV_NAME "ide-pnp"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* Add your devices here :)) */
24static struct pnp_device_id idepnp_devices[] = {
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020025 /* Generic ESDI/IDE/ATA compatible hard disk controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 {.id = "PNP0600", .driver_data = 0},
27 {.id = ""}
28};
29
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020030static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
32 hw_regs_t hw;
33 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020034 unsigned long base, ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) && pnp_irq_valid(dev, 0)))
37 return -1;
38
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020039 base = pnp_port_start(dev, 0);
40 ctl = pnp_port_start(dev, 1);
41
42 if (!request_region(base, 8, DRV_NAME)) {
43 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
44 DRV_NAME, base, base + 7);
45 return -EBUSY;
46 }
47
48 if (!request_region(ctl, 1, DRV_NAME)) {
49 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
50 DRV_NAME, ctl);
51 release_region(base, 8);
52 return -EBUSY;
53 }
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020056 ide_std_init_ports(&hw, base, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 hw.irq = pnp_irq(dev, 0);
Bartlomiej Zolnierkiewiczd427e832008-06-10 20:56:37 +020058 hw.chipset = ide_generic;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Bartlomiej Zolnierkiewicz59bff5b2008-04-26 17:36:32 +020060 hwif = ide_find_port();
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010061 if (hwif) {
62 u8 index = hwif->index;
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010063 u8 idx[4] = { index, 0xff, 0xff, 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +010065 ide_init_port_data(hwif, index);
66 ide_init_port_hw(hwif, &hw);
67
68 printk(KERN_INFO "ide%d: generic PnP IDE interface\n", index);
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020069 pnp_set_drvdata(dev, hwif);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010070
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +010071 ide_device_add(idx, NULL);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
74 }
75
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020076 release_region(ctl, 1);
77 release_region(base, 8);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return -1;
80}
81
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020082static void idepnp_remove(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 ide_hwif_t *hwif = pnp_get_drvdata(dev);
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +010085
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +020086 ide_unregister(hwif);
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020087
88 release_region(pnp_port_start(dev, 1), 1);
89 release_region(pnp_port_start(dev, 0), 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92static struct pnp_driver idepnp_driver = {
93 .name = "ide",
94 .id_table = idepnp_devices,
95 .probe = idepnp_probe,
96 .remove = idepnp_remove,
97};
98
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010099static int __init pnpide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100101 return pnp_register_driver(&idepnp_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
Tejun Heo68550362007-01-27 13:47:02 +0100103
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100104static void __exit pnpide_exit(void)
Tejun Heo68550362007-01-27 13:47:02 +0100105{
106 pnp_unregister_driver(&idepnp_driver);
107}
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100108
109module_init(pnpide_init);
110module_exit(pnpide_exit);
Adrian Bunka62ee642008-04-02 21:22:02 +0200111
112MODULE_LICENSE("GPL");