2005-04-16 16:20:36 -06: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.
|
|
|
|
*/
|
2014-04-02 03:57:48 -06:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/linkage.h>
|
2009-04-01 13:27:18 -06:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
#include <asm/vfpmacros.h>
|
2014-04-02 03:57:48 -06:00
|
|
|
#include <asm/assembler.h>
|
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2012-07-30 12:42:10 -06: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 09:14:29 -06:00
|
|
|
@ IRQs enabled.
|
2012-07-30 12:42:10 -06:00
|
|
|
@
|
2008-08-28 04:22:32 -06:00
|
|
|
ENTRY(do_vfp)
|
2014-04-02 03:57:49 -06:00
|
|
|
inc_preempt_count r10, r4
|
2005-04-16 16:20:36 -06:00
|
|
|
ldr r4, .LCvfp
|
2007-01-24 10:47:08 -07:00
|
|
|
ldr r11, [r10, #TI_CPU] @ CPU number
|
2005-04-16 16:20:36 -06:00
|
|
|
add r10, r10, #TI_VFPSTATE @ r10 = workspace
|
|
|
|
ldr pc, [r4] @ call VFP entry point
|
2008-08-28 04:22:32 -06:00
|
|
|
ENDPROC(do_vfp)
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2007-06-10 05:22:20 -06:00
|
|
|
ENTRY(vfp_null_entry)
|
2014-04-02 03:57:49 -06:00
|
|
|
dec_preempt_count_ti r10, r4
|
2014-06-30 09:29:12 -06:00
|
|
|
ret lr
|
2007-06-10 05:22:20 -06:00
|
|
|
ENDPROC(vfp_null_entry)
|
|
|
|
|
2009-07-24 05:32:52 -06:00
|
|
|
.align 2
|
2005-04-16 16:20:36 -06: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 04:22:32 -06:00
|
|
|
ENTRY(vfp_testing_entry)
|
2014-04-02 03:57:49 -06:00
|
|
|
dec_preempt_count_ti r10, r4
|
2005-04-16 16:20:36 -06:00
|
|
|
ldr r0, VFP_arch_address
|
2013-05-16 12:38:51 -06:00
|
|
|
str r0, [r0] @ set to non-zero value
|
2014-06-30 09:29:12 -06:00
|
|
|
ret r9 @ we have handled the fault
|
2008-08-28 04:22:32 -06:00
|
|
|
ENDPROC(vfp_testing_entry)
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2009-07-24 05:32:52 -06:00
|
|
|
.align 2
|
2005-04-16 16:20:36 -06:00
|
|
|
VFP_arch_address:
|
|
|
|
.word VFP_arch
|
|
|
|
|
|
|
|
__FINIT
|