blob: 1b4cab81a25c173016362af96e5532a0305fff71 [file] [log] [blame]
Thomas Gleixner9952f692019-05-28 10:10:04 -07001// SPDX-License-Identifier: GPL-2.0-only
Joseph Lo731a9272013-08-12 17:40:05 +08002/*
3 * Copyright (c) 2013, NVIDIA Corporation. All rights reserved.
Joseph Lo731a9272013-08-12 17:40:05 +08004 */
Thierry Redinga0524ac2014-07-11 09:44:49 +02005
Joseph Lo731a9272013-08-12 17:40:05 +08006#include <linux/kernel.h>
7
8#include "pm.h"
9
10#ifdef CONFIG_PM_SLEEP
11extern u32 tegra20_iram_start, tegra20_iram_end;
12extern void tegra20_sleep_core_finish(unsigned long);
13
14void tegra20_lp1_iram_hook(void)
15{
16 tegra_lp1_iram.start_addr = &tegra20_iram_start;
17 tegra_lp1_iram.end_addr = &tegra20_iram_end;
18}
19
20void tegra20_sleep_core_init(void)
21{
22 tegra_sleep_core_finish = tegra20_sleep_core_finish;
23}
24#endif