VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / arch / ia64 / ia32 / ia32priv.h
1 #ifndef _ASM_IA64_IA32_PRIV_H
2 #define _ASM_IA64_IA32_PRIV_H
3
4 #include <linux/config.h>
5
6 #include <asm/ia32.h>
7
8 #ifdef CONFIG_IA32_SUPPORT
9
10 #include <linux/binfmts.h>
11 #include <linux/compat.h>
12 #include <linux/rbtree.h>
13
14 #include <asm/processor.h>
15
16 /*
17  * 32 bit structures for IA32 support.
18  */
19
20 #define IA32_PAGE_SIZE          (1UL << IA32_PAGE_SHIFT)
21 #define IA32_PAGE_MASK          (~(IA32_PAGE_SIZE - 1))
22 #define IA32_PAGE_ALIGN(addr)   (((addr) + IA32_PAGE_SIZE - 1) & IA32_PAGE_MASK)
23 #define IA32_CLOCKS_PER_SEC     100     /* Cast in stone for IA32 Linux */
24
25 /*
26  * partially mapped pages provide precise accounting of which 4k sub pages
27  * are mapped and which ones are not, thereby improving IA-32 compatibility.
28  */
29 struct partial_page {
30         struct partial_page     *next; /* linked list, sorted by address */
31         struct rb_node          pp_rb;
32         /* 64K is the largest "normal" page supported by ia64 ABI. So 4K*32
33          * should suffice.*/
34         unsigned int            bitmap;
35         unsigned int            base;
36 };
37
38 struct partial_page_list {
39         struct partial_page     *pp_head; /* list head, points to the lowest
40                                            * addressed partial page */
41         struct rb_root          ppl_rb;
42         struct partial_page     *pp_hint; /* pp_hint->next is the last
43                                            * accessed partial page */
44         atomic_t                pp_count; /* reference count */
45 };
46
47 #if PAGE_SHIFT > IA32_PAGE_SHIFT
48 struct partial_page_list* ia32_init_pp_list (void);
49 #else
50 # define ia32_init_pp_list()    0
51 #endif
52
53 /* sigcontext.h */
54 /*
55  * As documented in the iBCS2 standard..
56  *
57  * The first part of "struct _fpstate" is just the
58  * normal i387 hardware setup, the extra "status"
59  * word is used to save the coprocessor status word
60  * before entering the handler.
61  */
62 struct _fpreg_ia32 {
63        unsigned short significand[4];
64        unsigned short exponent;
65 };
66
67 struct _fpxreg_ia32 {
68         unsigned short significand[4];
69         unsigned short exponent;
70         unsigned short padding[3];
71 };
72
73 struct _xmmreg_ia32 {
74         unsigned int element[4];
75 };
76
77
78 struct _fpstate_ia32 {
79        unsigned int    cw,
80                        sw,
81                        tag,
82                        ipoff,
83                        cssel,
84                        dataoff,
85                        datasel;
86        struct _fpreg_ia32      _st[8];
87        unsigned short  status;
88        unsigned short  magic;          /* 0xffff = regular FPU data only */
89
90        /* FXSR FPU environment */
91        unsigned int         _fxsr_env[6];   /* FXSR FPU env is ignored */
92        unsigned int         mxcsr;
93        unsigned int         reserved;
94        struct _fpxreg_ia32  _fxsr_st[8];    /* FXSR FPU reg data is ignored */
95        struct _xmmreg_ia32  _xmm[8];
96        unsigned int         padding[56];
97 };
98
99 struct sigcontext_ia32 {
100        unsigned short gs, __gsh;
101        unsigned short fs, __fsh;
102        unsigned short es, __esh;
103        unsigned short ds, __dsh;
104        unsigned int edi;
105        unsigned int esi;
106        unsigned int ebp;
107        unsigned int esp;
108        unsigned int ebx;
109        unsigned int edx;
110        unsigned int ecx;
111        unsigned int eax;
112        unsigned int trapno;
113        unsigned int err;
114        unsigned int eip;
115        unsigned short cs, __csh;
116        unsigned int eflags;
117        unsigned int esp_at_signal;
118        unsigned short ss, __ssh;
119        unsigned int fpstate;            /* really (struct _fpstate_ia32 *) */
120        unsigned int oldmask;
121        unsigned int cr2;
122 };
123
124 /* user.h */
125 /*
126  * IA32 (Pentium III/4) FXSR, SSE support
127  *
128  * Provide support for the GDB 5.0+ PTRACE_{GET|SET}FPXREGS requests for
129  * interacting with the FXSR-format floating point environment.  Floating
130  * point data can be accessed in the regular format in the usual manner,
131  * and both the standard and SIMD floating point data can be accessed via
132  * the new ptrace requests.  In either case, changes to the FPU environment
133  * will be reflected in the task's state as expected.
134  */
135 struct ia32_user_i387_struct {
136         int     cwd;
137         int     swd;
138         int     twd;
139         int     fip;
140         int     fcs;
141         int     foo;
142         int     fos;
143         /* 8*10 bytes for each FP-reg = 80 bytes */
144         struct _fpreg_ia32      st_space[8];
145 };
146
147 struct ia32_user_fxsr_struct {
148         unsigned short  cwd;
149         unsigned short  swd;
150         unsigned short  twd;
151         unsigned short  fop;
152         int     fip;
153         int     fcs;
154         int     foo;
155         int     fos;
156         int     mxcsr;
157         int     reserved;
158         int     st_space[32];   /* 8*16 bytes for each FP-reg = 128 bytes */
159         int     xmm_space[32];  /* 8*16 bytes for each XMM-reg = 128 bytes */
160         int     padding[56];
161 };
162
163 /* signal.h */
164 #define IA32_SET_SA_HANDLER(ka,handler,restorer)                                \
165                                 ((ka)->sa.sa_handler = (__sighandler_t)         \
166                                         (((unsigned long)(restorer) << 32)      \
167                                          | ((handler) & 0xffffffff)))
168 #define IA32_SA_HANDLER(ka)     ((unsigned long) (ka)->sa.sa_handler & 0xffffffff)
169 #define IA32_SA_RESTORER(ka)    ((unsigned long) (ka)->sa.sa_handler >> 32)
170
171 struct sigaction32 {
172        unsigned int sa_handler;         /* Really a pointer, but need to deal with 32 bits */
173        unsigned int sa_flags;
174        unsigned int sa_restorer;        /* Another 32 bit pointer */
175        compat_sigset_t sa_mask;         /* A 32 bit mask */
176 };
177
178 struct old_sigaction32 {
179        unsigned int  sa_handler;        /* Really a pointer, but need to deal
180                                              with 32 bits */
181        compat_old_sigset_t sa_mask;             /* A 32 bit mask */
182        unsigned int sa_flags;
183        unsigned int sa_restorer;        /* Another 32 bit pointer */
184 };
185
186 typedef struct sigaltstack_ia32 {
187         unsigned int    ss_sp;
188         int             ss_flags;
189         unsigned int    ss_size;
190 } stack_ia32_t;
191
192 struct ucontext_ia32 {
193         unsigned int      uc_flags;
194         unsigned int      uc_link;
195         stack_ia32_t      uc_stack;
196         struct sigcontext_ia32 uc_mcontext;
197         sigset_t          uc_sigmask;   /* mask last for extensibility */
198 };
199
200 struct stat64 {
201         unsigned long long      st_dev;
202         unsigned char   __pad0[4];
203         unsigned int    __st_ino;
204         unsigned int    st_mode;
205         unsigned int    st_nlink;
206         unsigned int    st_uid;
207         unsigned int    st_gid;
208         unsigned long long      st_rdev;
209         unsigned char   __pad3[4];
210         unsigned int    st_size_lo;
211         unsigned int    st_size_hi;
212         unsigned int    st_blksize;
213         unsigned int    st_blocks;      /* Number 512-byte blocks allocated. */
214         unsigned int    __pad4;         /* future possible st_blocks high bits */
215         unsigned int    st_atime;
216         unsigned int    st_atime_nsec;
217         unsigned int    st_mtime;
218         unsigned int    st_mtime_nsec;
219         unsigned int    st_ctime;
220         unsigned int    st_ctime_nsec;
221         unsigned int    st_ino_lo;
222         unsigned int    st_ino_hi;
223 };
224
225 typedef union sigval32 {
226         int sival_int;
227         unsigned int sival_ptr;
228 } sigval_t32;
229
230 #define SIGEV_PAD_SIZE32 ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
231
232 typedef struct siginfo32 {
233         int si_signo;
234         int si_errno;
235         int si_code;
236
237         union {
238                 int _pad[((128/sizeof(int)) - 3)];
239
240                 /* kill() */
241                 struct {
242                         unsigned int _pid;      /* sender's pid */
243                         unsigned int _uid;      /* sender's uid */
244                 } _kill;
245
246                 /* POSIX.1b timers */
247                 struct {
248                         timer_t _tid;           /* timer id */
249                         int _overrun;           /* overrun count */
250                         char _pad[sizeof(unsigned int) - sizeof(int)];
251                         sigval_t32 _sigval;     /* same as below */
252                         int _sys_private;       /* not to be passed to user */
253                 } _timer;
254
255                 /* POSIX.1b signals */
256                 struct {
257                         unsigned int _pid;      /* sender's pid */
258                         unsigned int _uid;      /* sender's uid */
259                         sigval_t32 _sigval;
260                 } _rt;
261
262                 /* SIGCHLD */
263                 struct {
264                         unsigned int _pid;      /* which child */
265                         unsigned int _uid;      /* sender's uid */
266                         int _status;            /* exit code */
267                         compat_clock_t _utime;
268                         compat_clock_t _stime;
269                 } _sigchld;
270
271                 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
272                 struct {
273                         unsigned int _addr;     /* faulting insn/memory ref. */
274                 } _sigfault;
275
276                 /* SIGPOLL */
277                 struct {
278                         int _band;      /* POLL_IN, POLL_OUT, POLL_MSG */
279                         int _fd;
280                 } _sigpoll;
281         } _sifields;
282 } siginfo_t32;
283
284 typedef struct sigevent32 {
285         sigval_t32 sigev_value;
286         int sigev_signo;
287         int sigev_notify;
288         union {
289                 int _pad[SIGEV_PAD_SIZE32];
290                 struct {
291                         u32 _function;
292                         u32 _attribute; /* really pthread_attr_t */
293                 } _sigev_thread;
294         } _sigev_un;
295 } sigevent_t32;
296
297 struct old_linux32_dirent {
298         u32     d_ino;
299         u32     d_offset;
300         u16     d_namlen;
301         char    d_name[1];
302 };
303
304 /*
305  * IA-32 ELF specific definitions for IA-64.
306  */
307
308 #define _ASM_IA64_ELF_H         /* Don't include elf.h */
309
310 #include <linux/sched.h>
311 #include <asm/processor.h>
312
313 /*
314  * This is used to ensure we don't load something for the wrong architecture.
315  */
316 #define elf_check_arch(x) ((x)->e_machine == EM_386)
317
318 /*
319  * These are used to set parameters in the core dumps.
320  */
321 #define ELF_CLASS       ELFCLASS32
322 #define ELF_DATA        ELFDATA2LSB
323 #define ELF_ARCH        EM_386
324
325 #define IA32_PAGE_OFFSET        0xc0000000
326 #define IA32_STACK_TOP          IA32_PAGE_OFFSET
327
328 /*
329  * The system segments (GDT, TSS, LDT) have to be mapped below 4GB so the IA-32 engine can
330  * access them.
331  */
332 #define IA32_GDT_OFFSET         (IA32_PAGE_OFFSET)
333 #define IA32_TSS_OFFSET         (IA32_PAGE_OFFSET + PAGE_SIZE)
334 #define IA32_LDT_OFFSET         (IA32_PAGE_OFFSET + 2*PAGE_SIZE)
335
336 #define ELF_EXEC_PAGESIZE       IA32_PAGE_SIZE
337
338 /*
339  * This is the location that an ET_DYN program is loaded if exec'ed.
340  * Typical use of this is to invoke "./ld.so someprog" to test out a
341  * new version of the loader.  We need to make sure that it is out of
342  * the way of the program that it will "exec", and that there is
343  * sufficient room for the brk.
344  */
345 #define ELF_ET_DYN_BASE         (IA32_PAGE_OFFSET/3 + 0x1000000)
346
347 void ia64_elf32_init(struct pt_regs *regs);
348 #define ELF_PLAT_INIT(_r, load_addr)    ia64_elf32_init(_r)
349
350 #define elf_addr_t      u32
351
352 /* This macro yields a bitmask that programs can use to figure out
353    what instruction set this CPU supports.  */
354 #define ELF_HWCAP       0
355
356 /* This macro yields a string that ld.so will use to load
357    implementation specific libraries for optimization.  Not terribly
358    relevant until we have real hardware to play with... */
359 #define ELF_PLATFORM    0
360
361 #ifdef __KERNEL__
362 # define SET_PERSONALITY(EX,IBCS2)                              \
363         (current->personality = (IBCS2) ? PER_SVR4 : PER_LINUX)
364 #endif
365
366 #define IA32_EFLAG      0x200
367
368 /*
369  * IA-32 ELF specific definitions for IA-64.
370  */
371
372 #define __USER_CS      0x23
373 #define __USER_DS      0x2B
374
375 /*
376  * The per-cpu GDT has 32 entries: see <asm-i386/segment.h>
377  */
378 #define GDT_ENTRIES 32
379
380 #define GDT_SIZE        (GDT_ENTRIES * 8)
381
382 #define TSS_ENTRY 14
383 #define LDT_ENTRY       (TSS_ENTRY + 1)
384
385 #define IA32_SEGSEL_RPL         (0x3 << 0)
386 #define IA32_SEGSEL_TI          (0x1 << 2)
387 #define IA32_SEGSEL_INDEX_SHIFT 3
388
389 #define _TSS                    ((unsigned long) TSS_ENTRY << IA32_SEGSEL_INDEX_SHIFT)
390 #define _LDT                    ((unsigned long) LDT_ENTRY << IA32_SEGSEL_INDEX_SHIFT)
391
392 #define IA32_SEG_BASE           16
393 #define IA32_SEG_TYPE           40
394 #define IA32_SEG_SYS            44
395 #define IA32_SEG_DPL            45
396 #define IA32_SEG_P              47
397 #define IA32_SEG_HIGH_LIMIT     48
398 #define IA32_SEG_AVL            52
399 #define IA32_SEG_DB             54
400 #define IA32_SEG_G              55
401 #define IA32_SEG_HIGH_BASE      56
402
403 #define IA32_SEG_DESCRIPTOR(base, limit, segtype, nonsysseg, dpl, segpresent, avl, segdb, gran) \
404                (((limit) & 0xffff)                                                              \
405                 | (((unsigned long) (base) & 0xffffff) << IA32_SEG_BASE)                        \
406                 | ((unsigned long) (segtype) << IA32_SEG_TYPE)                                  \
407                 | ((unsigned long) (nonsysseg) << IA32_SEG_SYS)                                 \
408                 | ((unsigned long) (dpl) << IA32_SEG_DPL)                                       \
409                 | ((unsigned long) (segpresent) << IA32_SEG_P)                                  \
410                 | ((((unsigned long) (limit) >> 16) & 0xf) << IA32_SEG_HIGH_LIMIT)              \
411                 | ((unsigned long) (avl) << IA32_SEG_AVL)                                       \
412                 | ((unsigned long) (segdb) << IA32_SEG_DB)                                      \
413                 | ((unsigned long) (gran) << IA32_SEG_G)                                        \
414                 | ((((unsigned long) (base) >> 24) & 0xff) << IA32_SEG_HIGH_BASE))
415
416 #define SEG_LIM         32
417 #define SEG_TYPE        52
418 #define SEG_SYS         56
419 #define SEG_DPL         57
420 #define SEG_P           59
421 #define SEG_AVL         60
422 #define SEG_DB          62
423 #define SEG_G           63
424
425 /* Unscramble an IA-32 segment descriptor into the IA-64 format.  */
426 #define IA32_SEG_UNSCRAMBLE(sd)                                                                  \
427         (   (((sd) >> IA32_SEG_BASE) & 0xffffff) | ((((sd) >> IA32_SEG_HIGH_BASE) & 0xff) << 24) \
428          | ((((sd) & 0xffff) | ((((sd) >> IA32_SEG_HIGH_LIMIT) & 0xf) << 16)) << SEG_LIM)        \
429          | ((((sd) >> IA32_SEG_TYPE) & 0xf) << SEG_TYPE)                                         \
430          | ((((sd) >> IA32_SEG_SYS) & 0x1) << SEG_SYS)                                           \
431          | ((((sd) >> IA32_SEG_DPL) & 0x3) << SEG_DPL)                                           \
432          | ((((sd) >> IA32_SEG_P) & 0x1) << SEG_P)                                               \
433          | ((((sd) >> IA32_SEG_AVL) & 0x1) << SEG_AVL)                                           \
434          | ((((sd) >> IA32_SEG_DB) & 0x1) << SEG_DB)                                             \
435          | ((((sd) >> IA32_SEG_G) & 0x1) << SEG_G))
436
437 #define IA32_IOBASE     0x2000000000000000 /* Virtual address for I/O space */
438
439 #define IA32_CR0        0x80000001      /* Enable PG and PE bits */
440 #define IA32_CR4        0x600           /* MMXEX and FXSR on */
441
442 /*
443  *  IA32 floating point control registers starting values
444  */
445
446 #define IA32_FSR_DEFAULT        0x55550000              /* set all tag bits */
447 #define IA32_FCR_DEFAULT        0x17800000037fUL        /* extended precision, all masks */
448
449 #define IA32_PTRACE_GETREGS     12
450 #define IA32_PTRACE_SETREGS     13
451 #define IA32_PTRACE_GETFPREGS   14
452 #define IA32_PTRACE_SETFPREGS   15
453 #define IA32_PTRACE_GETFPXREGS  18
454 #define IA32_PTRACE_SETFPXREGS  19
455
456 #define ia32_start_thread(regs,new_ip,new_sp) do {                              \
457         set_fs(USER_DS);                                                        \
458         ia64_psr(regs)->cpl = 3;        /* set user mode */                     \
459         ia64_psr(regs)->ri = 0;         /* clear return slot number */          \
460         ia64_psr(regs)->is = 1;         /* IA-32 instruction set */             \
461         regs->cr_iip = new_ip;                                                  \
462         regs->ar_rsc = 0xc;             /* enforced lazy mode, priv. level 3 */ \
463         regs->ar_rnat = 0;                                                      \
464         regs->loadrs = 0;                                                       \
465         regs->r12 = new_sp;                                                     \
466 } while (0)
467
468 /*
469  * Local Descriptor Table (LDT) related declarations.
470  */
471
472 #define IA32_LDT_ENTRIES        8192            /* Maximum number of LDT entries supported. */
473 #define IA32_LDT_ENTRY_SIZE     8               /* The size of each LDT entry. */
474
475 #define LDT_entry_a(info) \
476         ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff))
477
478 #define LDT_entry_b(info)                               \
479         (((info)->base_addr & 0xff000000) |             \
480         (((info)->base_addr & 0x00ff0000) >> 16) |      \
481         ((info)->limit & 0xf0000) |                     \
482         (((info)->read_exec_only ^ 1) << 9) |           \
483         ((info)->contents << 10) |                      \
484         (((info)->seg_not_present ^ 1) << 15) |         \
485         ((info)->seg_32bit << 22) |                     \
486         ((info)->limit_in_pages << 23) |                \
487         ((info)->useable << 20) |                       \
488         0x7100)
489
490 #define LDT_empty(info) (                       \
491         (info)->base_addr       == 0    &&      \
492         (info)->limit           == 0    &&      \
493         (info)->contents        == 0    &&      \
494         (info)->read_exec_only  == 1    &&      \
495         (info)->seg_32bit       == 0    &&      \
496         (info)->limit_in_pages  == 0    &&      \
497         (info)->seg_not_present == 1    &&      \
498         (info)->useable         == 0    )
499
500 static inline void
501 load_TLS (struct thread_struct *t, unsigned int cpu)
502 {
503         extern unsigned long *cpu_gdt_table[NR_CPUS];
504
505         memcpy(cpu_gdt_table[cpu] + GDT_ENTRY_TLS_MIN + 0, &t->tls_array[0], sizeof(long));
506         memcpy(cpu_gdt_table[cpu] + GDT_ENTRY_TLS_MIN + 1, &t->tls_array[1], sizeof(long));
507         memcpy(cpu_gdt_table[cpu] + GDT_ENTRY_TLS_MIN + 2, &t->tls_array[2], sizeof(long));
508 }
509
510 struct ia32_user_desc {
511         unsigned int entry_number;
512         unsigned int base_addr;
513         unsigned int limit;
514         unsigned int seg_32bit:1;
515         unsigned int contents:2;
516         unsigned int read_exec_only:1;
517         unsigned int limit_in_pages:1;
518         unsigned int seg_not_present:1;
519         unsigned int useable:1;
520 };
521
522 struct linux_binprm;
523
524 extern void ia32_init_addr_space (struct pt_regs *regs);
525 extern int ia32_setup_arg_pages (struct linux_binprm *bprm, int exec_stack);
526 extern unsigned long ia32_do_mmap (struct file *, unsigned long, unsigned long, int, int, loff_t);
527 extern void ia32_load_segment_descriptors (struct task_struct *task);
528
529 #define ia32f2ia64f(dst,src)                    \
530 do {                                            \
531         ia64_ldfe(6,src);                       \
532         ia64_stop();                            \
533         ia64_stf_spill(dst, 6);                 \
534 } while(0)
535
536 #define ia64f2ia32f(dst,src)                    \
537 do {                                            \
538         ia64_ldf_fill(6, src);                  \
539         ia64_stop();                            \
540         ia64_stfe(dst, 6);                      \
541 } while(0)
542
543 struct user_regs_struct32 {
544         __u32 ebx, ecx, edx, esi, edi, ebp, eax;
545         unsigned short ds, __ds, es, __es;
546         unsigned short fs, __fs, gs, __gs;
547         __u32 orig_eax, eip;
548         unsigned short cs, __cs;
549         __u32 eflags, esp;
550         unsigned short ss, __ss;
551 };
552
553 /* Prototypes for use in elfcore32.h */
554 extern int save_ia32_fpstate (struct task_struct *tsk, struct ia32_user_i387_struct *save);
555 extern int save_ia32_fpxstate (struct task_struct *tsk, struct ia32_user_fxsr_struct *save);
556
557 #endif /* !CONFIG_IA32_SUPPORT */
558
559 #endif /* _ASM_IA64_IA32_PRIV_H */