1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2018 Ã
\81lvaro Fernández Rojas <noltari@gmail.com>
5 * Derived from linux/arch/mips/bcm63xx/usb-common.c:
6 * Copyright 2008 Maxime Bizon <mbizon@freebox.fr>
7 * Copyright 2013 Florian Fainelli <florian@openwrt.org>
13 #include <generic-phy.h>
14 #include <power-domain.h>
17 #include <dm/device.h>
19 /* USBH PLL Control register */
20 #define USBH_PLL_REG 0x18
21 #define USBH_PLL_IDDQ_PWRDN BIT(9)
22 #define USBH_PLL_PWRDN_DELAY BIT(10)
24 /* USBH Swap Control register */
25 #define USBH_SWAP_REG 0x1c
26 #define USBH_SWAP_OHCI_DATA BIT(0)
27 #define USBH_SWAP_OHCI_ENDIAN BIT(1)
28 #define USBH_SWAP_EHCI_DATA BIT(3)
29 #define USBH_SWAP_EHCI_ENDIAN BIT(4)
31 /* USBH Setup register */
32 #define USBH_SETUP_REG 0x28
33 #define USBH_SETUP_IOC BIT(4)
34 #define USBH_SETUP_IPP BIT(5)
36 struct bcm6368_usbh_hw {
41 struct bcm6368_usbh_priv {
42 const struct bcm6368_usbh_hw *hw;
46 static int bcm6368_usbh_init(struct phy *phy)
48 struct bcm6368_usbh_priv *priv = dev_get_priv(phy->dev);
49 const struct bcm6368_usbh_hw *hw = priv->hw;
51 /* configure to work in native cpu endian */
52 clrsetbits_be32(priv->regs + USBH_SWAP_REG,
53 USBH_SWAP_EHCI_ENDIAN | USBH_SWAP_OHCI_ENDIAN,
54 USBH_SWAP_EHCI_DATA | USBH_SWAP_OHCI_DATA);
58 clrbits_be32(priv->regs + USBH_SETUP_REG, hw->setup_clr);
60 setbits_be32(priv->regs + USBH_SETUP_REG, USBH_SETUP_IOC);
62 /* enable pll control */
64 clrbits_be32(priv->regs + USBH_PLL_REG, hw->pll_clr);
69 static struct phy_ops bcm6368_usbh_ops = {
70 .init = bcm6368_usbh_init,
73 static const struct bcm6368_usbh_hw bcm6328_hw = {
74 .pll_clr = USBH_PLL_IDDQ_PWRDN | USBH_PLL_PWRDN_DELAY,
78 static const struct bcm6368_usbh_hw bcm6362_hw = {
83 static const struct bcm6368_usbh_hw bcm6368_hw = {
88 static const struct bcm6368_usbh_hw bcm63268_hw = {
89 .pll_clr = USBH_PLL_IDDQ_PWRDN | USBH_PLL_PWRDN_DELAY,
90 .setup_clr = USBH_SETUP_IPP,
93 static const struct udevice_id bcm6368_usbh_ids[] = {
95 .compatible = "brcm,bcm6328-usbh",
96 .data = (ulong)&bcm6328_hw,
98 .compatible = "brcm,bcm6362-usbh",
99 .data = (ulong)&bcm6362_hw,
101 .compatible = "brcm,bcm6368-usbh",
102 .data = (ulong)&bcm6368_hw,
104 .compatible = "brcm,bcm63268-usbh",
105 .data = (ulong)&bcm63268_hw,
106 }, { /* sentinel */ }
109 static int bcm6368_usbh_probe(struct udevice *dev)
111 struct bcm6368_usbh_priv *priv = dev_get_priv(dev);
112 const struct bcm6368_usbh_hw *hw =
113 (const struct bcm6368_usbh_hw *)dev_get_driver_data(dev);
114 #if defined(CONFIG_POWER_DOMAIN)
115 struct power_domain pwr_dom;
117 struct reset_ctl rst_ctl;
123 addr = devfdt_get_addr_size_index(dev, 0, &size);
124 if (addr == FDT_ADDR_T_NONE)
127 priv->regs = ioremap(addr, size);
130 /* enable usbh clock */
131 ret = clk_get_by_name(dev, "usbh", &clk);
135 ret = clk_enable(&clk);
139 ret = clk_free(&clk);
143 #if defined(CONFIG_POWER_DOMAIN)
144 /* enable power domain */
145 ret = power_domain_get(dev, &pwr_dom);
149 ret = power_domain_on(&pwr_dom);
153 ret = power_domain_free(&pwr_dom);
159 ret = reset_get_by_index(dev, 0, &rst_ctl);
163 ret = reset_deassert(&rst_ctl);
167 ret = reset_free(&rst_ctl);
171 /* enable usb_ref clock */
172 ret = clk_get_by_name(dev, "usb_ref", &clk);
174 ret = clk_enable(&clk);
178 ret = clk_free(&clk);
188 U_BOOT_DRIVER(bcm6368_usbh) = {
189 .name = "bcm6368-usbh",
191 .of_match = bcm6368_usbh_ids,
192 .ops = &bcm6368_usbh_ops,
193 .priv_auto_alloc_size = sizeof(struct bcm6368_usbh_priv),
194 .probe = bcm6368_usbh_probe,