2 * Broadcom SATA3 AHCI Controller Driver
4 * Copyright © 2009-2015 Broadcom Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/ahci_platform.h>
18 #include <linux/compiler.h>
19 #include <linux/device.h>
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
23 #include <linux/kernel.h>
24 #include <linux/libata.h>
25 #include <linux/module.h>
27 #include <linux/platform_device.h>
28 #include <linux/string.h>
32 #define DRV_NAME "brcm-ahci"
34 #define SATA_TOP_CTRL_VERSION 0x0
35 #define SATA_TOP_CTRL_BUS_CTRL 0x4
36 #define MMIO_ENDIAN_SHIFT 0 /* CPU->AHCI */
37 #define DMADESC_ENDIAN_SHIFT 2 /* AHCI->DDR */
38 #define DMADATA_ENDIAN_SHIFT 4 /* AHCI->DDR */
39 #define PIODATA_ENDIAN_SHIFT 6
40 #define ENDIAN_SWAP_NONE 0
41 #define ENDIAN_SWAP_FULL 2
42 #define SATA_TOP_CTRL_TP_CTRL 0x8
43 #define SATA_TOP_CTRL_PHY_CTRL 0xc
44 #define SATA_TOP_CTRL_PHY_CTRL_1 0x0
45 #define SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE BIT(14)
46 #define SATA_TOP_CTRL_PHY_CTRL_2 0x4
47 #define SATA_TOP_CTRL_2_SW_RST_MDIOREG BIT(0)
48 #define SATA_TOP_CTRL_2_SW_RST_OOB BIT(1)
49 #define SATA_TOP_CTRL_2_SW_RST_RX BIT(2)
50 #define SATA_TOP_CTRL_2_SW_RST_TX BIT(3)
51 #define SATA_TOP_CTRL_2_PHY_GLOBAL_RESET BIT(14)
52 #define SATA_TOP_CTRL_PHY_OFFS 0x8
53 #define SATA_TOP_MAX_PHYS 2
55 #define SATA_FIRST_PORT_CTRL 0x700
56 #define SATA_NEXT_PORT_CTRL_OFFSET 0x80
57 #define SATA_PORT_PCTRL6(reg_base) (reg_base + 0x18)
59 /* On big-endian MIPS, buses are reversed to big endian, so switch them back */
60 #if defined(CONFIG_MIPS) && defined(__BIG_ENDIAN)
61 #define DATA_ENDIAN 2 /* AHCI->DDR inbound accesses */
62 #define MMIO_ENDIAN 2 /* CPU->AHCI outbound accesses */
68 #define BUS_CTRL_ENDIAN_CONF \
69 ((DATA_ENDIAN << DMADATA_ENDIAN_SHIFT) | \
70 (DATA_ENDIAN << DMADESC_ENDIAN_SHIFT) | \
71 (MMIO_ENDIAN << MMIO_ENDIAN_SHIFT))
73 #define BUS_CTRL_ENDIAN_NSP_CONF \
74 (0x02 << DMADATA_ENDIAN_SHIFT | 0x02 << DMADESC_ENDIAN_SHIFT)
76 #define BUS_CTRL_ENDIAN_CONF_MASK \
77 (0x3 << MMIO_ENDIAN_SHIFT | 0x3 << DMADESC_ENDIAN_SHIFT | \
78 0x3 << DMADATA_ENDIAN_SHIFT | 0x3 << PIODATA_ENDIAN_SHIFT)
80 enum brcm_ahci_version
{
81 BRCM_SATA_BCM7425
= 1,
86 enum brcm_ahci_quirks
{
87 BRCM_AHCI_QUIRK_NO_NCQ
= BIT(0),
88 BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
= BIT(1),
91 struct brcm_ahci_priv
{
93 void __iomem
*top_ctrl
;
96 enum brcm_ahci_version version
;
99 static inline u32
brcm_sata_readreg(void __iomem
*addr
)
102 * MIPS endianness is configured by boot strap, which also reverses all
103 * bus endianness (i.e., big-endian CPU + big endian bus ==> native
106 * Other architectures (e.g., ARM) either do not support big endian, or
107 * else leave I/O in little endian mode.
109 if (IS_ENABLED(CONFIG_MIPS
) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
110 return __raw_readl(addr
);
112 return readl_relaxed(addr
);
115 static inline void brcm_sata_writereg(u32 val
, void __iomem
*addr
)
117 /* See brcm_sata_readreg() comments */
118 if (IS_ENABLED(CONFIG_MIPS
) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
119 __raw_writel(val
, addr
);
121 writel_relaxed(val
, addr
);
124 static void brcm_sata_alpm_init(struct ahci_host_priv
*hpriv
)
126 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
127 u32 port_ctrl
, host_caps
;
130 /* Enable support for ALPM */
131 host_caps
= readl(hpriv
->mmio
+ HOST_CAP
);
132 if (!(host_caps
& HOST_CAP_ALPM
))
133 hpriv
->flags
|= AHCI_HFLAG_YES_ALPM
;
136 * Adjust timeout to allow PLL sufficient time to lock while waking
137 * up from slumber mode.
139 for (i
= 0, port_ctrl
= SATA_FIRST_PORT_CTRL
;
140 i
< SATA_TOP_MAX_PHYS
;
141 i
++, port_ctrl
+= SATA_NEXT_PORT_CTRL_OFFSET
) {
142 if (priv
->port_mask
& BIT(i
))
144 hpriv
->mmio
+ SATA_PORT_PCTRL6(port_ctrl
));
148 static void brcm_sata_phy_enable(struct brcm_ahci_priv
*priv
, int port
)
150 void __iomem
*phyctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_PHY_CTRL
+
151 (port
* SATA_TOP_CTRL_PHY_OFFS
);
155 if (priv
->quirks
& BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
)
158 /* clear PHY_DEFAULT_POWER_STATE */
159 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_1
;
160 reg
= brcm_sata_readreg(p
);
161 reg
&= ~SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE
;
162 brcm_sata_writereg(reg
, p
);
164 /* reset the PHY digital logic */
165 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_2
;
166 reg
= brcm_sata_readreg(p
);
167 reg
&= ~(SATA_TOP_CTRL_2_SW_RST_MDIOREG
| SATA_TOP_CTRL_2_SW_RST_OOB
|
168 SATA_TOP_CTRL_2_SW_RST_RX
);
169 reg
|= SATA_TOP_CTRL_2_SW_RST_TX
;
170 brcm_sata_writereg(reg
, p
);
171 reg
= brcm_sata_readreg(p
);
172 reg
|= SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
;
173 brcm_sata_writereg(reg
, p
);
174 reg
= brcm_sata_readreg(p
);
175 reg
&= ~SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
;
176 brcm_sata_writereg(reg
, p
);
177 (void)brcm_sata_readreg(p
);
180 static void brcm_sata_phy_disable(struct brcm_ahci_priv
*priv
, int port
)
182 void __iomem
*phyctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_PHY_CTRL
+
183 (port
* SATA_TOP_CTRL_PHY_OFFS
);
187 if (priv
->quirks
& BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
)
190 /* power-off the PHY digital logic */
191 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_2
;
192 reg
= brcm_sata_readreg(p
);
193 reg
|= (SATA_TOP_CTRL_2_SW_RST_MDIOREG
| SATA_TOP_CTRL_2_SW_RST_OOB
|
194 SATA_TOP_CTRL_2_SW_RST_RX
| SATA_TOP_CTRL_2_SW_RST_TX
|
195 SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
);
196 brcm_sata_writereg(reg
, p
);
198 /* set PHY_DEFAULT_POWER_STATE */
199 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_1
;
200 reg
= brcm_sata_readreg(p
);
201 reg
|= SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE
;
202 brcm_sata_writereg(reg
, p
);
205 static void brcm_sata_phys_enable(struct brcm_ahci_priv
*priv
)
209 for (i
= 0; i
< SATA_TOP_MAX_PHYS
; i
++)
210 if (priv
->port_mask
& BIT(i
))
211 brcm_sata_phy_enable(priv
, i
);
214 static void brcm_sata_phys_disable(struct brcm_ahci_priv
*priv
)
218 for (i
= 0; i
< SATA_TOP_MAX_PHYS
; i
++)
219 if (priv
->port_mask
& BIT(i
))
220 brcm_sata_phy_disable(priv
, i
);
223 static u32
brcm_ahci_get_portmask(struct platform_device
*pdev
,
224 struct brcm_ahci_priv
*priv
)
227 struct resource
*res
;
230 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ahci");
231 ahci
= devm_ioremap_resource(&pdev
->dev
, res
);
235 impl
= readl(ahci
+ HOST_PORTS_IMPL
);
237 if (fls(impl
) > SATA_TOP_MAX_PHYS
)
238 dev_warn(priv
->dev
, "warning: more ports than PHYs (%#x)\n",
241 dev_info(priv
->dev
, "no ports found\n");
243 devm_iounmap(&pdev
->dev
, ahci
);
244 devm_release_mem_region(&pdev
->dev
, res
->start
, resource_size(res
));
249 static void brcm_sata_init(struct brcm_ahci_priv
*priv
)
251 void __iomem
*ctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_BUS_CTRL
;
254 /* Configure endianness */
255 data
= brcm_sata_readreg(ctrl
);
256 data
&= ~BUS_CTRL_ENDIAN_CONF_MASK
;
257 if (priv
->version
== BRCM_SATA_NSP
)
258 data
|= BUS_CTRL_ENDIAN_NSP_CONF
;
260 data
|= BUS_CTRL_ENDIAN_CONF
;
261 brcm_sata_writereg(data
, ctrl
);
264 static unsigned int brcm_ahci_read_id(struct ata_device
*dev
,
265 struct ata_taskfile
*tf
, u16
*id
)
267 struct ata_port
*ap
= dev
->link
->ap
;
268 struct ata_host
*host
= ap
->host
;
269 struct ahci_host_priv
*hpriv
= host
->private_data
;
270 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
271 void __iomem
*mmio
= hpriv
->mmio
;
272 unsigned int err_mask
;
277 /* Try to read the device ID and, if this fails, proceed with the
278 * recovery sequence below
280 err_mask
= ata_do_dev_read_id(dev
, tf
, id
);
281 if (likely(!err_mask
))
284 /* Disable host interrupts */
285 spin_lock_irqsave(&host
->lock
, flags
);
286 ctl
= readl(mmio
+ HOST_CTL
);
288 writel(ctl
, mmio
+ HOST_CTL
);
289 readl(mmio
+ HOST_CTL
); /* flush */
290 spin_unlock_irqrestore(&host
->lock
, flags
);
292 /* Perform the SATA PHY reset sequence */
293 brcm_sata_phy_disable(priv
, ap
->port_no
);
295 /* Bring the PHY back on */
296 brcm_sata_phy_enable(priv
, ap
->port_no
);
298 /* Re-initialize and calibrate the PHY */
299 for (i
= 0; i
< hpriv
->nports
; i
++) {
300 rc
= phy_init(hpriv
->phys
[i
]);
304 rc
= phy_calibrate(hpriv
->phys
[i
]);
306 phy_exit(hpriv
->phys
[i
]);
311 /* Re-enable host interrupts */
312 spin_lock_irqsave(&host
->lock
, flags
);
313 ctl
= readl(mmio
+ HOST_CTL
);
315 writel(ctl
, mmio
+ HOST_CTL
);
316 readl(mmio
+ HOST_CTL
); /* flush */
317 spin_unlock_irqrestore(&host
->lock
, flags
);
319 return ata_do_dev_read_id(dev
, tf
, id
);
323 phy_power_off(hpriv
->phys
[i
]);
324 phy_exit(hpriv
->phys
[i
]);
330 static void brcm_ahci_host_stop(struct ata_host
*host
)
332 struct ahci_host_priv
*hpriv
= host
->private_data
;
334 ahci_platform_disable_resources(hpriv
);
337 static struct ata_port_operations ahci_brcm_platform_ops
= {
338 .inherits
= &ahci_ops
,
339 .host_stop
= brcm_ahci_host_stop
,
340 .read_id
= brcm_ahci_read_id
,
343 static const struct ata_port_info ahci_brcm_port_info
= {
344 .flags
= AHCI_FLAG_COMMON
| ATA_FLAG_NO_DIPM
,
345 .link_flags
= ATA_LFLAG_NO_DB_DELAY
,
346 .pio_mask
= ATA_PIO4
,
347 .udma_mask
= ATA_UDMA6
,
348 .port_ops
= &ahci_brcm_platform_ops
,
351 #ifdef CONFIG_PM_SLEEP
352 static int brcm_ahci_suspend(struct device
*dev
)
354 struct ata_host
*host
= dev_get_drvdata(dev
);
355 struct ahci_host_priv
*hpriv
= host
->private_data
;
356 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
359 ret
= ahci_platform_suspend(dev
);
360 brcm_sata_phys_disable(priv
);
364 static int brcm_ahci_resume(struct device
*dev
)
366 struct ata_host
*host
= dev_get_drvdata(dev
);
367 struct ahci_host_priv
*hpriv
= host
->private_data
;
368 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
370 brcm_sata_init(priv
);
371 brcm_sata_phys_enable(priv
);
372 brcm_sata_alpm_init(hpriv
);
373 return ahci_platform_resume(dev
);
377 static struct scsi_host_template ahci_platform_sht
= {
381 static const struct of_device_id ahci_of_match
[] = {
382 {.compatible
= "brcm,bcm7425-ahci", .data
= (void *)BRCM_SATA_BCM7425
},
383 {.compatible
= "brcm,bcm7445-ahci", .data
= (void *)BRCM_SATA_BCM7445
},
384 {.compatible
= "brcm,bcm-nsp-ahci", .data
= (void *)BRCM_SATA_NSP
},
387 MODULE_DEVICE_TABLE(of
, ahci_of_match
);
389 static int brcm_ahci_probe(struct platform_device
*pdev
)
391 const struct of_device_id
*of_id
;
392 struct device
*dev
= &pdev
->dev
;
393 struct brcm_ahci_priv
*priv
;
394 struct ahci_host_priv
*hpriv
;
395 struct resource
*res
;
398 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
402 of_id
= of_match_node(ahci_of_match
, pdev
->dev
.of_node
);
406 priv
->version
= (enum brcm_ahci_version
)of_id
->data
;
409 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "top-ctrl");
410 priv
->top_ctrl
= devm_ioremap_resource(dev
, res
);
411 if (IS_ERR(priv
->top_ctrl
))
412 return PTR_ERR(priv
->top_ctrl
);
414 if ((priv
->version
== BRCM_SATA_BCM7425
) ||
415 (priv
->version
== BRCM_SATA_NSP
)) {
416 priv
->quirks
|= BRCM_AHCI_QUIRK_NO_NCQ
;
417 priv
->quirks
|= BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
;
420 brcm_sata_init(priv
);
422 priv
->port_mask
= brcm_ahci_get_portmask(pdev
, priv
);
423 if (!priv
->port_mask
)
426 brcm_sata_phys_enable(priv
);
428 hpriv
= ahci_platform_get_resources(pdev
);
430 return PTR_ERR(hpriv
);
431 hpriv
->plat_data
= priv
;
432 hpriv
->flags
= AHCI_HFLAG_WAKE_BEFORE_STOP
;
434 brcm_sata_alpm_init(hpriv
);
436 ret
= ahci_platform_enable_resources(hpriv
);
440 if (priv
->quirks
& BRCM_AHCI_QUIRK_NO_NCQ
)
441 hpriv
->flags
|= AHCI_HFLAG_NO_NCQ
;
442 hpriv
->flags
|= AHCI_HFLAG_NO_WRITE_TO_RO
;
444 ret
= ahci_platform_init_host(pdev
, hpriv
, &ahci_brcm_port_info
,
449 dev_info(dev
, "Broadcom AHCI SATA3 registered\n");
454 static int brcm_ahci_remove(struct platform_device
*pdev
)
456 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
457 struct ahci_host_priv
*hpriv
= host
->private_data
;
458 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
461 ret
= ata_platform_remove_one(pdev
);
465 brcm_sata_phys_disable(priv
);
470 static SIMPLE_DEV_PM_OPS(ahci_brcm_pm_ops
, brcm_ahci_suspend
, brcm_ahci_resume
);
472 static struct platform_driver brcm_ahci_driver
= {
473 .probe
= brcm_ahci_probe
,
474 .remove
= brcm_ahci_remove
,
477 .of_match_table
= ahci_of_match
,
478 .pm
= &ahci_brcm_pm_ops
,
481 module_platform_driver(brcm_ahci_driver
);
483 MODULE_DESCRIPTION("Broadcom SATA3 AHCI Controller Driver");
484 MODULE_AUTHOR("Brian Norris");
485 MODULE_LICENSE("GPL");
486 MODULE_ALIAS("platform:sata-brcmstb");