4 * Copyright (C) 2007 MontaVista Software
6 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/types.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/ide.h>
18 #include <linux/ioport.h>
19 #include <linux/module.h>
20 #include <linux/ata_platform.h>
21 #include <linux/platform_device.h>
22 #include <linux/interrupt.h>
25 static void __devinit
plat_ide_setup_ports(struct ide_hw
*hw
,
28 struct pata_platform_info
*pdata
,
31 unsigned long port
= (unsigned long)base
;
34 hw
->io_ports
.data_addr
= port
;
36 port
+= (1 << pdata
->ioport_shift
);
38 i
++, port
+= (1 << pdata
->ioport_shift
))
39 hw
->io_ports_array
[i
] = port
;
41 hw
->io_ports
.ctl_addr
= (unsigned long)ctrl
;
46 static const struct ide_port_info platform_ide_port_info
= {
47 .host_flags
= IDE_HFLAG_NO_DMA
,
48 .chipset
= ide_generic
,
51 static int __devinit
plat_ide_probe(struct platform_device
*pdev
)
53 struct resource
*res_base
, *res_alt
, *res_irq
;
54 void __iomem
*base
, *alt_base
;
55 struct pata_platform_info
*pdata
;
56 struct ide_host
*host
;
57 int ret
= 0, mmio
= 0;
58 struct ide_hw hw
, *hws
[] = { &hw
};
59 struct ide_port_info d
= platform_ide_port_info
;
61 pdata
= pdev
->dev
.platform_data
;
63 /* get a pointer to the register memory */
64 res_base
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
65 res_alt
= platform_get_resource(pdev
, IORESOURCE_IO
, 1);
67 if (!res_base
|| !res_alt
) {
68 res_base
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
69 res_alt
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
70 if (!res_base
|| !res_alt
) {
77 res_irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
84 base
= devm_ioremap(&pdev
->dev
,
85 res_base
->start
, resource_size(res_base
));
86 alt_base
= devm_ioremap(&pdev
->dev
,
87 res_alt
->start
, resource_size(res_alt
));
89 base
= devm_ioport_map(&pdev
->dev
,
90 res_base
->start
, resource_size(res_base
));
91 alt_base
= devm_ioport_map(&pdev
->dev
,
92 res_alt
->start
, resource_size(res_alt
));
95 memset(&hw
, 0, sizeof(hw
));
96 plat_ide_setup_ports(&hw
, base
, alt_base
, pdata
, res_irq
->start
);
99 d
.irq_flags
= res_irq
->flags
& IRQF_TRIGGER_MASK
;
100 if (res_irq
->flags
& IORESOURCE_IRQ_SHAREABLE
)
101 d
.irq_flags
|= IRQF_SHARED
;
104 d
.host_flags
|= IDE_HFLAG_MMIO
;
106 ret
= ide_host_add(&d
, hws
, 1, &host
);
110 platform_set_drvdata(pdev
, host
);
118 static int __devexit
plat_ide_remove(struct platform_device
*pdev
)
120 struct ide_host
*host
= dev_get_drvdata(&pdev
->dev
);
122 ide_host_remove(host
);
127 static struct platform_driver platform_ide_driver
= {
129 .name
= "pata_platform",
130 .owner
= THIS_MODULE
,
132 .probe
= plat_ide_probe
,
133 .remove
= __devexit_p(plat_ide_remove
),
136 static int __init
platform_ide_init(void)
138 return platform_driver_register(&platform_ide_driver
);
141 static void __exit
platform_ide_exit(void)
143 platform_driver_unregister(&platform_ide_driver
);
146 MODULE_DESCRIPTION("Platform IDE driver");
147 MODULE_LICENSE("GPL");
148 MODULE_ALIAS("platform:pata_platform");
150 module_init(platform_ide_init
);
151 module_exit(platform_ide_exit
);