root/arch/arm/mach-tegra/pm-tegra20.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. tegra20_lp1_iram_hook
  2. tegra20_sleep_core_init

   1 // SPDX-License-Identifier: GPL-2.0-only
   2 /*
   3  * Copyright (c) 2013, NVIDIA Corporation. All rights reserved.
   4  */
   5 
   6 #include <linux/kernel.h>
   7 
   8 #include "pm.h"
   9 
  10 #ifdef CONFIG_PM_SLEEP
  11 extern u32 tegra20_iram_start, tegra20_iram_end;
  12 extern void tegra20_sleep_core_finish(unsigned long);
  13 
  14 void 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 
  20 void tegra20_sleep_core_init(void)
  21 {
  22         tegra_sleep_core_finish = tegra20_sleep_core_finish;
  23 }
  24 #endif

/* [<][>][^][v][top][bottom][index][help] */