blob: 14b82455f5fbc80b96bf9458adba700dc77c7b35 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +02002/*
3 * Copyright (C) 2015 Samsung Electronics
4 * Przemyslaw Marczak <p.marczak@samsung.com>
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +02005 */
6
Simon Glass10dda9e2022-09-06 20:26:54 -06007#define LOG_CATEGORY UCLASS_PMIC
8
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +02009#include <common.h>
10#include <fdtdec.h>
11#include <errno.h>
12#include <dm.h>
13#include <i2c.h>
Simon Glass10dda9e2022-09-06 20:26:54 -060014#include <log.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060015#include <linux/printk.h>
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +020016#include <power/pmic.h>
17#include <power/regulator.h>
18#include <power/sandbox_pmic.h>
19
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +020020static const struct pmic_child_info pmic_children_info[] = {
21 { .prefix = SANDBOX_OF_LDO_PREFIX, .driver = SANDBOX_LDO_DRIVER },
22 { .prefix = SANDBOX_OF_BUCK_PREFIX, .driver = SANDBOX_BUCK_DRIVER },
23 { },
24};
25
26static int sandbox_pmic_reg_count(struct udevice *dev)
27{
28 return SANDBOX_PMIC_REG_COUNT;
29}
30
31static int sandbox_pmic_write(struct udevice *dev, uint reg,
32 const uint8_t *buff, int len)
33{
34 if (dm_i2c_write(dev, reg, buff, len)) {
Simon Glass10dda9e2022-09-06 20:26:54 -060035 log_err("write error to device: %p register: %#x!\n", dev, reg);
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +020036 return -EIO;
37 }
38
39 return 0;
40}
41
42static int sandbox_pmic_read(struct udevice *dev, uint reg,
43 uint8_t *buff, int len)
44{
45 if (dm_i2c_read(dev, reg, buff, len)) {
Simon Glass10dda9e2022-09-06 20:26:54 -060046 log_err("read error from device: %p register: %#x!\n", dev, reg);
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +020047 return -EIO;
48 }
49
50 return 0;
51}
52
53static int sandbox_pmic_bind(struct udevice *dev)
54{
Simon Glass2c2d2c22017-05-18 20:09:32 -060055 if (!pmic_bind_children(dev, dev_ofnode(dev), pmic_children_info))
Simon Glass10dda9e2022-09-06 20:26:54 -060056 log_err("PMIC: %s - no child found!\n", dev->name);
Przemyslaw Marczakd5175dc2015-05-13 13:38:32 +020057
58 /* Always return success for this device - allows for PMIC I/O */
59 return 0;
60}
61
62static struct dm_pmic_ops sandbox_pmic_ops = {
63 .reg_count = sandbox_pmic_reg_count,
64 .read = sandbox_pmic_read,
65 .write = sandbox_pmic_write,
66};
67
68static const struct udevice_id sandbox_pmic_ids[] = {
69 { .compatible = "sandbox,pmic" },
70 { }
71};
72
73U_BOOT_DRIVER(sandbox_pmic) = {
74 .name = "sandbox_pmic",
75 .id = UCLASS_PMIC,
76 .of_match = sandbox_pmic_ids,
77 .bind = sandbox_pmic_bind,
78 .ops = &sandbox_pmic_ops,
79};