ide: move ide_pci_setup_ports() call out from do_ide_setup_pci_device()
[deliverable/linux.git] / drivers / ide / legacy / ide_platform.c
CommitLineData
8cb1f567
AV
1/*
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>
0a87e3e9 20#include <linux/ata_platform.h>
8cb1f567
AV
21#include <linux/platform_device.h>
22#include <linux/io.h>
23
57c802e8
BZ
24static 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)
8cb1f567
AV
29{
30 unsigned long port = (unsigned long)base;
baa8f3e9 31 int i;
8cb1f567 32
4c3032d8 33 hw->io_ports.data_addr = port;
8cb1f567
AV
34
35 port += (1 << pdata->ioport_shift);
4c3032d8 36 for (i = 1; i <= 7;
8cb1f567 37 i++, port += (1 << pdata->ioport_shift))
4c3032d8 38 hw->io_ports_array[i] = port;
8cb1f567 39
4c3032d8 40 hw->io_ports.ctl_addr = (unsigned long)ctrl;
8cb1f567 41
57c802e8 42 hw->irq = irq;
8cb1f567 43
57c802e8 44 hw->chipset = ide_generic;
8cb1f567
AV
45}
46
7b60fa16
BZ
47static const struct ide_port_info platform_ide_port_info = {
48 .host_flags = IDE_HFLAG_NO_DMA,
49};
50
8cb1f567
AV
51static int __devinit plat_ide_probe(struct platform_device *pdev)
52{
53 struct resource *res_base, *res_alt, *res_irq;
04244937 54 void __iomem *base, *alt_base;
8cb1f567
AV
55 ide_hwif_t *hwif;
56 struct pata_platform_info *pdata;
8447d9d5 57 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
8cb1f567
AV
58 int ret = 0;
59 int mmio = 0;
57c802e8 60 hw_regs_t hw;
7b60fa16 61 struct ide_port_info d = platform_ide_port_info;
8cb1f567
AV
62
63 pdata = pdev->dev.platform_data;
64
65 /* get a pointer to the register memory */
66 res_base = platform_get_resource(pdev, IORESOURCE_IO, 0);
67 res_alt = platform_get_resource(pdev, IORESOURCE_IO, 1);
68
69 if (!res_base || !res_alt) {
70 res_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
71 res_alt = platform_get_resource(pdev, IORESOURCE_MEM, 1);
72 if (!res_base || !res_alt) {
73 ret = -ENOMEM;
74 goto out;
75 }
76 mmio = 1;
77 }
78
79 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
80 if (!res_irq) {
81 ret = -EINVAL;
82 goto out;
83 }
84
85 if (mmio) {
04244937 86 base = devm_ioremap(&pdev->dev,
8cb1f567 87 res_base->start, res_base->end - res_base->start + 1);
04244937 88 alt_base = devm_ioremap(&pdev->dev,
8cb1f567
AV
89 res_alt->start, res_alt->end - res_alt->start + 1);
90 } else {
04244937 91 base = devm_ioport_map(&pdev->dev,
8cb1f567 92 res_base->start, res_base->end - res_base->start + 1);
04244937 93 alt_base = devm_ioport_map(&pdev->dev,
8cb1f567
AV
94 res_alt->start, res_alt->end - res_alt->start + 1);
95 }
96
59bff5ba 97 hwif = ide_find_port();
8cb1f567
AV
98 if (!hwif) {
99 ret = -ENODEV;
100 goto out;
101 }
57c802e8
BZ
102
103 memset(&hw, 0, sizeof(hw));
04244937 104 plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start);
57c802e8
BZ
105 hw.dev = &pdev->dev;
106
107 ide_init_port_hw(hwif, &hw);
108
c5dd43ec 109 if (mmio) {
7b60fa16 110 d.host_flags |= IDE_HFLAG_MMIO;
57c802e8 111 default_hwif_mmiops(hwif);
c5dd43ec 112 }
57c802e8 113
8447d9d5
BZ
114 idx[0] = hwif->index;
115
7b60fa16 116 ide_device_add(idx, &d);
8cb1f567
AV
117
118 platform_set_drvdata(pdev, hwif);
8cb1f567
AV
119
120 return 0;
121
122out:
123 return ret;
124}
125
126static int __devexit plat_ide_remove(struct platform_device *pdev)
127{
128 ide_hwif_t *hwif = pdev->dev.driver_data;
129
387750c3 130 ide_unregister(hwif);
8cb1f567
AV
131
132 return 0;
133}
134
135static struct platform_driver platform_ide_driver = {
136 .driver = {
137 .name = "pata_platform",
458622fc 138 .owner = THIS_MODULE,
8cb1f567
AV
139 },
140 .probe = plat_ide_probe,
141 .remove = __devexit_p(plat_ide_remove),
142};
143
144static int __init platform_ide_init(void)
145{
146 return platform_driver_register(&platform_ide_driver);
147}
148
149static void __exit platform_ide_exit(void)
150{
151 platform_driver_unregister(&platform_ide_driver);
152}
153
154MODULE_DESCRIPTION("Platform IDE driver");
155MODULE_LICENSE("GPL");
458622fc 156MODULE_ALIAS("platform:pata_platform");
8cb1f567
AV
157
158module_init(platform_ide_init);
159module_exit(platform_ide_exit);
This page took 0.128147 seconds and 5 git commands to generate.