blob: fc541f1cf8de606ae4387eceb8a9a5fc79c0cbc4 [file] [log] [blame]
Thomas Gleixneraf1a8892019-05-20 19:08:12 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * This file provides autodetection for ISA PnP IDE interfaces.
4 * It was tested with "ESS ES1868 Plug and Play AudioDrive" IDE interface.
5 *
6 * Copyright (C) 2000 Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/init.h>
10#include <linux/pnp.h>
11#include <linux/ide.h>
Paul Gortmakerbff78322011-07-03 13:41:29 -040012#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020014#define DRV_NAME "ide-pnp"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016/* Add your devices here :)) */
Arvind Yadavb671e172017-08-16 10:24:32 +053017static const struct pnp_device_id idepnp_devices[] = {
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020018 /* Generic ESDI/IDE/ATA compatible hard disk controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 {.id = "PNP0600", .driver_data = 0},
20 {.id = ""}
21};
22
Bartlomiej Zolnierkiewiczee1464a2009-03-27 12:46:18 +010023static const struct ide_port_info ide_pnp_port_info = {
24 .host_flags = IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +020025 .chipset = ide_generic,
Bartlomiej Zolnierkiewiczee1464a2009-03-27 12:46:18 +010026};
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{
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020030 struct ide_host *host;
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020031 unsigned long base, ctl;
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +020032 int rc;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +020033 struct ide_hw hw, *hws[] = { &hw };
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Bartlomiej Zolnierkiewicze193c3e2008-07-16 20:33:43 +020035 printk(KERN_INFO DRV_NAME ": generic PnP IDE interface\n");
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) && pnp_irq_valid(dev, 0)))
38 return -1;
39
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020040 base = pnp_port_start(dev, 0);
41 ctl = pnp_port_start(dev, 1);
42
43 if (!request_region(base, 8, DRV_NAME)) {
44 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
45 DRV_NAME, base, base + 7);
46 return -EBUSY;
47 }
48
49 if (!request_region(ctl, 1, DRV_NAME)) {
50 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
51 DRV_NAME, ctl);
52 release_region(base, 8);
53 return -EBUSY;
54 }
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020057 ide_std_init_ports(&hw, base, ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 hw.irq = pnp_irq(dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +020060 rc = ide_host_add(&ide_pnp_port_info, hws, 1, &host);
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +020061 if (rc)
62 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +020064 pnp_set_drvdata(dev, host);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +010065
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +020066 return 0;
67out:
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020068 release_region(ctl, 1);
69 release_region(base, 8);
70
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +020071 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Paolo Ciarrocchi177b8fe2008-04-26 17:36:40 +020074static void idepnp_remove(struct pnp_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020076 struct ide_host *host = pnp_get_drvdata(dev);
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +010077
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020078 ide_host_remove(host);
Bartlomiej Zolnierkiewicz134d4542008-04-26 22:25:16 +020079
80 release_region(pnp_port_start(dev, 1), 1);
81 release_region(pnp_port_start(dev, 0), 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84static struct pnp_driver idepnp_driver = {
85 .name = "ide",
86 .id_table = idepnp_devices,
87 .probe = idepnp_probe,
88 .remove = idepnp_remove,
89};
90
Peter Huewe6a533302015-03-16 21:46:33 +010091module_pnp_driver(idepnp_driver);
Adrian Bunka62ee642008-04-02 21:22:02 +020092MODULE_LICENSE("GPL");