Prepare v2023.10
[platform/kernel/u-boot.git] / drivers / power / pmic / sandbox.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Copyright (C) 2015 Samsung Electronics
4  *  Przemyslaw Marczak  <p.marczak@samsung.com>
5  */
6
7 #define LOG_CATEGORY    UCLASS_PMIC
8
9 #include <common.h>
10 #include <fdtdec.h>
11 #include <errno.h>
12 #include <dm.h>
13 #include <i2c.h>
14 #include <log.h>
15 #include <power/pmic.h>
16 #include <power/regulator.h>
17 #include <power/sandbox_pmic.h>
18
19 static const struct pmic_child_info pmic_children_info[] = {
20         { .prefix = SANDBOX_OF_LDO_PREFIX, .driver = SANDBOX_LDO_DRIVER },
21         { .prefix = SANDBOX_OF_BUCK_PREFIX, .driver = SANDBOX_BUCK_DRIVER },
22         { },
23 };
24
25 static int sandbox_pmic_reg_count(struct udevice *dev)
26 {
27         return SANDBOX_PMIC_REG_COUNT;
28 }
29
30 static int sandbox_pmic_write(struct udevice *dev, uint reg,
31                               const uint8_t *buff, int len)
32 {
33         if (dm_i2c_write(dev, reg, buff, len)) {
34                 log_err("write error to device: %p register: %#x!\n", dev, reg);
35                 return -EIO;
36         }
37
38         return 0;
39 }
40
41 static int sandbox_pmic_read(struct udevice *dev, uint reg,
42                              uint8_t *buff, int len)
43 {
44         if (dm_i2c_read(dev, reg, buff, len)) {
45                 log_err("read error from device: %p register: %#x!\n", dev, reg);
46                 return -EIO;
47         }
48
49         return 0;
50 }
51
52 static int sandbox_pmic_bind(struct udevice *dev)
53 {
54         if (!pmic_bind_children(dev, dev_ofnode(dev), pmic_children_info))
55                 log_err("PMIC: %s - no child found!\n", dev->name);
56
57         /* Always return success for this device - allows for PMIC I/O */
58         return 0;
59 }
60
61 static struct dm_pmic_ops sandbox_pmic_ops = {
62         .reg_count = sandbox_pmic_reg_count,
63         .read = sandbox_pmic_read,
64         .write = sandbox_pmic_write,
65 };
66
67 static const struct udevice_id sandbox_pmic_ids[] = {
68         { .compatible = "sandbox,pmic" },
69         { }
70 };
71
72 U_BOOT_DRIVER(sandbox_pmic) = {
73         .name = "sandbox_pmic",
74         .id = UCLASS_PMIC,
75         .of_match = sandbox_pmic_ids,
76         .bind = sandbox_pmic_bind,
77         .ops = &sandbox_pmic_ops,
78 };