]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/um/include/asm/processor-generic.h
Merge remote-tracking branch 'regulator/fix/max77802' into regulator-linus
[mirror_ubuntu-artful-kernel.git] / arch / um / include / asm / processor-generic.h
CommitLineData
1da177e4 1/*
ba180fd4 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_PROCESSOR_GENERIC_H
7#define __UM_PROCESSOR_GENERIC_H
8
9struct pt_regs;
10
11struct task_struct;
12
37185b33
AV
13#include <asm/ptrace.h>
14#include <registers.h>
15#include <sysdep/archsetjmp.h>
1da177e4 16
607647ab
RW
17#include <linux/prefetch.h>
18
1da177e4
LT
19struct mm_struct;
20
21struct thread_struct {
1da177e4 22 struct pt_regs regs;
f72c22e4 23 struct pt_regs *segv_regs;
1da177e4
LT
24 int singlestep_syscall;
25 void *fault_addr;
fab95c55 26 jmp_buf *fault_catcher;
1da177e4 27 struct task_struct *prev_sched;
1da177e4 28 struct arch_thread arch;
77bf4400 29 jmp_buf switch_buf;
1da177e4
LT
30 struct {
31 int op;
32 union {
33 struct {
34 int pid;
35 } fork, exec;
36 struct {
37 int (*proc)(void *);
38 void *arg;
39 } thread;
40 struct {
41 void (*proc)(void *);
42 void *arg;
43 } cb;
44 } u;
45 } request;
46};
47
48#define INIT_THREAD \
49{ \
ba180fd4 50 .regs = EMPTY_REGS, \
1da177e4
LT
51 .fault_addr = NULL, \
52 .prev_sched = NULL, \
1da177e4
LT
53 .arch = INIT_ARCH_THREAD, \
54 .request = { 0 } \
55}
56
77bf4400
JD
57static inline void release_thread(struct task_struct *task)
58{
59}
60
1da177e4
LT
61static inline void mm_copy_segments(struct mm_struct *from_mm,
62 struct mm_struct *new_mm)
63{
64}
65
66#define init_stack (init_thread_union.stack)
67
68/*
69 * User space process size: 3GB (default).
70 */
536788fe
JD
71extern unsigned long task_size;
72
73#define TASK_SIZE (task_size)
1da177e4 74
922a70d3
DH
75#undef STACK_TOP
76#undef STACK_TOP_MAX
77
78extern unsigned long stacksizelim;
79
80#define STACK_ROOM (stacksizelim)
81#define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE)
82#define STACK_TOP_MAX STACK_TOP
83
1da177e4
LT
84/* This decides where the kernel will search for a free chunk of vm
85 * space during mmap's.
86 */
87#define TASK_UNMAPPED_BASE (0x40000000)
88
89extern void start_thread(struct pt_regs *regs, unsigned long entry,
90 unsigned long stack);
91
92struct cpuinfo_um {
93 unsigned long loops_per_jiffy;
94 int ipi_pipe[2];
95};
96
97extern struct cpuinfo_um boot_cpu_data;
98
1da177e4
LT
99#define cpu_data (&boot_cpu_data)
100#define current_cpu_data boot_cpu_data
1da177e4 101
77bf4400 102#define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
c1127465 103extern unsigned long get_wchan(struct task_struct *p);
1da177e4 104
fad1c45c 105#endif