2 * Freescale QorIQ AHCI SATA platform driver
4 * Copyright 2015 Freescale, Inc.
5 * Tang Yuantian <Yuantian.Tang@freescale.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 as published by
9 * the Free Software Foundation; either version 2, or (at your option)
13 #include <linux/kernel.h>
14 #include <linux/module.h>
16 #include <linux/ahci_platform.h>
17 #include <linux/device.h>
18 #include <linux/of_address.h>
20 #include <linux/of_device.h>
21 #include <linux/platform_device.h>
22 #include <linux/libata.h>
25 #define DRV_NAME "ahci-qoriq"
27 /* port register definition */
28 #define PORT_PHY1 0xA8
29 #define PORT_PHY2 0xAC
30 #define PORT_PHY3 0xB0
31 #define PORT_PHY4 0xB4
32 #define PORT_PHY5 0xB8
33 #define PORT_TRANS 0xC8
35 /* port register default value */
36 #define AHCI_PORT_PHY_1_CFG 0xa003fffe
37 #define AHCI_PORT_PHY_2_CFG 0x28183411
38 #define AHCI_PORT_PHY_3_CFG 0x0e081004
39 #define AHCI_PORT_PHY_4_CFG 0x00480811
40 #define AHCI_PORT_PHY_5_CFG 0x192c96a4
41 #define AHCI_PORT_TRANS_CFG 0x08000025
43 #define SATA_ECC_DISABLE 0x00020000
45 enum ahci_qoriq_type
{
51 struct ahci_qoriq_priv
{
52 struct ccsr_ahci
*reg_base
;
53 enum ahci_qoriq_type type
;
54 void __iomem
*ecc_addr
;
57 static const struct of_device_id ahci_qoriq_of_match
[] = {
58 { .compatible
= "fsl,ls1021a-ahci", .data
= (void *)AHCI_LS1021A
},
59 { .compatible
= "fsl,ls1043a-ahci", .data
= (void *)AHCI_LS1043A
},
60 { .compatible
= "fsl,ls2080a-ahci", .data
= (void *)AHCI_LS2080A
},
63 MODULE_DEVICE_TABLE(of
, ahci_qoriq_of_match
);
65 static int ahci_qoriq_hardreset(struct ata_link
*link
, unsigned int *class,
66 unsigned long deadline
)
68 const unsigned long *timing
= sata_ehc_deb_timing(&link
->eh_context
);
69 void __iomem
*port_mmio
= ahci_port_base(link
->ap
);
70 u32 px_cmd
, px_is
, px_val
;
71 struct ata_port
*ap
= link
->ap
;
72 struct ahci_port_priv
*pp
= ap
->private_data
;
73 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
74 struct ahci_qoriq_priv
*qoriq_priv
= hpriv
->plat_data
;
75 u8
*d2h_fis
= pp
->rx_fis
+ RX_FIS_D2H_REG
;
76 struct ata_taskfile tf
;
79 bool ls1021a_workaround
= (qoriq_priv
->type
== AHCI_LS1021A
);
86 * There is a errata on ls1021a Rev1.0 and Rev2.0 which is:
87 * A-009042: The device detection initialization sequence
88 * mistakenly resets some registers.
90 * Workaround for this is:
91 * The software should read and store PxCMD and PxIS values
92 * before issuing the device detection initialization sequence.
93 * After the sequence is complete, software should restore the
94 * PxCMD and PxIS with the stored values.
96 if (ls1021a_workaround
) {
97 px_cmd
= readl(port_mmio
+ PORT_CMD
);
98 px_is
= readl(port_mmio
+ PORT_IRQ_STAT
);
101 /* clear D2H reception area to properly wait for D2H FIS */
102 ata_tf_init(link
->device
, &tf
);
103 tf
.command
= ATA_BUSY
;
104 ata_tf_to_fis(&tf
, 0, 0, d2h_fis
);
106 rc
= sata_link_hardreset(link
, timing
, deadline
, &online
,
109 /* restore the PxCMD and PxIS on ls1021 */
110 if (ls1021a_workaround
) {
111 px_val
= readl(port_mmio
+ PORT_CMD
);
112 if (px_val
!= px_cmd
)
113 writel(px_cmd
, port_mmio
+ PORT_CMD
);
115 px_val
= readl(port_mmio
+ PORT_IRQ_STAT
);
117 writel(px_is
, port_mmio
+ PORT_IRQ_STAT
);
120 hpriv
->start_engine(ap
);
123 *class = ahci_dev_classify(ap
);
125 DPRINTK("EXIT, rc=%d, class=%u\n", rc
, *class);
129 static struct ata_port_operations ahci_qoriq_ops
= {
130 .inherits
= &ahci_ops
,
131 .hardreset
= ahci_qoriq_hardreset
,
134 static struct ata_port_info ahci_qoriq_port_info
= {
135 .flags
= AHCI_FLAG_COMMON
| ATA_FLAG_NCQ
,
136 .pio_mask
= ATA_PIO4
,
137 .udma_mask
= ATA_UDMA6
,
138 .port_ops
= &ahci_qoriq_ops
,
141 static struct scsi_host_template ahci_qoriq_sht
= {
145 static int ahci_qoriq_phy_init(struct ahci_host_priv
*hpriv
)
147 struct ahci_qoriq_priv
*qpriv
= hpriv
->plat_data
;
148 void __iomem
*reg_base
= hpriv
->mmio
;
150 switch (qpriv
->type
) {
152 writel(SATA_ECC_DISABLE
, qpriv
->ecc_addr
);
153 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
154 writel(AHCI_PORT_PHY_2_CFG
, reg_base
+ PORT_PHY2
);
155 writel(AHCI_PORT_PHY_3_CFG
, reg_base
+ PORT_PHY3
);
156 writel(AHCI_PORT_PHY_4_CFG
, reg_base
+ PORT_PHY4
);
157 writel(AHCI_PORT_PHY_5_CFG
, reg_base
+ PORT_PHY5
);
158 writel(AHCI_PORT_TRANS_CFG
, reg_base
+ PORT_TRANS
);
163 writel(AHCI_PORT_PHY_1_CFG
, reg_base
+ PORT_PHY1
);
170 static int ahci_qoriq_probe(struct platform_device
*pdev
)
172 struct device_node
*np
= pdev
->dev
.of_node
;
173 struct device
*dev
= &pdev
->dev
;
174 struct ahci_host_priv
*hpriv
;
175 struct ahci_qoriq_priv
*qoriq_priv
;
176 const struct of_device_id
*of_id
;
177 struct resource
*res
;
180 hpriv
= ahci_platform_get_resources(pdev
);
182 return PTR_ERR(hpriv
);
184 of_id
= of_match_node(ahci_qoriq_of_match
, np
);
188 qoriq_priv
= devm_kzalloc(dev
, sizeof(*qoriq_priv
), GFP_KERNEL
);
192 qoriq_priv
->type
= (enum ahci_qoriq_type
)of_id
->data
;
194 if (qoriq_priv
->type
== AHCI_LS1021A
) {
195 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
197 qoriq_priv
->ecc_addr
= devm_ioremap_resource(dev
, res
);
198 if (IS_ERR(qoriq_priv
->ecc_addr
))
199 return PTR_ERR(qoriq_priv
->ecc_addr
);
202 rc
= ahci_platform_enable_resources(hpriv
);
206 hpriv
->plat_data
= qoriq_priv
;
207 rc
= ahci_qoriq_phy_init(hpriv
);
209 goto disable_resources
;
211 /* Workaround for ls2080a */
212 if (qoriq_priv
->type
== AHCI_LS2080A
) {
213 hpriv
->flags
|= AHCI_HFLAG_NO_NCQ
;
214 ahci_qoriq_port_info
.flags
&= ~ATA_FLAG_NCQ
;
217 rc
= ahci_platform_init_host(pdev
, hpriv
, &ahci_qoriq_port_info
,
220 goto disable_resources
;
225 ahci_platform_disable_resources(hpriv
);
230 #ifdef CONFIG_PM_SLEEP
231 static int ahci_qoriq_resume(struct device
*dev
)
233 struct ata_host
*host
= dev_get_drvdata(dev
);
234 struct ahci_host_priv
*hpriv
= host
->private_data
;
237 rc
= ahci_platform_enable_resources(hpriv
);
241 rc
= ahci_qoriq_phy_init(hpriv
);
243 goto disable_resources
;
245 rc
= ahci_platform_resume_host(dev
);
247 goto disable_resources
;
249 /* We resumed so update PM runtime state */
250 pm_runtime_disable(dev
);
251 pm_runtime_set_active(dev
);
252 pm_runtime_enable(dev
);
257 ahci_platform_disable_resources(hpriv
);
263 static SIMPLE_DEV_PM_OPS(ahci_qoriq_pm_ops
, ahci_platform_suspend
,
266 static struct platform_driver ahci_qoriq_driver
= {
267 .probe
= ahci_qoriq_probe
,
268 .remove
= ata_platform_remove_one
,
271 .of_match_table
= ahci_qoriq_of_match
,
272 .pm
= &ahci_qoriq_pm_ops
,
275 module_platform_driver(ahci_qoriq_driver
);
277 MODULE_DESCRIPTION("Freescale QorIQ AHCI SATA platform driver");
278 MODULE_AUTHOR("Tang Yuantian <Yuantian.Tang@freescale.com>");
279 MODULE_LICENSE("GPL");