vm86.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_VM86_H
  2. #define _LINUX_VM86_H
  3. /*
  4.  * I'm guessing at the VIF/VIP flag usage, but hope that this is how
  5.  * the Pentium uses them. Linux will return from vm86 mode when both
  6.  * VIF and VIP is set.
  7.  *
  8.  * On a Pentium, we could probably optimize the virtual flags directly
  9.  * in the eflags register instead of doing it "by hand" in vflags...
  10.  *
  11.  * Linus
  12.  */
  13. #define TF_MASK 0x00000100
  14. #define IF_MASK 0x00000200
  15. #define IOPL_MASK 0x00003000
  16. #define NT_MASK 0x00004000
  17. #define VM_MASK 0x00020000
  18. #define AC_MASK 0x00040000
  19. #define VIF_MASK 0x00080000 /* virtual interrupt flag */
  20. #define VIP_MASK 0x00100000 /* virtual interrupt pending */
  21. #define ID_MASK 0x00200000
  22. #define BIOSSEG 0x0f000
  23. #define CPU_086 0
  24. #define CPU_186 1
  25. #define CPU_286 2
  26. #define CPU_386 3
  27. #define CPU_486 4
  28. #define CPU_586 5
  29. /*
  30.  * Return values for the 'vm86()' system call
  31.  */
  32. #define VM86_TYPE(retval) ((retval) & 0xff)
  33. #define VM86_ARG(retval) ((retval) >> 8)
  34. #define VM86_SIGNAL 0 /* return due to signal */
  35. #define VM86_UNKNOWN 1 /* unhandled GP fault - IO-instruction or similar */
  36. #define VM86_INTx 2 /* int3/int x instruction (ARG = x) */
  37. #define VM86_STI 3 /* sti/popf/iret instruction enabled virtual interrupts */
  38. /*
  39.  * Additional return values when invoking new vm86()
  40.  */
  41. #define VM86_PICRETURN 4 /* return due to pending PIC request */
  42. #define VM86_TRAP 6 /* return due to DOS-debugger request */
  43. /*
  44.  * function codes when invoking new vm86()
  45.  */
  46. #define VM86_PLUS_INSTALL_CHECK 0
  47. #define VM86_ENTER 1
  48. #define VM86_ENTER_NO_BYPASS 2
  49. #define VM86_REQUEST_IRQ 3
  50. #define VM86_FREE_IRQ 4
  51. #define VM86_GET_IRQ_BITS 5
  52. #define VM86_GET_AND_RESET_IRQ 6
  53. /*
  54.  * This is the stack-layout seen by the user space program when we have
  55.  * done a translation of "SAVE_ALL" from vm86 mode. The real kernel layout
  56.  * is 'kernel_vm86_regs' (see below).
  57.  */
  58. struct vm86_regs {
  59. /*
  60.  * normal regs, with special meaning for the segment descriptors..
  61.  */
  62. long ebx;
  63. long ecx;
  64. long edx;
  65. long esi;
  66. long edi;
  67. long ebp;
  68. long eax;
  69. long __null_ds;
  70. long __null_es;
  71. long __null_fs;
  72. long __null_gs;
  73. long orig_eax;
  74. long eip;
  75. unsigned short cs, __csh;
  76. long eflags;
  77. long esp;
  78. unsigned short ss, __ssh;
  79. /*
  80.  * these are specific to v86 mode:
  81.  */
  82. unsigned short es, __esh;
  83. unsigned short ds, __dsh;
  84. unsigned short fs, __fsh;
  85. unsigned short gs, __gsh;
  86. };
  87. struct revectored_struct {
  88. unsigned long __map[8]; /* 256 bits */
  89. };
  90. struct vm86_struct {
  91. struct vm86_regs regs;
  92. unsigned long flags;
  93. unsigned long screen_bitmap;
  94. unsigned long cpu_type;
  95. struct revectored_struct int_revectored;
  96. struct revectored_struct int21_revectored;
  97. };
  98. /*
  99.  * flags masks
  100.  */
  101. #define VM86_SCREEN_BITMAP 0x0001
  102. struct vm86plus_info_struct {
  103. unsigned long force_return_for_pic:1;
  104. unsigned long vm86dbg_active:1;       /* for debugger */
  105. unsigned long vm86dbg_TFpendig:1;     /* for debugger */
  106. unsigned long unused:28;
  107. unsigned long is_vm86pus:1;       /* for vm86 internal use */
  108. unsigned char vm86dbg_intxxtab[32];   /* for debugger */
  109. };
  110. struct vm86plus_struct {
  111. struct vm86_regs regs;
  112. unsigned long flags;
  113. unsigned long screen_bitmap;
  114. unsigned long cpu_type;
  115. struct revectored_struct int_revectored;
  116. struct revectored_struct int21_revectored;
  117. struct vm86plus_info_struct vm86plus;
  118. };
  119. #ifdef __KERNEL__
  120. /*
  121.  * This is the (kernel) stack-layout when we have done a "SAVE_ALL" from vm86
  122.  * mode - the main change is that the old segment descriptors aren't
  123.  * useful any more and are forced to be zero by the kernel (and the
  124.  * hardware when a trap occurs), and the real segment descriptors are
  125.  * at the end of the structure. Look at ptrace.h to see the "normal"
  126.  * setup. For user space layout see 'struct vm86_regs' above.
  127.  */
  128. struct kernel_vm86_regs {
  129. /*
  130.  * normal regs, with special meaning for the segment descriptors..
  131.  */
  132. long ebx;
  133. long ecx;
  134. long edx;
  135. long esi;
  136. long edi;
  137. long ebp;
  138. long eax;
  139. long __null_ds;
  140. long __null_es;
  141. long orig_eax;
  142. long eip;
  143. unsigned short cs, __csh;
  144. long eflags;
  145. long esp;
  146. unsigned short ss, __ssh;
  147. /*
  148.  * these are specific to v86 mode:
  149.  */
  150. unsigned short es, __esh;
  151. unsigned short ds, __dsh;
  152. unsigned short fs, __fsh;
  153. unsigned short gs, __gsh;
  154. };
  155. struct kernel_vm86_struct {
  156. struct kernel_vm86_regs regs;
  157. /*
  158.  * the below part remains on the kernel stack while we are in VM86 mode.
  159.  * 'tss.esp0' then contains the address of VM86_TSS_ESP0 below, and when we
  160.  * get forced back from VM86, the CPU and "SAVE_ALL" will restore the above
  161.  * 'struct kernel_vm86_regs' with the then actual values.
  162.  * Therefore, pt_regs in fact points to a complete 'kernel_vm86_struct'
  163.  * in kernelspace, hence we need not reget the data from userspace.
  164.  */
  165. #define VM86_TSS_ESP0 flags
  166. unsigned long flags;
  167. unsigned long screen_bitmap;
  168. unsigned long cpu_type;
  169. struct revectored_struct int_revectored;
  170. struct revectored_struct int21_revectored;
  171. struct vm86plus_info_struct vm86plus;
  172. struct pt_regs *regs32;   /* here we save the pointer to the old regs */
  173. /*
  174.  * The below is not part of the structure, but the stack layout continues
  175.  * this way. In front of 'return-eip' may be some data, depending on
  176.  * compilation, so we don't rely on this and save the pointer to 'oldregs'
  177.  * in 'regs32' above.
  178.  * However, with GCC-2.7.2 and the current CFLAGS you see exactly this:
  179. long return-eip;        from call to vm86()
  180. struct pt_regs oldregs;  user space registers as saved by syscall
  181.  */
  182. };
  183. void handle_vm86_fault(struct kernel_vm86_regs *, long);
  184. int handle_vm86_trap(struct kernel_vm86_regs *, long, int);
  185. #endif /* __KERNEL__ */
  186. #endif