cpuidle.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. #include <linux/kernel.h>
  24. #include <linux/module.h>
  25. #include <soc/tegra/fuse.h>
  26. #include "cpuidle.h"
  27. void __init tegra_cpuidle_init(void)
  28. {
  29. switch (tegra_get_chip_id()) {
  30. case TEGRA20:
  31. if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
  32. tegra20_cpuidle_init();
  33. break;
  34. case TEGRA30:
  35. if (IS_ENABLED(CONFIG_ARCH_TEGRA_3x_SOC))
  36. tegra30_cpuidle_init();
  37. break;
  38. case TEGRA114:
  39. case TEGRA124:
  40. if (IS_ENABLED(CONFIG_ARCH_TEGRA_114_SOC) ||
  41. IS_ENABLED(CONFIG_ARCH_TEGRA_124_SOC))
  42. tegra114_cpuidle_init();
  43. break;
  44. }
  45. }
  46. void tegra_cpuidle_pcie_irqs_in_use(void)
  47. {
  48. switch (tegra_get_chip_id()) {
  49. case TEGRA20:
  50. if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
  51. tegra20_cpuidle_pcie_irqs_in_use();
  52. break;
  53. }
  54. }