blob: a330307d320152a0ba719a4bcc58b6fe0a6518eb [file] [log] [blame]
Thomas Gleixner8d7c56d2019-05-20 19:08:10 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Tang Yuantianecfb4592015-09-07 16:23:16 +08002/*
3 * Freescale QorIQ AHCI SATA platform driver
4 *
5 * Copyright 2015 Freescale, Inc.
6 * Tang Yuantian <Yuantian.Tang@freescale.com>
Tang Yuantianecfb4592015-09-07 16:23:16 +08007 */
8
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/pm.h>
12#include <linux/ahci_platform.h>
13#include <linux/device.h>
14#include <linux/of_address.h>
15#include <linux/of.h>
16#include <linux/of_device.h>
17#include <linux/platform_device.h>
18#include <linux/libata.h>
19#include "ahci.h"
20
21#define DRV_NAME "ahci-qoriq"
22
23/* port register definition */
24#define PORT_PHY1 0xA8
25#define PORT_PHY2 0xAC
26#define PORT_PHY3 0xB0
27#define PORT_PHY4 0xB4
28#define PORT_PHY5 0xB8
Tang Yuantian16af0802016-08-09 09:51:22 +080029#define PORT_AXICC 0xBC
Tang Yuantianecfb4592015-09-07 16:23:16 +080030#define PORT_TRANS 0xC8
31
32/* port register default value */
33#define AHCI_PORT_PHY_1_CFG 0xa003fffe
Yuantian Tangce179cb2017-12-04 17:01:20 +080034#define AHCI_PORT_PHY2_CFG 0x28184d1f
35#define AHCI_PORT_PHY3_CFG 0x0e081509
Tang Yuantiane3a6dad2015-12-16 13:43:50 +080036#define AHCI_PORT_TRANS_CFG 0x08000029
Tang Yuantian16af0802016-08-09 09:51:22 +080037#define AHCI_PORT_AXICC_CFG 0x3fffffff
Tang Yuantiandfcdc5f2015-12-16 14:00:35 +080038
39/* for ls1021a */
40#define LS1021A_PORT_PHY2 0x28183414
41#define LS1021A_PORT_PHY3 0x0e080e06
42#define LS1021A_PORT_PHY4 0x064a080b
43#define LS1021A_PORT_PHY5 0x2aa86470
Tang Yuantian16af0802016-08-09 09:51:22 +080044#define LS1021A_AXICC_ADDR 0xC0
Tang Yuantianecfb4592015-09-07 16:23:16 +080045
46#define SATA_ECC_DISABLE 0x00020000
Tang Yuantian01f29012017-01-20 14:59:35 +080047#define ECC_DIS_ARMV8_CH2 0x80000000
Yuantian Tang0cee73f2017-06-02 15:23:03 +080048#define ECC_DIS_LS1088A 0x40000000
Tang Yuantianecfb4592015-09-07 16:23:16 +080049
50enum ahci_qoriq_type {
51 AHCI_LS1021A,
Peng Maa1d78312019-03-11 15:20:14 +080052 AHCI_LS1028A,
Tang Yuantianecfb4592015-09-07 16:23:16 +080053 AHCI_LS1043A,
Tang Yuantiand19f9aa2015-10-29 14:22:15 +080054 AHCI_LS2080A,
Tang Yuantian2facc6d2016-10-09 16:51:04 +080055 AHCI_LS1046A,
Yuantian Tang0cee73f2017-06-02 15:23:03 +080056 AHCI_LS1088A,
Tang Yuantiance8f4532017-01-20 14:59:36 +080057 AHCI_LS2088A,
Peng Ma2be84812019-03-12 09:50:19 +080058 AHCI_LX2160A,
Tang Yuantianecfb4592015-09-07 16:23:16 +080059};
60
61struct ahci_qoriq_priv {
62 struct ccsr_ahci *reg_base;
63 enum ahci_qoriq_type type;
64 void __iomem *ecc_addr;
Tang Yuantian386dc3b2017-01-20 14:59:34 +080065 bool is_dmacoherent;
Tang Yuantianecfb4592015-09-07 16:23:16 +080066};
67
Peng Ma2be84812019-03-12 09:50:19 +080068static bool ecc_initialized;
69
Tang Yuantianecfb4592015-09-07 16:23:16 +080070static const struct of_device_id ahci_qoriq_of_match[] = {
71 { .compatible = "fsl,ls1021a-ahci", .data = (void *)AHCI_LS1021A},
Peng Maa1d78312019-03-11 15:20:14 +080072 { .compatible = "fsl,ls1028a-ahci", .data = (void *)AHCI_LS1028A},
Tang Yuantianecfb4592015-09-07 16:23:16 +080073 { .compatible = "fsl,ls1043a-ahci", .data = (void *)AHCI_LS1043A},
Tang Yuantiand19f9aa2015-10-29 14:22:15 +080074 { .compatible = "fsl,ls2080a-ahci", .data = (void *)AHCI_LS2080A},
Tang Yuantian2facc6d2016-10-09 16:51:04 +080075 { .compatible = "fsl,ls1046a-ahci", .data = (void *)AHCI_LS1046A},
Yuantian Tang0cee73f2017-06-02 15:23:03 +080076 { .compatible = "fsl,ls1088a-ahci", .data = (void *)AHCI_LS1088A},
Tang Yuantiance8f4532017-01-20 14:59:36 +080077 { .compatible = "fsl,ls2088a-ahci", .data = (void *)AHCI_LS2088A},
Peng Ma2be84812019-03-12 09:50:19 +080078 { .compatible = "fsl,lx2160a-ahci", .data = (void *)AHCI_LX2160A},
Tang Yuantianecfb4592015-09-07 16:23:16 +080079 {},
80};
81MODULE_DEVICE_TABLE(of, ahci_qoriq_of_match);
82
83static int ahci_qoriq_hardreset(struct ata_link *link, unsigned int *class,
84 unsigned long deadline)
85{
86 const unsigned long *timing = sata_ehc_deb_timing(&link->eh_context);
87 void __iomem *port_mmio = ahci_port_base(link->ap);
88 u32 px_cmd, px_is, px_val;
89 struct ata_port *ap = link->ap;
90 struct ahci_port_priv *pp = ap->private_data;
91 struct ahci_host_priv *hpriv = ap->host->private_data;
92 struct ahci_qoriq_priv *qoriq_priv = hpriv->plat_data;
93 u8 *d2h_fis = pp->rx_fis + RX_FIS_D2H_REG;
94 struct ata_taskfile tf;
95 bool online;
96 int rc;
Arnd Bergmanneb351032015-10-14 16:46:52 +080097 bool ls1021a_workaround = (qoriq_priv->type == AHCI_LS1021A);
Tang Yuantianecfb4592015-09-07 16:23:16 +080098
99 DPRINTK("ENTER\n");
100
Evan Wangfa89f532018-04-13 12:32:30 +0800101 hpriv->stop_engine(ap);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800102
103 /*
104 * There is a errata on ls1021a Rev1.0 and Rev2.0 which is:
105 * A-009042: The device detection initialization sequence
106 * mistakenly resets some registers.
107 *
108 * Workaround for this is:
109 * The software should read and store PxCMD and PxIS values
110 * before issuing the device detection initialization sequence.
111 * After the sequence is complete, software should restore the
112 * PxCMD and PxIS with the stored values.
113 */
Arnd Bergmanneb351032015-10-14 16:46:52 +0800114 if (ls1021a_workaround) {
Tang Yuantianecfb4592015-09-07 16:23:16 +0800115 px_cmd = readl(port_mmio + PORT_CMD);
116 px_is = readl(port_mmio + PORT_IRQ_STAT);
117 }
118
119 /* clear D2H reception area to properly wait for D2H FIS */
120 ata_tf_init(link->device, &tf);
121 tf.command = ATA_BUSY;
122 ata_tf_to_fis(&tf, 0, 0, d2h_fis);
123
124 rc = sata_link_hardreset(link, timing, deadline, &online,
125 ahci_check_ready);
126
127 /* restore the PxCMD and PxIS on ls1021 */
Arnd Bergmanneb351032015-10-14 16:46:52 +0800128 if (ls1021a_workaround) {
Tang Yuantianecfb4592015-09-07 16:23:16 +0800129 px_val = readl(port_mmio + PORT_CMD);
130 if (px_val != px_cmd)
131 writel(px_cmd, port_mmio + PORT_CMD);
132
133 px_val = readl(port_mmio + PORT_IRQ_STAT);
134 if (px_val != px_is)
135 writel(px_is, port_mmio + PORT_IRQ_STAT);
136 }
137
138 hpriv->start_engine(ap);
139
140 if (online)
141 *class = ahci_dev_classify(ap);
142
143 DPRINTK("EXIT, rc=%d, class=%u\n", rc, *class);
144 return rc;
145}
146
147static struct ata_port_operations ahci_qoriq_ops = {
148 .inherits = &ahci_ops,
149 .hardreset = ahci_qoriq_hardreset,
150};
151
Tang Yuantian1ce788d2016-09-30 14:13:13 +0800152static const struct ata_port_info ahci_qoriq_port_info = {
Tang Yuantianecfb4592015-09-07 16:23:16 +0800153 .flags = AHCI_FLAG_COMMON | ATA_FLAG_NCQ,
154 .pio_mask = ATA_PIO4,
155 .udma_mask = ATA_UDMA6,
156 .port_ops = &ahci_qoriq_ops,
157};
158
159static struct scsi_host_template ahci_qoriq_sht = {
160 AHCI_SHT(DRV_NAME),
161};
162
163static int ahci_qoriq_phy_init(struct ahci_host_priv *hpriv)
164{
165 struct ahci_qoriq_priv *qpriv = hpriv->plat_data;
166 void __iomem *reg_base = hpriv->mmio;
167
168 switch (qpriv->type) {
169 case AHCI_LS1021A:
Peng Ma2be84812019-03-12 09:50:19 +0800170 if (!(qpriv->ecc_addr || ecc_initialized))
Tang Yuantian01f29012017-01-20 14:59:35 +0800171 return -EINVAL;
Peng Ma2be84812019-03-12 09:50:19 +0800172 else if (qpriv->ecc_addr && !ecc_initialized)
173 writel(SATA_ECC_DISABLE, qpriv->ecc_addr);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800174 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Tang Yuantiandfcdc5f2015-12-16 14:00:35 +0800175 writel(LS1021A_PORT_PHY2, reg_base + PORT_PHY2);
176 writel(LS1021A_PORT_PHY3, reg_base + PORT_PHY3);
177 writel(LS1021A_PORT_PHY4, reg_base + PORT_PHY4);
178 writel(LS1021A_PORT_PHY5, reg_base + PORT_PHY5);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800179 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
Tang Yuantian386dc3b2017-01-20 14:59:34 +0800180 if (qpriv->is_dmacoherent)
181 writel(AHCI_PORT_AXICC_CFG,
182 reg_base + LS1021A_AXICC_ADDR);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800183 break;
184
185 case AHCI_LS1043A:
Peng Ma2be84812019-03-12 09:50:19 +0800186 if (!(qpriv->ecc_addr || ecc_initialized))
Tang Yuantian01f29012017-01-20 14:59:35 +0800187 return -EINVAL;
Peng Ma2be84812019-03-12 09:50:19 +0800188 else if (qpriv->ecc_addr && !ecc_initialized)
189 writel(readl(qpriv->ecc_addr) |
190 ECC_DIS_ARMV8_CH2,
191 qpriv->ecc_addr);
Tang Yuantianef0cc7f2015-12-16 13:43:49 +0800192 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Yuantian Tangce179cb2017-12-04 17:01:20 +0800193 writel(AHCI_PORT_PHY2_CFG, reg_base + PORT_PHY2);
194 writel(AHCI_PORT_PHY3_CFG, reg_base + PORT_PHY3);
Tang Yuantianef0cc7f2015-12-16 13:43:49 +0800195 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
Tang Yuantian386dc3b2017-01-20 14:59:34 +0800196 if (qpriv->is_dmacoherent)
197 writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
Tang Yuantianef0cc7f2015-12-16 13:43:49 +0800198 break;
199
Tang Yuantiand19f9aa2015-10-29 14:22:15 +0800200 case AHCI_LS2080A:
Tang Yuantianecfb4592015-09-07 16:23:16 +0800201 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Yuantian Tangce179cb2017-12-04 17:01:20 +0800202 writel(AHCI_PORT_PHY2_CFG, reg_base + PORT_PHY2);
203 writel(AHCI_PORT_PHY3_CFG, reg_base + PORT_PHY3);
Tang Yuantiane3a6dad2015-12-16 13:43:50 +0800204 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
Tang Yuantian386dc3b2017-01-20 14:59:34 +0800205 if (qpriv->is_dmacoherent)
206 writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800207 break;
Tang Yuantian2facc6d2016-10-09 16:51:04 +0800208
209 case AHCI_LS1046A:
Peng Ma2be84812019-03-12 09:50:19 +0800210 if (!(qpriv->ecc_addr || ecc_initialized))
Tang Yuantian01f29012017-01-20 14:59:35 +0800211 return -EINVAL;
Peng Ma2be84812019-03-12 09:50:19 +0800212 else if (qpriv->ecc_addr && !ecc_initialized)
213 writel(readl(qpriv->ecc_addr) |
214 ECC_DIS_ARMV8_CH2,
215 qpriv->ecc_addr);
Tang Yuantian2facc6d2016-10-09 16:51:04 +0800216 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Yuantian Tangce179cb2017-12-04 17:01:20 +0800217 writel(AHCI_PORT_PHY2_CFG, reg_base + PORT_PHY2);
218 writel(AHCI_PORT_PHY3_CFG, reg_base + PORT_PHY3);
Tang Yuantian2facc6d2016-10-09 16:51:04 +0800219 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
Tang Yuantian386dc3b2017-01-20 14:59:34 +0800220 if (qpriv->is_dmacoherent)
221 writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
Tang Yuantian2facc6d2016-10-09 16:51:04 +0800222 break;
Tang Yuantiance8f4532017-01-20 14:59:36 +0800223
Peng Maa1d78312019-03-11 15:20:14 +0800224 case AHCI_LS1028A:
Yuantian Tang0cee73f2017-06-02 15:23:03 +0800225 case AHCI_LS1088A:
Peng Ma2be84812019-03-12 09:50:19 +0800226 case AHCI_LX2160A:
227 if (!(qpriv->ecc_addr || ecc_initialized))
Yuantian Tang0cee73f2017-06-02 15:23:03 +0800228 return -EINVAL;
Peng Ma2be84812019-03-12 09:50:19 +0800229 else if (qpriv->ecc_addr && !ecc_initialized)
230 writel(readl(qpriv->ecc_addr) |
231 ECC_DIS_LS1088A,
232 qpriv->ecc_addr);
Yuantian Tang0cee73f2017-06-02 15:23:03 +0800233 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Yuantian Tangce179cb2017-12-04 17:01:20 +0800234 writel(AHCI_PORT_PHY2_CFG, reg_base + PORT_PHY2);
235 writel(AHCI_PORT_PHY3_CFG, reg_base + PORT_PHY3);
Yuantian Tang0cee73f2017-06-02 15:23:03 +0800236 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
237 if (qpriv->is_dmacoherent)
238 writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
239 break;
240
Tang Yuantiance8f4532017-01-20 14:59:36 +0800241 case AHCI_LS2088A:
242 writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1);
Yuantian Tangce179cb2017-12-04 17:01:20 +0800243 writel(AHCI_PORT_PHY2_CFG, reg_base + PORT_PHY2);
244 writel(AHCI_PORT_PHY3_CFG, reg_base + PORT_PHY3);
Tang Yuantiance8f4532017-01-20 14:59:36 +0800245 writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS);
246 if (qpriv->is_dmacoherent)
247 writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
248 break;
Tang Yuantianecfb4592015-09-07 16:23:16 +0800249 }
250
Peng Ma2be84812019-03-12 09:50:19 +0800251 ecc_initialized = true;
Tang Yuantianecfb4592015-09-07 16:23:16 +0800252 return 0;
253}
254
255static int ahci_qoriq_probe(struct platform_device *pdev)
256{
257 struct device_node *np = pdev->dev.of_node;
258 struct device *dev = &pdev->dev;
259 struct ahci_host_priv *hpriv;
260 struct ahci_qoriq_priv *qoriq_priv;
261 const struct of_device_id *of_id;
262 struct resource *res;
263 int rc;
264
Kunihiko Hayashi16af2d62018-08-22 21:13:01 +0900265 hpriv = ahci_platform_get_resources(pdev, 0);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800266 if (IS_ERR(hpriv))
267 return PTR_ERR(hpriv);
268
269 of_id = of_match_node(ahci_qoriq_of_match, np);
270 if (!of_id)
271 return -ENODEV;
272
273 qoriq_priv = devm_kzalloc(dev, sizeof(*qoriq_priv), GFP_KERNEL);
274 if (!qoriq_priv)
275 return -ENOMEM;
276
277 qoriq_priv->type = (enum ahci_qoriq_type)of_id->data;
278
Peng Ma2be84812019-03-12 09:50:19 +0800279 if (unlikely(!ecc_initialized)) {
280 res = platform_get_resource_byname(pdev,
281 IORESOURCE_MEM,
282 "sata-ecc");
283 if (res) {
284 qoriq_priv->ecc_addr =
285 devm_ioremap_resource(dev, res);
286 if (IS_ERR(qoriq_priv->ecc_addr))
287 return PTR_ERR(qoriq_priv->ecc_addr);
288 }
Tang Yuantianecfb4592015-09-07 16:23:16 +0800289 }
Peng Ma2be84812019-03-12 09:50:19 +0800290
Tang Yuantian386dc3b2017-01-20 14:59:34 +0800291 qoriq_priv->is_dmacoherent = of_dma_is_coherent(np);
Tang Yuantianecfb4592015-09-07 16:23:16 +0800292
293 rc = ahci_platform_enable_resources(hpriv);
294 if (rc)
295 return rc;
296
297 hpriv->plat_data = qoriq_priv;
298 rc = ahci_qoriq_phy_init(hpriv);
299 if (rc)
300 goto disable_resources;
301
Tang Yuantianecfb4592015-09-07 16:23:16 +0800302 rc = ahci_platform_init_host(pdev, hpriv, &ahci_qoriq_port_info,
303 &ahci_qoriq_sht);
304 if (rc)
305 goto disable_resources;
306
307 return 0;
308
309disable_resources:
310 ahci_platform_disable_resources(hpriv);
311
312 return rc;
313}
314
315#ifdef CONFIG_PM_SLEEP
316static int ahci_qoriq_resume(struct device *dev)
317{
318 struct ata_host *host = dev_get_drvdata(dev);
319 struct ahci_host_priv *hpriv = host->private_data;
320 int rc;
321
322 rc = ahci_platform_enable_resources(hpriv);
323 if (rc)
324 return rc;
325
326 rc = ahci_qoriq_phy_init(hpriv);
327 if (rc)
328 goto disable_resources;
329
330 rc = ahci_platform_resume_host(dev);
331 if (rc)
332 goto disable_resources;
333
334 /* We resumed so update PM runtime state */
335 pm_runtime_disable(dev);
336 pm_runtime_set_active(dev);
337 pm_runtime_enable(dev);
338
339 return 0;
340
341disable_resources:
342 ahci_platform_disable_resources(hpriv);
343
344 return rc;
345}
346#endif
347
348static SIMPLE_DEV_PM_OPS(ahci_qoriq_pm_ops, ahci_platform_suspend,
349 ahci_qoriq_resume);
350
351static struct platform_driver ahci_qoriq_driver = {
352 .probe = ahci_qoriq_probe,
353 .remove = ata_platform_remove_one,
354 .driver = {
355 .name = DRV_NAME,
356 .of_match_table = ahci_qoriq_of_match,
357 .pm = &ahci_qoriq_pm_ops,
358 },
359};
360module_platform_driver(ahci_qoriq_driver);
361
362MODULE_DESCRIPTION("Freescale QorIQ AHCI SATA platform driver");
363MODULE_AUTHOR("Tang Yuantian <Yuantian.Tang@freescale.com>");
364MODULE_LICENSE("GPL");