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