biosmemx.S revision 1.1 1 1.1 drochner /* $NetBSD: biosmemx.S,v 1.1 1997/08/14 15:22:00 drochner Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1997
5 1.1 drochner * Matthias Drochner. All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Redistribution and use in source and binary forms, with or without
8 1.1 drochner * modification, are permitted provided that the following conditions
9 1.1 drochner * are met:
10 1.1 drochner * 1. Redistributions of source code must retain the above copyright
11 1.1 drochner * notice, this list of conditions and the following disclaimer.
12 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 drochner * notice, this list of conditions and the following disclaimer in the
14 1.1 drochner * documentation and/or other materials provided with the distribution.
15 1.1 drochner * 3. All advertising materials mentioning features or use of this software
16 1.1 drochner * must display the following acknowledgement:
17 1.1 drochner * This product includes software developed for the NetBSD Project
18 1.1 drochner * by Matthias Drochner.
19 1.1 drochner * 4. The name of the author may not be used to endorse or promote products
20 1.1 drochner * derived from this software without specific prior written permission.
21 1.1 drochner *
22 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 drochner * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 drochner * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 drochner * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 drochner * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 drochner * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 drochner * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 drochner * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 drochner * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 drochner * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 drochner *
33 1.1 drochner */
34 1.1 drochner
35 1.1 drochner #include <machine/asm.h>
36 1.1 drochner
37 1.1 drochner #define data32 .byte 0x66
38 1.1 drochner
39 1.1 drochner .text
40 1.1 drochner
41 1.1 drochner /* int getextmem2(int buffer[2])
42 1.1 drochner return: 0=OK, -1=error
43 1.1 drochner buffer[0]: extmem kBytes below 16M (max 15M/1024)
44 1.1 drochner buffer[1]: extmem above 16M, in 64k units
45 1.1 drochner */
46 1.1 drochner ENTRY(getextmem2)
47 1.1 drochner pushl %ebp
48 1.1 drochner movl %esp,%ebp
49 1.1 drochner pushl %ebx
50 1.1 drochner pushl %ecx
51 1.1 drochner pushl %edx
52 1.1 drochner push %esi
53 1.1 drochner push %edi
54 1.1 drochner
55 1.1 drochner call _C_LABEL(prot_to_real)
56 1.1 drochner
57 1.1 drochner data32
58 1.1 drochner movl $0xe801, %eax
59 1.1 drochner int $0x15
60 1.1 drochner jc err2
61 1.1 drochner
62 1.1 drochner data32
63 1.1 drochner movl $0, %ecx
64 1.1 drochner jmp ok2
65 1.1 drochner err2:
66 1.1 drochner data32
67 1.1 drochner movl $-1, %ecx
68 1.1 drochner ok2:
69 1.1 drochner data32
70 1.1 drochner movl %eax, %edx
71 1.1 drochner
72 1.1 drochner data32
73 1.1 drochner call _C_LABEL(real_to_prot)
74 1.1 drochner
75 1.1 drochner movl 8(%ebp), %eax
76 1.1 drochner movl %edx, (%eax)
77 1.1 drochner movl %ebx, 4(%eax)
78 1.1 drochner
79 1.1 drochner movl %ecx, %eax
80 1.1 drochner
81 1.1 drochner pop %edi
82 1.1 drochner pop %esi
83 1.1 drochner popl %edx
84 1.1 drochner popl %ecx
85 1.1 drochner popl %ebx
86 1.1 drochner popl %ebp
87 1.1 drochner ret
88 1.1 drochner
89 1.1 drochner /* int getmementry(int iterator, buffer[5])
90 1.1 drochner return: new iterator, 0=end of list or error
91 1.1 drochner buffer[0]: start of memory chunk
92 1.1 drochner buffer[2]: length (bytes)
93 1.1 drochner buffer[4]: type
94 1.1 drochner */
95 1.1 drochner ENTRY(getmementry)
96 1.1 drochner pushl %ebp
97 1.1 drochner movl %esp,%ebp
98 1.1 drochner pushl %ebx
99 1.1 drochner pushl %ecx
100 1.1 drochner pushl %edx
101 1.1 drochner push %esi
102 1.1 drochner push %edi
103 1.1 drochner
104 1.1 drochner movl 8(%ebp), %ebx
105 1.1 drochner movl $20, %ecx
106 1.1 drochner movl $0x534d4150, %edx # "SMAP"
107 1.1 drochner movl 12(%ebp), %edi
108 1.1 drochner
109 1.1 drochner call _C_LABEL(prot_to_real)
110 1.1 drochner
111 1.1 drochner data32
112 1.1 drochner movl $0xe820, %eax
113 1.1 drochner int $0x15
114 1.1 drochner
115 1.1 drochner jnc ok
116 1.1 drochner data32
117 1.1 drochner movl $0, %ebx
118 1.1 drochner
119 1.1 drochner ok:
120 1.1 drochner data32
121 1.1 drochner call _C_LABEL(real_to_prot)
122 1.1 drochner
123 1.1 drochner movl %ebx, %eax
124 1.1 drochner
125 1.1 drochner pop %edi
126 1.1 drochner pop %esi
127 1.1 drochner popl %edx
128 1.1 drochner popl %ecx
129 1.1 drochner popl %ebx
130 1.1 drochner popl %ebp
131 1.1 drochner ret
132