1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Freescale QorIQ AHCI SATA platform driver
5 * Copyright 2015 Freescale, Inc.
6 * Tang Yuantian <Yuantian.Tang@freescale.com>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
12 #include <linux/ahci_platform.h>
13 #include <linux/device.h>
14 #include <linux/of_address.h>
16 #include <linux/of_device.h>
17 #include <linux/platform_device.h>
18 #include <linux/libata.h>
21 #define DRV_NAME "ahci-qoriq"
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
29 #define PORT_AXICC 0xBC
30 #define PORT_TRANS 0xC8
32 /* port register default value */
33 #define AHCI_PORT_PHY_1_CFG 0xa003fffe
34 #define AHCI_PORT_PHY2_CFG 0x28184d1f
35 #define AHCI_PORT_PHY3_CFG 0x0e081509
36 #define AHCI_PORT_TRANS_CFG 0x08000029
37 #define AHCI_PORT_AXICC_CFG 0x3fffffff
40 #define LS1021A_PORT_PHY2 0x28183414
41 #define LS1021A_PORT_PHY3 0x0e080e06
42 #define LS1021A_PORT_PHY4 0x064a080b
43 #define LS1021A_PORT_PHY5 0x2aa86470
44 #define LS1021A_AXICC_ADDR 0xC0
46 #define SATA_ECC_DISABLE 0x00020000
47 #define ECC_DIS_ARMV8_CH2 0x80000000
48 #define ECC_DIS_LS1088A 0x40000000
50 enum ahci_qoriq_type
{
61 struct ahci_qoriq_priv
{
62 struct ccsr_ahci
*reg_base
;
63 enum ahci_qoriq_type type
;
64 void __iomem
*ecc_addr
;
68 static bool ecc_initialized
;
70 static const struct of_device_id ahci_qoriq_of_match
[] = {
71 { .compatible
= "fsl,ls1021a-ahci", .data
= (void *)AHCI_LS1021A
},
72 { .compatible
= "fsl,ls1028a-ahci", .data
= (void *)AHCI_LS1028A
},
73 { .compatible
= "fsl,ls1043a-ahci", .data
= (void *)AHCI_LS1043A
},
74 { .compatible
= "fsl,ls2080a-ahci", .data
= (void *)AHCI_LS2080A
},
75 { .compatible
= "fsl,ls1046a-ahci", .data
= (void *)AHCI_LS1046A
},
76 { .compatible
= "fsl,ls1088a-ahci", .data
= (void *)AHCI_LS1088A
},
77 { .compatible
= "fsl,ls2088a-ahci", .data
= (void *)AHCI_LS2088A
},
78 { .compatible
= "fsl,lx2160a-ahci", .data
= (void *)AHCI_LX2160A
},
81 MODULE_DEVICE_TABLE(of
, ahci_qoriq_of_match
);
83 static int ahci_qoriq_hardreset(struct ata_link
*link
, unsigned int *class,
84 unsigned long deadline
)
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
;
97 bool ls1021a_workaround
= (qoriq_priv
->type
== AHCI_LS1021A
);
101 hpriv
->stop_engine(ap
);
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.
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.
114 if (ls1021a_workaround
) {
115 px_cmd
= readl(port_mmio
+ PORT_CMD
);
116 px_is
= readl(port_mmio
+ PORT_IRQ_STAT
);
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
);
124 rc
= sata_link_hardreset(link
, timing
, deadline
, &online
,
127 /* restore the PxCMD and PxIS on ls1021 */
128 if (ls1021a_workaround
) {
129 px_val
= readl(port_mmio
+ PORT_CMD
);
130 if (px_val
!= px_cmd
)
131 writel(px_cmd
, port_mmio
+ PORT_CMD
);
133 px_val
= readl(port_mmio
+ PORT_IRQ_STAT
);
135 writel(px_is
, port_mmio
+ PORT_IRQ_STAT
);
138 hpriv
->start_engine(ap
);
141 *class = ahci_dev_classify(ap
);
143 DPRINTK("EXIT, rc=%d, class=%u\n", rc
, *class);
147 static struct ata_port_operations ahci_qoriq_ops
= {
148 .inherits
= &ahci_ops
,
149 .hardreset
= ahci_qoriq_hardreset
,
152 static const struct ata_port_info ahci_qoriq_port_info
= {
153 .flags
= AHCI_FLAG_COMMON
| ATA_FLAG_NCQ
,
154 .pio_mask
= ATA_PIO4
,
155 .udma_mask
= ATA_UDMA6
,
156 .port_ops
= &ahci_qoriq_ops
,
159 static struct scsi_host_template ahci_qoriq_sht
= {
163 static int ahci_qoriq_phy_init(struct ahci_host_priv
*hpriv
)
165 struct ahci_qoriq_priv
*qpriv
= hpriv
->plat_data
;
166 void __iomem
*reg_base
= hpriv
->mmio
;
168 switch (qpriv
->type
) {
170 if (!(qpriv
->ecc_addr
|| ecc_initialized
))
172 else if (qpriv
->ecc_addr
&& !ecc_initialized
)
173 writel(SATA_ECC_DISABLE
, qpriv
->ecc_addr
);
174 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
175 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
);
179 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
180 if (qpriv
->is_dmacoherent
)
181 writel(AHCI_PORT_AXICC_CFG
,
182 reg_base
+ LS1021A_AXICC_ADDR
);
186 if (!(qpriv
->ecc_addr
|| ecc_initialized
))
188 else if (qpriv
->ecc_addr
&& !ecc_initialized
)
189 writel(readl(qpriv
->ecc_addr
) |
192 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
193 writel(AHCI_PORT_PHY2_CFG
, reg_base
+ PORT_PHY2
);
194 writel(AHCI_PORT_PHY3_CFG
, reg_base
+ PORT_PHY3
);
195 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
196 if (qpriv
->is_dmacoherent
)
197 writel(AHCI_PORT_AXICC_CFG
, reg_base
+ PORT_AXICC
);
201 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
202 writel(AHCI_PORT_PHY2_CFG
, reg_base
+ PORT_PHY2
);
203 writel(AHCI_PORT_PHY3_CFG
, reg_base
+ PORT_PHY3
);
204 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
205 if (qpriv
->is_dmacoherent
)
206 writel(AHCI_PORT_AXICC_CFG
, reg_base
+ PORT_AXICC
);
210 if (!(qpriv
->ecc_addr
|| ecc_initialized
))
212 else if (qpriv
->ecc_addr
&& !ecc_initialized
)
213 writel(readl(qpriv
->ecc_addr
) |
216 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
217 writel(AHCI_PORT_PHY2_CFG
, reg_base
+ PORT_PHY2
);
218 writel(AHCI_PORT_PHY3_CFG
, reg_base
+ PORT_PHY3
);
219 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
220 if (qpriv
->is_dmacoherent
)
221 writel(AHCI_PORT_AXICC_CFG
, reg_base
+ PORT_AXICC
);
227 if (!(qpriv
->ecc_addr
|| ecc_initialized
))
229 else if (qpriv
->ecc_addr
&& !ecc_initialized
)
230 writel(readl(qpriv
->ecc_addr
) |
233 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
234 writel(AHCI_PORT_PHY2_CFG
, reg_base
+ PORT_PHY2
);
235 writel(AHCI_PORT_PHY3_CFG
, reg_base
+ PORT_PHY3
);
236 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
237 if (qpriv
->is_dmacoherent
)
238 writel(AHCI_PORT_AXICC_CFG
, reg_base
+ PORT_AXICC
);
242 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
243 writel(AHCI_PORT_PHY2_CFG
, reg_base
+ PORT_PHY2
);
244 writel(AHCI_PORT_PHY3_CFG
, reg_base
+ PORT_PHY3
);
245 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
246 if (qpriv
->is_dmacoherent
)
247 writel(AHCI_PORT_AXICC_CFG
, reg_base
+ PORT_AXICC
);
251 ecc_initialized
= true;
255 static int ahci_qoriq_probe(struct platform_device
*pdev
)
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
;
265 hpriv
= ahci_platform_get_resources(pdev
, 0);
267 return PTR_ERR(hpriv
);
269 of_id
= of_match_node(ahci_qoriq_of_match
, np
);
273 qoriq_priv
= devm_kzalloc(dev
, sizeof(*qoriq_priv
), GFP_KERNEL
);
277 qoriq_priv
->type
= (enum ahci_qoriq_type
)of_id
->data
;
279 if (unlikely(!ecc_initialized
)) {
280 res
= platform_get_resource_byname(pdev
,
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
);
291 qoriq_priv
->is_dmacoherent
= of_dma_is_coherent(np
);
293 rc
= ahci_platform_enable_resources(hpriv
);
297 hpriv
->plat_data
= qoriq_priv
;
298 rc
= ahci_qoriq_phy_init(hpriv
);
300 goto disable_resources
;
302 rc
= ahci_platform_init_host(pdev
, hpriv
, &ahci_qoriq_port_info
,
305 goto disable_resources
;
310 ahci_platform_disable_resources(hpriv
);
315 #ifdef CONFIG_PM_SLEEP
316 static int ahci_qoriq_resume(struct device
*dev
)
318 struct ata_host
*host
= dev_get_drvdata(dev
);
319 struct ahci_host_priv
*hpriv
= host
->private_data
;
322 rc
= ahci_platform_enable_resources(hpriv
);
326 rc
= ahci_qoriq_phy_init(hpriv
);
328 goto disable_resources
;
330 rc
= ahci_platform_resume_host(dev
);
332 goto disable_resources
;
334 /* We resumed so update PM runtime state */
335 pm_runtime_disable(dev
);
336 pm_runtime_set_active(dev
);
337 pm_runtime_enable(dev
);
342 ahci_platform_disable_resources(hpriv
);
348 static SIMPLE_DEV_PM_OPS(ahci_qoriq_pm_ops
, ahci_platform_suspend
,
351 static struct platform_driver ahci_qoriq_driver
= {
352 .probe
= ahci_qoriq_probe
,
353 .remove
= ata_platform_remove_one
,
356 .of_match_table
= ahci_qoriq_of_match
,
357 .pm
= &ahci_qoriq_pm_ops
,
360 module_platform_driver(ahci_qoriq_driver
);
362 MODULE_DESCRIPTION("Freescale QorIQ AHCI SATA platform driver");
363 MODULE_AUTHOR("Tang Yuantian <Yuantian.Tang@freescale.com>");
364 MODULE_LICENSE("GPL");