mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-19 23:28:16 +01:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
89 lines
2.1 KiB
C
89 lines
2.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) 2018 Theobroma Systems Design und Consulting GmbH
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <log.h>
|
|
#include <dm/device-internal.h>
|
|
#include <dm/device_compat.h>
|
|
#include <dm/lists.h>
|
|
#include <i2c.h>
|
|
#include <linux/printk.h>
|
|
#include <power/fan53555.h>
|
|
#include <power/pmic.h>
|
|
#include <power/regulator.h>
|
|
|
|
static int pmic_fan53555_reg_count(struct udevice *dev)
|
|
{
|
|
return 1;
|
|
};
|
|
|
|
static int pmic_fan53555_read(struct udevice *dev, uint reg,
|
|
u8 *buff, int len)
|
|
{
|
|
if (dm_i2c_read(dev, reg, buff, len)) {
|
|
pr_err("%s: read error for register: %#x!\n", dev->name, reg);
|
|
return -EIO;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int pmic_fan53555_write(struct udevice *dev, uint reg,
|
|
const u8 *buff, int len)
|
|
{
|
|
if (dm_i2c_write(dev, reg, buff, len)) {
|
|
pr_err("%s: write error for register: %#x!", dev->name, reg);
|
|
return -EIO;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int pmic_fan53555_bind(struct udevice *dev)
|
|
{
|
|
/*
|
|
* The FAN53555 has only a single regulator and therefore doesn't
|
|
* have a subnode. So we have to rebind a child device (the one
|
|
* regulator) here.
|
|
*/
|
|
|
|
const char *regulator_driver_name = "fan53555_regulator";
|
|
struct udevice *child;
|
|
struct driver *drv;
|
|
|
|
debug("%s\n", __func__);
|
|
|
|
drv = lists_driver_lookup_name(regulator_driver_name);
|
|
if (!drv) {
|
|
dev_err(dev, "no driver '%s'\n", regulator_driver_name);
|
|
return -ENOENT;
|
|
}
|
|
|
|
return device_bind_with_driver_data(dev, drv, "SW", dev->driver_data,
|
|
dev_ofnode(dev), &child);
|
|
};
|
|
|
|
static struct dm_pmic_ops pmic_fan53555_ops = {
|
|
.reg_count = pmic_fan53555_reg_count,
|
|
.read = pmic_fan53555_read,
|
|
.write = pmic_fan53555_write,
|
|
};
|
|
|
|
static const struct udevice_id pmic_fan53555_match[] = {
|
|
{ .compatible = "fcs,fan53555", .data = FAN53555_VENDOR_FAIRCHILD, },
|
|
{ .compatible = "silergy,syr827", .data = FAN53555_VENDOR_SILERGY, },
|
|
{ .compatible = "silergy,syr828", .data = FAN53555_VENDOR_SILERGY, },
|
|
{ },
|
|
};
|
|
|
|
U_BOOT_DRIVER(pmic_fan53555) = {
|
|
.name = "pmic_fan53555",
|
|
.id = UCLASS_PMIC,
|
|
.of_match = pmic_fan53555_match,
|
|
.bind = pmic_fan53555_bind,
|
|
.ops = &pmic_fan53555_ops,
|
|
};
|