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