blob: b7d9a16a74511d74194515042f703ecf940e5f24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "asm/ptrace.h"
Jeff Dike8192ab42008-02-04 22:30:53 -080014#include "asm/pgtable.h"
Allan Gravesfad1c452005-10-04 14:53:52 -040015#include "registers.h"
Jeff Dike3c917352006-09-27 01:50:40 -070016#include "sysdep/archsetjmp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18struct mm_struct;
19
20struct thread_struct {
Jeff Dikeba180fd2007-10-16 01:27:00 -070021 struct task_struct *saved_task;
22 /*
23 * This flag is set to 1 before calling do_fork (and analyzed in
Paolo 'Blaisorblade' Giarrussoacef2e52005-05-01 08:58:56 -070024 * copy_thread) to mark that we are begin called from userspace (fork /
25 * vfork / clone), and reset to 0 after. It is left to 0 when called
Jeff Dikeba180fd2007-10-16 01:27:00 -070026 * from kernelspace (i.e. kernel_thread() or fork_idle(),
27 * as of 2.6.11).
28 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 int forking;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 struct pt_regs regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 int singlestep_syscall;
32 void *fault_addr;
Jeff Dikefab95c52007-10-16 01:27:05 -070033 jmp_buf *fault_catcher;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct task_struct *prev_sched;
35 unsigned long temp_stack;
Jeff Dikefab95c52007-10-16 01:27:05 -070036 jmp_buf *exec_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct arch_thread arch;
Jeff Dike77bf4402007-10-16 01:26:58 -070038 jmp_buf switch_buf;
39 int mm_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 struct {
41 int op;
42 union {
43 struct {
44 int pid;
45 } fork, exec;
46 struct {
47 int (*proc)(void *);
48 void *arg;
49 } thread;
50 struct {
51 void (*proc)(void *);
52 void *arg;
53 } cb;
54 } u;
55 } request;
56};
57
58#define INIT_THREAD \
59{ \
60 .forking = 0, \
Jeff Dikeba180fd2007-10-16 01:27:00 -070061 .regs = EMPTY_REGS, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .fault_addr = NULL, \
63 .prev_sched = NULL, \
64 .temp_stack = 0, \
65 .exec_buf = NULL, \
66 .arch = INIT_ARCH_THREAD, \
67 .request = { 0 } \
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070extern struct task_struct *alloc_task_struct(void);
71
Jeff Dike77bf4402007-10-16 01:26:58 -070072static inline void release_thread(struct task_struct *task)
73{
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
Paolo 'Blaisorblade' Giarrussoc16993d2005-05-01 08:58:54 -070077
78static inline void prepare_to_copy(struct task_struct *tsk)
79{
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83extern unsigned long thread_saved_pc(struct task_struct *t);
84
85static inline void mm_copy_segments(struct mm_struct *from_mm,
86 struct mm_struct *new_mm)
87{
88}
89
90#define init_stack (init_thread_union.stack)
91
92/*
93 * User space process size: 3GB (default).
94 */
Jeff Dike42a2b542008-02-04 22:31:00 -080095#define TASK_SIZE (CONFIG_TOP_ADDR & PGDIR_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* This decides where the kernel will search for a free chunk of vm
98 * space during mmap's.
99 */
100#define TASK_UNMAPPED_BASE (0x40000000)
101
102extern void start_thread(struct pt_regs *regs, unsigned long entry,
103 unsigned long stack);
104
105struct cpuinfo_um {
106 unsigned long loops_per_jiffy;
107 int ipi_pipe[2];
108};
109
110extern struct cpuinfo_um boot_cpu_data;
111
112#define my_cpu_data cpu_data[smp_processor_id()]
113
114#ifdef CONFIG_SMP
115extern struct cpuinfo_um cpu_data[];
116#define current_cpu_data cpu_data[smp_processor_id()]
117#else
118#define cpu_data (&boot_cpu_data)
119#define current_cpu_data boot_cpu_data
120#endif
121
Allan Gravesfad1c452005-10-04 14:53:52 -0400122
Jeff Dike77bf4402007-10-16 01:26:58 -0700123#define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
Jeff Dikec1127462008-02-04 22:30:36 -0800124extern unsigned long get_wchan(struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126#endif