2019-05-29 01:10:04 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-10-31 17:41:15 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012, NVIDIA Corporation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MACH_TEGRA_CPUIDLE_H
|
|
|
|
#define __MACH_TEGRA_CPUIDLE_H
|
|
|
|
|
2013-06-04 18:47:34 +08:00
|
|
|
#ifdef CONFIG_CPU_IDLE
|
2012-10-31 17:41:15 +08:00
|
|
|
int tegra20_cpuidle_init(void);
|
2013-05-07 04:19:19 +08:00
|
|
|
void tegra20_cpuidle_pcie_irqs_in_use(void);
|
2012-10-31 17:41:15 +08:00
|
|
|
int tegra30_cpuidle_init(void);
|
2013-01-21 17:49:06 +08:00
|
|
|
int tegra114_cpuidle_init(void);
|
2013-06-04 18:47:32 +08:00
|
|
|
void tegra_cpuidle_init(void);
|
2016-04-28 20:52:45 +08:00
|
|
|
void tegra_cpuidle_pcie_irqs_in_use(void);
|
2013-06-04 18:47:32 +08:00
|
|
|
#else
|
|
|
|
static inline void tegra_cpuidle_init(void) {}
|
2016-04-28 20:52:45 +08:00
|
|
|
static inline void tegra_cpuidle_pcie_irqs_in_use(void) {}
|
2013-06-04 18:47:32 +08:00
|
|
|
#endif
|
|
|
|
|
2012-10-31 17:41:15 +08:00
|
|
|
#endif
|