blob: a2bed62aec21900ba3b023c7a9c39a359ea123f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/vfp/entry.S
3 *
4 * Copyright (C) 2004 ARM Limited.
5 * Written by Deep Blue Solutions Limited.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Basic entry code, called from the kernel's undefined instruction trap.
12 * r0 = faulted instruction
13 * r5 = faulted PC+4
14 * r9 = successful return
15 * r10 = thread_info structure
16 * lr = failure return
17 */
George G. Davisf2255be2009-04-01 20:27:18 +010018#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/vfpmacros.h>
George G. Davisf2255be2009-04-01 20:27:18 +010020#include "../kernel/entry-header.S"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Catalin Marinas93ed3972008-08-28 11:22:32 +010022ENTRY(do_vfp)
George G. Davisf2255be2009-04-01 20:27:18 +010023#ifdef CONFIG_PREEMPT
24 ldr r4, [r10, #TI_PREEMPT] @ get preempt count
25 add r11, r4, #1 @ increment it
26 str r11, [r10, #TI_PREEMPT]
27#endif
Russell King5d25ac02006-03-15 12:33:43 +000028 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 ldr r4, .LCvfp
Catalin Marinasc6428462007-01-24 18:47:08 +010030 ldr r11, [r10, #TI_CPU] @ CPU number
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 add r10, r10, #TI_VFPSTATE @ r10 = workspace
32 ldr pc, [r4] @ call VFP entry point
Catalin Marinas93ed3972008-08-28 11:22:32 +010033ENDPROC(do_vfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Russell King5d4cae52007-06-10 12:22:20 +010035ENTRY(vfp_null_entry)
George G. Davisf2255be2009-04-01 20:27:18 +010036#ifdef CONFIG_PREEMPT
37 get_thread_info r10
38 ldr r4, [r10, #TI_PREEMPT] @ get preempt count
39 sub r11, r4, #1 @ decrement it
40 str r11, [r10, #TI_PREEMPT]
41#endif
Russell King5d4cae52007-06-10 12:22:20 +010042 mov pc, lr
43ENDPROC(vfp_null_entry)
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045.LCvfp:
46 .word vfp_vector
47
48@ This code is called if the VFP does not exist. It needs to flag the
49@ failure to the VFP initialisation code.
50
51 __INIT
Catalin Marinas93ed3972008-08-28 11:22:32 +010052ENTRY(vfp_testing_entry)
George G. Davisf2255be2009-04-01 20:27:18 +010053#ifdef CONFIG_PREEMPT
54 get_thread_info r10
55 ldr r4, [r10, #TI_PREEMPT] @ get preempt count
56 sub r11, r4, #1 @ decrement it
57 str r11, [r10, #TI_PREEMPT]
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 ldr r0, VFP_arch_address
60 str r5, [r0] @ known non-zero value
61 mov pc, r9 @ we have handled the fault
Catalin Marinas93ed3972008-08-28 11:22:32 +010062ENDPROC(vfp_testing_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64VFP_arch_address:
65 .word VFP_arch
66
67 __FINIT