mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			405 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 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
 |