]>
Commit | Line | Data |
---|---|---|
8cb1f567 AV |
1 | /* |
2 | * Platform IDE driver | |
3 | * | |
4 | * Copyright (C) 2007 MontaVista Software | |
5 | * | |
6 | * Maintainer: Kumar Gala <[email protected]> | |
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 | 21 | #include <linux/platform_device.h> |
89e9aad6 | 22 | #include <linux/interrupt.h> |
8cb1f567 AV |
23 | #include <linux/io.h> |
24 | ||
fe31edc8 GKH |
25 | static void plat_ide_setup_ports(struct ide_hw *hw, void __iomem *base, |
26 | void __iomem *ctrl, | |
27 | struct pata_platform_info *pdata, int irq) | |
8cb1f567 AV |
28 | { |
29 | unsigned long port = (unsigned long)base; | |
baa8f3e9 | 30 | int i; |
8cb1f567 | 31 | |
4c3032d8 | 32 | hw->io_ports.data_addr = port; |
8cb1f567 AV |
33 | |
34 | port += (1 << pdata->ioport_shift); | |
4c3032d8 | 35 | for (i = 1; i <= 7; |
8cb1f567 | 36 | i++, port += (1 << pdata->ioport_shift)) |
4c3032d8 | 37 | hw->io_ports_array[i] = port; |
8cb1f567 | 38 | |
4c3032d8 | 39 | hw->io_ports.ctl_addr = (unsigned long)ctrl; |
8cb1f567 | 40 | |
57c802e8 | 41 | hw->irq = irq; |
8cb1f567 AV |
42 | } |
43 | ||
7b60fa16 BZ |
44 | static const struct ide_port_info platform_ide_port_info = { |
45 | .host_flags = IDE_HFLAG_NO_DMA, | |
29e52cf7 | 46 | .chipset = ide_generic, |
7b60fa16 BZ |
47 | }; |
48 | ||
fe31edc8 | 49 | static int plat_ide_probe(struct platform_device *pdev) |
8cb1f567 AV |
50 | { |
51 | struct resource *res_base, *res_alt, *res_irq; | |
04244937 | 52 | void __iomem *base, *alt_base; |
8cb1f567 | 53 | struct pata_platform_info *pdata; |
48c3c107 | 54 | struct ide_host *host; |
c97c6aca | 55 | int ret = 0, mmio = 0; |
9f36d314 | 56 | struct ide_hw hw, *hws[] = { &hw }; |
7b60fa16 | 57 | struct ide_port_info d = platform_ide_port_info; |
8cb1f567 | 58 | |
7b6b5612 | 59 | pdata = dev_get_platdata(&pdev->dev); |
8cb1f567 AV |
60 | |
61 | /* get a pointer to the register memory */ | |
62 | res_base = platform_get_resource(pdev, IORESOURCE_IO, 0); | |
63 | res_alt = platform_get_resource(pdev, IORESOURCE_IO, 1); | |
64 | ||
65 | if (!res_base || !res_alt) { | |
66 | res_base = platform_get_resource(pdev, IORESOURCE_MEM, 0); | |
67 | res_alt = platform_get_resource(pdev, IORESOURCE_MEM, 1); | |
68 | if (!res_base || !res_alt) { | |
69 | ret = -ENOMEM; | |
70 | goto out; | |
71 | } | |
72 | mmio = 1; | |
73 | } | |
74 | ||
75 | res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | |
76 | if (!res_irq) { | |
77 | ret = -EINVAL; | |
78 | goto out; | |
79 | } | |
80 | ||
81 | if (mmio) { | |
04244937 | 82 | base = devm_ioremap(&pdev->dev, |
30433d81 | 83 | res_base->start, resource_size(res_base)); |
04244937 | 84 | alt_base = devm_ioremap(&pdev->dev, |
30433d81 | 85 | res_alt->start, resource_size(res_alt)); |
8cb1f567 | 86 | } else { |
04244937 | 87 | base = devm_ioport_map(&pdev->dev, |
30433d81 | 88 | res_base->start, resource_size(res_base)); |
04244937 | 89 | alt_base = devm_ioport_map(&pdev->dev, |
30433d81 | 90 | res_alt->start, resource_size(res_alt)); |
8cb1f567 AV |
91 | } |
92 | ||
57c802e8 | 93 | memset(&hw, 0, sizeof(hw)); |
04244937 | 94 | plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start); |
57c802e8 BZ |
95 | hw.dev = &pdev->dev; |
96 | ||
89e9aad6 TG |
97 | d.irq_flags = res_irq->flags & IRQF_TRIGGER_MASK; |
98 | if (res_irq->flags & IORESOURCE_IRQ_SHAREABLE) | |
99 | d.irq_flags |= IRQF_SHARED; | |
100 | ||
761052e6 | 101 | if (mmio) |
7b60fa16 | 102 | d.host_flags |= IDE_HFLAG_MMIO; |
57c802e8 | 103 | |
dca39830 | 104 | ret = ide_host_add(&d, hws, 1, &host); |
6f904d01 | 105 | if (ret) |
48c3c107 | 106 | goto out; |
8cb1f567 | 107 | |
48c3c107 | 108 | platform_set_drvdata(pdev, host); |
8cb1f567 AV |
109 | |
110 | return 0; | |
111 | ||
112 | out: | |
113 | return ret; | |
114 | } | |
115 | ||
fe31edc8 | 116 | static int plat_ide_remove(struct platform_device *pdev) |
8cb1f567 | 117 | { |
fcb52077 | 118 | struct ide_host *host = dev_get_drvdata(&pdev->dev); |
8cb1f567 | 119 | |
48c3c107 | 120 | ide_host_remove(host); |
8cb1f567 AV |
121 | |
122 | return 0; | |
123 | } | |
124 | ||
125 | static struct platform_driver platform_ide_driver = { | |
126 | .driver = { | |
127 | .name = "pata_platform", | |
128 | }, | |
129 | .probe = plat_ide_probe, | |
fe31edc8 | 130 | .remove = plat_ide_remove, |
8cb1f567 AV |
131 | }; |
132 | ||
a53dae49 | 133 | module_platform_driver(platform_ide_driver); |
8cb1f567 AV |
134 | |
135 | MODULE_DESCRIPTION("Platform IDE driver"); | |
136 | MODULE_LICENSE("GPL"); | |
458622fc | 137 | MODULE_ALIAS("platform:pata_platform"); |