2 * Copyright (C) 2012 STMicroelectronics Limited
4 * Authors: Francesco Virlinzi <francesco.virlinzi@st.com>
5 * Alexandre Torgue <alexandre.torgue@st.com>
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.
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>
18 #include <linux/ahci_platform.h>
19 #include <linux/libata.h>
20 #include <linux/reset.h>
22 #include <linux/dma-mapping.h>
26 #define DRV_NAME "st_ahci"
28 #define ST_AHCI_OOBR 0xbc
29 #define ST_AHCI_OOBR_WE BIT(31)
30 #define ST_AHCI_OOBR_CWMIN_SHIFT 24
31 #define ST_AHCI_OOBR_CWMAX_SHIFT 16
32 #define ST_AHCI_OOBR_CIMIN_SHIFT 8
33 #define ST_AHCI_OOBR_CIMAX_SHIFT 0
35 struct st_ahci_drv_data
{
36 struct platform_device
*ahci
;
37 struct reset_control
*pwr
;
38 struct reset_control
*sw_rst
;
39 struct reset_control
*pwr_rst
;
42 static void st_ahci_configure_oob(void __iomem
*mmio
)
44 unsigned long old_val
, new_val
;
46 new_val
= (0x02 << ST_AHCI_OOBR_CWMIN_SHIFT
) |
47 (0x04 << ST_AHCI_OOBR_CWMAX_SHIFT
) |
48 (0x08 << ST_AHCI_OOBR_CIMIN_SHIFT
) |
49 (0x0C << ST_AHCI_OOBR_CIMAX_SHIFT
);
51 old_val
= readl(mmio
+ ST_AHCI_OOBR
);
52 writel(old_val
| ST_AHCI_OOBR_WE
, mmio
+ ST_AHCI_OOBR
);
53 writel(new_val
| ST_AHCI_OOBR_WE
, mmio
+ ST_AHCI_OOBR
);
54 writel(new_val
, mmio
+ ST_AHCI_OOBR
);
57 static int st_ahci_deassert_resets(struct ahci_host_priv
*hpriv
,
60 struct st_ahci_drv_data
*drv_data
= hpriv
->plat_data
;
64 err
= reset_control_deassert(drv_data
->pwr
);
66 dev_err(dev
, "unable to bring out of pwrdwn\n");
71 if (drv_data
->sw_rst
) {
72 err
= reset_control_deassert(drv_data
->sw_rst
);
74 dev_err(dev
, "unable to bring out of sw-rst\n");
79 if (drv_data
->pwr_rst
) {
80 err
= reset_control_deassert(drv_data
->pwr_rst
);
82 dev_err(dev
, "unable to bring out of pwr-rst\n");
90 static void st_ahci_host_stop(struct ata_host
*host
)
92 struct ahci_host_priv
*hpriv
= host
->private_data
;
93 struct st_ahci_drv_data
*drv_data
= hpriv
->plat_data
;
94 struct device
*dev
= host
->dev
;
98 err
= reset_control_assert(drv_data
->pwr
);
100 dev_err(dev
, "unable to pwrdwn\n");
103 ahci_platform_disable_resources(hpriv
);
106 static int st_ahci_probe_resets(struct ahci_host_priv
*hpriv
,
109 struct st_ahci_drv_data
*drv_data
= hpriv
->plat_data
;
111 drv_data
->pwr
= devm_reset_control_get(dev
, "pwr-dwn");
112 if (IS_ERR(drv_data
->pwr
)) {
113 dev_info(dev
, "power reset control not defined\n");
114 drv_data
->pwr
= NULL
;
117 drv_data
->sw_rst
= devm_reset_control_get(dev
, "sw-rst");
118 if (IS_ERR(drv_data
->sw_rst
)) {
119 dev_info(dev
, "soft reset control not defined\n");
120 drv_data
->sw_rst
= NULL
;
123 drv_data
->pwr_rst
= devm_reset_control_get(dev
, "pwr-rst");
124 if (IS_ERR(drv_data
->pwr_rst
)) {
125 dev_dbg(dev
, "power soft reset control not defined\n");
126 drv_data
->pwr_rst
= NULL
;
129 return st_ahci_deassert_resets(hpriv
, dev
);
132 static struct ata_port_operations st_ahci_port_ops
= {
133 .inherits
= &ahci_platform_ops
,
134 .host_stop
= st_ahci_host_stop
,
137 static const struct ata_port_info st_ahci_port_info
= {
138 .flags
= AHCI_FLAG_COMMON
,
139 .pio_mask
= ATA_PIO4
,
140 .udma_mask
= ATA_UDMA6
,
141 .port_ops
= &st_ahci_port_ops
,
144 static struct scsi_host_template ahci_platform_sht
= {
148 static int st_ahci_probe(struct platform_device
*pdev
)
150 struct device
*dev
= &pdev
->dev
;
151 struct st_ahci_drv_data
*drv_data
;
152 struct ahci_host_priv
*hpriv
;
155 drv_data
= devm_kzalloc(&pdev
->dev
, sizeof(*drv_data
), GFP_KERNEL
);
159 hpriv
= ahci_platform_get_resources(pdev
);
161 return PTR_ERR(hpriv
);
162 hpriv
->plat_data
= drv_data
;
164 err
= st_ahci_probe_resets(hpriv
, &pdev
->dev
);
168 err
= ahci_platform_enable_resources(hpriv
);
172 st_ahci_configure_oob(hpriv
->mmio
);
174 of_property_read_u32(dev
->of_node
,
175 "ports-implemented", &hpriv
->force_port_map
);
177 err
= ahci_platform_init_host(pdev
, hpriv
, &st_ahci_port_info
,
180 ahci_platform_disable_resources(hpriv
);
187 #ifdef CONFIG_PM_SLEEP
188 static int st_ahci_suspend(struct device
*dev
)
190 struct ata_host
*host
= dev_get_drvdata(dev
);
191 struct ahci_host_priv
*hpriv
= host
->private_data
;
192 struct st_ahci_drv_data
*drv_data
= hpriv
->plat_data
;
195 err
= ahci_platform_suspend_host(dev
);
200 err
= reset_control_assert(drv_data
->pwr
);
202 dev_err(dev
, "unable to pwrdwn");
207 ahci_platform_disable_resources(hpriv
);
212 static int st_ahci_resume(struct device
*dev
)
214 struct ata_host
*host
= dev_get_drvdata(dev
);
215 struct ahci_host_priv
*hpriv
= host
->private_data
;
218 err
= ahci_platform_enable_resources(hpriv
);
222 err
= st_ahci_deassert_resets(hpriv
, dev
);
224 ahci_platform_disable_resources(hpriv
);
228 st_ahci_configure_oob(hpriv
->mmio
);
230 return ahci_platform_resume_host(dev
);
234 static SIMPLE_DEV_PM_OPS(st_ahci_pm_ops
, st_ahci_suspend
, st_ahci_resume
);
236 static const struct of_device_id st_ahci_match
[] = {
237 { .compatible
= "st,ahci", },
240 MODULE_DEVICE_TABLE(of
, st_ahci_match
);
242 static struct platform_driver st_ahci_driver
= {
245 .pm
= &st_ahci_pm_ops
,
246 .of_match_table
= of_match_ptr(st_ahci_match
),
248 .probe
= st_ahci_probe
,
249 .remove
= ata_platform_remove_one
,
251 module_platform_driver(st_ahci_driver
);
253 MODULE_AUTHOR("Alexandre Torgue <alexandre.torgue@st.com>");
254 MODULE_AUTHOR("Francesco Virlinzi <francesco.virlinzi@st.com>");
255 MODULE_DESCRIPTION("STMicroelectronics SATA AHCI Driver");
256 MODULE_LICENSE("GPL v2");