2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-10-03 19:45:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Samsung Electronics
|
|
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2012-11-13 03:21:55 +00:00
|
|
|
#include <power/pmic.h>
|
|
|
|
#include <power/max8998_pmic.h>
|
|
|
|
#include <errno.h>
|
2011-10-03 19:45:50 +00:00
|
|
|
|
2012-11-13 03:21:55 +00:00
|
|
|
int pmic_init(unsigned char bus)
|
2011-10-03 19:45:50 +00:00
|
|
|
{
|
|
|
|
static const char name[] = "MAX8998_PMIC";
|
2012-11-13 03:21:55 +00:00
|
|
|
struct pmic *p = pmic_alloc();
|
|
|
|
|
|
|
|
if (!p) {
|
|
|
|
printf("%s: POWER allocation error!\n", __func__);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2011-10-03 19:45:50 +00:00
|
|
|
|
|
|
|
puts("Board PMIC init\n");
|
|
|
|
|
|
|
|
p->name = name;
|
|
|
|
p->interface = PMIC_I2C;
|
|
|
|
p->number_of_regs = PMIC_NUM_OF_REGS;
|
|
|
|
p->hw.i2c.addr = MAX8998_I2C_ADDR;
|
|
|
|
p->hw.i2c.tx_num = 1;
|
2012-11-13 03:21:55 +00:00
|
|
|
p->bus = bus;
|
2011-10-03 19:45:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|