Home | History | Annotate | Line # | Download | only in lib
biosmemx.S revision 1.5
      1  1.5       dsl /*	$NetBSD: biosmemx.S,v 1.5 2003/02/14 14:39:24 dsl Exp $	*/
      2  1.1  drochner 
      3  1.1  drochner /*
      4  1.2  drochner  * Copyright (c) 1997, 1999
      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 	.text
     38  1.1  drochner 
     39  1.1  drochner /* int getextmem2(int buffer[2])
     40  1.1  drochner    return: 0=OK, -1=error
     41  1.1  drochner    buffer[0]: extmem kBytes below 16M (max 15M/1024)
     42  1.1  drochner    buffer[1]: extmem above 16M, in 64k units
     43  1.1  drochner */
     44  1.1  drochner ENTRY(getextmem2)
     45  1.1  drochner 	pushl	%ebp
     46  1.1  drochner 	movl	%esp,%ebp
     47  1.1  drochner 	pushl	%ebx
     48  1.1  drochner 	pushl	%ecx
     49  1.1  drochner 	pushl	%edx
     50  1.1  drochner 	push	%esi
     51  1.1  drochner 	push	%edi
     52  1.1  drochner 
     53  1.1  drochner 	call	_C_LABEL(prot_to_real)
     54  1.3       dsl 	.code16
     55  1.1  drochner 
     56  1.3       dsl 	xorl	%ebx, %ebx
     57  1.1  drochner 	movl	$0xe801, %eax
     58  1.1  drochner 	int	$0x15
     59  1.1  drochner 	jc	err2
     60  1.1  drochner 
     61  1.1  drochner 	movl	$0, %ecx
     62  1.1  drochner 	jmp ok2
     63  1.1  drochner err2:
     64  1.1  drochner 	movl	$-1, %ecx
     65  1.1  drochner ok2:
     66  1.1  drochner 	movl	%eax, %edx
     67  1.1  drochner 
     68  1.3       dsl 	calll	_C_LABEL(real_to_prot)
     69  1.3       dsl 	.code32
     70  1.1  drochner 
     71  1.1  drochner 	movl	8(%ebp), %eax
     72  1.1  drochner 	movl	%edx, (%eax)
     73  1.1  drochner 	movl	%ebx, 4(%eax)
     74  1.1  drochner 
     75  1.1  drochner 	movl	%ecx, %eax
     76  1.1  drochner 
     77  1.1  drochner 	pop	%edi
     78  1.1  drochner 	pop	%esi
     79  1.1  drochner 	popl	%edx
     80  1.1  drochner 	popl	%ecx
     81  1.1  drochner 	popl	%ebx
     82  1.1  drochner 	popl	%ebp
     83  1.1  drochner 	ret
     84  1.1  drochner 
     85  1.2  drochner /* int getmementry(int *iterator, buffer[5])
     86  1.2  drochner    return: 0=ok, else error
     87  1.1  drochner    buffer[0]: start of memory chunk
     88  1.1  drochner    buffer[2]: length (bytes)
     89  1.1  drochner    buffer[4]: type
     90  1.1  drochner */
     91  1.1  drochner ENTRY(getmementry)
     92  1.1  drochner 	pushl	%ebp
     93  1.1  drochner 	movl	%esp,%ebp
     94  1.1  drochner 	pushl	%ebx
     95  1.1  drochner 	pushl	%ecx
     96  1.1  drochner 	pushl	%edx
     97  1.1  drochner 	push	%esi
     98  1.1  drochner 	push	%edi
     99  1.1  drochner 
    100  1.2  drochner 	movl	8(%ebp), %eax
    101  1.2  drochner 	movl	0(%eax), %ebx
    102  1.1  drochner 	movl	$20, %ecx
    103  1.1  drochner 	movl	$0x534d4150, %edx	# "SMAP"
    104  1.1  drochner 	movl	12(%ebp), %edi
    105  1.1  drochner 
    106  1.1  drochner 	call	_C_LABEL(prot_to_real)
    107  1.3       dsl 	.code16
    108  1.4       dsl 
    109  1.4       dsl 	push	%di
    110  1.4       dsl 	shrl	$4, %edi
    111  1.4       dsl 	mov	%ds, %ax
    112  1.4       dsl 	add	%di, %ax
    113  1.5       dsl 	mov	%ax, %es
    114  1.4       dsl 	pop	%di
    115  1.4       dsl 	and	$0xf, %di
    116  1.1  drochner 
    117  1.3       dsl 	movw	$0xe820, %ax
    118  1.1  drochner 	int	$0x15
    119  1.1  drochner 
    120  1.2  drochner 	setc	%cl
    121  1.1  drochner 
    122  1.3       dsl 	calll	_C_LABEL(real_to_prot)
    123  1.3       dsl 	.code32
    124  1.1  drochner 
    125  1.2  drochner 	movl	8(%ebp), %eax
    126  1.2  drochner 	movl	%ebx, 0(%eax)
    127  1.2  drochner 	xorl	%eax, %eax
    128  1.2  drochner 	movb	%cl, %al
    129  1.1  drochner 
    130  1.1  drochner 	pop	%edi
    131  1.1  drochner 	pop	%esi
    132  1.1  drochner 	popl	%edx
    133  1.1  drochner 	popl	%ecx
    134  1.1  drochner 	popl	%ebx
    135  1.1  drochner 	popl	%ebp
    136  1.1  drochner 	ret
    137