blob: 24d9f7fab73754c0b4c8891d817d06507bb78fc7 [file] [log] [blame]
Matti Vaittinen1023c872019-05-07 10:43:39 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
6#include <common.h>
7#include <errno.h>
8#include <dm.h>
9#include <i2c.h>
10#include <power/pmic.h>
11#include <power/regulator.h>
12#include <power/bd71837.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
16static const struct pmic_child_info pmic_children_info[] = {
17 /* buck */
18 { .prefix = "b", .driver = BD71837_REGULATOR_DRIVER},
19 /* ldo */
20 { .prefix = "l", .driver = BD71837_REGULATOR_DRIVER},
21 { },
22};
23
24static int bd71837_reg_count(struct udevice *dev)
25{
26 return BD71837_REG_NUM;
27}
28
29static int bd71837_write(struct udevice *dev, uint reg, const uint8_t *buff,
30 int len)
31{
32 if (dm_i2c_write(dev, reg, buff, len)) {
33 pr_err("write error to device: %p register: %#x!", dev, reg);
34 return -EIO;
35 }
36
37 return 0;
38}
39
40static int bd71837_read(struct udevice *dev, uint reg, uint8_t *buff, int len)
41{
42 if (dm_i2c_read(dev, reg, buff, len)) {
43 pr_err("read error from device: %p register: %#x!", dev, reg);
44 return -EIO;
45 }
46
47 return 0;
48}
49
50static int bd71837_bind(struct udevice *dev)
51{
52 int children;
53 ofnode regulators_node;
54
55 regulators_node = dev_read_subnode(dev, "regulators");
56 if (!ofnode_valid(regulators_node)) {
57 debug("%s: %s regulators subnode not found!", __func__,
58 dev->name);
59 return -ENXIO;
60 }
61
62 debug("%s: '%s' - found regulators subnode\n", __func__, dev->name);
63
64 children = pmic_bind_children(dev, regulators_node, pmic_children_info);
65 if (!children)
66 debug("%s: %s - no child found\n", __func__, dev->name);
67
68 /* Always return success for this device */
69 return 0;
70}
71
72static struct dm_pmic_ops bd71837_ops = {
73 .reg_count = bd71837_reg_count,
74 .read = bd71837_read,
75 .write = bd71837_write,
76};
77
78static const struct udevice_id bd71837_ids[] = {
79 { .compatible = "rohm,bd71837", .data = 0x4b, },
80 { }
81};
82
83U_BOOT_DRIVER(pmic_bd71837) = {
84 .name = "bd71837 pmic",
85 .id = UCLASS_PMIC,
86 .of_match = bd71837_ids,
87 .bind = bd71837_bind,
88 .ops = &bd71837_ops,
89};