mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 05:08:24 +00:00

The initial commit used log_msg_ret() wrongly. Fix that by moving error
report to a separate dev_err() call and shrink the first argument of
log_msg_ret() to no more than 4 chars.
Fixes: 6b5c8d98e2
("net: add hifemac_mdio MDIO bus driver for HiSilicon platform")
Signed-off-by: Yang Xiwen <forbidden405@outlook.com>
121 lines
2.7 KiB
C
121 lines
2.7 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Hisilicon Fast Ethernet MDIO Bus Driver
|
|
*
|
|
* Copyright (c) 2016 HiSilicon Technologies Co., Ltd.
|
|
*/
|
|
|
|
#include <dm.h>
|
|
#include <clk.h>
|
|
#include <miiphy.h>
|
|
#include <dm/device_compat.h>
|
|
#include <linux/io.h>
|
|
#include <linux/iopoll.h>
|
|
|
|
#define MDIO_RWCTRL 0x00
|
|
#define MDIO_RO_DATA 0x04
|
|
#define MDIO_WRITE BIT(13)
|
|
#define MDIO_RW_FINISH BIT(15)
|
|
#define BIT_PHY_ADDR_OFFSET 8
|
|
#define BIT_WR_DATA_OFFSET 16
|
|
|
|
struct hisi_femac_mdio_data {
|
|
struct clk *clk;
|
|
void __iomem *membase;
|
|
};
|
|
|
|
static int hisi_femac_mdio_wait_ready(struct hisi_femac_mdio_data *data)
|
|
{
|
|
u32 val;
|
|
|
|
return readl_poll_timeout(data->membase + MDIO_RWCTRL,
|
|
val, val & MDIO_RW_FINISH, 10000);
|
|
}
|
|
|
|
static int hisi_femac_mdio_read(struct udevice *dev, int addr, int devad, int reg)
|
|
{
|
|
struct hisi_femac_mdio_data *data = dev_get_priv(dev);
|
|
int ret;
|
|
|
|
ret = hisi_femac_mdio_wait_ready(data);
|
|
if (ret)
|
|
return ret;
|
|
|
|
writel((addr << BIT_PHY_ADDR_OFFSET) | reg,
|
|
data->membase + MDIO_RWCTRL);
|
|
|
|
ret = hisi_femac_mdio_wait_ready(data);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return readl(data->membase + MDIO_RO_DATA) & 0xFFFF;
|
|
}
|
|
|
|
static int hisi_femac_mdio_write(struct udevice *dev, int addr, int devad, int reg, u16 val)
|
|
{
|
|
struct hisi_femac_mdio_data *data = dev_get_priv(dev);
|
|
int ret;
|
|
|
|
ret = hisi_femac_mdio_wait_ready(data);
|
|
if (ret)
|
|
return ret;
|
|
|
|
writel(MDIO_WRITE | (val << BIT_WR_DATA_OFFSET) |
|
|
(addr << BIT_PHY_ADDR_OFFSET) | reg,
|
|
data->membase + MDIO_RWCTRL);
|
|
|
|
return hisi_femac_mdio_wait_ready(data);
|
|
}
|
|
|
|
static int hisi_femac_mdio_of_to_plat(struct udevice *dev)
|
|
{
|
|
struct hisi_femac_mdio_data *data = dev_get_priv(dev);
|
|
int ret;
|
|
|
|
data->membase = dev_remap_addr(dev);
|
|
if (IS_ERR(data->membase)) {
|
|
ret = PTR_ERR(data->membase);
|
|
dev_err(dev, "Failed to remap base addr %d\n", ret);
|
|
return log_msg_ret("mdio", ret);
|
|
}
|
|
|
|
// clk is optional
|
|
data->clk = devm_clk_get_optional(dev, NULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int hisi_femac_mdio_probe(struct udevice *dev)
|
|
{
|
|
struct hisi_femac_mdio_data *data = dev_get_priv(dev);
|
|
int ret;
|
|
|
|
ret = clk_prepare_enable(data->clk);
|
|
if (ret) {
|
|
dev_err(dev, "Failed to enable clock: %d\n", ret);
|
|
return log_msg_ret("clk", ret);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct mdio_ops hisi_femac_mdio_ops = {
|
|
.read = hisi_femac_mdio_read,
|
|
.write = hisi_femac_mdio_write,
|
|
};
|
|
|
|
static const struct udevice_id hisi_femac_mdio_dt_ids[] = {
|
|
{ .compatible = "hisilicon,hisi-femac-mdio" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(hisi_femac_mdio_driver) = {
|
|
.name = "hisi-femac-mdio",
|
|
.id = UCLASS_MDIO,
|
|
.of_match = hisi_femac_mdio_dt_ids,
|
|
.of_to_plat = hisi_femac_mdio_of_to_plat,
|
|
.probe = hisi_femac_mdio_probe,
|
|
.ops = &hisi_femac_mdio_ops,
|
|
.plat_auto = sizeof(struct mdio_perdev_priv),
|
|
.priv_auto = sizeof(struct hisi_femac_mdio_data),
|
|
};
|