Merge tag 'please-pull-ia64-erratum' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / arm / mach-tegra / cpuidle.c
CommitLineData
22b8b85d
PDS
1/*
2 * arch/arm/mach-tegra/cpuidle.c
3 *
4 * CPU idle driver for Tegra CPUs
5 *
6 * Copyright (c) 2010-2012, NVIDIA Corporation.
7 * Copyright (c) 2011 Google, Inc.
8 * Author: Colin Cross <ccross@android.com>
9 * Gary King <gking@nvidia.com>
10 *
11 * Rework for 3.3 by Peter De Schrijver <pdeschrijver@nvidia.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful, but WITHOUT
19 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21 * more details.
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
22b8b85d 26
0b25e25b
JL
27#include "fuse.h"
28#include "cpuidle.h"
22b8b85d 29
e22dc2b2 30void __init tegra_cpuidle_init(void)
22b8b85d 31{
0b25e25b
JL
32 switch (tegra_chip_id) {
33 case TEGRA20:
b046a65f
JL
34 if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
35 tegra20_cpuidle_init();
0b25e25b
JL
36 break;
37 case TEGRA30:
b046a65f
JL
38 if (IS_ENABLED(CONFIG_ARCH_TEGRA_3x_SOC))
39 tegra30_cpuidle_init();
0b25e25b 40 break;
51dc5259 41 case TEGRA114:
24036fdc
JL
42 case TEGRA124:
43 if (IS_ENABLED(CONFIG_ARCH_TEGRA_114_SOC) ||
44 IS_ENABLED(CONFIG_ARCH_TEGRA_124_SOC))
b046a65f 45 tegra114_cpuidle_init();
0b25e25b 46 break;
22b8b85d 47 }
22b8b85d 48}
b4f17375
SW
49
50void tegra_cpuidle_pcie_irqs_in_use(void)
51{
52 switch (tegra_chip_id) {
53 case TEGRA20:
54 if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
55 tegra20_cpuidle_pcie_irqs_in_use();
56 break;
57 }
58}
This page took 0.13504 seconds and 5 git commands to generate.