31 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
/*
 | 
						|
 * Copyright (c) 2019, MediaTek Inc. All rights reserved.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-3-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef PMIC_H
 | 
						|
#define PMIC_H
 | 
						|
 | 
						|
enum {
 | 
						|
	PMIC_TMA_KEY = 0x03a8,
 | 
						|
	PMIC_PWRHOLD = 0x0a08,
 | 
						|
	PMIC_PSEQ_ELR11 = 0x0a62,
 | 
						|
	PMIC_VPROC11_CON0 = 0x1388,
 | 
						|
	PMIC_VPROC11_OP_EN = 0x1390,
 | 
						|
	PMIC_VSRAM_PROC11_CON0 = 0x1b46,
 | 
						|
	PMIC_VSRAM_PROC11_OP_EN = 0x1b4e
 | 
						|
};
 | 
						|
 | 
						|
enum {
 | 
						|
	PMIC_RG_SDN_DLY_ENB = 1U << 10
 | 
						|
};
 | 
						|
 | 
						|
/* external API */
 | 
						|
void bcpu_enable(uint32_t en);
 | 
						|
void bcpu_sram_enable(uint32_t en);
 | 
						|
void wk_pmic_enable_sdn_delay(void);
 | 
						|
void pmic_power_off(void);
 | 
						|
 | 
						|
#endif /* PMIC_H */
 |