ata: ahci_st: remove deprecated struct ahci_platform_data usage
[deliverable/linux.git] / drivers / ata / pata_imx.c
CommitLineData
e39c75cf
APR
1/*
2 * Freescale iMX PATA driver
3 *
4 * Copyright (C) 2011 Arnaud Patard <arnaud.patard@rtp-net.org>
5 *
6 * Based on pata_platform - Copyright (C) 2006 - 2007 Paul Mundt
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 *
12 * TODO:
13 * - dmaengine support
14 * - check if timing stuff needed
15 */
16#include <linux/kernel.h>
17#include <linux/module.h>
e39c75cf
APR
18#include <linux/blkdev.h>
19#include <scsi/scsi_host.h>
20#include <linux/ata.h>
21#include <linux/libata.h>
22#include <linux/platform_device.h>
23#include <linux/clk.h>
24
25#define DRV_NAME "pata_imx"
26
27#define PATA_IMX_ATA_CONTROL 0x24
28#define PATA_IMX_ATA_CTRL_FIFO_RST_B (1<<7)
29#define PATA_IMX_ATA_CTRL_ATA_RST_B (1<<6)
30#define PATA_IMX_ATA_CTRL_IORDY_EN (1<<0)
31#define PATA_IMX_ATA_INT_EN 0x2C
32#define PATA_IMX_ATA_INTR_ATA_INTRQ2 (1<<3)
33#define PATA_IMX_DRIVE_DATA 0xA0
34#define PATA_IMX_DRIVE_CONTROL 0xD8
35
36struct pata_imx_priv {
37 struct clk *clk;
38 /* timings/interrupt/control regs */
51b5539c 39 void __iomem *host_regs;
e39c75cf
APR
40 u32 ata_ctl;
41};
42
43static int pata_imx_set_mode(struct ata_link *link, struct ata_device **unused)
44{
45 struct ata_device *dev;
46 struct ata_port *ap = link->ap;
47 struct pata_imx_priv *priv = ap->host->private_data;
48 u32 val;
49
50 ata_for_each_dev(dev, link, ENABLED) {
51 dev->pio_mode = dev->xfer_mode = XFER_PIO_0;
52 dev->xfer_shift = ATA_SHIFT_PIO;
53 dev->flags |= ATA_DFLAG_PIO;
54
55 val = __raw_readl(priv->host_regs + PATA_IMX_ATA_CONTROL);
56 if (ata_pio_need_iordy(dev))
57 val |= PATA_IMX_ATA_CTRL_IORDY_EN;
58 else
59 val &= ~PATA_IMX_ATA_CTRL_IORDY_EN;
60 __raw_writel(val, priv->host_regs + PATA_IMX_ATA_CONTROL);
61
22c8be31 62 ata_dev_info(dev, "configured for PIO\n");
e39c75cf
APR
63 }
64 return 0;
65}
66
67static struct scsi_host_template pata_imx_sht = {
68 ATA_PIO_SHT(DRV_NAME),
69};
70
71static struct ata_port_operations pata_imx_port_ops = {
72 .inherits = &ata_sff_port_ops,
73 .sff_data_xfer = ata_sff_data_xfer_noirq,
74 .cable_detect = ata_cable_unknown,
75 .set_mode = pata_imx_set_mode,
76};
77
78static void pata_imx_setup_port(struct ata_ioports *ioaddr)
79{
80 /* Fixup the port shift for platforms that need it */
81 ioaddr->data_addr = ioaddr->cmd_addr + (ATA_REG_DATA << 2);
82 ioaddr->error_addr = ioaddr->cmd_addr + (ATA_REG_ERR << 2);
83 ioaddr->feature_addr = ioaddr->cmd_addr + (ATA_REG_FEATURE << 2);
84 ioaddr->nsect_addr = ioaddr->cmd_addr + (ATA_REG_NSECT << 2);
85 ioaddr->lbal_addr = ioaddr->cmd_addr + (ATA_REG_LBAL << 2);
86 ioaddr->lbam_addr = ioaddr->cmd_addr + (ATA_REG_LBAM << 2);
87 ioaddr->lbah_addr = ioaddr->cmd_addr + (ATA_REG_LBAH << 2);
88 ioaddr->device_addr = ioaddr->cmd_addr + (ATA_REG_DEVICE << 2);
89 ioaddr->status_addr = ioaddr->cmd_addr + (ATA_REG_STATUS << 2);
90 ioaddr->command_addr = ioaddr->cmd_addr + (ATA_REG_CMD << 2);
91}
92
0ec24914 93static int pata_imx_probe(struct platform_device *pdev)
e39c75cf
APR
94{
95 struct ata_host *host;
96 struct ata_port *ap;
97 struct pata_imx_priv *priv;
98 int irq = 0;
99 struct resource *io_res;
ff540d02 100 int ret;
e39c75cf 101
e39c75cf 102 irq = platform_get_irq(pdev, 0);
3ef9cc31
FE
103 if (irq < 0)
104 return irq;
e39c75cf
APR
105
106 priv = devm_kzalloc(&pdev->dev,
107 sizeof(struct pata_imx_priv), GFP_KERNEL);
108 if (!priv)
109 return -ENOMEM;
110
50f5a341 111 priv->clk = devm_clk_get(&pdev->dev, NULL);
e39c75cf
APR
112 if (IS_ERR(priv->clk)) {
113 dev_err(&pdev->dev, "Failed to get clock\n");
114 return PTR_ERR(priv->clk);
115 }
116
a18dada0 117 clk_prepare_enable(priv->clk);
e39c75cf
APR
118
119 host = ata_host_alloc(&pdev->dev, 1);
ff540d02
SH
120 if (!host) {
121 ret = -ENOMEM;
122 goto err;
123 }
e39c75cf
APR
124
125 host->private_data = priv;
126 ap = host->ports[0];
127
128 ap->ops = &pata_imx_port_ops;
129 ap->pio_mask = ATA_PIO0;
130 ap->flags |= ATA_FLAG_SLAVE_POSS;
131
b314fc77
FE
132 io_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
133 priv->host_regs = devm_ioremap_resource(&pdev->dev, io_res);
e39c75cf 134 if (!priv->host_regs) {
ff540d02
SH
135 ret = -EBUSY;
136 goto err;
e39c75cf
APR
137 }
138
139 ap->ioaddr.cmd_addr = priv->host_regs + PATA_IMX_DRIVE_DATA;
140 ap->ioaddr.ctl_addr = priv->host_regs + PATA_IMX_DRIVE_CONTROL;
141
142 ap->ioaddr.altstatus_addr = ap->ioaddr.ctl_addr;
143
144 pata_imx_setup_port(&ap->ioaddr);
145
146 ata_port_desc(ap, "cmd 0x%llx ctl 0x%llx",
147 (unsigned long long)io_res->start + PATA_IMX_DRIVE_DATA,
148 (unsigned long long)io_res->start + PATA_IMX_DRIVE_CONTROL);
149
150 /* deassert resets */
151 __raw_writel(PATA_IMX_ATA_CTRL_FIFO_RST_B |
152 PATA_IMX_ATA_CTRL_ATA_RST_B,
153 priv->host_regs + PATA_IMX_ATA_CONTROL);
154 /* enable interrupts */
155 __raw_writel(PATA_IMX_ATA_INTR_ATA_INTRQ2,
156 priv->host_regs + PATA_IMX_ATA_INT_EN);
157
158 /* activate */
ff540d02 159 ret = ata_host_activate(host, irq, ata_sff_interrupt, 0,
e39c75cf
APR
160 &pata_imx_sht);
161
ff540d02
SH
162 if (ret)
163 goto err;
164
165 return 0;
166err:
a18dada0 167 clk_disable_unprepare(priv->clk);
50f5a341 168
ff540d02 169 return ret;
e39c75cf
APR
170}
171
0ec24914 172static int pata_imx_remove(struct platform_device *pdev)
e39c75cf 173{
d89995db 174 struct ata_host *host = platform_get_drvdata(pdev);
e39c75cf
APR
175 struct pata_imx_priv *priv = host->private_data;
176
177 ata_host_detach(host);
178
179 __raw_writel(0, priv->host_regs + PATA_IMX_ATA_INT_EN);
180
a18dada0 181 clk_disable_unprepare(priv->clk);
e39c75cf
APR
182
183 return 0;
184}
185
186#ifdef CONFIG_PM
187static int pata_imx_suspend(struct device *dev)
188{
189 struct ata_host *host = dev_get_drvdata(dev);
190 struct pata_imx_priv *priv = host->private_data;
191 int ret;
192
193 ret = ata_host_suspend(host, PMSG_SUSPEND);
194 if (!ret) {
195 __raw_writel(0, priv->host_regs + PATA_IMX_ATA_INT_EN);
196 priv->ata_ctl =
197 __raw_readl(priv->host_regs + PATA_IMX_ATA_CONTROL);
a18dada0 198 clk_disable_unprepare(priv->clk);
e39c75cf
APR
199 }
200
201 return ret;
202}
203
204static int pata_imx_resume(struct device *dev)
205{
206 struct ata_host *host = dev_get_drvdata(dev);
207 struct pata_imx_priv *priv = host->private_data;
208
a18dada0 209 clk_prepare_enable(priv->clk);
e39c75cf
APR
210
211 __raw_writel(priv->ata_ctl, priv->host_regs + PATA_IMX_ATA_CONTROL);
212
213 __raw_writel(PATA_IMX_ATA_INTR_ATA_INTRQ2,
214 priv->host_regs + PATA_IMX_ATA_INT_EN);
215
216 ata_host_resume(host);
217
218 return 0;
219}
220
221static const struct dev_pm_ops pata_imx_pm_ops = {
222 .suspend = pata_imx_suspend,
223 .resume = pata_imx_resume,
224};
225#endif
226
b9d15db2
SH
227static const struct of_device_id imx_pata_dt_ids[] = {
228 {
229 .compatible = "fsl,imx27-pata",
230 }, {
231 /* sentinel */
232 }
233};
71ab1d58 234MODULE_DEVICE_TABLE(of, imx_pata_dt_ids);
b9d15db2 235
e39c75cf
APR
236static struct platform_driver pata_imx_driver = {
237 .probe = pata_imx_probe,
0ec24914 238 .remove = pata_imx_remove,
e39c75cf
APR
239 .driver = {
240 .name = DRV_NAME,
b9d15db2 241 .of_match_table = imx_pata_dt_ids,
e39c75cf
APR
242 .owner = THIS_MODULE,
243#ifdef CONFIG_PM
244 .pm = &pata_imx_pm_ops,
245#endif
246 },
247};
248
99c8ea3e 249module_platform_driver(pata_imx_driver);
e39c75cf
APR
250
251MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
252MODULE_DESCRIPTION("low-level driver for iMX PATA");
253MODULE_LICENSE("GPL");
254MODULE_ALIAS("platform:" DRV_NAME);
This page took 0.229788 seconds and 5 git commands to generate.