diag/geodsp: README fixes
[syslinux.git] / com32 / include / com32.h
blob6b1420829e2fafeff16af03f1de1e20241ec4871
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2002-2009 H. Peter Anvin - All Rights Reserved
4 * Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
6 * Permission is hereby granted, free of charge, to any person
7 * obtaining a copy of this software and associated documentation
8 * files (the "Software"), to deal in the Software without
9 * restriction, including without limitation the rights to use,
10 * copy, modify, merge, publish, distribute, sublicense, and/or
11 * sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following
13 * conditions:
15 * The above copyright notice and this permission notice shall
16 * be included in all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
27 * ----------------------------------------------------------------------- */
30 * com32.h
32 * Common declarations for com32 programs.
35 #ifndef _COM32_H
36 #define _COM32_H
38 #include <stdint.h>
39 #include <stdbool.h>
40 #include <stddef.h>
41 #include <klibc/compiler.h> /* For __cdecl */
44 * This structure defines the register frame used by the
45 * system call interface.
47 * The syscall interface is:
49 * __intcall(interrupt_#, source_regs, return_regs)
50 * __farcall(seg, offs, source_regs, return_regs)
52 typedef union {
53 uint32_t l;
54 uint16_t w[2];
55 uint8_t b[4];
56 } reg32_t;
58 typedef struct {
59 uint16_t gs; /* Offset 0 */
60 uint16_t fs; /* Offset 2 */
61 uint16_t es; /* Offset 4 */
62 uint16_t ds; /* Offset 6 */
64 reg32_t edi; /* Offset 8 */
65 reg32_t esi; /* Offset 12 */
66 reg32_t ebp; /* Offset 16 */
67 reg32_t _unused_esp; /* Offset 20 */
68 reg32_t ebx; /* Offset 24 */
69 reg32_t edx; /* Offset 28 */
70 reg32_t ecx; /* Offset 32 */
71 reg32_t eax; /* Offset 36 */
73 reg32_t eflags; /* Offset 40 */
74 } com32sys_t;
76 /* EFLAGS definitions */
77 #define EFLAGS_CF 0x00000001
78 #define EFLAGS_PF 0x00000004
79 #define EFLAGS_AF 0x00000010
80 #define EFLAGS_ZF 0x00000040
81 #define EFLAGS_SF 0x00000080
82 #define EFLAGS_TF 0x00000100
83 #define EFLAGS_IF 0x00000200
84 #define EFLAGS_DF 0x00000400
85 #define EFLAGS_OF 0x00000800
86 #define EFLAGS_IOPL 0x00003000
87 #define EFLAGS_NT 0x00004000
88 #define EFLAGS_RF 0x00010000
89 #define EFLAGS_VM 0x00020000
90 #define EFLAGS_AC 0x00040000
91 #define EFLAGS_VIF 0x00080000
92 #define EFLAGS_VIP 0x00100000
93 #define EFLAGS_ID 0x00200000
95 struct com32_pmapi;
97 extern struct com32_sys_args {
98 uint32_t cs_sysargs;
99 char *cs_cmdline;
100 void __cdecl (*cs_intcall)(uint8_t, const com32sys_t *, com32sys_t *);
101 void *cs_bounce;
102 uint32_t cs_bounce_size;
103 void __cdecl (*cs_farcall)(uint32_t, const com32sys_t *, com32sys_t *);
104 int __cdecl (*cs_cfarcall)(uint32_t, const void *, uint32_t);
105 uint32_t cs_memsize;
106 const char *cs_name;
107 const struct com32_pmapi *cs_pm;
108 } __com32;
111 * System call wrapper functions
113 void __intcall(uint8_t __i, const com32sys_t * __sr, com32sys_t * __dr);
114 void __farcall(uint16_t __cs, uint16_t __ip,
115 const com32sys_t * __sr, com32sys_t * __dr);
116 int __cfarcall(uint16_t __cs, uint16_t __ip,
117 const void *__stack, uint32_t __stack_size);
118 extern const com32sys_t __com32_zero_regs;
121 * Lowmem allocation functions
123 void *lmalloc(size_t);
124 void *lzalloc(size_t);
125 void lfree(void *);
126 char *lstrdup(const char *);
129 * These functions convert between linear pointers in the range
130 * 0..0xFFFFF and real-mode style SEG:OFFS pointers. Note that a
131 * 32-bit linear pointer is not compatible with a SEG:OFFS pointer
132 * stored in two consecutive 16-bit words.
134 * Use OFFS_WRT() if you want to compute an offset relative to a
135 * specific segment. OFFS_VALID() will return whether or not the
136 * pointer is actually reachable from the target segment.
138 static inline uint16_t SEG(const volatile void *__p)
140 return (uint16_t) (((uintptr_t) __p) >> 4);
143 static inline uint16_t OFFS(const volatile void *__p)
145 /* The double cast here is to shut up gcc */
146 return (uint16_t) (uintptr_t) __p & 0x000F;
149 static inline uint16_t OFFS_WRT(const volatile void *__p, uint16_t __seg)
151 return (uint16_t) ((uintptr_t) __p - ((uintptr_t) __seg << 4));
154 #define OFFS_VALID(p,s) _OFFS_VALID((p), sizeof *(p), (s))
156 static inline bool _OFFS_VALID(const volatile void *__p, size_t __s,
157 uint16_t __seg)
159 uintptr_t __segstart = (uintptr_t)__seg << 4;
160 uintptr_t __offs = (uintptr_t)__p - __segstart;
162 return __offs <= 0x10000-__s;
165 static inline void *MK_PTR(uint16_t __seg, uint16_t __offs)
167 return (void *)((__seg << 4) + __offs);
170 /* Some tools to handle 16:16 far pointers in memory */
172 struct __far_ptr {
173 union {
174 uint32_t ptr;
175 struct {
176 uint16_t offs, seg;
179 } __attribute__ ((packed));
181 typedef struct __far_ptr far_ptr_t;
183 static inline void *GET_PTR(far_ptr_t __fptr)
185 return MK_PTR(__fptr.seg, __fptr.offs);
188 static inline far_ptr_t FAR_PTR(void *__ptr)
190 far_ptr_t __fptr;
192 __fptr.offs = OFFS(__ptr);
193 __fptr.seg = SEG(__ptr);
194 return __fptr;
197 #endif /* _COM32_H */