3 * pata-isapnp.c - ISA PnP PATA controller driver.
4 * Copyright 2005/2006 Red Hat Inc, all rights reserved.
6 * Based in part on ide-pnp.c by Andrey Panin <pazke@donpac.ru>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/isapnp.h>
12 #include <linux/init.h>
13 #include <linux/blkdev.h>
14 #include <linux/delay.h>
15 #include <scsi/scsi_host.h>
16 #include <linux/ata.h>
17 #include <linux/libata.h>
19 #define DRV_NAME "pata_isapnp"
20 #define DRV_VERSION "0.2.5"
22 static struct scsi_host_template isapnp_sht
= {
23 ATA_PIO_SHT(DRV_NAME
),
26 static struct ata_port_operations isapnp_port_ops
= {
27 .inherits
= &ata_sff_port_ops
,
28 .cable_detect
= ata_cable_40wire
,
31 static struct ata_port_operations isapnp_noalt_port_ops
= {
32 .inherits
= &ata_sff_port_ops
,
33 .cable_detect
= ata_cable_40wire
,
34 /* No altstatus so we don't want to use the lost interrupt poll */
35 .lost_interrupt
= ATA_OP_NULL
,
39 * isapnp_init_one - attach an isapnp interface
41 * @dev_id: matching detect line
43 * Register an ISA bus IDE interface. Such interfaces are PIO 0 and
47 static int isapnp_init_one(struct pnp_dev
*idev
, const struct pnp_device_id
*dev_id
)
49 struct ata_host
*host
;
51 void __iomem
*cmd_addr
, *ctl_addr
;
53 irq_handler_t handler
= NULL
;
55 if (pnp_port_valid(idev
, 0) == 0)
58 if (pnp_irq_valid(idev
, 0)) {
59 irq
= pnp_irq(idev
, 0);
60 handler
= ata_sff_interrupt
;
64 host
= ata_host_alloc(&idev
->dev
, 1);
68 /* acquire resources and fill host */
69 cmd_addr
= devm_ioport_map(&idev
->dev
, pnp_port_start(idev
, 0), 8);
75 ap
->ops
= &isapnp_noalt_port_ops
;
76 ap
->pio_mask
= ATA_PIO0
;
77 ap
->flags
|= ATA_FLAG_SLAVE_POSS
;
79 ap
->ioaddr
.cmd_addr
= cmd_addr
;
81 if (pnp_port_valid(idev
, 1) == 0) {
82 ctl_addr
= devm_ioport_map(&idev
->dev
,
83 pnp_port_start(idev
, 1), 1);
84 ap
->ioaddr
.altstatus_addr
= ctl_addr
;
85 ap
->ioaddr
.ctl_addr
= ctl_addr
;
86 ap
->ops
= &isapnp_port_ops
;
89 ata_sff_std_ports(&ap
->ioaddr
);
91 ata_port_desc(ap
, "cmd 0x%llx ctl 0x%llx",
92 (unsigned long long)pnp_port_start(idev
, 0),
93 (unsigned long long)pnp_port_start(idev
, 1));
96 return ata_host_activate(host
, irq
, handler
, 0,
101 * isapnp_remove_one - unplug an isapnp interface
104 * Remove a previously configured PnP ATA port. Called only on module
105 * unload events as the core does not currently deal with ISAPnP docking.
108 static void isapnp_remove_one(struct pnp_dev
*idev
)
110 struct device
*dev
= &idev
->dev
;
111 struct ata_host
*host
= dev_get_drvdata(dev
);
113 ata_host_detach(host
);
116 static struct pnp_device_id isapnp_devices
[] = {
117 /* Generic ESDI/IDE/ATA compatible hard disk controller */
118 {.id
= "PNP0600", .driver_data
= 0},
122 MODULE_DEVICE_TABLE(pnp
, isapnp_devices
);
124 static struct pnp_driver isapnp_driver
= {
126 .id_table
= isapnp_devices
,
127 .probe
= isapnp_init_one
,
128 .remove
= isapnp_remove_one
,
131 static int __init
isapnp_init(void)
133 return pnp_register_driver(&isapnp_driver
);
136 static void __exit
isapnp_exit(void)
138 pnp_unregister_driver(&isapnp_driver
);
141 MODULE_AUTHOR("Alan Cox");
142 MODULE_DESCRIPTION("low-level driver for ISA PnP ATA");
143 MODULE_LICENSE("GPL");
144 MODULE_VERSION(DRV_VERSION
);
146 module_init(isapnp_init
);
147 module_exit(isapnp_exit
);