diff options
author | David Howells <dhowells@redhat.com> | 2012-10-09 04:46:55 -0400 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2012-10-18 18:07:19 -0400 |
commit | 3ed8d11585fdfcd27fc507401db442eae70db79e (patch) | |
tree | 528e4f3097354d4c74a63d24aec653c116c39737 /arch/hexagon/include/uapi | |
parent | 32bec973a8435afc0b032da22174701f836549b2 (diff) |
UAPI: (Scripted) Disintegrate arch/hexagon/include/asm
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon/include/uapi')
-rw-r--r-- | arch/hexagon/include/uapi/asm/Kbuild | 12 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/bitsperlong.h | 26 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/byteorder.h | 28 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/kvm_para.h | 1 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/param.h | 26 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/ptrace.h | 35 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/registers.h | 236 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/setup.h | 29 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/sigcontext.h | 33 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/signal.h | 26 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/swab.h | 24 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/unistd.h | 31 | ||||
-rw-r--r-- | arch/hexagon/include/uapi/asm/user.h | 81 |
13 files changed, 588 insertions, 0 deletions
diff --git a/arch/hexagon/include/uapi/asm/Kbuild b/arch/hexagon/include/uapi/asm/Kbuild index baebb3da1d44..c31706c38631 100644 --- a/arch/hexagon/include/uapi/asm/Kbuild +++ b/arch/hexagon/include/uapi/asm/Kbuild | |||
@@ -1,3 +1,15 @@ | |||
1 | # UAPI Header export list | 1 | # UAPI Header export list |
2 | include include/uapi/asm-generic/Kbuild.asm | 2 | include include/uapi/asm-generic/Kbuild.asm |
3 | 3 | ||
4 | header-y += bitsperlong.h | ||
5 | header-y += byteorder.h | ||
6 | header-y += kvm_para.h | ||
7 | header-y += param.h | ||
8 | header-y += ptrace.h | ||
9 | header-y += registers.h | ||
10 | header-y += setup.h | ||
11 | header-y += sigcontext.h | ||
12 | header-y += signal.h | ||
13 | header-y += swab.h | ||
14 | header-y += unistd.h | ||
15 | header-y += user.h | ||
diff --git a/arch/hexagon/include/uapi/asm/bitsperlong.h b/arch/hexagon/include/uapi/asm/bitsperlong.h new file mode 100644 index 000000000000..2701cae3426e --- /dev/null +++ b/arch/hexagon/include/uapi/asm/bitsperlong.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef __ASM_HEXAGON_BITSPERLONG_H | ||
20 | #define __ASM_HEXAGON_BITSPERLONG_H | ||
21 | |||
22 | #define __BITS_PER_LONG 32 | ||
23 | |||
24 | #include <asm-generic/bitsperlong.h> | ||
25 | |||
26 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/byteorder.h b/arch/hexagon/include/uapi/asm/byteorder.h new file mode 100644 index 000000000000..0e19b9fe4ca6 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/byteorder.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_BYTEORDER_H | ||
20 | #define _ASM_BYTEORDER_H | ||
21 | |||
22 | #if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__) | ||
23 | # define __BYTEORDER_HAS_U64__ | ||
24 | #endif | ||
25 | |||
26 | #include <linux/byteorder/little_endian.h> | ||
27 | |||
28 | #endif /* _ASM_BYTEORDER_H */ | ||
diff --git a/arch/hexagon/include/uapi/asm/kvm_para.h b/arch/hexagon/include/uapi/asm/kvm_para.h new file mode 100644 index 000000000000..14fab8f0b957 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/kvm_para.h | |||
@@ -0,0 +1 @@ | |||
#include <asm-generic/kvm_para.h> | |||
diff --git a/arch/hexagon/include/uapi/asm/param.h b/arch/hexagon/include/uapi/asm/param.h new file mode 100644 index 000000000000..285344bbd036 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/param.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_PARAM_H | ||
20 | #define _ASM_PARAM_H | ||
21 | |||
22 | #define EXEC_PAGESIZE 16384 | ||
23 | |||
24 | #include <asm-generic/param.h> | ||
25 | |||
26 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/ptrace.h b/arch/hexagon/include/uapi/asm/ptrace.h new file mode 100644 index 000000000000..3d2f607cd63c --- /dev/null +++ b/arch/hexagon/include/uapi/asm/ptrace.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * Ptrace definitions for the Hexagon architecture | ||
3 | * | ||
4 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
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 and | ||
8 | * only version 2 as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
18 | * 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | #ifndef _ASM_PTRACE_H | ||
22 | #define _ASM_PTRACE_H | ||
23 | |||
24 | #include <asm/registers.h> | ||
25 | |||
26 | #define instruction_pointer(regs) pt_elr(regs) | ||
27 | #define user_stack_pointer(regs) ((regs)->r29) | ||
28 | |||
29 | #define profile_pc(regs) instruction_pointer(regs) | ||
30 | |||
31 | /* kprobe-based event tracer support */ | ||
32 | extern int regs_query_register_offset(const char *name); | ||
33 | extern const char *regs_query_register_name(unsigned int offset); | ||
34 | |||
35 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/registers.h b/arch/hexagon/include/uapi/asm/registers.h new file mode 100644 index 000000000000..4dd741be855d --- /dev/null +++ b/arch/hexagon/include/uapi/asm/registers.h | |||
@@ -0,0 +1,236 @@ | |||
1 | /* | ||
2 | * Register definitions for the Hexagon architecture | ||
3 | * | ||
4 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
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 and | ||
8 | * only version 2 as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
18 | * 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | #ifndef _ASM_REGISTERS_H | ||
22 | #define _ASM_REGISTERS_H | ||
23 | |||
24 | #define SP r29 | ||
25 | |||
26 | #ifndef __ASSEMBLY__ | ||
27 | |||
28 | /* See kernel/entry.S for further documentation. */ | ||
29 | |||
30 | /* | ||
31 | * Entry code copies the event record out of guest registers into | ||
32 | * this structure (which is on the stack). | ||
33 | */ | ||
34 | |||
35 | struct hvm_event_record { | ||
36 | unsigned long vmel; /* Event Linkage (return address) */ | ||
37 | unsigned long vmest; /* Event context - pre-event SSR values */ | ||
38 | unsigned long vmpsp; /* Previous stack pointer */ | ||
39 | unsigned long vmbadva; /* Bad virtual address for addressing events */ | ||
40 | }; | ||
41 | |||
42 | struct pt_regs { | ||
43 | long restart_r0; /* R0 checkpoint for syscall restart */ | ||
44 | long syscall_nr; /* Only used in system calls */ | ||
45 | union { | ||
46 | struct { | ||
47 | unsigned long usr; | ||
48 | unsigned long preds; | ||
49 | }; | ||
50 | long long int predsusr; | ||
51 | }; | ||
52 | union { | ||
53 | struct { | ||
54 | unsigned long m0; | ||
55 | unsigned long m1; | ||
56 | }; | ||
57 | long long int m1m0; | ||
58 | }; | ||
59 | union { | ||
60 | struct { | ||
61 | unsigned long sa1; | ||
62 | unsigned long lc1; | ||
63 | }; | ||
64 | long long int lc1sa1; | ||
65 | }; | ||
66 | union { | ||
67 | struct { | ||
68 | unsigned long sa0; | ||
69 | unsigned long lc0; | ||
70 | }; | ||
71 | long long int lc0sa0; | ||
72 | }; | ||
73 | union { | ||
74 | struct { | ||
75 | unsigned long gp; | ||
76 | unsigned long ugp; | ||
77 | }; | ||
78 | long long int ugpgp; | ||
79 | }; | ||
80 | /* | ||
81 | * Be extremely careful with rearranging these, if at all. Some code | ||
82 | * assumes the 32 registers exist exactly like this in memory; | ||
83 | * e.g. kernel/ptrace.c | ||
84 | * e.g. kernel/signal.c (restore_sigcontext) | ||
85 | */ | ||
86 | union { | ||
87 | struct { | ||
88 | unsigned long r00; | ||
89 | unsigned long r01; | ||
90 | }; | ||
91 | long long int r0100; | ||
92 | }; | ||
93 | union { | ||
94 | struct { | ||
95 | unsigned long r02; | ||
96 | unsigned long r03; | ||
97 | }; | ||
98 | long long int r0302; | ||
99 | }; | ||
100 | union { | ||
101 | struct { | ||
102 | unsigned long r04; | ||
103 | unsigned long r05; | ||
104 | }; | ||
105 | long long int r0504; | ||
106 | }; | ||
107 | union { | ||
108 | struct { | ||
109 | unsigned long r06; | ||
110 | unsigned long r07; | ||
111 | }; | ||
112 | long long int r0706; | ||
113 | }; | ||
114 | union { | ||
115 | struct { | ||
116 | unsigned long r08; | ||
117 | unsigned long r09; | ||
118 | }; | ||
119 | long long int r0908; | ||
120 | }; | ||
121 | union { | ||
122 | struct { | ||
123 | unsigned long r10; | ||
124 | unsigned long r11; | ||
125 | }; | ||
126 | long long int r1110; | ||
127 | }; | ||
128 | union { | ||
129 | struct { | ||
130 | unsigned long r12; | ||
131 | unsigned long r13; | ||
132 | }; | ||
133 | long long int r1312; | ||
134 | }; | ||
135 | union { | ||
136 | struct { | ||
137 | unsigned long r14; | ||
138 | unsigned long r15; | ||
139 | }; | ||
140 | long long int r1514; | ||
141 | }; | ||
142 | union { | ||
143 | struct { | ||
144 | unsigned long r16; | ||
145 | unsigned long r17; | ||
146 | }; | ||
147 | long long int r1716; | ||
148 | }; | ||
149 | union { | ||
150 | struct { | ||
151 | unsigned long r18; | ||
152 | unsigned long r19; | ||
153 | }; | ||
154 | long long int r1918; | ||
155 | }; | ||
156 | union { | ||
157 | struct { | ||
158 | unsigned long r20; | ||
159 | unsigned long r21; | ||
160 | }; | ||
161 | long long int r2120; | ||
162 | }; | ||
163 | union { | ||
164 | struct { | ||
165 | unsigned long r22; | ||
166 | unsigned long r23; | ||
167 | }; | ||
168 | long long int r2322; | ||
169 | }; | ||
170 | union { | ||
171 | struct { | ||
172 | unsigned long r24; | ||
173 | unsigned long r25; | ||
174 | }; | ||
175 | long long int r2524; | ||
176 | }; | ||
177 | union { | ||
178 | struct { | ||
179 | unsigned long r26; | ||
180 | unsigned long r27; | ||
181 | }; | ||
182 | long long int r2726; | ||
183 | }; | ||
184 | union { | ||
185 | struct { | ||
186 | unsigned long r28; | ||
187 | unsigned long r29; | ||
188 | }; | ||
189 | long long int r2928; | ||
190 | }; | ||
191 | union { | ||
192 | struct { | ||
193 | unsigned long r30; | ||
194 | unsigned long r31; | ||
195 | }; | ||
196 | long long int r3130; | ||
197 | }; | ||
198 | /* VM dispatch pushes event record onto stack - we can build on it */ | ||
199 | struct hvm_event_record hvmer; | ||
200 | }; | ||
201 | |||
202 | /* Defines to conveniently access the values */ | ||
203 | |||
204 | /* | ||
205 | * As of the VM spec 0.5, these registers are now set/retrieved via a | ||
206 | * VM call. On the in-bound side, we just fetch the values | ||
207 | * at the entry points and stuff them into the old record in pt_regs. | ||
208 | * However, on the outbound side, probably at VM rte, we set the | ||
209 | * registers back. | ||
210 | */ | ||
211 | |||
212 | #define pt_elr(regs) ((regs)->hvmer.vmel) | ||
213 | #define pt_set_elr(regs, val) ((regs)->hvmer.vmel = (val)) | ||
214 | #define pt_cause(regs) ((regs)->hvmer.vmest & (HVM_VMEST_CAUSE_MSK)) | ||
215 | #define user_mode(regs) \ | ||
216 | (((regs)->hvmer.vmest & (HVM_VMEST_UM_MSK << HVM_VMEST_UM_SFT)) != 0) | ||
217 | #define ints_enabled(regs) \ | ||
218 | (((regs)->hvmer.vmest & (HVM_VMEST_IE_MSK << HVM_VMEST_IE_SFT)) != 0) | ||
219 | #define pt_psp(regs) ((regs)->hvmer.vmpsp) | ||
220 | #define pt_badva(regs) ((regs)->hvmer.vmbadva) | ||
221 | |||
222 | #define pt_set_rte_sp(regs, sp) do {\ | ||
223 | pt_psp(regs) = (sp);\ | ||
224 | (regs)->SP = (unsigned long) &((regs)->hvmer);\ | ||
225 | } while (0) | ||
226 | |||
227 | #define pt_set_kmode(regs) \ | ||
228 | (regs)->hvmer.vmest = (HVM_VMEST_IE_MSK << HVM_VMEST_IE_SFT) | ||
229 | |||
230 | #define pt_set_usermode(regs) \ | ||
231 | (regs)->hvmer.vmest = (HVM_VMEST_UM_MSK << HVM_VMEST_UM_SFT) \ | ||
232 | | (HVM_VMEST_IE_MSK << HVM_VMEST_IE_SFT) | ||
233 | |||
234 | #endif /* ifndef __ASSEMBLY */ | ||
235 | |||
236 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/setup.h b/arch/hexagon/include/uapi/asm/setup.h new file mode 100644 index 000000000000..3b754c50bc0a --- /dev/null +++ b/arch/hexagon/include/uapi/asm/setup.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_SETUP_H | ||
20 | #define _ASM_SETUP_H | ||
21 | |||
22 | #include <linux/init.h> | ||
23 | #include <asm-generic/setup.h> | ||
24 | |||
25 | extern char external_cmdline_buffer; | ||
26 | |||
27 | void __init setup_arch_memory(void); | ||
28 | |||
29 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/sigcontext.h b/arch/hexagon/include/uapi/asm/sigcontext.h new file mode 100644 index 000000000000..ce6dcd995220 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/sigcontext.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_SIGCONTEXT_H | ||
20 | #define _ASM_SIGCONTEXT_H | ||
21 | |||
22 | #include <asm/user.h> | ||
23 | |||
24 | /* | ||
25 | * Signal context structure - contains all info to do with the state | ||
26 | * before the signal handler was invoked. Note: only add new entries | ||
27 | * to the end of the structure. | ||
28 | */ | ||
29 | struct sigcontext { | ||
30 | struct user_regs_struct sc_regs; | ||
31 | } __aligned(8); | ||
32 | |||
33 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/signal.h b/arch/hexagon/include/uapi/asm/signal.h new file mode 100644 index 000000000000..471c0562e17b --- /dev/null +++ b/arch/hexagon/include/uapi/asm/signal.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_SIGNAL_H | ||
20 | #define _ASM_SIGNAL_H | ||
21 | |||
22 | extern unsigned long __rt_sigtramp_template[2]; | ||
23 | |||
24 | #include <asm-generic/signal.h> | ||
25 | |||
26 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/swab.h b/arch/hexagon/include/uapi/asm/swab.h new file mode 100644 index 000000000000..99cf0be3fb83 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/swab.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef _ASM_SWAB_H | ||
20 | #define _ASM_SWAB_H | ||
21 | |||
22 | #define __SWAB_64_THRU_32__ | ||
23 | |||
24 | #endif | ||
diff --git a/arch/hexagon/include/uapi/asm/unistd.h b/arch/hexagon/include/uapi/asm/unistd.h new file mode 100644 index 000000000000..c0d5565030ae --- /dev/null +++ b/arch/hexagon/include/uapi/asm/unistd.h | |||
@@ -0,0 +1,31 @@ | |||
1 | /* | ||
2 | * Syscall support for Hexagon | ||
3 | * | ||
4 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
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 and | ||
8 | * only version 2 as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this program; if not, write to the Free Software | ||
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
18 | * 02110-1301, USA. | ||
19 | */ | ||
20 | |||
21 | /* | ||
22 | * The kernel pulls this unistd.h in three different ways: | ||
23 | * 1. the "normal" way which gets all the __NR defines | ||
24 | * 2. with __SYSCALL defined to produce function declarations | ||
25 | * 3. with __SYSCALL defined to produce syscall table initialization | ||
26 | * See also: syscalltab.c | ||
27 | */ | ||
28 | |||
29 | #define sys_mmap2 sys_mmap_pgoff | ||
30 | |||
31 | #include <asm-generic/unistd.h> | ||
diff --git a/arch/hexagon/include/uapi/asm/user.h b/arch/hexagon/include/uapi/asm/user.h new file mode 100644 index 000000000000..3a55078543d1 --- /dev/null +++ b/arch/hexagon/include/uapi/asm/user.h | |||
@@ -0,0 +1,81 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 and | ||
6 | * only version 2 as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
16 | * 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef HEXAGON_ASM_USER_H | ||
20 | #define HEXAGON_ASM_USER_H | ||
21 | |||
22 | /* | ||
23 | * Layout for registers passed in elf core dumps to userspace. | ||
24 | * | ||
25 | * Basically a rearranged subset of "pt_regs". | ||
26 | * | ||
27 | * Interested parties: libc, gdb... | ||
28 | */ | ||
29 | |||
30 | struct user_regs_struct { | ||
31 | unsigned long r0; | ||
32 | unsigned long r1; | ||
33 | unsigned long r2; | ||
34 | unsigned long r3; | ||
35 | unsigned long r4; | ||
36 | unsigned long r5; | ||
37 | unsigned long r6; | ||
38 | unsigned long r7; | ||
39 | unsigned long r8; | ||
40 | unsigned long r9; | ||
41 | unsigned long r10; | ||
42 | unsigned long r11; | ||
43 | unsigned long r12; | ||
44 | unsigned long r13; | ||
45 | unsigned long r14; | ||
46 | unsigned long r15; | ||
47 | unsigned long r16; | ||
48 | unsigned long r17; | ||
49 | unsigned long r18; | ||
50 | unsigned long r19; | ||
51 | unsigned long r20; | ||
52 | unsigned long r21; | ||
53 | unsigned long r22; | ||
54 | unsigned long r23; | ||
55 | unsigned long r24; | ||
56 | unsigned long r25; | ||
57 | unsigned long r26; | ||
58 | unsigned long r27; | ||
59 | unsigned long r28; | ||
60 | unsigned long r29; | ||
61 | unsigned long r30; | ||
62 | unsigned long r31; | ||
63 | unsigned long sa0; | ||
64 | unsigned long lc0; | ||
65 | unsigned long sa1; | ||
66 | unsigned long lc1; | ||
67 | unsigned long m0; | ||
68 | unsigned long m1; | ||
69 | unsigned long usr; | ||
70 | unsigned long p3_0; | ||
71 | unsigned long gp; | ||
72 | unsigned long ugp; | ||
73 | unsigned long pc; | ||
74 | unsigned long cause; | ||
75 | unsigned long badva; | ||
76 | unsigned long pad1; /* pad out to 48 words total */ | ||
77 | unsigned long pad2; /* pad out to 48 words total */ | ||
78 | unsigned long pad3; /* pad out to 48 words total */ | ||
79 | }; | ||
80 | |||
81 | #endif | ||