Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/sommerfeld_i386mp_1]: src/sys/arch/i386/stand/pxeboot Add (missing)pushl...
details: https://anonhg.NetBSD.org/src/rev/b6e678052e19
branches: sommerfeld_i386mp_1
changeset: 482510:b6e678052e19
user: kanaoka <kanaoka%NetBSD.org@localhost>
date: Wed Mar 27 17:24:23 2002 +0000
description:
Add (missing)pushl/popl for %edi in ENTRY(pxecall_pxenv).
diffstat:
sys/arch/i386/stand/pxeboot/pxe_call.S | 118 +++++++++++++++++++++++++++++++++
1 files changed, 118 insertions(+), 0 deletions(-)
diffs (122 lines):
diff -r 8a5586c3dae6 -r b6e678052e19 sys/arch/i386/stand/pxeboot/pxe_call.S
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/i386/stand/pxeboot/pxe_call.S Wed Mar 27 17:24:23 2002 +0000
@@ -0,0 +1,118 @@
+/* $NetBSD: pxe_call.S,v 1.2.2.2 2002/03/27 17:24:23 kanaoka Exp $ */
+
+/*
+ * Copyright 2001 Wasabi Systems, Inc.
+ * All rights reserved.
+ *
+ * Written by Jason R. Thorpe for Wasabi Systems, Inc.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed for the NetBSD Project by
+ * Wasabi Systems, Inc.
+ * 4. The name of Wasabi Systems, Inc. may not be used to endorse
+ * or promote products derived from this software without specific prior
+ * written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * Low level PXE BIOS call glue.
+ */
+
+#include <machine/asm.h>
+
+#define addr32 .byte 0x67
+#define data32 .byte 0x66
+#define farcall .byte 0x9a
+
+ENTRY(pxecall_bangpxe)
+ pushl %ebp
+ movl %esp, %ebp
+ pushl %ebx
+ pushl %ecx
+ pushl %edx
+
+ /* For simplicity, just move all 32 bits. */
+ movl 8(%ebp), %ebx
+
+ pushw _C_LABEL(pxe_command_buf_seg)
+ pushw _C_LABEL(pxe_command_buf_off)
+ pushw %bx
+
+ call _C_LABEL(prot_to_real) # enter real mode
+
+ /* The encoding is: 0x9a offlo offhi seglo seghi */
+ farcall
+ .globl _C_LABEL(bangpxe_off)
+_C_LABEL(bangpxe_off):
+ .word 0
+ .globl _C_LABEL(bangpxe_seg)
+_C_LABEL(bangpxe_seg):
+ .word 0
+
+ data32
+ call _C_LABEL(real_to_prot) # leave real mode
+
+ add $6, %esp
+
+ popl %edx
+ popl %ecx
+ popl %ebx
+ popl %ebp
+ ret
+
+ENTRY(pxecall_pxenv)
+ pushl %ebp
+ movl %esp, %ebp
+ pushl %ebx
+ pushl %ecx
+ pushl %edx
+ pushl %edi
+
+ /* For simplicity, just move all 32 bits. */
+ movl 8(%ebp), %ebx
+
+ call _C_LABEL(prot_to_real) # enter real mode
+
+ /* prot_to_real() has already set %es to BOOTSEG */
+ addr32
+ leal _C_LABEL(pxe_command_buf), %edi
+
+ /* The encoding is: 0x9a offlo offhi seglo seghi */
+ farcall
+ .globl _C_LABEL(pxenv_off)
+_C_LABEL(pxenv_off):
+ .word 0
+ .globl _C_LABEL(pxenv_seg)
+_C_LABEL(pxenv_seg):
+ .word 0
+
+ data32
+ call _C_LABEL(real_to_prot) # leave real mode
+
+ popl %edi
+ popl %edx
+ popl %ecx
+ popl %ebx
+ popl %ebp
+ ret
Home |
Main Index |
Thread Index |
Old Index