blob: 542603b394e4a59997ca82940598b3a64f8edfd9 [file] [log] [blame]
Anton Vorontsov8cb1f562007-10-11 23:53:58 +02001/*
2 * Platform IDE driver
3 *
4 * Copyright (C) 2007 MontaVista Software
5 *
6 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
7 *
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.
12 */
13
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>
Jeff Garzik0a87e3e2008-02-01 18:02:30 -050020#include <linux/ata_platform.h>
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020021#include <linux/platform_device.h>
22#include <linux/io.h>
23
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +020024static void __devinit plat_ide_setup_ports(struct ide_hw *hw,
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010025 void __iomem *base,
26 void __iomem *ctrl,
27 struct pata_platform_info *pdata,
28 int irq)
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020029{
30 unsigned long port = (unsigned long)base;
Bartlomiej Zolnierkiewiczbaa8f3e2007-10-20 00:32:31 +020031 int i;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020032
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020033 hw->io_ports.data_addr = port;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020034
35 port += (1 << pdata->ioport_shift);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020036 for (i = 1; i <= 7;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020037 i++, port += (1 << pdata->ioport_shift))
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020038 hw->io_ports_array[i] = port;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020039
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +020040 hw->io_ports.ctl_addr = (unsigned long)ctrl;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020041
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010042 hw->irq = irq;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020043}
44
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +020045static const struct ide_port_info platform_ide_port_info = {
46 .host_flags = IDE_HFLAG_NO_DMA,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +020047 .chipset = ide_generic,
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +020048};
49
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020050static int __devinit plat_ide_probe(struct platform_device *pdev)
51{
52 struct resource *res_base, *res_alt, *res_irq;
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010053 void __iomem *base, *alt_base;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020054 struct pata_platform_info *pdata;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020055 struct ide_host *host;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020056 int ret = 0, mmio = 0;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +020057 struct ide_hw hw, *hws[] = { &hw };
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +020058 struct ide_port_info d = platform_ide_port_info;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020059
60 pdata = pdev->dev.platform_data;
61
62 /* get a pointer to the register memory */
63 res_base = platform_get_resource(pdev, IORESOURCE_IO, 0);
64 res_alt = platform_get_resource(pdev, IORESOURCE_IO, 1);
65
66 if (!res_base || !res_alt) {
67 res_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
68 res_alt = platform_get_resource(pdev, IORESOURCE_MEM, 1);
69 if (!res_base || !res_alt) {
70 ret = -ENOMEM;
71 goto out;
72 }
73 mmio = 1;
74 }
75
76 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
77 if (!res_irq) {
78 ret = -EINVAL;
79 goto out;
80 }
81
82 if (mmio) {
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010083 base = devm_ioremap(&pdev->dev,
H Hartley Sweeten30433d82009-11-23 10:30:34 -080084 res_base->start, resource_size(res_base));
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010085 alt_base = devm_ioremap(&pdev->dev,
H Hartley Sweeten30433d82009-11-23 10:30:34 -080086 res_alt->start, resource_size(res_alt));
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020087 } else {
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010088 base = devm_ioport_map(&pdev->dev,
H Hartley Sweeten30433d82009-11-23 10:30:34 -080089 res_base->start, resource_size(res_base));
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010090 alt_base = devm_ioport_map(&pdev->dev,
H Hartley Sweeten30433d82009-11-23 10:30:34 -080091 res_alt->start, resource_size(res_alt));
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020092 }
93
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010094 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010095 plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010096 hw.dev = &pdev->dev;
97
Yegor Yefremovec1a1232010-04-15 14:20:53 -070098 d.irq_flags = res_irq->flags;
Bartlomiej Zolnierkiewicz761052e2008-07-23 19:55:54 +020099 if (mmio)
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +0200100 d.host_flags |= IDE_HFLAG_MMIO;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100101
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200102 ret = ide_host_add(&d, hws, 1, &host);
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +0200103 if (ret)
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200104 goto out;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200105
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200106 platform_set_drvdata(pdev, host);
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200107
108 return 0;
109
110out:
111 return ret;
112}
113
114static int __devexit plat_ide_remove(struct platform_device *pdev)
115{
Greg Kroah-Hartmanfcb52072009-04-30 14:43:31 -0700116 struct ide_host *host = dev_get_drvdata(&pdev->dev);
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200117
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200118 ide_host_remove(host);
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200119
120 return 0;
121}
122
123static struct platform_driver platform_ide_driver = {
124 .driver = {
125 .name = "pata_platform",
Kay Sievers458622f2008-04-18 13:41:57 -0700126 .owner = THIS_MODULE,
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200127 },
128 .probe = plat_ide_probe,
129 .remove = __devexit_p(plat_ide_remove),
130};
131
132static int __init platform_ide_init(void)
133{
134 return platform_driver_register(&platform_ide_driver);
135}
136
137static void __exit platform_ide_exit(void)
138{
139 platform_driver_unregister(&platform_ide_driver);
140}
141
142MODULE_DESCRIPTION("Platform IDE driver");
143MODULE_LICENSE("GPL");
Kay Sievers458622f2008-04-18 13:41:57 -0700144MODULE_ALIAS("platform:pata_platform");
Anton Vorontsov8cb1f562007-10-11 23:53:58 +0200145
146module_init(platform_ide_init);
147module_exit(platform_ide_exit);