2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/vfp/entry.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 ARM Limited.
|
|
|
|
* Written by Deep Blue Solutions Limited.
|
|
|
|
*/
|
2014-04-02 13:57:48 +04:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/linkage.h>
|
2009-04-01 23:27:18 +04:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/vfpmacros.h>
|
2014-04-02 13:57:48 +04:00
|
|
|
#include <asm/assembler.h>
|
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2012-07-30 22:42:10 +04: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
|
2014-04-22 19:14:29 +04:00
|
|
|
@ IRQs enabled.
|
2012-07-30 22:42:10 +04:00
|
|
|
@
|
2008-08-28 14:22:32 +04:00
|
|
|
ENTRY(do_vfp)
|
2014-04-02 13:57:49 +04:00
|
|
|
inc_preempt_count r10, r4
|
2005-04-17 02:20:36 +04:00
|
|
|
ldr r4, .LCvfp
|
2007-01-24 20:47:08 +03:00
|
|
|
ldr r11, [r10, #TI_CPU] @ CPU number
|
2005-04-17 02:20:36 +04:00
|
|
|
add r10, r10, #TI_VFPSTATE @ r10 = workspace
|
|
|
|
ldr pc, [r4] @ call VFP entry point
|
2008-08-28 14:22:32 +04:00
|
|
|
ENDPROC(do_vfp)
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-06-10 15:22:20 +04:00
|
|
|
ENTRY(vfp_null_entry)
|
2014-04-02 13:57:49 +04:00
|
|
|
dec_preempt_count_ti r10, r4
|
2014-06-30 19:29:12 +04:00
|
|
|
ret lr
|
2007-06-10 15:22:20 +04:00
|
|
|
ENDPROC(vfp_null_entry)
|
|
|
|
|
2009-07-24 15:32:52 +04:00
|
|
|
.align 2
|
2005-04-17 02:20:36 +04:00
|
|
|
.LCvfp:
|
|
|
|
.word vfp_vector
|