blob: d4f27428bd117c05a5e8824b097448fddd2d8d6f [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
Sébastien Szymanskieefd93e2020-06-30 15:03:13 +020014int power_pca9450_init(unsigned char bus)
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;
26 p->hw.i2c.addr = 0x25;
27 p->hw.i2c.tx_num = 1;
28 p->bus = bus;
29
30 return 0;
31}