forked from mirrors/linux
		
	Add support for RTC mode to low level suspend code. This includes providing the rtc base address for the assembly code to configuring the PMIC_PWR_EN line late in suspend to enter RTC+DDR mode. Note: This patch also fold in left out space parameter for am33xx_emif_sram_table and am43xx_emif_sram_table Signed-off-by: Dave Gerlach <d-gerlach@ti.com> Signed-off-by: Keerthy <j-keerthy@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * TI AM33XX and AM43XX PM Assembly Offsets
 | 
						|
 *
 | 
						|
 * Copyright (C) 2017-2018 Texas Instruments Inc.
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/kbuild.h>
 | 
						|
#include <linux/platform_data/pm33xx.h>
 | 
						|
#include <linux/ti-emif-sram.h>
 | 
						|
 | 
						|
int main(void)
 | 
						|
{
 | 
						|
	ti_emif_asm_offsets();
 | 
						|
 | 
						|
	DEFINE(AMX3_PM_WFI_FLAGS_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_sram_data, wfi_flags));
 | 
						|
	DEFINE(AMX3_PM_L2_AUX_CTRL_VAL_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_sram_data, l2_aux_ctrl_val));
 | 
						|
	DEFINE(AMX3_PM_L2_PREFETCH_CTRL_VAL_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_sram_data, l2_prefetch_ctrl_val));
 | 
						|
	DEFINE(AMX3_PM_SRAM_DATA_SIZE, sizeof(struct am33xx_pm_sram_data));
 | 
						|
 | 
						|
	BLANK();
 | 
						|
 | 
						|
	DEFINE(AMX3_PM_RO_SRAM_DATA_VIRT_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_ro_sram_data, amx3_pm_sram_data_virt));
 | 
						|
	DEFINE(AMX3_PM_RO_SRAM_DATA_PHYS_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_ro_sram_data, amx3_pm_sram_data_phys));
 | 
						|
	DEFINE(AMX3_PM_RTC_BASE_VIRT_OFFSET,
 | 
						|
	       offsetof(struct am33xx_pm_ro_sram_data, rtc_base_virt));
 | 
						|
	DEFINE(AMX3_PM_RO_SRAM_DATA_SIZE,
 | 
						|
	       sizeof(struct am33xx_pm_ro_sram_data));
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |