2 * linux/arch/arm/kernel/fiq.c
4 * Copyright (C) 1998 Russell King
5 * Copyright (C) 1998, 1999 Phil Blundell
7 * FIQ support written by Philip Blundell <philb@gnu.org>, 1998.
9 * FIQ support re-written by Russell King to be more generic
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.
15 * Operation is as follows:
16 * 1. Owner A claims FIQ:
17 * - default_fiq relinquishes control.
20 * - sets any registers,
22 * 3. Owner B claims FIQ:
23 * - if owner A has a relinquish function.
25 * - saves any registers.
29 * - sets any registers,
31 * 5. Owner B releases FIQ:
32 * - Owner A is asked to reacquire FIQ:
34 * - restores saved registers.
38 #include <linux/module.h>
39 #include <linux/kernel.h>
40 #include <linux/init.h>
41 #include <linux/interrupt.h>
42 #include <linux/seq_file.h>
44 #include <asm/cacheflush.h>
48 #include <asm/traps.h>
50 #define FIQ_OFFSET ({ \
51 extern void *vector_fiq_offset; \
52 (unsigned)&vector_fiq_offset; \
55 static unsigned long dfl_fiq_insn
;
56 static struct pt_regs dfl_fiq_regs
;
58 /* Default reacquire function
59 * - we always relinquish FIQ control
60 * - we always reacquire FIQ control
62 static int fiq_def_op(void *ref
, int relinquish
)
65 /* Restore default handler and registers */
67 set_fiq_regs(&dfl_fiq_regs
);
68 set_fiq_handler(&dfl_fiq_insn
, sizeof(dfl_fiq_insn
));
71 /* FIXME: notify irq controller to standard enable FIQs */
77 static struct fiq_handler default_owner
= {
82 static struct fiq_handler
*current_fiq
= &default_owner
;
84 int show_fiq_list(struct seq_file
*p
, int prec
)
86 if (current_fiq
!= &default_owner
)
87 seq_printf(p
, "%*s: %s\n", prec
, "FIQ",
93 void set_fiq_handler(void *start
, unsigned int length
)
95 void *base
= vectors_page
;
96 unsigned offset
= FIQ_OFFSET
;
98 memcpy(base
+ offset
, start
, length
);
99 if (!cache_is_vipt_nonaliasing())
100 flush_icache_range((unsigned long)base
+ offset
, offset
+
102 flush_icache_range(0xffff0000 + offset
, 0xffff0000 + offset
+ length
);
105 int claim_fiq(struct fiq_handler
*f
)
112 if (current_fiq
->fiq_op
!= NULL
)
113 ret
= current_fiq
->fiq_op(current_fiq
->dev_id
, 1);
117 f
->next
= current_fiq
;
124 void release_fiq(struct fiq_handler
*f
)
126 if (current_fiq
!= f
) {
127 pr_err("%s FIQ trying to release %s FIQ\n",
128 f
->name
, current_fiq
->name
);
134 current_fiq
= current_fiq
->next
;
135 while (current_fiq
->fiq_op(current_fiq
->dev_id
, 0));
138 static int fiq_start
;
140 void enable_fiq(int fiq
)
142 enable_irq(fiq
+ fiq_start
);
145 void disable_fiq(int fiq
)
147 disable_irq(fiq
+ fiq_start
);
150 EXPORT_SYMBOL(set_fiq_handler
);
151 EXPORT_SYMBOL(__set_fiq_regs
); /* defined in fiqasm.S */
152 EXPORT_SYMBOL(__get_fiq_regs
); /* defined in fiqasm.S */
153 EXPORT_SYMBOL(claim_fiq
);
154 EXPORT_SYMBOL(release_fiq
);
155 EXPORT_SYMBOL(enable_fiq
);
156 EXPORT_SYMBOL(disable_fiq
);
158 void __init
init_FIQ(int start
)
160 unsigned offset
= FIQ_OFFSET
;
161 dfl_fiq_insn
= *(unsigned long *)(0xffff0000 + offset
);
162 get_fiq_regs(&dfl_fiq_regs
);