]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/arm/mach-tegra/pm-tegra30.c
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / arch / arm / mach-tegra / pm-tegra30.c
CommitLineData
9952f691 1// SPDX-License-Identifier: GPL-2.0-only
e7a932b1
JL
2/*
3 * Copyright (c) 2013, NVIDIA Corporation. All rights reserved.
e7a932b1 4 */
a0524acc 5
e7a932b1
JL
6#include <linux/kernel.h>
7
8#include "pm.h"
9
10#ifdef CONFIG_PM_SLEEP
11extern u32 tegra30_iram_start, tegra30_iram_end;
12extern void tegra30_sleep_core_finish(unsigned long);
13
14void tegra30_lp1_iram_hook(void)
15{
16 tegra_lp1_iram.start_addr = &tegra30_iram_start;
17 tegra_lp1_iram.end_addr = &tegra30_iram_end;
18}
19
20void tegra30_sleep_core_init(void)
21{
22 tegra_sleep_core_finish = tegra30_sleep_core_finish;
23}
24#endif