2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/vfp/entry.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 ARM Limited.
|
|
|
|
* Written by Deep Blue Solutions Limited.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
2009-04-01 21:27:18 +02:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/vfpmacros.h>
|
2009-04-01 21:27:18 +02:00
|
|
|
#include "../kernel/entry-header.S"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-07-30 20:42:10 +02:00
|
|
|
@ VFP entry point.
|
|
|
|
@
|
|
|
|
@ r0 = instruction opcode (32-bit ARM or two 16-bit Thumb)
|
|
|
|
@ r2 = PC value to resume execution after successful emulation
|
|
|
|
@ r9 = normal "successful" return address
|
|
|
|
@ r10 = this threads thread_info structure
|
|
|
|
@ lr = unrecognised instruction return address
|
|
|
|
@ IRQs disabled.
|
|
|
|
@
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(do_vfp)
|
2013-01-14 19:50:42 +01:00
|
|
|
#ifdef CONFIG_PREEMPT_COUNT
|
2009-04-01 21:27:18 +02:00
|
|
|
ldr r4, [r10, #TI_PREEMPT] @ get preempt count
|
|
|
|
add r11, r4, #1 @ increment it
|
|
|
|
str r11, [r10, #TI_PREEMPT]
|
|
|
|
#endif
|
2006-03-15 13:33:43 +01:00
|
|
|
enable_irq
|
2005-04-17 00:20:36 +02:00
|
|
|
ldr r4, .LCvfp
|
2007-01-24 18:47:08 +01:00
|
|
|
ldr r11, [r10, #TI_CPU] @ CPU number
|
2005-04-17 00:20:36 +02:00
|
|
|
add r10, r10, #TI_VFPSTATE @ r10 = workspace
|
|
|
|
ldr pc, [r4] @ call VFP entry point
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(do_vfp)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-06-10 13:22:20 +02:00
|
|
|
ENTRY(vfp_null_entry)
|
2013-01-14 19:50:42 +01:00
|
|
|
#ifdef CONFIG_PREEMPT_COUNT
|
2009-04-01 21:27:18 +02:00
|
|
|
get_thread_info r10
|
|
|
|
ldr r4, [r10, #TI_PREEMPT] @ get preempt count
|
|
|
|
sub r11, r4, #1 @ decrement it
|
|
|
|
str r11, [r10, #TI_PREEMPT]
|
|
|
|
#endif
|
2007-06-10 13:22:20 +02:00
|
|
|
mov pc, lr
|
|
|
|
ENDPROC(vfp_null_entry)
|
|
|
|
|
2009-07-24 13:32:52 +02:00
|
|
|
.align 2
|
2005-04-17 00:20:36 +02:00
|
|
|
.LCvfp:
|
|
|
|
.word vfp_vector
|
|
|
|
|
|
|
|
@ This code is called if the VFP does not exist. It needs to flag the
|
|
|
|
@ failure to the VFP initialisation code.
|
|
|
|
|
|
|
|
__INIT
|
2008-08-28 12:22:32 +02:00
|
|
|
ENTRY(vfp_testing_entry)
|
2013-01-14 19:50:42 +01:00
|
|
|
#ifdef CONFIG_PREEMPT_COUNT
|
2009-04-01 21:27:18 +02:00
|
|
|
get_thread_info r10
|
|
|
|
ldr r4, [r10, #TI_PREEMPT] @ get preempt count
|
|
|
|
sub r11, r4, #1 @ decrement it
|
|
|
|
str r11, [r10, #TI_PREEMPT]
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
ldr r0, VFP_arch_address
|
2013-05-16 20:38:51 +02:00
|
|
|
str r0, [r0] @ set to non-zero value
|
2005-04-17 00:20:36 +02:00
|
|
|
mov pc, r9 @ we have handled the fault
|
2008-08-28 12:22:32 +02:00
|
|
|
ENDPROC(vfp_testing_entry)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-07-24 13:32:52 +02:00
|
|
|
.align 2
|
2005-04-17 00:20:36 +02:00
|
|
|
VFP_arch_address:
|
|
|
|
.word VFP_arch
|
|
|
|
|
|
|
|
__FINIT
|