Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tim Harvey | 91baa6f | 2014-02-12 23:48:12 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Gateworks Corporation |
| 4 | * Tim Harvey <tharvey@gateworks.com> |
Tim Harvey | 91baa6f | 2014-02-12 23:48:12 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
| 9 | #include <i2c.h> |
| 10 | #include <power/pmic.h> |
| 11 | #include <power/pfuze100_pmic.h> |
| 12 | |
Tim Harvey | 93a6d92 | 2014-04-22 21:53:56 -0700 | [diff] [blame] | 13 | int power_pfuze100_init(unsigned char bus) |
Tim Harvey | 91baa6f | 2014-02-12 23:48:12 -0800 | [diff] [blame] | 14 | { |
Fabio Estevam | 676ac24 | 2014-08-01 08:50:03 -0300 | [diff] [blame] | 15 | static const char name[] = "PFUZE100"; |
Tim Harvey | 91baa6f | 2014-02-12 23:48:12 -0800 | [diff] [blame] | 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 = name; |
| 24 | p->interface = PMIC_I2C; |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 25 | p->number_of_regs = PFUZE100_NUM_OF_REGS; |
Tim Harvey | 91baa6f | 2014-02-12 23:48:12 -0800 | [diff] [blame] | 26 | p->hw.i2c.addr = CONFIG_POWER_PFUZE100_I2C_ADDR; |
| 27 | p->hw.i2c.tx_num = 1; |
| 28 | p->bus = bus; |
| 29 | |
| 30 | return 0; |
| 31 | } |