File: segment.h

package info (click to toggle)
faumachine 20100527-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 53,836 kB
  • ctags: 20,552
  • sloc: ansic: 179,550; asm: 3,645; makefile: 3,611; perl: 2,103; sh: 1,529; python: 600; xml: 563; lex: 210; vhdl: 204
file content (199 lines) | stat: -rw-r--r-- 3,584 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/* $Id: segment.h,v 1.27 2009-01-28 14:38:03 potyra Exp $ 
 *
 * Copyright (C) 2004-2009 FAUmachine Team <info@faumachine.org>.
 * This program is free software. You can redistribute it and/or modify it
 * under the terms of the GNU General Public License, either version 2 of
 * the License, or (at your option) any later version. See COPYING.
 */

#ifndef __SEGMENT_H_INCLUDED
#define __SEGMENT_H_INCLUDED

#include "build_config.h"
#include <stddef.h>
#include <inttypes.h>
#include "compiler.h"

/* ==================== REAL-MODE ==================== */
#if defined(RUNTIME_RM) || defined(INIT_RM) 

#include "assert.h"


extern inline unsigned short
get_cs(void)
{
	unsigned short cs;

	__asm__(
		"movw %%cs, %0\n"
		: "=r" (cs)
	);

	return cs;
}

extern inline unsigned short
get_ss(void)
{
	unsigned short ss;

	__asm__(
		"movw %%ss, %0\n"
		: "=r" (ss)
	);

	return ss;
}

extern inline void
put_byte(unsigned short seg, size_t offset, unsigned char val)
{
	assert((unsigned long) offset < 0x10000);

	asm volatile (
		"movw %0, %%es\n"
		"movb %2, %%es:(%1)\n"
		: /* no output */
		: "r" (seg), "b" (offset), "q" (val)
		: "memory"
	);
}

extern inline void
put_word(unsigned short seg, size_t offset, unsigned short val)
{
	assert((unsigned long) offset < 0x10000);

	asm volatile (
		"movw %0, %%es\n"
		"movw %2, %%es:(%1)\n"
		: /* no output */
		: "r" (seg), "b" (offset), "r" (val)
		: "memory"
	);
}

extern inline void
put_long(unsigned short seg, size_t offset, uint32_t val)
{
	uint16_t val0;
	uint16_t val1;

	assert((unsigned long) offset < 0x10000);

	val0 = (uint16_t) val;
	val1 = (uint16_t) (val>>16);

	asm volatile (
		"movw %0, %%es\n"
		"movw %2, %%es:(%1)\n"
		"movw %3, %%es:2(%1)\n"
		: /* no output */
		: "r" (seg), "b" (offset), "r" (val0), "r" (val1)
		: "memory"
	);
}


extern inline unsigned char
get_byte(unsigned short seg, size_t offset)
{
	unsigned char val;

	assert((unsigned long) offset < 0x10000);

	asm volatile (
		"movw %1, %%es\n"
		"movb %%es:(%2), %0\n"
		: "=q" (val)
		: "r" (seg), "b" (offset)
	);

	return val;
}

extern inline unsigned short
get_word(unsigned short seg, size_t offset)
{
	unsigned short val;

	assert((unsigned long) offset < 0x10000);

	asm volatile (
		"movw %1, %%es\n"
		"movw %%es:(%2), %0\n"
		: "=r" (val)
		: "r" (seg), "b" (offset)
	);

	return val;
}

extern inline uint32_t
get_long(unsigned short seg, size_t offset)
{
	uint32_t val;
	uint16_t val0;
	uint16_t val1;

	assert((unsigned long) offset < 0x10000);

	asm volatile (
		"movw %2, %%es\n"
		"movw %%es:(%3), %0\n"
		"movw %%es:2(%3), %1\n"
		: "=r" (val0), "=r" (val1)
		: "r" (seg), "b" (offset)
	);

	val = val1;
	val = (val << 16) + val0;

	return val;
}

#endif /* REAL-MODE */
/* ==================== PROTECTED MODE ==================== */
#if defined(RUNTIME_PM)

extern inline void
put_byte(unsigned int seg, size_t offset, uint8_t val)
{
	*((uint8_t *) PTR(seg, offset)) = val;
}

extern inline void
put_word(unsigned int seg, size_t offset, uint16_t val)
{
	*((int16_t *) PTR(seg, offset)) = val;
}

extern inline void
put_long(unsigned int seg, size_t offset, uint32_t val)
{
	*((uint32_t *) PTR(seg, offset)) = val;
}


extern inline uint8_t
get_byte(unsigned int seg, size_t offset)
{
	return *((unsigned char *) PTR(seg, offset));
}

extern inline uint16_t
get_word(unsigned int seg, size_t offset)
{
	return *((uint16_t *) PTR(seg, offset));
}

extern inline uint32_t
get_long(unsigned int seg, size_t offset)
{
	return *((uint32_t *) PTR(seg, offset));
}

#endif /* PROTECTED MODE */

#endif /* __SEGMENT_H_INCLUDED */