1 /* ----------------------------------------------------------------------- *
3 * Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 * Boston MA 02111-1307, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
16 * Miscellaneous header definitions
24 /* We use the com32 interface for calling 16-bit code */
27 /* define it only for i386 */
28 #if __SIZEOF_POINTER__ == 4
29 #define __cdecl __attribute__((cdecl,regparm(0)))
32 void __cdecl
intcall(uint8_t, com32sys_t
*, com32sys_t
*);
34 /* Structure passed in from the real-mode code */
35 struct real_mode_args
{
40 uint32_t rm_handle_interrupt
;
46 extern struct real_mode_args rm_args
;
47 #define sys_bounce ((void *)rm_args.rm_bounce)
49 /* This is the header in the boot sector/setup area */
62 uint32_t realmode_swtch
;
64 uint8_t type_of_loader
;
66 uint16_t setup_move_size
;
67 uint32_t code32_start
;
68 uint32_t ramdisk_image
;
69 uint32_t ramdisk_size
;
70 uint32_t bootsect_kludge
;
71 uint16_t head_end_ptr
;
73 uint32_t cmd_line_ptr
;
74 uint32_t initrd_addr_max
;
80 #define shdr ((struct setup_header *)rm_args.rm_base)
82 /* Standard routines */
83 void *memcpy(void *, const void *, size_t);
84 void *memset(void *, int, size_t);
85 void *memmove(void *, const void *, size_t);
87 #define strcpy(a,b) __builtin_strcpy(a,b)
89 static inline size_t strlen(const char *__a
)
94 asm("repne;scasb":"=D"(__D
), "=c"(__c
)
95 : "D"(__a
), "c"(-1), "a"(0), "m"(*__a
));
100 /* memcpy() but returns a pointer to end of buffer */
101 static inline void *mempcpy(void *__d
, const void *__s
, unsigned int __n
)
103 memcpy(__d
, __s
, __n
);
104 return (void *)((char *)__d
+ __n
);
108 static inline int memcmp(const void *__a
, const void *__b
, unsigned int __n
)
110 const unsigned char *__aa
= __a
;
111 const unsigned char *__bb
= __b
;
115 __d
= *__bb
++ - *__aa
++;
123 static inline void sti(void)
128 static inline void cli(void)
134 extern int check_zip(void *indata
, uint32_t size
, uint32_t * zbytes_p
,
135 uint32_t * dbytes_p
, uint32_t * orig_crc
,
136 uint32_t * offset_p
);
137 extern void *unzip(void *indata
, uint32_t zbytes
, uint32_t dbytes
,
138 uint32_t orig_crc
, void *target
);