diff options
| author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2009-08-13 14:38:17 -0400 |
|---|---|---|
| committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2009-08-13 14:34:37 -0400 |
| commit | 0d928b0b616d1c5c5fe76019a87cba171ca91633 (patch) | |
| tree | db71283925be4df3ea3cf66f9a3eab5f4f349a06 | |
| parent | 181f817eaaca4c1f8a9c265d339d2b96de8b245d (diff) | |
Complete irq tracing support for ARM
Before this patch enabling and disabling irqs in assembler code and by
the hardware wasn't tracked completly.
I had to transpose two instructions in arch/arm/lib/bitops.h because
restore_irqs doesn't preserve the flags with CONFIG_TRACE_IRQFLAGS=y
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
| -rw-r--r-- | arch/arm/include/asm/assembler.h | 49 | ||||
| -rw-r--r-- | arch/arm/kernel/entry-armv.S | 10 | ||||
| -rw-r--r-- | arch/arm/lib/bitops.h | 2 |
3 files changed, 49 insertions, 12 deletions
diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h index 15f8a092b700..44912cd5da13 100644 --- a/arch/arm/include/asm/assembler.h +++ b/arch/arm/include/asm/assembler.h | |||
| @@ -74,23 +74,56 @@ | |||
| 74 | * Enable and disable interrupts | 74 | * Enable and disable interrupts |
| 75 | */ | 75 | */ |
| 76 | #if __LINUX_ARM_ARCH__ >= 6 | 76 | #if __LINUX_ARM_ARCH__ >= 6 |
| 77 | .macro disable_irq | 77 | .macro disable_irq_notrace |
| 78 | cpsid i | 78 | cpsid i |
| 79 | .endm | 79 | .endm |
| 80 | 80 | ||
| 81 | .macro enable_irq | 81 | .macro enable_irq_notrace |
| 82 | cpsie i | 82 | cpsie i |
| 83 | .endm | 83 | .endm |
| 84 | #else | 84 | #else |
| 85 | .macro disable_irq | 85 | .macro disable_irq_notrace |
| 86 | msr cpsr_c, #PSR_I_BIT | SVC_MODE | 86 | msr cpsr_c, #PSR_I_BIT | SVC_MODE |
| 87 | .endm | 87 | .endm |
| 88 | 88 | ||
| 89 | .macro enable_irq | 89 | .macro enable_irq_notrace |
| 90 | msr cpsr_c, #SVC_MODE | 90 | msr cpsr_c, #SVC_MODE |
| 91 | .endm | 91 | .endm |
| 92 | #endif | 92 | #endif |
| 93 | 93 | ||
| 94 | .macro asm_trace_hardirqs_off | ||
| 95 | #if defined(CONFIG_TRACE_IRQFLAGS) | ||
| 96 | stmdb sp!, {r0-r3, ip, lr} | ||
| 97 | bl trace_hardirqs_off | ||
| 98 | ldmia sp!, {r0-r3, ip, lr} | ||
| 99 | #endif | ||
| 100 | .endm | ||
| 101 | |||
| 102 | .macro asm_trace_hardirqs_on_cond, cond | ||
| 103 | #if defined(CONFIG_TRACE_IRQFLAGS) | ||
| 104 | /* | ||
| 105 | * actually the registers should be pushed and pop'd conditionally, but | ||
| 106 | * after bl the flags are certainly clobbered | ||
| 107 | */ | ||
| 108 | stmdb sp!, {r0-r3, ip, lr} | ||
| 109 | bl\cond trace_hardirqs_on | ||
| 110 | ldmia sp!, {r0-r3, ip, lr} | ||
| 111 | #endif | ||
| 112 | .endm | ||
| 113 | |||
| 114 | .macro asm_trace_hardirqs_on | ||
| 115 | asm_trace_hardirqs_on_cond al | ||
| 116 | .endm | ||
| 117 | |||
| 118 | .macro disable_irq | ||
| 119 | disable_irq_notrace | ||
| 120 | asm_trace_hardirqs_off | ||
| 121 | .endm | ||
| 122 | |||
| 123 | .macro enable_irq | ||
| 124 | asm_trace_hardirqs_on | ||
| 125 | enable_irq_notrace | ||
| 126 | .endm | ||
| 94 | /* | 127 | /* |
| 95 | * Save the current IRQ state and disable IRQs. Note that this macro | 128 | * Save the current IRQ state and disable IRQs. Note that this macro |
| 96 | * assumes FIQs are enabled, and that the processor is in SVC mode. | 129 | * assumes FIQs are enabled, and that the processor is in SVC mode. |
| @@ -104,10 +137,16 @@ | |||
| 104 | * Restore interrupt state previously stored in a register. We don't | 137 | * Restore interrupt state previously stored in a register. We don't |
| 105 | * guarantee that this will preserve the flags. | 138 | * guarantee that this will preserve the flags. |
| 106 | */ | 139 | */ |
| 107 | .macro restore_irqs, oldcpsr | 140 | .macro restore_irqs_notrace, oldcpsr |
| 108 | msr cpsr_c, \oldcpsr | 141 | msr cpsr_c, \oldcpsr |
| 109 | .endm | 142 | .endm |
| 110 | 143 | ||
| 144 | .macro restore_irqs, oldcpsr | ||
| 145 | tst \oldcpsr, #PSR_I_BIT | ||
| 146 | asm_trace_hardirqs_on_cond eq | ||
| 147 | restore_irqs_notrace \oldcpsr | ||
| 148 | .endm | ||
| 149 | |||
| 111 | #define USER(x...) \ | 150 | #define USER(x...) \ |
| 112 | 9999: x; \ | 151 | 9999: x; \ |
| 113 | .section __ex_table,"a"; \ | 152 | .section __ex_table,"a"; \ |
diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S index fc8af43c5000..792abd0dfae1 100644 --- a/arch/arm/kernel/entry-armv.S +++ b/arch/arm/kernel/entry-armv.S | |||
| @@ -151,6 +151,8 @@ ENDPROC(__und_invalid) | |||
| 151 | @ r4 - orig_r0 (see pt_regs definition in ptrace.h) | 151 | @ r4 - orig_r0 (see pt_regs definition in ptrace.h) |
| 152 | @ | 152 | @ |
| 153 | stmia r5, {r0 - r4} | 153 | stmia r5, {r0 - r4} |
| 154 | |||
| 155 | asm_trace_hardirqs_off | ||
| 154 | .endm | 156 | .endm |
| 155 | 157 | ||
| 156 | .align 5 | 158 | .align 5 |
| @@ -206,9 +208,6 @@ ENDPROC(__dabt_svc) | |||
| 206 | __irq_svc: | 208 | __irq_svc: |
| 207 | svc_entry | 209 | svc_entry |
| 208 | 210 | ||
| 209 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
| 210 | bl trace_hardirqs_off | ||
| 211 | #endif | ||
| 212 | #ifdef CONFIG_PREEMPT | 211 | #ifdef CONFIG_PREEMPT |
| 213 | get_thread_info tsk | 212 | get_thread_info tsk |
| 214 | ldr r8, [tsk, #TI_PREEMPT] @ get preempt count | 213 | ldr r8, [tsk, #TI_PREEMPT] @ get preempt count |
| @@ -383,6 +382,8 @@ ENDPROC(__pabt_svc) | |||
| 383 | @ Clear FP to mark the first stack frame | 382 | @ Clear FP to mark the first stack frame |
| 384 | @ | 383 | @ |
| 385 | zero_fp | 384 | zero_fp |
| 385 | |||
| 386 | asm_trace_hardirqs_off | ||
| 386 | .endm | 387 | .endm |
| 387 | 388 | ||
| 388 | .macro kuser_cmpxchg_check | 389 | .macro kuser_cmpxchg_check |
| @@ -437,9 +438,6 @@ __irq_usr: | |||
| 437 | usr_entry | 438 | usr_entry |
| 438 | kuser_cmpxchg_check | 439 | kuser_cmpxchg_check |
| 439 | 440 | ||
| 440 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
| 441 | bl trace_hardirqs_off | ||
| 442 | #endif | ||
| 443 | get_thread_info tsk | 441 | get_thread_info tsk |
| 444 | #ifdef CONFIG_PREEMPT | 442 | #ifdef CONFIG_PREEMPT |
| 445 | ldr r8, [tsk, #TI_PREEMPT] @ get preempt count | 443 | ldr r8, [tsk, #TI_PREEMPT] @ get preempt count |
diff --git a/arch/arm/lib/bitops.h b/arch/arm/lib/bitops.h index c7f2627385e7..d42252918bfb 100644 --- a/arch/arm/lib/bitops.h +++ b/arch/arm/lib/bitops.h | |||
| @@ -60,8 +60,8 @@ | |||
| 60 | tst r2, r0, lsl r3 | 60 | tst r2, r0, lsl r3 |
| 61 | \instr r2, r2, r0, lsl r3 | 61 | \instr r2, r2, r0, lsl r3 |
| 62 | \store r2, [r1] | 62 | \store r2, [r1] |
| 63 | restore_irqs ip | ||
| 64 | moveq r0, #0 | 63 | moveq r0, #0 |
| 64 | restore_irqs ip | ||
| 65 | mov pc, lr | 65 | mov pc, lr |
| 66 | .endm | 66 | .endm |
| 67 | #endif | 67 | #endif |
