fiq.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/arch/arm/kernel/fiq.c
  4. *
  5. * Copyright (C) 1998 Russell King
  6. * Copyright (C) 1998, 1999 Phil Blundell
  7. *
  8. * FIQ support written by Philip Blundell <[email protected]>, 1998.
  9. *
  10. * FIQ support re-written by Russell King to be more generic
  11. *
  12. * We now properly support a method by which the FIQ handlers can
  13. * be stacked onto the vector. We still do not support sharing
  14. * the FIQ vector itself.
  15. *
  16. * Operation is as follows:
  17. * 1. Owner A claims FIQ:
  18. * - default_fiq relinquishes control.
  19. * 2. Owner A:
  20. * - inserts code.
  21. * - sets any registers,
  22. * - enables FIQ.
  23. * 3. Owner B claims FIQ:
  24. * - if owner A has a relinquish function.
  25. * - disable FIQs.
  26. * - saves any registers.
  27. * - returns zero.
  28. * 4. Owner B:
  29. * - inserts code.
  30. * - sets any registers,
  31. * - enables FIQ.
  32. * 5. Owner B releases FIQ:
  33. * - Owner A is asked to reacquire FIQ:
  34. * - inserts code.
  35. * - restores saved registers.
  36. * - enables FIQ.
  37. * 6. Goto 3
  38. */
  39. #include <linux/module.h>
  40. #include <linux/kernel.h>
  41. #include <linux/init.h>
  42. #include <linux/interrupt.h>
  43. #include <linux/seq_file.h>
  44. #include <asm/cacheflush.h>
  45. #include <asm/cp15.h>
  46. #include <asm/fiq.h>
  47. #include <asm/irq.h>
  48. #include <asm/traps.h>
  49. #define FIQ_OFFSET ({ \
  50. extern void *vector_fiq_offset; \
  51. (unsigned)&vector_fiq_offset; \
  52. })
  53. static unsigned long dfl_fiq_insn;
  54. static struct pt_regs dfl_fiq_regs;
  55. /* Default reacquire function
  56. * - we always relinquish FIQ control
  57. * - we always reacquire FIQ control
  58. */
  59. static int fiq_def_op(void *ref, int relinquish)
  60. {
  61. if (!relinquish) {
  62. /* Restore default handler and registers */
  63. local_fiq_disable();
  64. set_fiq_regs(&dfl_fiq_regs);
  65. set_fiq_handler(&dfl_fiq_insn, sizeof(dfl_fiq_insn));
  66. local_fiq_enable();
  67. /* FIXME: notify irq controller to standard enable FIQs */
  68. }
  69. return 0;
  70. }
  71. static struct fiq_handler default_owner = {
  72. .name = "default",
  73. .fiq_op = fiq_def_op,
  74. };
  75. static struct fiq_handler *current_fiq = &default_owner;
  76. int show_fiq_list(struct seq_file *p, int prec)
  77. {
  78. if (current_fiq != &default_owner)
  79. seq_printf(p, "%*s: %s\n", prec, "FIQ",
  80. current_fiq->name);
  81. return 0;
  82. }
  83. void set_fiq_handler(void *start, unsigned int length)
  84. {
  85. void *base = vectors_page;
  86. unsigned offset = FIQ_OFFSET;
  87. memcpy(base + offset, start, length);
  88. if (!cache_is_vipt_nonaliasing())
  89. flush_icache_range((unsigned long)base + offset,
  90. (unsigned long)base + offset + length);
  91. flush_icache_range(0xffff0000 + offset, 0xffff0000 + offset + length);
  92. }
  93. int claim_fiq(struct fiq_handler *f)
  94. {
  95. int ret = 0;
  96. if (current_fiq) {
  97. ret = -EBUSY;
  98. if (current_fiq->fiq_op != NULL)
  99. ret = current_fiq->fiq_op(current_fiq->dev_id, 1);
  100. }
  101. if (!ret) {
  102. f->next = current_fiq;
  103. current_fiq = f;
  104. }
  105. return ret;
  106. }
  107. void release_fiq(struct fiq_handler *f)
  108. {
  109. if (current_fiq != f) {
  110. pr_err("%s FIQ trying to release %s FIQ\n",
  111. f->name, current_fiq->name);
  112. dump_stack();
  113. return;
  114. }
  115. do
  116. current_fiq = current_fiq->next;
  117. while (current_fiq->fiq_op(current_fiq->dev_id, 0));
  118. }
  119. static int fiq_start;
  120. void enable_fiq(int fiq)
  121. {
  122. enable_irq(fiq + fiq_start);
  123. }
  124. void disable_fiq(int fiq)
  125. {
  126. disable_irq(fiq + fiq_start);
  127. }
  128. EXPORT_SYMBOL(set_fiq_handler);
  129. EXPORT_SYMBOL(__set_fiq_regs); /* defined in fiqasm.S */
  130. EXPORT_SYMBOL(__get_fiq_regs); /* defined in fiqasm.S */
  131. EXPORT_SYMBOL(claim_fiq);
  132. EXPORT_SYMBOL(release_fiq);
  133. EXPORT_SYMBOL(enable_fiq);
  134. EXPORT_SYMBOL(disable_fiq);
  135. void __init init_FIQ(int start)
  136. {
  137. unsigned offset = FIQ_OFFSET;
  138. dfl_fiq_insn = *(unsigned long *)(0xffff0000 + offset);
  139. get_fiq_regs(&dfl_fiq_regs);
  140. fiq_start = start;
  141. }