2005-04-08 15:01:17 +00:00
|
|
|
#ifndef REALMODE_H
|
|
|
|
#define REALMODE_H
|
2005-03-08 18:53:11 +00:00
|
|
|
|
|
|
|
#ifndef ASSEMBLY
|
|
|
|
|
2005-04-08 15:01:17 +00:00
|
|
|
#include "stdint.h"
|
|
|
|
#include "registers.h"
|
|
|
|
#include "io.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data structures and type definitions
|
|
|
|
*
|
2005-03-08 18:53:11 +00:00
|
|
|
*/
|
2005-04-08 15:01:17 +00:00
|
|
|
|
|
|
|
/* Segment:offset structure. Note that the order within the structure
|
|
|
|
* is offset:segment.
|
2005-03-08 18:53:11 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2005-04-08 15:01:17 +00:00
|
|
|
uint16_t offset;
|
|
|
|
uint16_t segment;
|
2006-05-02 15:41:21 +00:00
|
|
|
} __attribute__ (( packed )) segoff_t;
|
2005-03-08 18:53:11 +00:00
|
|
|
|
2005-04-08 15:01:17 +00:00
|
|
|
/* Macro hackery needed to stringify bits of inline assembly */
|
|
|
|
#define RM_XSTR(x) #x
|
|
|
|
#define RM_STR(x) RM_XSTR(x)
|
|
|
|
|
|
|
|
/* Drag in the selected real-mode transition library header */
|
|
|
|
#ifdef KEEP_IT_REAL
|
|
|
|
#include "libkir.h"
|
|
|
|
#else
|
|
|
|
#include "librm.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The API to some functions is identical between librm and libkir, so
|
|
|
|
* they are documented here, even though the prototypes are in librm.h
|
|
|
|
* and libkir.h.
|
|
|
|
*
|
2005-03-08 18:53:11 +00:00
|
|
|
*/
|
2005-04-08 15:01:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* void copy_to_real ( uint16_t dest_seg, uint16_t dest_off,
|
|
|
|
* void *src, size_t n )
|
|
|
|
* void copy_from_real ( void *dest, uint16_t src_seg, uint16_t src_off,
|
|
|
|
* size_t n )
|
|
|
|
*
|
|
|
|
* These functions can be used to copy data to and from arbitrary
|
|
|
|
* locations in base memory.
|
2005-03-08 18:53:11 +00:00
|
|
|
*/
|
2005-04-08 15:01:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* put_real ( variable, uint16_t dest_seg, uint16_t dest_off )
|
|
|
|
* get_real ( variable, uint16_t src_seg, uint16_t src_off )
|
|
|
|
*
|
|
|
|
* These macros can be used to read or write single variables to and
|
|
|
|
* from arbitrary locations in base memory. "variable" must be a
|
|
|
|
* variable of either 1, 2 or 4 bytes in length.
|
2005-03-08 18:53:11 +00:00
|
|
|
*/
|
2005-04-08 15:01:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* REAL_CALL ( routine, num_out_constraints, out_constraints,
|
|
|
|
* in_constraints, clobber )
|
|
|
|
* REAL_EXEC ( name, asm_code_str, num_out_constraints, out_constraints,
|
|
|
|
* in_constraints, clobber )
|
|
|
|
*
|
|
|
|
* If you have a pre-existing real-mode routine that you want to make
|
|
|
|
* a far call to, use REAL_CALL. If you have a code fragment that you
|
|
|
|
* want to copy down to base memory, execute, and then remove, use
|
|
|
|
* REAL_EXEC.
|
|
|
|
*
|
|
|
|
* out_constraints must be of the form OUT_CONSTRAINTS(constraints),
|
|
|
|
* and in_constraints must be of the form IN_CONSTRAINTS(constraints),
|
|
|
|
* where "constraints" is a constraints list as would be used in an
|
|
|
|
* inline __asm__()
|
|
|
|
*
|
|
|
|
* clobber must be of the form CLOBBER ( clobber_list ), where
|
|
|
|
* "clobber_list" is a clobber list as would be used in an inline
|
|
|
|
* __asm__().
|
|
|
|
*
|
|
|
|
* These are best illustrated by example. To write a character to the
|
|
|
|
* console using INT 10, you would do something like:
|
|
|
|
*
|
|
|
|
* REAL_EXEC ( rm_test_librm,
|
|
|
|
* "int $0x10",
|
|
|
|
* 1,
|
|
|
|
* OUT_CONSTRAINTS ( "=a" ( discard ) ),
|
|
|
|
* IN_CONSTRAINTS ( "a" ( 0x0e00 + character ),
|
|
|
|
* "b" ( 1 ) ),
|
|
|
|
* CLOBBER ( "ebx", "ecx", "edx", "ebp", "esi", "edi" ) );
|
|
|
|
*
|
|
|
|
* IMPORTANT: gcc does not automatically assume that input operands
|
|
|
|
* get clobbered. The only way to specify that an input operand may
|
|
|
|
* be modified is to also specify it as an output operand; hence the
|
|
|
|
* "(discard)" in the above code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#warning "realmode.h contains placeholders for obsolete macros"
|
|
|
|
|
|
|
|
|
|
|
|
/* Just for now */
|
|
|
|
#define SEGMENT(x) ( virt_to_phys ( x ) >> 4 )
|
|
|
|
#define OFFSET(x) ( virt_to_phys ( x ) & 0xf )
|
|
|
|
#define SEGOFF(x) { OFFSET(x), SEGMENT(x) }
|
|
|
|
|
|
|
|
/* To make basemem.c compile */
|
2005-03-08 18:53:11 +00:00
|
|
|
extern int lock_real_mode_stack;
|
2005-04-08 15:01:17 +00:00
|
|
|
extern char *real_mode_stack;
|
|
|
|
extern char real_mode_stack_size[];
|
|
|
|
|
|
|
|
#define RM_FRAGMENT(name,asm) \
|
|
|
|
void name ( void ) {} \
|
|
|
|
extern char name ## _size[];
|
2005-03-08 18:53:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ASSEMBLY */
|
2005-04-08 15:01:17 +00:00
|
|
|
|
|
|
|
#endif /* REALMODE_H */
|