mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-13 14:15:55 +00:00
Siflower SF19A2890 is an SoC with: Dual-core MIPS InterAptiv at 800MHz DDR3 controller One Gigabit Ethernet MAC with RGMII and IPv4 HNAT engine Built-in 2x2 11N + 2x2 11AC WiFi radio USB 2.0 OTG I2C/SPI/GPIO and various other peripherals This PR adds support for SF19A2890 EVB with ethernet support. EVB spec: Memory: DDR3 128M Ethernet: RTL8367RB 5-port gigabit switch Flash: 16M NOR Others: MicroUSB OTG, LED x 1, Reset button x1 The built image can be flashed using u-boot recovery. This target is marked as source-only until support for a commercial router board comes. Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
146 lines
3.5 KiB
C
146 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/io.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/mfd/syscon.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/phy/phy.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/reset.h>
|
|
|
|
#define USB_SLEEPM 0x4
|
|
|
|
struct sf19a2890_usb_phy {
|
|
struct device *dev;
|
|
struct clk *phy_clk;
|
|
struct reset_control *usb_phy_rst;
|
|
struct reset_control *power_on_rst;
|
|
void __iomem *base;
|
|
};
|
|
|
|
static int sf19a2890_usb_phy_power_on(struct phy *phy)
|
|
{
|
|
struct sf19a2890_usb_phy *p_phy = phy_get_drvdata(phy);
|
|
int ret;
|
|
|
|
ret = clk_prepare_enable(p_phy->phy_clk);
|
|
if (ret < 0) {
|
|
dev_err(p_phy->dev, "Failed to enable PHY clock: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = reset_control_deassert(p_phy->usb_phy_rst);
|
|
if (ret)
|
|
goto err1;
|
|
|
|
ret = reset_control_deassert(p_phy->power_on_rst);
|
|
if (ret)
|
|
goto err2;
|
|
|
|
writel(1, p_phy->base + USB_SLEEPM);
|
|
return 0;
|
|
err2:
|
|
reset_control_assert(p_phy->usb_phy_rst);
|
|
err1:
|
|
clk_disable_unprepare(p_phy->phy_clk);
|
|
return ret;
|
|
}
|
|
|
|
static int sf19a2890_usb_phy_power_off(struct phy *phy)
|
|
{
|
|
struct sf19a2890_usb_phy *p_phy = phy_get_drvdata(phy);
|
|
|
|
writel(0, p_phy->base + USB_SLEEPM);
|
|
reset_control_assert(p_phy->power_on_rst);
|
|
reset_control_assert(p_phy->usb_phy_rst);
|
|
clk_disable_unprepare(p_phy->phy_clk);
|
|
return 0;
|
|
}
|
|
|
|
static const struct phy_ops sf19a2890_usb_phy_ops = {
|
|
.power_on = sf19a2890_usb_phy_power_on,
|
|
.power_off = sf19a2890_usb_phy_power_off,
|
|
.owner = THIS_MODULE,
|
|
};
|
|
|
|
static int sf19a2890_usb_phy_probe(struct platform_device *pdev)
|
|
{
|
|
struct sf19a2890_usb_phy *p_phy;
|
|
struct phy_provider *provider;
|
|
struct phy *phy;
|
|
int ret;
|
|
|
|
p_phy = devm_kzalloc(&pdev->dev, sizeof(*p_phy), GFP_KERNEL);
|
|
if (!p_phy)
|
|
return -ENOMEM;
|
|
|
|
p_phy->dev = &pdev->dev;
|
|
|
|
p_phy->base = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(p_phy->base))
|
|
return PTR_ERR(p_phy->base);
|
|
|
|
p_phy->phy_clk = devm_clk_get(p_phy->dev, NULL);
|
|
if (IS_ERR(p_phy->phy_clk))
|
|
return dev_err_probe(p_phy->dev, PTR_ERR(p_phy->phy_clk),
|
|
"failed to get usb phy clock\n");
|
|
|
|
p_phy->power_on_rst =
|
|
devm_reset_control_get_exclusive(&pdev->dev, "power_on_rst");
|
|
if (IS_ERR(p_phy->power_on_rst))
|
|
return PTR_ERR(p_phy->power_on_rst);
|
|
|
|
ret = reset_control_assert(p_phy->power_on_rst);
|
|
if (ret)
|
|
return ret;
|
|
|
|
p_phy->usb_phy_rst =
|
|
devm_reset_control_get_exclusive(&pdev->dev, "usb_phy_rst");
|
|
if (IS_ERR(p_phy->usb_phy_rst))
|
|
return PTR_ERR(p_phy->usb_phy_rst);
|
|
|
|
ret = reset_control_assert(p_phy->usb_phy_rst);
|
|
if (ret)
|
|
return ret;
|
|
|
|
phy = devm_phy_create(p_phy->dev, NULL, &sf19a2890_usb_phy_ops);
|
|
if (IS_ERR(phy))
|
|
return dev_err_probe(p_phy->dev, PTR_ERR(phy),
|
|
"Failed to create PHY\n");
|
|
|
|
phy_set_drvdata(phy, p_phy);
|
|
|
|
provider =
|
|
devm_of_phy_provider_register(p_phy->dev, of_phy_simple_xlate);
|
|
if (IS_ERR(provider))
|
|
return dev_err_probe(p_phy->dev, PTR_ERR(provider),
|
|
"Failed to register PHY provider\n");
|
|
|
|
platform_set_drvdata(pdev, p_phy);
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id sf19a2890_usb_phy_of_match[] = {
|
|
{
|
|
.compatible = "siflower,sf19a2890-usb-phy",
|
|
},
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sf19a2890_usb_phy_of_match);
|
|
|
|
static struct platform_driver sf19a2890_usb_phy_driver = {
|
|
.probe = sf19a2890_usb_phy_probe,
|
|
.driver = {
|
|
.name = "sf19a2890-usb-phy",
|
|
.of_match_table = sf19a2890_usb_phy_of_match,
|
|
},
|
|
};
|
|
module_platform_driver(sf19a2890_usb_phy_driver);
|
|
|
|
MODULE_AUTHOR("Ziying Wu <ziying.wu@siflower.com.cn>");
|
|
MODULE_DESCRIPTION("Siflower SF19A2890 USB2.0 PHY driver");
|
|
MODULE_LICENSE("GPL");
|