2 * Allwinner sunxi AHCI SATA platform driver
3 * Copyright 2013 Olliver Schinagl <oliver@schinagl.nl>
4 * Copyright 2014 Hans de Goede <hdegoede@redhat.com>
6 * based on the AHCI SATA platform driver by Jeff Garzik and Anton Vorontsov
7 * Based on code from Allwinner Technology Co., Ltd. <www.allwinnertech.com>,
8 * Daniel Wang <danielwang@allwinnertech.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 #include <linux/ahci_platform.h>
21 #include <linux/clk.h>
22 #include <linux/errno.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/of_device.h>
26 #include <linux/platform_device.h>
27 #include <linux/regulator/consumer.h>
30 #define AHCI_BISTAFR 0x00a0
31 #define AHCI_BISTCR 0x00a4
32 #define AHCI_BISTFCTR 0x00a8
33 #define AHCI_BISTSR 0x00ac
34 #define AHCI_BISTDECR 0x00b0
35 #define AHCI_DIAGNR0 0x00b4
36 #define AHCI_DIAGNR1 0x00b8
37 #define AHCI_OOBR 0x00bc
38 #define AHCI_PHYCS0R 0x00c0
39 #define AHCI_PHYCS1R 0x00c4
40 #define AHCI_PHYCS2R 0x00c8
41 #define AHCI_TIMER1MS 0x00e0
42 #define AHCI_GPARAM1R 0x00e8
43 #define AHCI_GPARAM2R 0x00ec
44 #define AHCI_PPARAMR 0x00f0
45 #define AHCI_TESTR 0x00f4
46 #define AHCI_VERSIONR 0x00f8
47 #define AHCI_IDR 0x00fc
48 #define AHCI_RWCR 0x00fc
49 #define AHCI_P0DMACR 0x0170
50 #define AHCI_P0PHYCR 0x0178
51 #define AHCI_P0PHYSR 0x017c
53 static void sunxi_clrbits(void __iomem
*reg
, u32 clr_val
)
58 reg_val
&= ~(clr_val
);
62 static void sunxi_setbits(void __iomem
*reg
, u32 set_val
)
71 static void sunxi_clrsetbits(void __iomem
*reg
, u32 clr_val
, u32 set_val
)
76 reg_val
&= ~(clr_val
);
81 static u32
sunxi_getbits(void __iomem
*reg
, u8 mask
, u8 shift
)
83 return (readl(reg
) >> shift
) & mask
;
86 static int ahci_sunxi_phy_init(struct device
*dev
, void __iomem
*reg_base
)
91 /* This magic is from the original code */
92 writel(0, reg_base
+ AHCI_RWCR
);
95 sunxi_setbits(reg_base
+ AHCI_PHYCS1R
, BIT(19));
96 sunxi_clrsetbits(reg_base
+ AHCI_PHYCS0R
,
98 (0x5 << 24) | BIT(23) | BIT(18));
99 sunxi_clrsetbits(reg_base
+ AHCI_PHYCS1R
,
100 (0x3 << 16) | (0x1f << 8) | (0x3 << 6),
101 (0x2 << 16) | (0x6 << 8) | (0x2 << 6));
102 sunxi_setbits(reg_base
+ AHCI_PHYCS1R
, BIT(28) | BIT(15));
103 sunxi_clrbits(reg_base
+ AHCI_PHYCS1R
, BIT(19));
104 sunxi_clrsetbits(reg_base
+ AHCI_PHYCS0R
,
105 (0x7 << 20), (0x3 << 20));
106 sunxi_clrsetbits(reg_base
+ AHCI_PHYCS2R
,
107 (0x1f << 5), (0x19 << 5));
110 sunxi_setbits(reg_base
+ AHCI_PHYCS0R
, (0x1 << 19));
112 timeout
= 250; /* Power up takes aprox 50 us */
114 reg_val
= sunxi_getbits(reg_base
+ AHCI_PHYCS0R
, 0x7, 28);
118 if (--timeout
== 0) {
119 dev_err(dev
, "PHY power up failed.\n");
125 sunxi_setbits(reg_base
+ AHCI_PHYCS2R
, (0x1 << 24));
127 timeout
= 100; /* Calibration takes aprox 10 us */
129 reg_val
= sunxi_getbits(reg_base
+ AHCI_PHYCS2R
, 0x1, 24);
133 if (--timeout
== 0) {
134 dev_err(dev
, "PHY calibration failed.\n");
142 writel(0x7, reg_base
+ AHCI_RWCR
);
147 static void ahci_sunxi_start_engine(struct ata_port
*ap
)
149 void __iomem
*port_mmio
= ahci_port_base(ap
);
150 struct ahci_host_priv
*hpriv
= ap
->host
->private_data
;
152 /* Setup DMA before DMA start */
153 sunxi_clrsetbits(hpriv
->mmio
+ AHCI_P0DMACR
, 0x0000ff00, 0x00004400);
156 sunxi_setbits(port_mmio
+ PORT_CMD
, PORT_CMD_START
);
159 static const struct ata_port_info ahci_sunxi_port_info
= {
160 .flags
= AHCI_FLAG_COMMON
| ATA_FLAG_NCQ
,
161 .pio_mask
= ATA_PIO4
,
162 .udma_mask
= ATA_UDMA6
,
163 .port_ops
= &ahci_platform_ops
,
166 static int ahci_sunxi_probe(struct platform_device
*pdev
)
168 struct device
*dev
= &pdev
->dev
;
169 struct ahci_host_priv
*hpriv
;
172 hpriv
= ahci_platform_get_resources(pdev
);
174 return PTR_ERR(hpriv
);
176 hpriv
->start_engine
= ahci_sunxi_start_engine
;
178 rc
= ahci_platform_enable_resources(hpriv
);
182 rc
= ahci_sunxi_phy_init(dev
, hpriv
->mmio
);
184 goto disable_resources
;
186 hpriv
->flags
= AHCI_HFLAG_32BIT_ONLY
| AHCI_HFLAG_NO_MSI
|
187 AHCI_HFLAG_NO_PMP
| AHCI_HFLAG_YES_NCQ
;
189 rc
= ahci_platform_init_host(pdev
, hpriv
, &ahci_sunxi_port_info
);
191 goto disable_resources
;
196 ahci_platform_disable_resources(hpriv
);
200 #ifdef CONFIG_PM_SLEEP
201 static int ahci_sunxi_resume(struct device
*dev
)
203 struct ata_host
*host
= dev_get_drvdata(dev
);
204 struct ahci_host_priv
*hpriv
= host
->private_data
;
207 rc
= ahci_platform_enable_resources(hpriv
);
211 rc
= ahci_sunxi_phy_init(dev
, hpriv
->mmio
);
213 goto disable_resources
;
215 rc
= ahci_platform_resume_host(dev
);
217 goto disable_resources
;
222 ahci_platform_disable_resources(hpriv
);
227 static SIMPLE_DEV_PM_OPS(ahci_sunxi_pm_ops
, ahci_platform_suspend
,
230 static const struct of_device_id ahci_sunxi_of_match
[] = {
231 { .compatible
= "allwinner,sun4i-a10-ahci", },
234 MODULE_DEVICE_TABLE(of
, ahci_sunxi_of_match
);
236 static struct platform_driver ahci_sunxi_driver
= {
237 .probe
= ahci_sunxi_probe
,
238 .remove
= ata_platform_remove_one
,
240 .name
= "ahci-sunxi",
241 .owner
= THIS_MODULE
,
242 .of_match_table
= ahci_sunxi_of_match
,
243 .pm
= &ahci_sunxi_pm_ops
,
246 module_platform_driver(ahci_sunxi_driver
);
248 MODULE_DESCRIPTION("Allwinner sunxi AHCI SATA driver");
249 MODULE_AUTHOR("Olliver Schinagl <oliver@schinagl.nl>");
250 MODULE_LICENSE("GPL");