2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/kernel/fiq.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Russell King
|
|
|
|
* Copyright (C) 1998, 1999 Phil Blundell
|
|
|
|
*
|
|
|
|
* FIQ support written by Philip Blundell <philb@gnu.org>, 1998.
|
|
|
|
*
|
|
|
|
* FIQ support re-written by Russell King to be more generic
|
|
|
|
*
|
|
|
|
* We now properly support a method by which the FIQ handlers can
|
|
|
|
* be stacked onto the vector. We still do not support sharing
|
|
|
|
* the FIQ vector itself.
|
|
|
|
*
|
|
|
|
* Operation is as follows:
|
|
|
|
* 1. Owner A claims FIQ:
|
|
|
|
* - default_fiq relinquishes control.
|
|
|
|
* 2. Owner A:
|
|
|
|
* - inserts code.
|
|
|
|
* - sets any registers,
|
|
|
|
* - enables FIQ.
|
|
|
|
* 3. Owner B claims FIQ:
|
|
|
|
* - if owner A has a relinquish function.
|
|
|
|
* - disable FIQs.
|
|
|
|
* - saves any registers.
|
|
|
|
* - returns zero.
|
|
|
|
* 4. Owner B:
|
|
|
|
* - inserts code.
|
|
|
|
* - sets any registers,
|
|
|
|
* - enables FIQ.
|
|
|
|
* 5. Owner B releases FIQ:
|
|
|
|
* - Owner A is asked to reacquire FIQ:
|
|
|
|
* - inserts code.
|
|
|
|
* - restores saved registers.
|
|
|
|
* - enables FIQ.
|
|
|
|
* 6. Goto 3
|
|
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2006-07-01 23:30:09 +02:00
|
|
|
#include <linux/interrupt.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/seq_file.h>
|
|
|
|
|
|
|
|
#include <asm/cacheflush.h>
|
2012-03-28 19:30:01 +02:00
|
|
|
#include <asm/cp15.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/fiq.h>
|
|
|
|
#include <asm/irq.h>
|
2010-09-13 17:03:21 +02:00
|
|
|
#include <asm/traps.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-07-09 02:03:17 +02:00
|
|
|
#define FIQ_OFFSET ({ \
|
|
|
|
extern void *vector_fiq_offset; \
|
|
|
|
(unsigned)&vector_fiq_offset; \
|
|
|
|
})
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
static unsigned long no_fiq_insn;
|
|
|
|
|
|
|
|
/* Default reacquire function
|
|
|
|
* - we always relinquish FIQ control
|
|
|
|
* - we always reacquire FIQ control
|
|
|
|
*/
|
|
|
|
static int fiq_def_op(void *ref, int relinquish)
|
|
|
|
{
|
|
|
|
if (!relinquish)
|
|
|
|
set_fiq_handler(&no_fiq_insn, sizeof(no_fiq_insn));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct fiq_handler default_owner = {
|
|
|
|
.name = "default",
|
|
|
|
.fiq_op = fiq_def_op,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct fiq_handler *current_fiq = &default_owner;
|
|
|
|
|
2010-11-15 15:33:51 +01:00
|
|
|
int show_fiq_list(struct seq_file *p, int prec)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
if (current_fiq != &default_owner)
|
2010-11-15 15:33:51 +01:00
|
|
|
seq_printf(p, "%*s: %s\n", prec, "FIQ",
|
|
|
|
current_fiq->name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_fiq_handler(void *start, unsigned int length)
|
|
|
|
{
|
2013-07-09 02:03:17 +02:00
|
|
|
void *base = vectors_page;
|
|
|
|
unsigned offset = FIQ_OFFSET;
|
|
|
|
|
|
|
|
memcpy(base + offset, start, length);
|
2013-08-08 12:51:21 +02:00
|
|
|
if (!cache_is_vipt_nonaliasing())
|
2013-08-16 13:55:56 +02:00
|
|
|
flush_icache_range((unsigned long)base + offset, offset +
|
|
|
|
length);
|
2013-07-09 02:03:17 +02:00
|
|
|
flush_icache_range(0xffff0000 + offset, 0xffff0000 + offset + length);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int claim_fiq(struct fiq_handler *f)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (current_fiq) {
|
|
|
|
ret = -EBUSY;
|
|
|
|
|
|
|
|
if (current_fiq->fiq_op != NULL)
|
|
|
|
ret = current_fiq->fiq_op(current_fiq->dev_id, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
f->next = current_fiq;
|
|
|
|
current_fiq = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void release_fiq(struct fiq_handler *f)
|
|
|
|
{
|
|
|
|
if (current_fiq != f) {
|
|
|
|
printk(KERN_ERR "%s FIQ trying to release %s FIQ\n",
|
|
|
|
f->name, current_fiq->name);
|
|
|
|
dump_stack();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
current_fiq = current_fiq->next;
|
|
|
|
while (current_fiq->fiq_op(current_fiq->dev_id, 0));
|
|
|
|
}
|
|
|
|
|
2012-06-28 08:42:08 +02:00
|
|
|
static int fiq_start;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void enable_fiq(int fiq)
|
|
|
|
{
|
2012-06-28 08:42:08 +02:00
|
|
|
enable_irq(fiq + fiq_start);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void disable_fiq(int fiq)
|
|
|
|
{
|
2012-06-28 08:42:08 +02:00
|
|
|
disable_irq(fiq + fiq_start);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(set_fiq_handler);
|
2011-05-23 13:22:10 +02:00
|
|
|
EXPORT_SYMBOL(__set_fiq_regs); /* defined in fiqasm.S */
|
|
|
|
EXPORT_SYMBOL(__get_fiq_regs); /* defined in fiqasm.S */
|
2005-04-17 00:20:36 +02:00
|
|
|
EXPORT_SYMBOL(claim_fiq);
|
|
|
|
EXPORT_SYMBOL(release_fiq);
|
|
|
|
EXPORT_SYMBOL(enable_fiq);
|
|
|
|
EXPORT_SYMBOL(disable_fiq);
|
|
|
|
|
2012-06-28 08:42:08 +02:00
|
|
|
void __init init_FIQ(int start)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2013-07-09 02:03:17 +02:00
|
|
|
unsigned offset = FIQ_OFFSET;
|
|
|
|
no_fiq_insn = *(unsigned long *)(0xffff0000 + offset);
|
2012-06-28 08:42:08 +02:00
|
|
|
fiq_start = start;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|