blob: 051b4ab0f359d033745e0a035235a656dea7be4e [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 Zolnierkiewicz57c802e2008-01-26 20:13:05 +010024static void __devinit plat_ide_setup_ports(hw_regs_t *hw,
25 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
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010044 hw->chipset = ide_generic;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020045}
46
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +020047static const struct ide_port_info platform_ide_port_info = {
48 .host_flags = IDE_HFLAG_NO_DMA,
49};
50
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020051static int __devinit plat_ide_probe(struct platform_device *pdev)
52{
53 struct resource *res_base, *res_alt, *res_irq;
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010054 void __iomem *base, *alt_base;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020055 struct pata_platform_info *pdata;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +020056 struct ide_host *host;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +020057 int ret = 0, mmio = 0;
58 hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
Bartlomiej Zolnierkiewicz7b60fa12008-07-16 20:33:42 +020059 struct ide_port_info d = platform_ide_port_info;
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020060
61 pdata = pdev->dev.platform_data;
62
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);
66
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) {
71 ret = -ENOMEM;
72 goto out;
73 }
74 mmio = 1;
75 }
76
77 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
78 if (!res_irq) {
79 ret = -EINVAL;
80 goto out;
81 }
82
83 if (mmio) {
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010084 base = devm_ioremap(&pdev->dev,
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020085 res_base->start, res_base->end - res_base->start + 1);
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010086 alt_base = devm_ioremap(&pdev->dev,
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020087 res_alt->start, res_alt->end - res_alt->start + 1);
88 } else {
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010089 base = devm_ioport_map(&pdev->dev,
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020090 res_base->start, res_base->end - res_base->start + 1);
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010091 alt_base = devm_ioport_map(&pdev->dev,
Anton Vorontsov8cb1f562007-10-11 23:53:58 +020092 res_alt->start, res_alt->end - res_alt->start + 1);
93 }
94
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010095 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz04244932008-02-01 23:09:35 +010096 plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +010097 hw.dev = &pdev->dev;
98
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 Zolnierkiewicz6f904d02008-07-23 19:55:57 +0200102 ret = ide_host_add(&d, hws, &host);
103 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{
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200116 struct ide_host *host = pdev->dev.driver_data;
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);