blob: 145a631b6b24086ad885bdabe49d18a1b09c1c47 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tim Harvey7f1fbc82014-04-22 21:53:58 -07002/*
3 * Copyright (C) 2014 Gateworks Corporation
4 * Tim Harvey <tharvey@gateworks.com>
Tim Harvey7f1fbc82014-04-22 21:53:58 -07005 */
6
Tim Harvey7f1fbc82014-04-22 21:53:58 -07007#include <errno.h>
8#include <i2c.h>
9#include <power/pmic.h>
10#include <power/ltc3676_pmic.h>
11
12int power_ltc3676_init(unsigned char bus)
13{
14 static const char name[] = "LTC3676_PMIC";
15 struct pmic *p = pmic_alloc();
16
17 if (!p) {
18 printf("%s: POWER allocation error!\n", __func__);
19 return -ENOMEM;
20 }
21
22 p->name = name;
23 p->interface = PMIC_I2C;
24 p->number_of_regs = LTC3676_NUM_OF_REGS;
Tom Rini6e4344e2022-12-04 10:13:34 -050025 p->hw.i2c.addr = CFG_POWER_LTC3676_I2C_ADDR;
Tim Harvey7f1fbc82014-04-22 21:53:58 -070026 p->hw.i2c.tx_num = 1;
27 p->bus = bus;
28
29 return 0;
30}