Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 2 | * arch/arm/include/asm/processor.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 1995-1999 Russell King |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #ifndef __ASM_ARM_PROCESSOR_H |
| 12 | #define __ASM_ARM_PROCESSOR_H |
| 13 | |
| 14 | /* |
| 15 | * Default implementation of macro that returns current |
| 16 | * instruction pointer ("program counter"). |
| 17 | */ |
| 18 | #define current_text_addr() ({ __label__ _l; _l: &&_l;}) |
| 19 | |
| 20 | #ifdef __KERNEL__ |
| 21 | |
Will Deacon | 864232f | 2010-09-03 10:42:55 +0100 | [diff] [blame] | 22 | #include <asm/hw_breakpoint.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/types.h> |
| 25 | |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 26 | #ifdef __KERNEL__ |
Lennert Buytenhek | 794baba | 2008-12-05 03:25:47 +0100 | [diff] [blame] | 27 | #define STACK_TOP ((current->personality & ADDR_LIMIT_32BIT) ? \ |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 28 | TASK_SIZE : TASK_SIZE_26) |
| 29 | #define STACK_TOP_MAX TASK_SIZE |
| 30 | #endif |
| 31 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 32 | extern unsigned int boot_reason; |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct debug_info { |
Will Deacon | 864232f | 2010-09-03 10:42:55 +0100 | [diff] [blame] | 35 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
| 36 | struct perf_event *hbp[ARM_MAX_HBP_SLOTS]; |
| 37 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | struct thread_struct { |
| 41 | /* fault info */ |
| 42 | unsigned long address; |
| 43 | unsigned long trap_no; |
| 44 | unsigned long error_code; |
| 45 | /* debugging */ |
| 46 | struct debug_info debug; |
| 47 | }; |
| 48 | |
| 49 | #define INIT_THREAD { } |
| 50 | |
Hyok S. Choi | e72b047 | 2006-01-13 21:04:17 +0000 | [diff] [blame] | 51 | #ifdef CONFIG_MMU |
| 52 | #define nommu_start_thread(regs) do { } while (0) |
| 53 | #else |
| 54 | #define nommu_start_thread(regs) regs->ARM_r10 = current->mm->start_data |
| 55 | #endif |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #define start_thread(regs,pc,sp) \ |
| 58 | ({ \ |
| 59 | unsigned long *stack = (unsigned long *)sp; \ |
Russell King | 59f0cb0 | 2008-10-27 11:24:09 +0000 | [diff] [blame] | 60 | memset(regs->uregs, 0, sizeof(regs->uregs)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | if (current->personality & ADDR_LIMIT_32BIT) \ |
| 62 | regs->ARM_cpsr = USR_MODE; \ |
| 63 | else \ |
| 64 | regs->ARM_cpsr = USR26_MODE; \ |
| 65 | if (elf_hwcap & HWCAP_THUMB && pc & 1) \ |
| 66 | regs->ARM_cpsr |= PSR_T_BIT; \ |
Catalin Marinas | 2658485 | 2009-05-30 14:00:18 +0100 | [diff] [blame] | 67 | regs->ARM_cpsr |= PSR_ENDSTATE; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | regs->ARM_pc = pc & ~1; /* pc */ \ |
| 69 | regs->ARM_sp = sp; /* sp */ \ |
| 70 | regs->ARM_r2 = stack[2]; /* r2 (envp) */ \ |
| 71 | regs->ARM_r1 = stack[1]; /* r1 (argv) */ \ |
| 72 | regs->ARM_r0 = stack[0]; /* r0 (argc) */ \ |
Hyok S. Choi | e72b047 | 2006-01-13 21:04:17 +0000 | [diff] [blame] | 73 | nommu_start_thread(regs); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | }) |
| 75 | |
| 76 | /* Forward declaration, a strange C thing */ |
| 77 | struct task_struct; |
| 78 | |
| 79 | /* Free all resources held by a thread. */ |
| 80 | extern void release_thread(struct task_struct *); |
| 81 | |
| 82 | /* Prepare to copy thread state - unlazy all lazy status */ |
| 83 | #define prepare_to_copy(tsk) do { } while (0) |
| 84 | |
| 85 | unsigned long get_wchan(struct task_struct *p); |
| 86 | |
Will Deacon | 5dab26a | 2011-03-04 12:38:54 +0100 | [diff] [blame] | 87 | #if __LINUX_ARM_ARCH__ == 6 || defined(CONFIG_ARM_ERRATA_754327) |
Will Deacon | 534be1d | 2010-06-21 15:29:03 +0100 | [diff] [blame] | 88 | #define cpu_relax() smp_mb() |
| 89 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | #define cpu_relax() barrier() |
Will Deacon | 534be1d | 2010-06-21 15:29:03 +0100 | [diff] [blame] | 91 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
David Howells | 9f97da7 | 2012-03-28 18:30:01 +0100 | [diff] [blame] | 93 | void cpu_idle_wait(void); |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* |
| 96 | * Create a new kernel thread |
| 97 | */ |
| 98 | extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); |
| 99 | |
Al Viro | 815d5ec | 2006-01-12 01:05:57 -0800 | [diff] [blame] | 100 | #define task_pt_regs(p) \ |
Al Viro | 32d39a9 | 2006-01-12 01:05:58 -0800 | [diff] [blame] | 101 | ((struct pt_regs *)(THREAD_START_SP + task_stack_page(p)) - 1) |
Al Viro | 815d5ec | 2006-01-12 01:05:57 -0800 | [diff] [blame] | 102 | |
| 103 | #define KSTK_EIP(tsk) task_pt_regs(tsk)->ARM_pc |
| 104 | #define KSTK_ESP(tsk) task_pt_regs(tsk)->ARM_sp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * Prefetching support - only ARMv5. |
| 108 | */ |
| 109 | #if __LINUX_ARM_ARCH__ >= 5 |
| 110 | |
| 111 | #define ARCH_HAS_PREFETCH |
Nicolas Pitre | 0282884 | 2006-12-13 18:39:26 +0100 | [diff] [blame] | 112 | static inline void prefetch(const void *ptr) |
| 113 | { |
| 114 | __asm__ __volatile__( |
Nicolas Pitre | 16f719d | 2008-08-12 22:10:59 +0100 | [diff] [blame] | 115 | "pld\t%a0" |
Nicolas Pitre | 0282884 | 2006-12-13 18:39:26 +0100 | [diff] [blame] | 116 | : |
Nicolas Pitre | 16f719d | 2008-08-12 22:10:59 +0100 | [diff] [blame] | 117 | : "p" (ptr) |
Nicolas Pitre | 0282884 | 2006-12-13 18:39:26 +0100 | [diff] [blame] | 118 | : "cc"); |
| 119 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | #define ARCH_HAS_PREFETCHW |
| 122 | #define prefetchw(ptr) prefetch(ptr) |
| 123 | |
| 124 | #define ARCH_HAS_SPINLOCK_PREFETCH |
| 125 | #define spin_lock_prefetch(x) do { } while (0) |
| 126 | |
| 127 | #endif |
| 128 | |
Laura Abbott | 10771c2 | 2013-04-19 17:35:51 -0700 | [diff] [blame] | 129 | #define HAVE_ARCH_PICK_MMAP_LAYOUT |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | #endif |
| 132 | |
| 133 | #endif /* __ASM_ARM_PROCESSOR_H */ |