soc: qcom: llcc: Add configuration data for SC7180
[linux/fpc-iii.git] / arch / arm / mach-tegra / pm-tegra30.c
blobe1b0329537feb5bef4dc361c0f87bcef83f6880b
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2013, NVIDIA Corporation. All rights reserved.
4 */
6 #include <linux/kernel.h>
8 #include "pm.h"
10 #ifdef CONFIG_PM_SLEEP
11 extern u32 tegra30_iram_start, tegra30_iram_end;
12 extern void tegra30_sleep_core_finish(unsigned long);
14 void tegra30_lp1_iram_hook(void)
16 tegra_lp1_iram.start_addr = &tegra30_iram_start;
17 tegra_lp1_iram.end_addr = &tegra30_iram_end;
20 void tegra30_sleep_core_init(void)
22 tegra_sleep_core_finish = tegra30_sleep_core_finish;
24 #endif