irq.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (C) 2011 Google, Inc.
  3. *
  4. * Author:
  5. * Colin Cross <ccross@android.com>
  6. *
  7. * Copyright (C) 2010, NVIDIA Corporation
  8. *
  9. * This software is licensed under the terms of the GNU General Public
  10. * License version 2, as published by the Free Software Foundation, and
  11. * may be copied, distributed, and modified under those terms.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/delay.h>
  21. #include <linux/init.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/irq.h>
  24. #include <linux/io.h>
  25. #include <asm/hardware/gic.h>
  26. #include <mach/iomap.h>
  27. #include <mach/legacy_irq.h>
  28. #include <mach/suspend.h>
  29. #include "board.h"
  30. #define PMC_CTRL 0x0
  31. #define PMC_CTRL_LATCH_WAKEUPS (1 << 5)
  32. #define PMC_WAKE_MASK 0xc
  33. #define PMC_WAKE_LEVEL 0x10
  34. #define PMC_WAKE_STATUS 0x14
  35. #define PMC_SW_WAKE_STATUS 0x18
  36. #define PMC_DPD_SAMPLE 0x20
  37. static void __iomem *pmc = IO_ADDRESS(TEGRA_PMC_BASE);
  38. static u32 tegra_lp0_wake_enb;
  39. static u32 tegra_lp0_wake_level;
  40. static u32 tegra_lp0_wake_level_any;
  41. /* ensures that sufficient time is passed for a register write to
  42. * serialize into the 32KHz domain */
  43. static void pmc_32kwritel(u32 val, unsigned long offs)
  44. {
  45. writel(val, pmc + offs);
  46. udelay(130);
  47. }
  48. int tegra_set_lp1_wake(int irq, int enable)
  49. {
  50. return tegra_legacy_irq_set_wake(irq, enable);
  51. }
  52. void tegra_set_lp0_wake_pads(u32 wake_enb, u32 wake_level, u32 wake_any)
  53. {
  54. u32 temp;
  55. u32 status;
  56. u32 lvl;
  57. wake_level &= wake_enb;
  58. wake_any &= wake_enb;
  59. wake_level |= (tegra_lp0_wake_level & tegra_lp0_wake_enb);
  60. wake_any |= (tegra_lp0_wake_level_any & tegra_lp0_wake_enb);
  61. wake_enb |= tegra_lp0_wake_enb;
  62. pmc_32kwritel(0, PMC_SW_WAKE_STATUS);
  63. temp = readl(pmc + PMC_CTRL);
  64. temp |= PMC_CTRL_LATCH_WAKEUPS;
  65. pmc_32kwritel(temp, PMC_CTRL);
  66. temp &= ~PMC_CTRL_LATCH_WAKEUPS;
  67. pmc_32kwritel(temp, PMC_CTRL);
  68. status = readl(pmc + PMC_SW_WAKE_STATUS);
  69. lvl = readl(pmc + PMC_WAKE_LEVEL);
  70. /* flip the wakeup trigger for any-edge triggered pads
  71. * which are currently asserting as wakeups */
  72. lvl ^= status;
  73. lvl &= wake_any;
  74. wake_level |= lvl;
  75. writel(wake_level, pmc + PMC_WAKE_LEVEL);
  76. /* Enable DPD sample to trigger sampling pads data and direction
  77. * in which pad will be driven during lp0 mode*/
  78. writel(0x1, pmc + PMC_DPD_SAMPLE);
  79. writel(wake_enb, pmc + PMC_WAKE_MASK);
  80. }
  81. static void tegra_mask(struct irq_data *d)
  82. {
  83. if (d->irq >= 32)
  84. tegra_legacy_mask_irq(d->irq);
  85. }
  86. static void tegra_unmask(struct irq_data *d)
  87. {
  88. if (d->irq >= 32)
  89. tegra_legacy_unmask_irq(d->irq);
  90. }
  91. static void tegra_ack(struct irq_data *d)
  92. {
  93. if (d->irq >= 32)
  94. tegra_legacy_force_irq_clr(d->irq);
  95. }
  96. static int tegra_retrigger(struct irq_data *d)
  97. {
  98. if (d->irq < 32)
  99. return 0;
  100. tegra_legacy_force_irq_set(d->irq);
  101. return 1;
  102. }
  103. void __init tegra_init_irq(void)
  104. {
  105. tegra_init_legacy_irq();
  106. gic_arch_extn.irq_ack = tegra_ack;
  107. gic_arch_extn.irq_mask = tegra_mask;
  108. gic_arch_extn.irq_unmask = tegra_unmask;
  109. gic_arch_extn.irq_retrigger = tegra_retrigger;
  110. gic_init(0, 29, IO_ADDRESS(TEGRA_ARM_INT_DIST_BASE),
  111. IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x100));
  112. }