2 * AHCI glue platform driver for Marvell EBU SOCs
4 * Copyright (C) 2014 Marvell
6 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 * Marcin Wojtas <mw@semihalf.com>
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/ahci_platform.h>
15 #include <linux/kernel.h>
16 #include <linux/mbus.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/platform_device.h>
22 #define DRV_NAME "ahci-mvebu"
24 #define AHCI_VENDOR_SPECIFIC_0_ADDR 0xa0
25 #define AHCI_VENDOR_SPECIFIC_0_DATA 0xa4
27 #define AHCI_WINDOW_CTRL(win) (0x60 + ((win) << 4))
28 #define AHCI_WINDOW_BASE(win) (0x64 + ((win) << 4))
29 #define AHCI_WINDOW_SIZE(win) (0x68 + ((win) << 4))
31 struct ahci_mvebu_plat_data
{
32 int (*plat_config
)(struct ahci_host_priv
*hpriv
);
35 static void ahci_mvebu_mbus_config(struct ahci_host_priv
*hpriv
,
36 const struct mbus_dram_target_info
*dram
)
40 for (i
= 0; i
< 4; i
++) {
41 writel(0, hpriv
->mmio
+ AHCI_WINDOW_CTRL(i
));
42 writel(0, hpriv
->mmio
+ AHCI_WINDOW_BASE(i
));
43 writel(0, hpriv
->mmio
+ AHCI_WINDOW_SIZE(i
));
46 for (i
= 0; i
< dram
->num_cs
; i
++) {
47 const struct mbus_dram_window
*cs
= dram
->cs
+ i
;
49 writel((cs
->mbus_attr
<< 8) |
50 (dram
->mbus_dram_target_id
<< 4) | 1,
51 hpriv
->mmio
+ AHCI_WINDOW_CTRL(i
));
52 writel(cs
->base
>> 16, hpriv
->mmio
+ AHCI_WINDOW_BASE(i
));
53 writel(((cs
->size
- 1) & 0xffff0000),
54 hpriv
->mmio
+ AHCI_WINDOW_SIZE(i
));
58 static void ahci_mvebu_regret_option(struct ahci_host_priv
*hpriv
)
61 * Enable the regret bit to allow the SATA unit to regret a
62 * request that didn't receive an acknowlegde and avoid a
65 writel(0x4, hpriv
->mmio
+ AHCI_VENDOR_SPECIFIC_0_ADDR
);
66 writel(0x80, hpriv
->mmio
+ AHCI_VENDOR_SPECIFIC_0_DATA
);
69 static int ahci_mvebu_armada_380_config(struct ahci_host_priv
*hpriv
)
71 const struct mbus_dram_target_info
*dram
;
74 dram
= mv_mbus_dram_info();
76 ahci_mvebu_mbus_config(hpriv
, dram
);
80 ahci_mvebu_regret_option(hpriv
);
86 * ahci_mvebu_stop_engine
88 * @ap: Target ata port
90 * Errata Ref#226 - SATA Disk HOT swap issue when connected through
91 * Port Multiplier in FIS-based Switching mode.
93 * To avoid the issue, according to design, the bits[11:8, 0] of
94 * register PxFBS are cleared when Port Command and Status (0x18) bit[0]
95 * changes its value from 1 to 0, i.e. falling edge of Port
96 * Command and Status bit[0] sends PULSE that resets PxFBS
99 * This function is used to override function of "ahci_stop_engine"
100 * from libahci.c by adding the mvebu work around(WA) to save PxFBS
101 * value before the PxCMD ST write of 0, then restore PxFBS value.
103 * Return: 0 on success; Error code otherwise.
105 static int ahci_mvebu_stop_engine(struct ata_port
*ap
)
107 void __iomem
*port_mmio
= ahci_port_base(ap
);
110 tmp
= readl(port_mmio
+ PORT_CMD
);
112 /* check if the HBA is idle */
113 if ((tmp
& (PORT_CMD_START
| PORT_CMD_LIST_ON
)) == 0)
116 /* save the port PxFBS register for later restore */
117 port_fbs
= readl(port_mmio
+ PORT_FBS
);
119 /* setting HBA to idle */
120 tmp
&= ~PORT_CMD_START
;
121 writel(tmp
, port_mmio
+ PORT_CMD
);
124 * bit #15 PxCMD signal doesn't clear PxFBS,
125 * restore the PxFBS register right after clearing the PxCMD ST,
126 * no need to wait for the PxCMD bit #15.
128 writel(port_fbs
, port_mmio
+ PORT_FBS
);
130 /* wait for engine to stop. This could be as long as 500 msec */
131 tmp
= ata_wait_register(ap
, port_mmio
+ PORT_CMD
,
132 PORT_CMD_LIST_ON
, PORT_CMD_LIST_ON
, 1, 500);
133 if (tmp
& PORT_CMD_LIST_ON
)
139 #ifdef CONFIG_PM_SLEEP
140 static int ahci_mvebu_suspend(struct platform_device
*pdev
, pm_message_t state
)
142 return ahci_platform_suspend_host(&pdev
->dev
);
145 static int ahci_mvebu_resume(struct platform_device
*pdev
)
147 struct ata_host
*host
= platform_get_drvdata(pdev
);
148 struct ahci_host_priv
*hpriv
= host
->private_data
;
149 const struct ahci_mvebu_plat_data
*pdata
= hpriv
->plat_data
;
151 if (pdata
->plat_config
)
152 pdata
->plat_config(hpriv
);
154 return ahci_platform_resume_host(&pdev
->dev
);
157 #define ahci_mvebu_suspend NULL
158 #define ahci_mvebu_resume NULL
161 static const struct ata_port_info ahci_mvebu_port_info
= {
162 .flags
= AHCI_FLAG_COMMON
,
163 .pio_mask
= ATA_PIO4
,
164 .udma_mask
= ATA_UDMA6
,
165 .port_ops
= &ahci_platform_ops
,
168 static struct scsi_host_template ahci_platform_sht
= {
172 static int ahci_mvebu_probe(struct platform_device
*pdev
)
174 const struct ahci_mvebu_plat_data
*pdata
;
175 struct ahci_host_priv
*hpriv
;
178 pdata
= of_device_get_match_data(&pdev
->dev
);
182 hpriv
= ahci_platform_get_resources(pdev
, 0);
184 return PTR_ERR(hpriv
);
186 hpriv
->plat_data
= (void *)pdata
;
188 rc
= ahci_platform_enable_resources(hpriv
);
192 hpriv
->stop_engine
= ahci_mvebu_stop_engine
;
194 pdata
= hpriv
->plat_data
;
195 if (pdata
->plat_config
) {
196 rc
= pdata
->plat_config(hpriv
);
198 goto disable_resources
;
201 rc
= ahci_platform_init_host(pdev
, hpriv
, &ahci_mvebu_port_info
,
204 goto disable_resources
;
209 ahci_platform_disable_resources(hpriv
);
213 static const struct ahci_mvebu_plat_data ahci_mvebu_armada_380_plat_data
= {
214 .plat_config
= ahci_mvebu_armada_380_config
,
217 static const struct ahci_mvebu_plat_data ahci_mvebu_armada_3700_plat_data
= {
221 static const struct of_device_id ahci_mvebu_of_match
[] = {
223 .compatible
= "marvell,armada-380-ahci",
224 .data
= &ahci_mvebu_armada_380_plat_data
,
227 .compatible
= "marvell,armada-3700-ahci",
228 .data
= &ahci_mvebu_armada_3700_plat_data
,
232 MODULE_DEVICE_TABLE(of
, ahci_mvebu_of_match
);
235 * We currently don't provide power management related operations,
236 * since there is no suspend/resume support at the platform level for
237 * Armada 38x for the moment.
239 static struct platform_driver ahci_mvebu_driver
= {
240 .probe
= ahci_mvebu_probe
,
241 .remove
= ata_platform_remove_one
,
242 .suspend
= ahci_mvebu_suspend
,
243 .resume
= ahci_mvebu_resume
,
246 .of_match_table
= ahci_mvebu_of_match
,
249 module_platform_driver(ahci_mvebu_driver
);
251 MODULE_DESCRIPTION("Marvell EBU AHCI SATA driver");
252 MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>, Marcin Wojtas <mw@semihalf.com>");
253 MODULE_LICENSE("GPL");
254 MODULE_ALIAS("platform:ahci_mvebu");