fiq.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * linux/arch/arm/kernel/fiq.c
  3. *
  4. * Copyright (C) 1998 Russell King
  5. * Copyright (C) 1998, 1999 Phil Blundell
  6. *
  7. * FIQ support written by Philip Blundell <philb@gnu.org>, 1998.
  8. *
  9. * FIQ support re-written by Russell King to be more generic
  10. *
  11. * We now properly support a method by which the FIQ handlers can
  12. * be stacked onto the vector. We still do not support sharing
  13. * the FIQ vector itself.
  14. *
  15. * Operation is as follows:
  16. * 1. Owner A claims FIQ:
  17. * - default_fiq relinquishes control.
  18. * 2. Owner A:
  19. * - inserts code.
  20. * - sets any registers,
  21. * - enables FIQ.
  22. * 3. Owner B claims FIQ:
  23. * - if owner A has a relinquish function.
  24. * - disable FIQs.
  25. * - saves any registers.
  26. * - returns zero.
  27. * 4. Owner B:
  28. * - inserts code.
  29. * - sets any registers,
  30. * - enables FIQ.
  31. * 5. Owner B releases FIQ:
  32. * - Owner A is asked to reacquire FIQ:
  33. * - inserts code.
  34. * - restores saved registers.
  35. * - enables FIQ.
  36. * 6. Goto 3
  37. */
  38. #include <linux/module.h>
  39. #include <linux/kernel.h>
  40. #include <linux/init.h>
  41. #include <linux/seq_file.h>
  42. #include <asm/cacheflush.h>
  43. #include <asm/fiq.h>
  44. #include <asm/irq.h>
  45. #include <asm/system.h>
  46. #include <asm/uaccess.h>
  47. static unsigned long no_fiq_insn;
  48. /* Default reacquire function
  49. * - we always relinquish FIQ control
  50. * - we always reacquire FIQ control
  51. */
  52. static int fiq_def_op(void *ref, int relinquish)
  53. {
  54. if (!relinquish)
  55. set_fiq_handler(&no_fiq_insn, sizeof(no_fiq_insn));
  56. return 0;
  57. }
  58. static struct fiq_handler default_owner = {
  59. .name = "default",
  60. .fiq_op = fiq_def_op,
  61. };
  62. static struct fiq_handler *current_fiq = &default_owner;
  63. int show_fiq_list(struct seq_file *p, void *v)
  64. {
  65. if (current_fiq != &default_owner)
  66. seq_printf(p, "FIQ: %s\n", current_fiq->name);
  67. return 0;
  68. }
  69. void set_fiq_handler(void *start, unsigned int length)
  70. {
  71. memcpy((void *)0xffff001c, start, length);
  72. flush_icache_range(0xffff001c, 0xffff001c + length);
  73. if (!vectors_high())
  74. flush_icache_range(0x1c, 0x1c + length);
  75. }
  76. /*
  77. * Taking an interrupt in FIQ mode is death, so both these functions
  78. * disable irqs for the duration. Note - these functions are almost
  79. * entirely coded in assembly.
  80. */
  81. void __attribute__((naked)) set_fiq_regs(struct pt_regs *regs)
  82. {
  83. register unsigned long tmp;
  84. asm volatile (
  85. "mov ip, sp\n\
  86. stmfd sp!, {fp, ip, lr, pc}\n\
  87. sub fp, ip, #4\n\
  88. mrs %0, cpsr\n\
  89. msr cpsr_c, %2 @ select FIQ mode\n\
  90. mov r0, r0\n\
  91. ldmia %1, {r8 - r14}\n\
  92. msr cpsr_c, %0 @ return to SVC mode\n\
  93. mov r0, r0\n\
  94. ldmea fp, {fp, sp, pc}"
  95. : "=&r" (tmp)
  96. : "r" (&regs->ARM_r8), "I" (PSR_I_BIT | PSR_F_BIT | FIQ_MODE));
  97. }
  98. void __attribute__((naked)) get_fiq_regs(struct pt_regs *regs)
  99. {
  100. register unsigned long tmp;
  101. asm volatile (
  102. "mov ip, sp\n\
  103. stmfd sp!, {fp, ip, lr, pc}\n\
  104. sub fp, ip, #4\n\
  105. mrs %0, cpsr\n\
  106. msr cpsr_c, %2 @ select FIQ mode\n\
  107. mov r0, r0\n\
  108. stmia %1, {r8 - r14}\n\
  109. msr cpsr_c, %0 @ return to SVC mode\n\
  110. mov r0, r0\n\
  111. ldmea fp, {fp, sp, pc}"
  112. : "=&r" (tmp)
  113. : "r" (&regs->ARM_r8), "I" (PSR_I_BIT | PSR_F_BIT | FIQ_MODE));
  114. }
  115. int claim_fiq(struct fiq_handler *f)
  116. {
  117. int ret = 0;
  118. if (current_fiq) {
  119. ret = -EBUSY;
  120. if (current_fiq->fiq_op != NULL)
  121. ret = current_fiq->fiq_op(current_fiq->dev_id, 1);
  122. }
  123. if (!ret) {
  124. f->next = current_fiq;
  125. current_fiq = f;
  126. }
  127. return ret;
  128. }
  129. void release_fiq(struct fiq_handler *f)
  130. {
  131. if (current_fiq != f) {
  132. printk(KERN_ERR "%s FIQ trying to release %s FIQ\n",
  133. f->name, current_fiq->name);
  134. dump_stack();
  135. return;
  136. }
  137. do
  138. current_fiq = current_fiq->next;
  139. while (current_fiq->fiq_op(current_fiq->dev_id, 0));
  140. }
  141. void enable_fiq(int fiq)
  142. {
  143. enable_irq(fiq + FIQ_START);
  144. }
  145. void disable_fiq(int fiq)
  146. {
  147. disable_irq(fiq + FIQ_START);
  148. }
  149. EXPORT_SYMBOL(set_fiq_handler);
  150. EXPORT_SYMBOL(set_fiq_regs);
  151. EXPORT_SYMBOL(get_fiq_regs);
  152. EXPORT_SYMBOL(claim_fiq);
  153. EXPORT_SYMBOL(release_fiq);
  154. EXPORT_SYMBOL(enable_fiq);
  155. EXPORT_SYMBOL(disable_fiq);
  156. void __init init_FIQ(void)
  157. {
  158. no_fiq_insn = *(unsigned long *)0xffff001c;
  159. }