blob: a7e04699e8ba4212b0f4ebccf6655172af6b9790 [file] [log] [blame]
Jaehoon Chung103e83a2016-12-15 18:21:10 +09001/*
2 * Copyright (C) 2016 Samsung Electronics
3 * Jaehoon Chung <jh80.chung@samsung.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <dm.h>
Jaehoon Chung1a5a05d2017-02-02 17:04:09 +090010#include <errno.h>
Jaehoon Chung103e83a2016-12-15 18:21:10 +090011#include <i2c.h>
12#include <power/pmic.h>
13#include <power/max8998_pmic.h>
Jaehoon Chung103e83a2016-12-15 18:21:10 +090014
15DECLARE_GLOBAL_DATA_PTR;
16
17static int max8998_reg_count(struct udevice *dev)
18{
19 return PMIC_NUM_OF_REGS;
20}
21
22static int max8998_write(struct udevice *dev, uint reg, const uint8_t *buff,
23 int len)
24{
25 int ret;
26
27 ret = dm_i2c_write(dev, reg, buff, len);
28 if (ret)
Masahiro Yamada9b643e32017-09-16 14:10:41 +090029 pr_err("write error to device: %p register: %#x!", dev, reg);
Jaehoon Chung103e83a2016-12-15 18:21:10 +090030
31 return ret;
32}
33
34static int max8998_read(struct udevice *dev, uint reg, uint8_t *buff, int len)
35{
36 int ret;
37
38 ret = dm_i2c_read(dev, reg, buff, len);
39 if (ret)
Masahiro Yamada9b643e32017-09-16 14:10:41 +090040 pr_err("read error from device: %p register: %#x!", dev, reg);
Jaehoon Chung103e83a2016-12-15 18:21:10 +090041
42 return ret;
43}
44
45static struct dm_pmic_ops max8998_ops = {
46 .reg_count = max8998_reg_count,
47 .read = max8998_read,
48 .write = max8998_write,
49};
50
51static const struct udevice_id max8998_ids[] = {
52 { .compatible = "maxim,max8998" },
53 { }
54};
55
56U_BOOT_DRIVER(pmic_max8998) = {
57 .name = "max8998_pmic",
58 .id = UCLASS_PMIC,
59 .of_match = max8998_ids,
60 .ops = &max8998_ops,
61};