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/reset.h>
29 #include <linux/string.h>
33 #define DRV_NAME "brcm-ahci"
35 #define SATA_TOP_CTRL_VERSION 0x0
36 #define SATA_TOP_CTRL_BUS_CTRL 0x4
37 #define MMIO_ENDIAN_SHIFT 0 /* CPU->AHCI */
38 #define DMADESC_ENDIAN_SHIFT 2 /* AHCI->DDR */
39 #define DMADATA_ENDIAN_SHIFT 4 /* AHCI->DDR */
40 #define PIODATA_ENDIAN_SHIFT 6
41 #define ENDIAN_SWAP_NONE 0
42 #define ENDIAN_SWAP_FULL 2
43 #define SATA_TOP_CTRL_TP_CTRL 0x8
44 #define SATA_TOP_CTRL_PHY_CTRL 0xc
45 #define SATA_TOP_CTRL_PHY_CTRL_1 0x0
46 #define SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE BIT(14)
47 #define SATA_TOP_CTRL_PHY_CTRL_2 0x4
48 #define SATA_TOP_CTRL_2_SW_RST_MDIOREG BIT(0)
49 #define SATA_TOP_CTRL_2_SW_RST_OOB BIT(1)
50 #define SATA_TOP_CTRL_2_SW_RST_RX BIT(2)
51 #define SATA_TOP_CTRL_2_SW_RST_TX BIT(3)
52 #define SATA_TOP_CTRL_2_PHY_GLOBAL_RESET BIT(14)
53 #define SATA_TOP_CTRL_PHY_OFFS 0x8
54 #define SATA_TOP_MAX_PHYS 2
56 #define SATA_FIRST_PORT_CTRL 0x700
57 #define SATA_NEXT_PORT_CTRL_OFFSET 0x80
58 #define SATA_PORT_PCTRL6(reg_base) (reg_base + 0x18)
60 /* On big-endian MIPS, buses are reversed to big endian, so switch them back */
61 #if defined(CONFIG_MIPS) && defined(__BIG_ENDIAN)
62 #define DATA_ENDIAN 2 /* AHCI->DDR inbound accesses */
63 #define MMIO_ENDIAN 2 /* CPU->AHCI outbound accesses */
69 #define BUS_CTRL_ENDIAN_CONF \
70 ((DATA_ENDIAN << DMADATA_ENDIAN_SHIFT) | \
71 (DATA_ENDIAN << DMADESC_ENDIAN_SHIFT) | \
72 (MMIO_ENDIAN << MMIO_ENDIAN_SHIFT))
74 #define BUS_CTRL_ENDIAN_NSP_CONF \
75 (0x02 << DMADATA_ENDIAN_SHIFT | 0x02 << DMADESC_ENDIAN_SHIFT)
77 #define BUS_CTRL_ENDIAN_CONF_MASK \
78 (0x3 << MMIO_ENDIAN_SHIFT | 0x3 << DMADESC_ENDIAN_SHIFT | \
79 0x3 << DMADATA_ENDIAN_SHIFT | 0x3 << PIODATA_ENDIAN_SHIFT)
81 enum brcm_ahci_version
{
82 BRCM_SATA_BCM7425
= 1,
87 enum brcm_ahci_quirks
{
88 BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
= BIT(0),
91 struct brcm_ahci_priv
{
93 void __iomem
*top_ctrl
;
96 enum brcm_ahci_version version
;
97 struct reset_control
*rcdev
;
100 static inline u32
brcm_sata_readreg(void __iomem
*addr
)
103 * MIPS endianness is configured by boot strap, which also reverses all
104 * bus endianness (i.e., big-endian CPU + big endian bus ==> native
107 * Other architectures (e.g., ARM) either do not support big endian, or
108 * else leave I/O in little endian mode.
110 if (IS_ENABLED(CONFIG_MIPS
) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
111 return __raw_readl(addr
);
113 return readl_relaxed(addr
);
116 static inline void brcm_sata_writereg(u32 val
, void __iomem
*addr
)
118 /* See brcm_sata_readreg() comments */
119 if (IS_ENABLED(CONFIG_MIPS
) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN
))
120 __raw_writel(val
, addr
);
122 writel_relaxed(val
, addr
);
125 static void brcm_sata_alpm_init(struct ahci_host_priv
*hpriv
)
127 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
128 u32 port_ctrl
, host_caps
;
131 /* Enable support for ALPM */
132 host_caps
= readl(hpriv
->mmio
+ HOST_CAP
);
133 if (!(host_caps
& HOST_CAP_ALPM
))
134 hpriv
->flags
|= AHCI_HFLAG_YES_ALPM
;
137 * Adjust timeout to allow PLL sufficient time to lock while waking
138 * up from slumber mode.
140 for (i
= 0, port_ctrl
= SATA_FIRST_PORT_CTRL
;
141 i
< SATA_TOP_MAX_PHYS
;
142 i
++, port_ctrl
+= SATA_NEXT_PORT_CTRL_OFFSET
) {
143 if (priv
->port_mask
& BIT(i
))
145 hpriv
->mmio
+ SATA_PORT_PCTRL6(port_ctrl
));
149 static void brcm_sata_phy_enable(struct brcm_ahci_priv
*priv
, int port
)
151 void __iomem
*phyctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_PHY_CTRL
+
152 (port
* SATA_TOP_CTRL_PHY_OFFS
);
156 if (priv
->quirks
& BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
)
159 /* clear PHY_DEFAULT_POWER_STATE */
160 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_1
;
161 reg
= brcm_sata_readreg(p
);
162 reg
&= ~SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE
;
163 brcm_sata_writereg(reg
, p
);
165 /* reset the PHY digital logic */
166 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_2
;
167 reg
= brcm_sata_readreg(p
);
168 reg
&= ~(SATA_TOP_CTRL_2_SW_RST_MDIOREG
| SATA_TOP_CTRL_2_SW_RST_OOB
|
169 SATA_TOP_CTRL_2_SW_RST_RX
);
170 reg
|= SATA_TOP_CTRL_2_SW_RST_TX
;
171 brcm_sata_writereg(reg
, p
);
172 reg
= brcm_sata_readreg(p
);
173 reg
|= SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
;
174 brcm_sata_writereg(reg
, p
);
175 reg
= brcm_sata_readreg(p
);
176 reg
&= ~SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
;
177 brcm_sata_writereg(reg
, p
);
178 (void)brcm_sata_readreg(p
);
181 static void brcm_sata_phy_disable(struct brcm_ahci_priv
*priv
, int port
)
183 void __iomem
*phyctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_PHY_CTRL
+
184 (port
* SATA_TOP_CTRL_PHY_OFFS
);
188 if (priv
->quirks
& BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
)
191 /* power-off the PHY digital logic */
192 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_2
;
193 reg
= brcm_sata_readreg(p
);
194 reg
|= (SATA_TOP_CTRL_2_SW_RST_MDIOREG
| SATA_TOP_CTRL_2_SW_RST_OOB
|
195 SATA_TOP_CTRL_2_SW_RST_RX
| SATA_TOP_CTRL_2_SW_RST_TX
|
196 SATA_TOP_CTRL_2_PHY_GLOBAL_RESET
);
197 brcm_sata_writereg(reg
, p
);
199 /* set PHY_DEFAULT_POWER_STATE */
200 p
= phyctrl
+ SATA_TOP_CTRL_PHY_CTRL_1
;
201 reg
= brcm_sata_readreg(p
);
202 reg
|= SATA_TOP_CTRL_1_PHY_DEFAULT_POWER_STATE
;
203 brcm_sata_writereg(reg
, p
);
206 static void brcm_sata_phys_enable(struct brcm_ahci_priv
*priv
)
210 for (i
= 0; i
< SATA_TOP_MAX_PHYS
; i
++)
211 if (priv
->port_mask
& BIT(i
))
212 brcm_sata_phy_enable(priv
, i
);
215 static void brcm_sata_phys_disable(struct brcm_ahci_priv
*priv
)
219 for (i
= 0; i
< SATA_TOP_MAX_PHYS
; i
++)
220 if (priv
->port_mask
& BIT(i
))
221 brcm_sata_phy_disable(priv
, i
);
224 static u32
brcm_ahci_get_portmask(struct ahci_host_priv
*hpriv
,
225 struct brcm_ahci_priv
*priv
)
229 impl
= readl(hpriv
->mmio
+ HOST_PORTS_IMPL
);
231 if (fls(impl
) > SATA_TOP_MAX_PHYS
)
232 dev_warn(priv
->dev
, "warning: more ports than PHYs (%#x)\n",
235 dev_info(priv
->dev
, "no ports found\n");
240 static void brcm_sata_init(struct brcm_ahci_priv
*priv
)
242 void __iomem
*ctrl
= priv
->top_ctrl
+ SATA_TOP_CTRL_BUS_CTRL
;
245 /* Configure endianness */
246 data
= brcm_sata_readreg(ctrl
);
247 data
&= ~BUS_CTRL_ENDIAN_CONF_MASK
;
248 if (priv
->version
== BRCM_SATA_NSP
)
249 data
|= BUS_CTRL_ENDIAN_NSP_CONF
;
251 data
|= BUS_CTRL_ENDIAN_CONF
;
252 brcm_sata_writereg(data
, ctrl
);
255 static unsigned int brcm_ahci_read_id(struct ata_device
*dev
,
256 struct ata_taskfile
*tf
, u16
*id
)
258 struct ata_port
*ap
= dev
->link
->ap
;
259 struct ata_host
*host
= ap
->host
;
260 struct ahci_host_priv
*hpriv
= host
->private_data
;
261 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
262 void __iomem
*mmio
= hpriv
->mmio
;
263 unsigned int err_mask
;
268 /* Try to read the device ID and, if this fails, proceed with the
269 * recovery sequence below
271 err_mask
= ata_do_dev_read_id(dev
, tf
, id
);
272 if (likely(!err_mask
))
275 /* Disable host interrupts */
276 spin_lock_irqsave(&host
->lock
, flags
);
277 ctl
= readl(mmio
+ HOST_CTL
);
279 writel(ctl
, mmio
+ HOST_CTL
);
280 readl(mmio
+ HOST_CTL
); /* flush */
281 spin_unlock_irqrestore(&host
->lock
, flags
);
283 /* Perform the SATA PHY reset sequence */
284 brcm_sata_phy_disable(priv
, ap
->port_no
);
286 /* Reset the SATA clock */
287 ahci_platform_disable_clks(hpriv
);
290 ahci_platform_enable_clks(hpriv
);
293 /* Bring the PHY back on */
294 brcm_sata_phy_enable(priv
, ap
->port_no
);
296 /* Re-initialize and calibrate the PHY */
297 for (i
= 0; i
< hpriv
->nports
; i
++) {
298 rc
= phy_init(hpriv
->phys
[i
]);
302 rc
= phy_calibrate(hpriv
->phys
[i
]);
304 phy_exit(hpriv
->phys
[i
]);
309 /* Re-enable host interrupts */
310 spin_lock_irqsave(&host
->lock
, flags
);
311 ctl
= readl(mmio
+ HOST_CTL
);
313 writel(ctl
, mmio
+ HOST_CTL
);
314 readl(mmio
+ HOST_CTL
); /* flush */
315 spin_unlock_irqrestore(&host
->lock
, flags
);
317 return ata_do_dev_read_id(dev
, tf
, id
);
321 phy_power_off(hpriv
->phys
[i
]);
322 phy_exit(hpriv
->phys
[i
]);
328 static void brcm_ahci_host_stop(struct ata_host
*host
)
330 struct ahci_host_priv
*hpriv
= host
->private_data
;
332 ahci_platform_disable_resources(hpriv
);
335 static struct ata_port_operations ahci_brcm_platform_ops
= {
336 .inherits
= &ahci_ops
,
337 .host_stop
= brcm_ahci_host_stop
,
338 .read_id
= brcm_ahci_read_id
,
341 static const struct ata_port_info ahci_brcm_port_info
= {
342 .flags
= AHCI_FLAG_COMMON
| ATA_FLAG_NO_DIPM
,
343 .link_flags
= ATA_LFLAG_NO_DB_DELAY
,
344 .pio_mask
= ATA_PIO4
,
345 .udma_mask
= ATA_UDMA6
,
346 .port_ops
= &ahci_brcm_platform_ops
,
349 #ifdef CONFIG_PM_SLEEP
350 static int brcm_ahci_suspend(struct device
*dev
)
352 struct ata_host
*host
= dev_get_drvdata(dev
);
353 struct ahci_host_priv
*hpriv
= host
->private_data
;
354 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
356 brcm_sata_phys_disable(priv
);
358 return ahci_platform_suspend(dev
);
361 static int brcm_ahci_resume(struct device
*dev
)
363 struct ata_host
*host
= dev_get_drvdata(dev
);
364 struct ahci_host_priv
*hpriv
= host
->private_data
;
365 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
368 /* Make sure clocks are turned on before re-configuration */
369 ret
= ahci_platform_enable_clks(hpriv
);
373 brcm_sata_init(priv
);
374 brcm_sata_phys_enable(priv
);
375 brcm_sata_alpm_init(hpriv
);
377 /* Since we had to enable clocks earlier on, we cannot use
378 * ahci_platform_resume() as-is since a second call to
379 * ahci_platform_enable_resources() would bump up the resources
380 * (regulators, clocks, PHYs) count artificially so we copy the part
381 * after ahci_platform_enable_resources().
383 ret
= ahci_platform_enable_phys(hpriv
);
385 goto out_disable_phys
;
387 ret
= ahci_platform_resume_host(dev
);
389 goto out_disable_platform_phys
;
391 /* We resumed so update PM runtime state */
392 pm_runtime_disable(dev
);
393 pm_runtime_set_active(dev
);
394 pm_runtime_enable(dev
);
398 out_disable_platform_phys
:
399 ahci_platform_disable_phys(hpriv
);
401 brcm_sata_phys_disable(priv
);
402 ahci_platform_disable_clks(hpriv
);
407 static struct scsi_host_template ahci_platform_sht
= {
411 static const struct of_device_id ahci_of_match
[] = {
412 {.compatible
= "brcm,bcm7425-ahci", .data
= (void *)BRCM_SATA_BCM7425
},
413 {.compatible
= "brcm,bcm7445-ahci", .data
= (void *)BRCM_SATA_BCM7445
},
414 {.compatible
= "brcm,bcm-nsp-ahci", .data
= (void *)BRCM_SATA_NSP
},
417 MODULE_DEVICE_TABLE(of
, ahci_of_match
);
419 static int brcm_ahci_probe(struct platform_device
*pdev
)
421 const struct of_device_id
*of_id
;
422 struct device
*dev
= &pdev
->dev
;
423 struct brcm_ahci_priv
*priv
;
424 struct ahci_host_priv
*hpriv
;
425 struct resource
*res
;
428 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
432 of_id
= of_match_node(ahci_of_match
, pdev
->dev
.of_node
);
436 priv
->version
= (enum brcm_ahci_version
)of_id
->data
;
439 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "top-ctrl");
440 priv
->top_ctrl
= devm_ioremap_resource(dev
, res
);
441 if (IS_ERR(priv
->top_ctrl
))
442 return PTR_ERR(priv
->top_ctrl
);
444 /* Reset is optional depending on platform */
445 priv
->rcdev
= devm_reset_control_get(&pdev
->dev
, "ahci");
446 if (!IS_ERR_OR_NULL(priv
->rcdev
))
447 reset_control_deassert(priv
->rcdev
);
449 hpriv
= ahci_platform_get_resources(pdev
, 0);
451 ret
= PTR_ERR(hpriv
);
455 hpriv
->plat_data
= priv
;
456 hpriv
->flags
= AHCI_HFLAG_WAKE_BEFORE_STOP
| AHCI_HFLAG_NO_WRITE_TO_RO
;
458 switch (priv
->version
) {
459 case BRCM_SATA_BCM7425
:
460 hpriv
->flags
|= AHCI_HFLAG_DELAY_ENGINE
;
463 hpriv
->flags
|= AHCI_HFLAG_NO_NCQ
;
464 priv
->quirks
|= BRCM_AHCI_QUIRK_SKIP_PHY_ENABLE
;
470 ret
= ahci_platform_enable_clks(hpriv
);
474 /* Must be first so as to configure endianness including that
475 * of the standard AHCI register space.
477 brcm_sata_init(priv
);
479 /* Initializes priv->port_mask which is used below */
480 priv
->port_mask
= brcm_ahci_get_portmask(hpriv
, priv
);
481 if (!priv
->port_mask
) {
483 goto out_disable_clks
;
486 /* Must be done before ahci_platform_enable_phys() */
487 brcm_sata_phys_enable(priv
);
489 brcm_sata_alpm_init(hpriv
);
491 ret
= ahci_platform_enable_phys(hpriv
);
493 goto out_disable_phys
;
495 ret
= ahci_platform_init_host(pdev
, hpriv
, &ahci_brcm_port_info
,
498 goto out_disable_platform_phys
;
500 dev_info(dev
, "Broadcom AHCI SATA3 registered\n");
504 out_disable_platform_phys
:
505 ahci_platform_disable_phys(hpriv
);
507 brcm_sata_phys_disable(priv
);
509 ahci_platform_disable_clks(hpriv
);
511 if (!IS_ERR_OR_NULL(priv
->rcdev
))
512 reset_control_assert(priv
->rcdev
);
516 static int brcm_ahci_remove(struct platform_device
*pdev
)
518 struct ata_host
*host
= dev_get_drvdata(&pdev
->dev
);
519 struct ahci_host_priv
*hpriv
= host
->private_data
;
520 struct brcm_ahci_priv
*priv
= hpriv
->plat_data
;
523 brcm_sata_phys_disable(priv
);
525 ret
= ata_platform_remove_one(pdev
);
532 static SIMPLE_DEV_PM_OPS(ahci_brcm_pm_ops
, brcm_ahci_suspend
, brcm_ahci_resume
);
534 static struct platform_driver brcm_ahci_driver
= {
535 .probe
= brcm_ahci_probe
,
536 .remove
= brcm_ahci_remove
,
539 .of_match_table
= ahci_of_match
,
540 .pm
= &ahci_brcm_pm_ops
,
543 module_platform_driver(brcm_ahci_driver
);
545 MODULE_DESCRIPTION("Broadcom SATA3 AHCI Controller Driver");
546 MODULE_AUTHOR("Brian Norris");
547 MODULE_LICENSE("GPL");
548 MODULE_ALIAS("platform:sata-brcmstb");