irq-eint.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* arch/arm/mach-s5p64x0/irq-eint.c
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd
  4. * http://www.samsung.com/
  5. *
  6. * Based on linux/arch/arm/mach-s3c64xx/irq-eint.c
  7. *
  8. * S5P64X0 - Interrupt handling for External Interrupts.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/gpio.h>
  16. #include <linux/irq.h>
  17. #include <linux/io.h>
  18. #include <plat/regs-irqtype.h>
  19. #include <plat/gpio-cfg.h>
  20. #include <mach/regs-gpio.h>
  21. #include <mach/regs-clock.h>
  22. #define eint_offset(irq) ((irq) - IRQ_EINT(0))
  23. static int s5p64x0_irq_eint_set_type(struct irq_data *data, unsigned int type)
  24. {
  25. int offs = eint_offset(data->irq);
  26. int shift;
  27. u32 ctrl, mask;
  28. u32 newvalue = 0;
  29. if (offs > 15)
  30. return -EINVAL;
  31. switch (type) {
  32. case IRQ_TYPE_NONE:
  33. printk(KERN_WARNING "No edge setting!\n");
  34. break;
  35. case IRQ_TYPE_EDGE_RISING:
  36. newvalue = S3C2410_EXTINT_RISEEDGE;
  37. break;
  38. case IRQ_TYPE_EDGE_FALLING:
  39. newvalue = S3C2410_EXTINT_FALLEDGE;
  40. break;
  41. case IRQ_TYPE_EDGE_BOTH:
  42. newvalue = S3C2410_EXTINT_BOTHEDGE;
  43. break;
  44. case IRQ_TYPE_LEVEL_LOW:
  45. newvalue = S3C2410_EXTINT_LOWLEV;
  46. break;
  47. case IRQ_TYPE_LEVEL_HIGH:
  48. newvalue = S3C2410_EXTINT_HILEV;
  49. break;
  50. default:
  51. printk(KERN_ERR "No such irq type %d", type);
  52. return -EINVAL;
  53. }
  54. shift = (offs / 2) * 4;
  55. mask = 0x7 << shift;
  56. ctrl = __raw_readl(S5P64X0_EINT0CON0) & ~mask;
  57. ctrl |= newvalue << shift;
  58. __raw_writel(ctrl, S5P64X0_EINT0CON0);
  59. /* Configure the GPIO pin for 6450 or 6440 based on CPU ID */
  60. if (0x50000 == (__raw_readl(S5P64X0_SYS_ID) & 0xFF000))
  61. s3c_gpio_cfgpin(S5P6450_GPN(offs), S3C_GPIO_SFN(2));
  62. else
  63. s3c_gpio_cfgpin(S5P6440_GPN(offs), S3C_GPIO_SFN(2));
  64. return 0;
  65. }
  66. /*
  67. * s5p64x0_irq_demux_eint
  68. *
  69. * This function demuxes the IRQ from the group0 external interrupts,
  70. * from IRQ_EINT(0) to IRQ_EINT(15). It is designed to be inlined into
  71. * the specific handlers s5p64x0_irq_demux_eintX_Y.
  72. */
  73. static inline void s5p64x0_irq_demux_eint(unsigned int start, unsigned int end)
  74. {
  75. u32 status = __raw_readl(S5P64X0_EINT0PEND);
  76. u32 mask = __raw_readl(S5P64X0_EINT0MASK);
  77. unsigned int irq;
  78. status &= ~mask;
  79. status >>= start;
  80. status &= (1 << (end - start + 1)) - 1;
  81. for (irq = IRQ_EINT(start); irq <= IRQ_EINT(end); irq++) {
  82. if (status & 1)
  83. generic_handle_irq(irq);
  84. status >>= 1;
  85. }
  86. }
  87. static void s5p64x0_irq_demux_eint0_3(unsigned int irq, struct irq_desc *desc)
  88. {
  89. s5p64x0_irq_demux_eint(0, 3);
  90. }
  91. static void s5p64x0_irq_demux_eint4_11(unsigned int irq, struct irq_desc *desc)
  92. {
  93. s5p64x0_irq_demux_eint(4, 11);
  94. }
  95. static void s5p64x0_irq_demux_eint12_15(unsigned int irq,
  96. struct irq_desc *desc)
  97. {
  98. s5p64x0_irq_demux_eint(12, 15);
  99. }
  100. static int s5p64x0_alloc_gc(void)
  101. {
  102. struct irq_chip_generic *gc;
  103. struct irq_chip_type *ct;
  104. gc = irq_alloc_generic_chip("s5p64x0-eint", 1, S5P_IRQ_EINT_BASE,
  105. S5P_VA_GPIO, handle_level_irq);
  106. if (!gc) {
  107. printk(KERN_ERR "%s: irq_alloc_generic_chip for group 0"
  108. "external interrupts failed\n", __func__);
  109. return -EINVAL;
  110. }
  111. ct = gc->chip_types;
  112. ct->chip.irq_ack = irq_gc_ack_set_bit;
  113. ct->chip.irq_mask = irq_gc_mask_set_bit;
  114. ct->chip.irq_unmask = irq_gc_mask_clr_bit;
  115. ct->chip.irq_set_type = s5p64x0_irq_eint_set_type;
  116. ct->regs.ack = EINT0PEND_OFFSET;
  117. ct->regs.mask = EINT0MASK_OFFSET;
  118. irq_setup_generic_chip(gc, IRQ_MSK(16), IRQ_GC_INIT_MASK_CACHE,
  119. IRQ_NOREQUEST | IRQ_NOPROBE, 0);
  120. return 0;
  121. }
  122. static int __init s5p64x0_init_irq_eint(void)
  123. {
  124. int ret = s5p64x0_alloc_gc();
  125. irq_set_chained_handler(IRQ_EINT0_3, s5p64x0_irq_demux_eint0_3);
  126. irq_set_chained_handler(IRQ_EINT4_11, s5p64x0_irq_demux_eint4_11);
  127. irq_set_chained_handler(IRQ_EINT12_15, s5p64x0_irq_demux_eint12_15);
  128. return ret;
  129. }
  130. arch_initcall(s5p64x0_init_irq_eint);