blob: 3a2cd22504ee6040666c665e057e6177d25d41f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/processor.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 Deacon864232f2010-09-03 10:42:55 +010022#include <asm/hw_breakpoint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/types.h>
25
David Howells922a70d2008-02-08 04:19:26 -080026#ifdef __KERNEL__
Lennert Buytenhek794baba2008-12-05 03:25:47 +010027#define STACK_TOP ((current->personality & ADDR_LIMIT_32BIT) ? \
David Howells922a70d2008-02-08 04:19:26 -080028 TASK_SIZE : TASK_SIZE_26)
29#define STACK_TOP_MAX TASK_SIZE
30#endif
31
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070032extern unsigned int boot_reason;
David Keitel8ae67af2013-03-26 18:50:03 -070033extern unsigned int cold_boot;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035struct debug_info {
Will Deacon864232f2010-09-03 10:42:55 +010036#ifdef CONFIG_HAVE_HW_BREAKPOINT
37 struct perf_event *hbp[ARM_MAX_HBP_SLOTS];
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41struct thread_struct {
42 /* fault info */
43 unsigned long address;
44 unsigned long trap_no;
45 unsigned long error_code;
46 /* debugging */
47 struct debug_info debug;
48};
49
50#define INIT_THREAD { }
51
Hyok S. Choie72b0472006-01-13 21:04:17 +000052#ifdef CONFIG_MMU
53#define nommu_start_thread(regs) do { } while (0)
54#else
55#define nommu_start_thread(regs) regs->ARM_r10 = current->mm->start_data
56#endif
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define start_thread(regs,pc,sp) \
59({ \
60 unsigned long *stack = (unsigned long *)sp; \
Russell King59f0cb02008-10-27 11:24:09 +000061 memset(regs->uregs, 0, sizeof(regs->uregs)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (current->personality & ADDR_LIMIT_32BIT) \
63 regs->ARM_cpsr = USR_MODE; \
64 else \
65 regs->ARM_cpsr = USR26_MODE; \
66 if (elf_hwcap & HWCAP_THUMB && pc & 1) \
67 regs->ARM_cpsr |= PSR_T_BIT; \
Catalin Marinas26584852009-05-30 14:00:18 +010068 regs->ARM_cpsr |= PSR_ENDSTATE; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 regs->ARM_pc = pc & ~1; /* pc */ \
70 regs->ARM_sp = sp; /* sp */ \
71 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
72 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
73 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
Hyok S. Choie72b0472006-01-13 21:04:17 +000074 nommu_start_thread(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070075})
76
77/* Forward declaration, a strange C thing */
78struct task_struct;
79
80/* Free all resources held by a thread. */
81extern void release_thread(struct task_struct *);
82
83/* Prepare to copy thread state - unlazy all lazy status */
84#define prepare_to_copy(tsk) do { } while (0)
85
86unsigned long get_wchan(struct task_struct *p);
87
Will Deacon5dab26a2011-03-04 12:38:54 +010088#if __LINUX_ARM_ARCH__ == 6 || defined(CONFIG_ARM_ERRATA_754327)
Will Deacon534be1d2010-06-21 15:29:03 +010089#define cpu_relax() smp_mb()
90#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define cpu_relax() barrier()
Will Deacon534be1d2010-06-21 15:29:03 +010092#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
David Howells9f97da72012-03-28 18:30:01 +010094void cpu_idle_wait(void);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * Create a new kernel thread
98 */
99extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
100
Al Viro815d5ec2006-01-12 01:05:57 -0800101#define task_pt_regs(p) \
Al Viro32d39a92006-01-12 01:05:58 -0800102 ((struct pt_regs *)(THREAD_START_SP + task_stack_page(p)) - 1)
Al Viro815d5ec2006-01-12 01:05:57 -0800103
104#define KSTK_EIP(tsk) task_pt_regs(tsk)->ARM_pc
105#define KSTK_ESP(tsk) task_pt_regs(tsk)->ARM_sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/*
108 * Prefetching support - only ARMv5.
109 */
110#if __LINUX_ARM_ARCH__ >= 5
111
112#define ARCH_HAS_PREFETCH
Nicolas Pitre02828842006-12-13 18:39:26 +0100113static inline void prefetch(const void *ptr)
114{
115 __asm__ __volatile__(
Nicolas Pitre16f719d2008-08-12 22:10:59 +0100116 "pld\t%a0"
Nicolas Pitre02828842006-12-13 18:39:26 +0100117 :
Nicolas Pitre16f719d2008-08-12 22:10:59 +0100118 : "p" (ptr)
Nicolas Pitre02828842006-12-13 18:39:26 +0100119 : "cc");
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122#define ARCH_HAS_PREFETCHW
123#define prefetchw(ptr) prefetch(ptr)
124
125#define ARCH_HAS_SPINLOCK_PREFETCH
126#define spin_lock_prefetch(x) do { } while (0)
127
128#endif
129
Laura Abbott10771c22013-04-19 17:35:51 -0700130#define HAVE_ARCH_PICK_MMAP_LAYOUT
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#endif
133
134#endif /* __ASM_ARM_PROCESSOR_H */