fiq.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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/interrupt.h>
  42. #include <linux/irq.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 no_fiq_insn;
  54. /* Default reacquire function
  55. * - we always relinquish FIQ control
  56. * - we always reacquire FIQ control
  57. */
  58. static int fiq_def_op(void *ref, int relinquish)
  59. {
  60. if (!relinquish)
  61. set_fiq_handler(&no_fiq_insn, sizeof(no_fiq_insn));
  62. return 0;
  63. }
  64. static struct fiq_handler default_owner = {
  65. .name = "default",
  66. .fiq_op = fiq_def_op,
  67. };
  68. static struct fiq_handler *current_fiq = &default_owner;
  69. int show_fiq_list(struct seq_file *p, int prec)
  70. {
  71. if (current_fiq != &default_owner)
  72. seq_printf(p, "%*s: %s\n", prec, "FIQ",
  73. current_fiq->name);
  74. return 0;
  75. }
  76. void set_fiq_handler(void *start, unsigned int length)
  77. {
  78. void *base = vectors_page;
  79. unsigned offset = FIQ_OFFSET;
  80. memcpy(base + offset, start, length);
  81. if (!cache_is_vipt_nonaliasing())
  82. flush_icache_range((unsigned long)base + offset, offset +
  83. length);
  84. flush_icache_range(0xffff0000 + offset, 0xffff0000 + offset + length);
  85. }
  86. int claim_fiq(struct fiq_handler *f)
  87. {
  88. int ret = 0;
  89. if (current_fiq) {
  90. ret = -EBUSY;
  91. if (current_fiq->fiq_op != NULL)
  92. ret = current_fiq->fiq_op(current_fiq->dev_id, 1);
  93. }
  94. if (!ret) {
  95. f->next = current_fiq;
  96. current_fiq = f;
  97. }
  98. return ret;
  99. }
  100. void release_fiq(struct fiq_handler *f)
  101. {
  102. if (current_fiq != f) {
  103. printk(KERN_ERR "%s FIQ trying to release %s FIQ\n",
  104. f->name, current_fiq->name);
  105. dump_stack();
  106. return;
  107. }
  108. do
  109. current_fiq = current_fiq->next;
  110. while (current_fiq->fiq_op(current_fiq->dev_id, 0));
  111. }
  112. static int fiq_start;
  113. void enable_fiq(int fiq)
  114. {
  115. enable_irq(fiq + fiq_start);
  116. }
  117. void disable_fiq(int fiq)
  118. {
  119. disable_irq(fiq + fiq_start);
  120. }
  121. void fiq_set_type(int fiq, unsigned int type)
  122. {
  123. irq_set_irq_type(fiq + FIQ_START, type);
  124. }
  125. EXPORT_SYMBOL(set_fiq_handler);
  126. EXPORT_SYMBOL(__set_fiq_regs); /* defined in fiqasm.S */
  127. EXPORT_SYMBOL(__get_fiq_regs); /* defined in fiqasm.S */
  128. EXPORT_SYMBOL(claim_fiq);
  129. EXPORT_SYMBOL(release_fiq);
  130. EXPORT_SYMBOL(enable_fiq);
  131. EXPORT_SYMBOL(disable_fiq);
  132. EXPORT_SYMBOL(fiq_set_type);
  133. void __init init_FIQ(int start)
  134. {
  135. unsigned offset = FIQ_OFFSET;
  136. no_fiq_insn = *(unsigned long *)(0xffff0000 + offset);
  137. fiq_start = start;
  138. }