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