Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2010 Google, Inc.
0004  * Copyright (c) 2010-2012 NVIDIA Corporation. All rights reserved.
0005  *
0006  * Author:
0007  *  Colin Cross <ccross@google.com>
0008  */
0009 
0010 #ifndef _MACH_TEGRA_PM_H_
0011 #define _MACH_TEGRA_PM_H_
0012 
0013 struct tegra_lp1_iram {
0014     void    *start_addr;
0015     void    *end_addr;
0016 };
0017 
0018 extern struct tegra_lp1_iram tegra_lp1_iram;
0019 extern void (*tegra_sleep_core_finish)(unsigned long v2p);
0020 
0021 void tegra20_lp1_iram_hook(void);
0022 void tegra20_sleep_core_init(void);
0023 void tegra30_lp1_iram_hook(void);
0024 void tegra30_sleep_core_init(void);
0025 
0026 extern void (*tegra_tear_down_cpu)(void);
0027 
0028 #endif /* _MACH_TEGRA_PM_H_ */