blob: 8c4d0a92306bde820c57454d1537ac5d130e6231 [file] [log] [blame]
Ye Li22172f62019-10-15 02:15:18 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019 NXP
4 */
5
6#include <common.h>
7#include <errno.h>
8#include <i2c.h>
9#include <power/pmic.h>
10#include <power/pca9450.h>
11
12static const char pca9450_name[] = "PCA9450";
13
Peng Fan4eeb9fe2021-03-19 15:57:06 +080014int power_pca9450_init(unsigned char bus, unsigned char addr)
Ye Li22172f62019-10-15 02:15:18 -070015{
16 struct pmic *p = pmic_alloc();
17
18 if (!p) {
19 printf("%s: POWER allocation error!\n", __func__);
20 return -ENOMEM;
21 }
22
23 p->name = pca9450_name;
24 p->interface = PMIC_I2C;
25 p->number_of_regs = PCA9450_REG_NUM;
Peng Fan4eeb9fe2021-03-19 15:57:06 +080026 p->hw.i2c.addr = addr;
Ye Li22172f62019-10-15 02:15:18 -070027 p->hw.i2c.tx_num = 1;
28 p->bus = bus;
29
30 return 0;
31}