1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/arm/kernel/fiq.c
5 * Copyright (C) 1998 Russell King
6 * Copyright (C) 1998, 1999 Phil Blundell
8 * FIQ support written by Philip Blundell <philb@gnu.org>, 1998.
10 * FIQ support re-written by Russell King to be more generic
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.
16 * Operation is as follows:
17 * 1. Owner A claims FIQ:
18 * - default_fiq relinquishes control.
21 * - sets any registers,
23 * 3. Owner B claims FIQ:
24 * - if owner A has a relinquish function.
26 * - saves any registers.
30 * - sets any registers,
32 * 5. Owner B releases FIQ:
33 * - Owner A is asked to reacquire FIQ:
35 * - restores saved registers.
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>
45 #include <asm/cacheflush.h>
49 #include <asm/traps.h>
51 #define FIQ_OFFSET ({ \
52 extern void *vector_fiq_offset; \
53 (unsigned)&vector_fiq_offset; \
56 static unsigned long dfl_fiq_insn
;
57 static struct pt_regs dfl_fiq_regs
;
59 /* Default reacquire function
60 * - we always relinquish FIQ control
61 * - we always reacquire FIQ control
63 static int fiq_def_op(void *ref
, int relinquish
)
66 /* Restore default handler and registers */
68 set_fiq_regs(&dfl_fiq_regs
);
69 set_fiq_handler(&dfl_fiq_insn
, sizeof(dfl_fiq_insn
));
72 /* FIXME: notify irq controller to standard enable FIQs */
78 static struct fiq_handler default_owner
= {
83 static struct fiq_handler
*current_fiq
= &default_owner
;
85 int show_fiq_list(struct seq_file
*p
, int prec
)
87 if (current_fiq
!= &default_owner
)
88 seq_printf(p
, "%*s: %s\n", prec
, "FIQ",
94 void set_fiq_handler(void *start
, unsigned int length
)
96 void *base
= vectors_page
;
97 unsigned offset
= FIQ_OFFSET
;
99 memcpy(base
+ offset
, start
, length
);
100 if (!cache_is_vipt_nonaliasing())
101 flush_icache_range((unsigned long)base
+ offset
, offset
+
103 flush_icache_range(0xffff0000 + offset
, 0xffff0000 + offset
+ length
);
106 int claim_fiq(struct fiq_handler
*f
)
113 if (current_fiq
->fiq_op
!= NULL
)
114 ret
= current_fiq
->fiq_op(current_fiq
->dev_id
, 1);
118 f
->next
= current_fiq
;
125 void release_fiq(struct fiq_handler
*f
)
127 if (current_fiq
!= f
) {
128 pr_err("%s FIQ trying to release %s FIQ\n",
129 f
->name
, current_fiq
->name
);
135 current_fiq
= current_fiq
->next
;
136 while (current_fiq
->fiq_op(current_fiq
->dev_id
, 0));
139 static int fiq_start
;
141 void enable_fiq(int fiq
)
143 enable_irq(fiq
+ fiq_start
);
146 void disable_fiq(int fiq
)
148 disable_irq(fiq
+ fiq_start
);
151 EXPORT_SYMBOL(set_fiq_handler
);
152 EXPORT_SYMBOL(__set_fiq_regs
); /* defined in fiqasm.S */
153 EXPORT_SYMBOL(__get_fiq_regs
); /* defined in fiqasm.S */
154 EXPORT_SYMBOL(claim_fiq
);
155 EXPORT_SYMBOL(release_fiq
);
156 EXPORT_SYMBOL(enable_fiq
);
157 EXPORT_SYMBOL(disable_fiq
);
159 void __init
init_FIQ(int start
)
161 unsigned offset
= FIQ_OFFSET
;
162 dfl_fiq_insn
= *(unsigned long *)(0xffff0000 + offset
);
163 get_fiq_regs(&dfl_fiq_regs
);