mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
f8e450a7f6
Add pfuze dm code, this code could be enabled with CONFIG_DM_PMIC_PFUZE100. Signed-off-by: Peng Fan <peng.fan@nxp.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Fabio Estevam <fabio.estevam@nxp.com>
18 lines
405 B
C
18 lines
405 B
C
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __PFUZE_BOARD_HELPER__
|
|
#define __PFUZE_BOARD_HELPER__
|
|
|
|
#ifdef CONFIG_DM_PMIC_PFUZE100
|
|
struct udevice *pfuze_common_init(void);
|
|
int pfuze_mode_init(struct udevice *dev, u32 mode);
|
|
#else
|
|
struct pmic *pfuze_common_init(unsigned char i2cbus);
|
|
int pfuze_mode_init(struct pmic *p, u32 mode);
|
|
#endif
|
|
|
|
#endif
|