blob: 17191b96648e1b21a1b975815718826275d0fcca [file] [log] [blame]
Lee Jones76884cb2014-02-26 14:47:21 +00001/*
2 * Copyright (C) 2012 STMicroelectronics Limited
3 *
4 * Authors: Francesco Virlinzi <francesco.virlinzi@st.com>
5 * Alexandre Torgue <alexandre.torgue@st.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/export.h>
15#include <linux/platform_device.h>
16#include <linux/clk.h>
17#include <linux/of.h>
18#include <linux/ahci_platform.h>
Lee Jones76884cb2014-02-26 14:47:21 +000019#include <linux/libata.h>
20#include <linux/reset.h>
21#include <linux/io.h>
22#include <linux/dma-mapping.h>
23
24#include "ahci.h"
25
26#define ST_AHCI_OOBR 0xbc
27#define ST_AHCI_OOBR_WE BIT(31)
28#define ST_AHCI_OOBR_CWMIN_SHIFT 24
29#define ST_AHCI_OOBR_CWMAX_SHIFT 16
30#define ST_AHCI_OOBR_CIMIN_SHIFT 8
31#define ST_AHCI_OOBR_CIMAX_SHIFT 0
32
33struct st_ahci_drv_data {
34 struct platform_device *ahci;
Lee Jones76884cb2014-02-26 14:47:21 +000035 struct reset_control *pwr;
36 struct reset_control *sw_rst;
37 struct reset_control *pwr_rst;
38 struct ahci_host_priv *hpriv;
39};
40
41static void st_ahci_configure_oob(void __iomem *mmio)
42{
43 unsigned long old_val, new_val;
44
45 new_val = (0x02 << ST_AHCI_OOBR_CWMIN_SHIFT) |
46 (0x04 << ST_AHCI_OOBR_CWMAX_SHIFT) |
47 (0x08 << ST_AHCI_OOBR_CIMIN_SHIFT) |
48 (0x0C << ST_AHCI_OOBR_CIMAX_SHIFT);
49
50 old_val = readl(mmio + ST_AHCI_OOBR);
51 writel(old_val | ST_AHCI_OOBR_WE, mmio + ST_AHCI_OOBR);
52 writel(new_val | ST_AHCI_OOBR_WE, mmio + ST_AHCI_OOBR);
53 writel(new_val, mmio + ST_AHCI_OOBR);
54}
55
56static int st_ahci_deassert_resets(struct device *dev)
57{
58 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev);
59 int err;
60
61 if (drv_data->pwr) {
62 err = reset_control_deassert(drv_data->pwr);
63 if (err) {
64 dev_err(dev, "unable to bring out of pwrdwn\n");
65 return err;
66 }
67 }
68
69 st_ahci_configure_oob(drv_data->hpriv->mmio);
70
71 if (drv_data->sw_rst) {
72 err = reset_control_deassert(drv_data->sw_rst);
73 if (err) {
74 dev_err(dev, "unable to bring out of sw-rst\n");
75 return err;
76 }
77 }
78
79 if (drv_data->pwr_rst) {
80 err = reset_control_deassert(drv_data->pwr_rst);
81 if (err) {
82 dev_err(dev, "unable to bring out of pwr-rst\n");
83 return err;
84 }
85 }
86
87 return 0;
88}
89
Lee Jonesa8237082014-03-12 12:39:40 +000090static int st_ahci_exit(struct device *dev)
91{
92 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev);
93 struct ahci_host_priv *hpriv = drv_data->hpriv;
94 int err;
95
96 if (drv_data->pwr) {
97 err = reset_control_assert(drv_data->pwr);
98 if (err)
99 dev_err(&pdev->dev, "unable to pwrdwn\n");
100 }
101
102 ahci_platform_disable_resources(hpriv);
103
104 return 0;
105}
106
Lee Jones76884cb2014-02-26 14:47:21 +0000107static int st_ahci_probe_resets(struct platform_device *pdev)
108{
109 struct st_ahci_drv_data *drv_data = platform_get_drvdata(pdev);
110
111 drv_data->pwr = devm_reset_control_get(&pdev->dev, "pwr-dwn");
112 if (IS_ERR(drv_data->pwr)) {
113 dev_info(&pdev->dev, "power reset control not defined\n");
114 drv_data->pwr = NULL;
115 }
116
117 drv_data->sw_rst = devm_reset_control_get(&pdev->dev, "sw-rst");
118 if (IS_ERR(drv_data->sw_rst)) {
119 dev_info(&pdev->dev, "soft reset control not defined\n");
120 drv_data->sw_rst = NULL;
121 }
122
123 drv_data->pwr_rst = devm_reset_control_get(&pdev->dev, "pwr-rst");
124 if (IS_ERR(drv_data->pwr_rst)) {
125 dev_dbg(&pdev->dev, "power soft reset control not defined\n");
126 drv_data->pwr_rst = NULL;
127 }
128
129 return st_ahci_deassert_resets(&pdev->dev);
130}
131
132static const struct ata_port_info st_ahci_port_info = {
133 .flags = AHCI_FLAG_COMMON,
134 .pio_mask = ATA_PIO4,
135 .udma_mask = ATA_UDMA6,
136 .port_ops = &ahci_platform_ops,
137};
138
139static int st_ahci_probe(struct platform_device *pdev)
140{
141 struct st_ahci_drv_data *drv_data;
Lee Jonesa8237082014-03-12 12:39:40 +0000142 struct ahci_platform_data *pdata;
Lee Jones76884cb2014-02-26 14:47:21 +0000143 struct ahci_host_priv *hpriv;
144 int err;
145
146 drv_data = devm_kzalloc(&pdev->dev, sizeof(*drv_data), GFP_KERNEL);
147 if (!drv_data)
148 return -ENOMEM;
149
150 platform_set_drvdata(pdev, drv_data);
151
Lee Jonesa8237082014-03-12 12:39:40 +0000152 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
153 if (!pdata)
154 return -ENOMEM;
155
156 pdata->exit = st_ahci_exit;
157 pdev->dev.platform_data = pdata;
158
Lee Jones76884cb2014-02-26 14:47:21 +0000159 hpriv = ahci_platform_get_resources(pdev);
160 if (IS_ERR(hpriv))
161 return PTR_ERR(hpriv);
162
163 drv_data->hpriv = hpriv;
164
165 err = st_ahci_probe_resets(pdev);
166 if (err)
167 return err;
168
169 err = ahci_platform_enable_resources(hpriv);
170 if (err)
171 return err;
172
173 err = ahci_platform_init_host(pdev, hpriv, &st_ahci_port_info, 0, 0);
174 if (err) {
175 ahci_platform_disable_resources(hpriv);
176 return err;
177 }
178
179 return 0;
180}
181
Lee Jones76884cb2014-02-26 14:47:21 +0000182#ifdef CONFIG_PM_SLEEP
183static int st_ahci_suspend(struct device *dev)
184{
185 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev);
186 struct ahci_host_priv *hpriv = drv_data->hpriv;
187 int err;
188
Lee Jones761a8c22014-03-12 12:39:42 +0000189 ret = ahci_platform_suspend_host(dev);
190 if (ret)
191 return ret;
192
Lee Jones76884cb2014-02-26 14:47:21 +0000193 if (drv_data->pwr) {
194 err = reset_control_assert(drv_data->pwr);
195 if (err) {
196 dev_err(dev, "unable to pwrdwn");
197 return err;
198 }
199 }
200
201 ahci_platform_disable_resources(hpriv);
202
203 return 0;
204}
205
206static int st_ahci_resume(struct device *dev)
207{
208 struct st_ahci_drv_data *drv_data = dev_get_drvdata(dev);
209 struct ahci_host_priv *hpriv = drv_data->hpriv;
210 int err;
211
212 err = ahci_platform_enable_resources(hpriv);
213 if (err)
214 return err;
215
216 err = st_ahci_deassert_resets(dev);
217 if (err) {
218 ahci_platform_disable_resources(hpriv);
219 return err;
220 }
221
Lee Jones761a8c22014-03-12 12:39:42 +0000222 return ahci_platform_resume_host(dev);
Lee Jones76884cb2014-02-26 14:47:21 +0000223}
224#endif
225
226static SIMPLE_DEV_PM_OPS(st_ahci_pm_ops, st_ahci_suspend, st_ahci_resume);
227
228static struct of_device_id st_ahci_match[] = {
229 { .compatible = "st,ahci", },
230 {},
231};
232MODULE_DEVICE_TABLE(of, st_ahci_match);
233
234static struct platform_driver st_ahci_driver = {
235 .driver = {
236 .name = "st_ahci",
237 .owner = THIS_MODULE,
238 .pm = &st_ahci_pm_ops,
239 .of_match_table = of_match_ptr(st_ahci_match),
240 },
241 .probe = st_ahci_probe,
Lee Jonesa8237082014-03-12 12:39:40 +0000242 .remove = ata_platform_remove_one,
Lee Jones76884cb2014-02-26 14:47:21 +0000243};
244module_platform_driver(st_ahci_driver);
245
246MODULE_AUTHOR("Alexandre Torgue <alexandre.torgue@st.com>");
247MODULE_AUTHOR("Francesco Virlinzi <francesco.virlinzi@st.com>");
Lee Jones4a2e5122014-03-12 12:39:38 +0000248MODULE_DESCRIPTION("STMicroelectronics SATA AHCI Driver");
Lee Jones76884cb2014-02-26 14:47:21 +0000249MODULE_LICENSE("GPL v2");