mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 00:24:58 +08:00
db906f0ca6
- New Support - Starfive dphy rx, JH7110 usb and pcie support - Rockchip rv1126 inno-dsi phy, rk3588 usb and pcie support - Qualcomm sa8775p PCIe support, M31 USB PHY driver - Samsung Exynos850 usb support - Updates - Mediatek dsi driver clock updates - Qualcomm sm8150 combo phy with reworking of qmp pcie driver - Xilinx zynqmp runtime PM support -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE+vs47OPLdNbVcHzyfBQHDyUjg0cFAmT0wcIACgkQfBQHDyUj g0c8VxAAymIO5fySiW3VF+7yZ+RBClMJPtq+Q1vWgCbz7L7MUN9cRIzBkV59ix5C bRJy6a+2IJZZ7mEP535asaEMxt08ypWft1z46eu2mueWhJbWg4GQKzO1hokkzvO3 QvLb5oZd5YhWepyeDrQX5KjlUJoAMjdj00PB+XG5oRdMr5tjBzAUBrQMBSyUNBTs 2Yg/HRFREP8cCx7baQ/PCT93bejmHiImIGxesl/1zznYRjzCW8h63eCILvnX4I29 t6jsn33FfFUEggMGFcNPjTWuhDdNcrfqkRq7FhAOKPWIBOThAzjMNDYpoQOEV2K0 FDidINQQ2oHL8yPTa8oW7wkaH6ntSM8c7Qac/xlKzuzww2mix74w6n/661gQIebW Z6RHjcaDPBGK9mgHqbdcdFGuDmEgsX/AenLxpBgkOeWO+vNGnOUEJELrFr4p0iIt UpKloDfP/gS06ay56Cbk4A+RJ2eIBl9t74TC/oGk2+fueuZdnCSZIzxkA/6L78AQ dwPx0QwORQU5K1zou6l3eb8mD05I5FK8uSaiIoTMvTg7IyvVAtla5+vBoEjZEqw2 o50qry4+VUE7KqH8fPPvL0SQ6yaPQ55QHP6k8nkyhGS1YtbJUqhaT/UZEJiyQiHj 0evPeunWeOG2lC8E59XXyipE6wsQuG2zdFN0JEIJqAuLqzXm/XA= =3Wtl -----END PGP SIGNATURE----- Merge tag 'phy-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy Pull phy updates from Vinod Koul: "As usual a couple of new drivers, a bunch of new device support and few updates to existing drivers New Support: - Starfive dphy rx, JH7110 usb and pcie support - Rockchip rv1126 inno-dsi phy, rk3588 usb and pcie support - Qualcomm sa8775p PCIe support, M31 USB PHY driver - Samsung Exynos850 usb support Updates: - Mediatek dsi driver clock updates - Qualcomm sm8150 combo phy with reworking of qmp pcie driver - Xilinx zynqmp runtime PM support" * tag 'phy-for-6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy: (83 commits) phy: exynos5-usbdrd: Add Exynos850 support phy: exynos5-usbdrd: Add 26MHz ref clk support phy: exynos5-usbdrd: Make it possible to pass custom phy ops dt-bindings: phy: samsung,usb3-drd-phy: Add Exynos850 support phy: qcom-qmp-combo: fix clock probing phy: qcom-qmp-pcie: support SM8150 PCIe QMP PHYs phy: qcom-qmp-pcie: populate offsets configuration phy: qcom-qmp-pcie: simplify clock handling phy: qcom-qmp-pcie: keep offset tables sorted phy: qcom-qmp-pcie: drop ln_shrd from v5_20 config dt-bindings: phy: qcom,qmp-pcie: describe SM8150 PCIe PHYs dt-bindings: phy: migrate QMP PCIe PHY bindings to qcom,sc8280xp-qmp-pcie-phy.yaml phy: fsl-imx8mq-usb: add dev_err_probe if getting vbus failed phy: qcom: Introduce M31 USB PHY driver dt-bindings: phy: qcom,m31: Document qcom,m31 USB phy phy: rockchip: inno-dsidphy: Add rv1126 support dt-bindings: phy: rockchip-inno-dsidphy: Document rv1126 dt-bindings: phy: mediatek,tphy: allow simple nodename pattern phy: amlogic: meson-g12a-usb2: fix Wvoid-pointer-to-enum-cast warning phy: marvell pxa-usb: fix Wvoid-pointer-to-enum-cast warning ...
221 lines
5.5 KiB
C
221 lines
5.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* HiSilicon INNO USB2 PHY Driver.
|
|
*
|
|
* Copyright (c) 2016-2017 HiSilicon Technologies Co., Ltd.
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/io.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/phy/phy.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/reset.h>
|
|
|
|
#define INNO_PHY_PORT_NUM 2
|
|
#define REF_CLK_STABLE_TIME 100 /* unit:us */
|
|
#define UTMI_CLK_STABLE_TIME 200 /* unit:us */
|
|
#define TEST_CLK_STABLE_TIME 2 /* unit:ms */
|
|
#define PHY_CLK_STABLE_TIME 2 /* unit:ms */
|
|
#define UTMI_RST_COMPLETE_TIME 2 /* unit:ms */
|
|
#define POR_RST_COMPLETE_TIME 300 /* unit:us */
|
|
|
|
#define PHY_TYPE_0 0
|
|
#define PHY_TYPE_1 1
|
|
|
|
#define PHY_TEST_DATA GENMASK(7, 0)
|
|
#define PHY_TEST_ADDR_OFFSET 8
|
|
#define PHY0_TEST_ADDR GENMASK(15, 8)
|
|
#define PHY0_TEST_PORT_OFFSET 16
|
|
#define PHY0_TEST_PORT GENMASK(18, 16)
|
|
#define PHY0_TEST_WREN BIT(21)
|
|
#define PHY0_TEST_CLK BIT(22) /* rising edge active */
|
|
#define PHY0_TEST_RST BIT(23) /* low active */
|
|
#define PHY1_TEST_ADDR GENMASK(11, 8)
|
|
#define PHY1_TEST_PORT_OFFSET 12
|
|
#define PHY1_TEST_PORT BIT(12)
|
|
#define PHY1_TEST_WREN BIT(13)
|
|
#define PHY1_TEST_CLK BIT(14) /* rising edge active */
|
|
#define PHY1_TEST_RST BIT(15) /* low active */
|
|
|
|
#define PHY_CLK_ENABLE BIT(2)
|
|
|
|
struct hisi_inno_phy_port {
|
|
struct reset_control *utmi_rst;
|
|
struct hisi_inno_phy_priv *priv;
|
|
};
|
|
|
|
struct hisi_inno_phy_priv {
|
|
void __iomem *mmio;
|
|
struct clk *ref_clk;
|
|
struct reset_control *por_rst;
|
|
unsigned int type;
|
|
struct hisi_inno_phy_port ports[INNO_PHY_PORT_NUM];
|
|
};
|
|
|
|
static void hisi_inno_phy_write_reg(struct hisi_inno_phy_priv *priv,
|
|
u8 port, u32 addr, u32 data)
|
|
{
|
|
void __iomem *reg = priv->mmio;
|
|
u32 val;
|
|
u32 value;
|
|
|
|
if (priv->type == PHY_TYPE_0)
|
|
val = (data & PHY_TEST_DATA) |
|
|
((addr << PHY_TEST_ADDR_OFFSET) & PHY0_TEST_ADDR) |
|
|
((port << PHY0_TEST_PORT_OFFSET) & PHY0_TEST_PORT) |
|
|
PHY0_TEST_WREN | PHY0_TEST_RST;
|
|
else
|
|
val = (data & PHY_TEST_DATA) |
|
|
((addr << PHY_TEST_ADDR_OFFSET) & PHY1_TEST_ADDR) |
|
|
((port << PHY1_TEST_PORT_OFFSET) & PHY1_TEST_PORT) |
|
|
PHY1_TEST_WREN | PHY1_TEST_RST;
|
|
writel(val, reg);
|
|
|
|
value = val;
|
|
if (priv->type == PHY_TYPE_0)
|
|
value |= PHY0_TEST_CLK;
|
|
else
|
|
value |= PHY1_TEST_CLK;
|
|
writel(value, reg);
|
|
|
|
writel(val, reg);
|
|
}
|
|
|
|
static void hisi_inno_phy_setup(struct hisi_inno_phy_priv *priv)
|
|
{
|
|
/* The phy clk is controlled by the port0 register 0x06. */
|
|
hisi_inno_phy_write_reg(priv, 0, 0x06, PHY_CLK_ENABLE);
|
|
msleep(PHY_CLK_STABLE_TIME);
|
|
}
|
|
|
|
static int hisi_inno_phy_init(struct phy *phy)
|
|
{
|
|
struct hisi_inno_phy_port *port = phy_get_drvdata(phy);
|
|
struct hisi_inno_phy_priv *priv = port->priv;
|
|
int ret;
|
|
|
|
ret = clk_prepare_enable(priv->ref_clk);
|
|
if (ret)
|
|
return ret;
|
|
udelay(REF_CLK_STABLE_TIME);
|
|
|
|
reset_control_deassert(priv->por_rst);
|
|
udelay(POR_RST_COMPLETE_TIME);
|
|
|
|
/* Set up phy registers */
|
|
hisi_inno_phy_setup(priv);
|
|
|
|
reset_control_deassert(port->utmi_rst);
|
|
udelay(UTMI_RST_COMPLETE_TIME);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int hisi_inno_phy_exit(struct phy *phy)
|
|
{
|
|
struct hisi_inno_phy_port *port = phy_get_drvdata(phy);
|
|
struct hisi_inno_phy_priv *priv = port->priv;
|
|
|
|
reset_control_assert(port->utmi_rst);
|
|
reset_control_assert(priv->por_rst);
|
|
clk_disable_unprepare(priv->ref_clk);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct phy_ops hisi_inno_phy_ops = {
|
|
.init = hisi_inno_phy_init,
|
|
.exit = hisi_inno_phy_exit,
|
|
.owner = THIS_MODULE,
|
|
};
|
|
|
|
static int hisi_inno_phy_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct device_node *np = dev->of_node;
|
|
struct hisi_inno_phy_priv *priv;
|
|
struct phy_provider *provider;
|
|
struct device_node *child;
|
|
int i = 0;
|
|
int ret;
|
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
|
if (!priv)
|
|
return -ENOMEM;
|
|
|
|
priv->mmio = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(priv->mmio)) {
|
|
ret = PTR_ERR(priv->mmio);
|
|
return ret;
|
|
}
|
|
|
|
priv->ref_clk = devm_clk_get(dev, NULL);
|
|
if (IS_ERR(priv->ref_clk))
|
|
return PTR_ERR(priv->ref_clk);
|
|
|
|
priv->por_rst = devm_reset_control_get_exclusive(dev, NULL);
|
|
if (IS_ERR(priv->por_rst))
|
|
return PTR_ERR(priv->por_rst);
|
|
|
|
priv->type = (uintptr_t) of_device_get_match_data(dev);
|
|
|
|
for_each_child_of_node(np, child) {
|
|
struct reset_control *rst;
|
|
struct phy *phy;
|
|
|
|
rst = of_reset_control_get_exclusive(child, NULL);
|
|
if (IS_ERR(rst)) {
|
|
of_node_put(child);
|
|
return PTR_ERR(rst);
|
|
}
|
|
|
|
priv->ports[i].utmi_rst = rst;
|
|
priv->ports[i].priv = priv;
|
|
|
|
phy = devm_phy_create(dev, child, &hisi_inno_phy_ops);
|
|
if (IS_ERR(phy)) {
|
|
of_node_put(child);
|
|
return PTR_ERR(phy);
|
|
}
|
|
|
|
phy_set_bus_width(phy, 8);
|
|
phy_set_drvdata(phy, &priv->ports[i]);
|
|
i++;
|
|
|
|
if (i >= INNO_PHY_PORT_NUM) {
|
|
dev_warn(dev, "Support %d ports in maximum\n", i);
|
|
of_node_put(child);
|
|
break;
|
|
}
|
|
}
|
|
|
|
provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
|
|
return PTR_ERR_OR_ZERO(provider);
|
|
}
|
|
|
|
static const struct of_device_id hisi_inno_phy_of_match[] = {
|
|
{ .compatible = "hisilicon,inno-usb2-phy",
|
|
.data = (void *) PHY_TYPE_0 },
|
|
{ .compatible = "hisilicon,hi3798cv200-usb2-phy",
|
|
.data = (void *) PHY_TYPE_0 },
|
|
{ .compatible = "hisilicon,hi3798mv100-usb2-phy",
|
|
.data = (void *) PHY_TYPE_1 },
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(of, hisi_inno_phy_of_match);
|
|
|
|
static struct platform_driver hisi_inno_phy_driver = {
|
|
.probe = hisi_inno_phy_probe,
|
|
.driver = {
|
|
.name = "hisi-inno-phy",
|
|
.of_match_table = hisi_inno_phy_of_match,
|
|
}
|
|
};
|
|
module_platform_driver(hisi_inno_phy_driver);
|
|
|
|
MODULE_DESCRIPTION("HiSilicon INNO USB2 PHY Driver");
|
|
MODULE_LICENSE("GPL v2");
|