#define PXENV_UNDI_SHUTDOWN 0x0005 #define PXENV_UNDI_GET_NIC_TYPE 0x0012 #define PXENV_STOP_UNDI 0x0015 #define PXENV_UNLOAD_STACK 0x0070 .text .arch i386 .org 0 .section ".prefix", "ax", @progbits .section ".prefix.data", "aw", @progbits .code16 /***************************************************************************** * Entry point: set operating context, print welcome message ***************************************************************************** */ .section ".prefix" /* Set up our non-stack segment registers */ jmp $0x7c0, $1f 1: movw %cs, %ax movw %ax, %ds movw $0x40, %ax /* BIOS data segment access */ movw %ax, %fs /* Record PXENV+ and !PXE nominal addresses */ movw %es, %ax /* PXENV+ address */ movw %ax, pxenv_segment movw %bx, pxenv_offset popl %eax /* Discard return address */ popl ppxe_segoff /* !PXE address */ /* Set up stack just below 0x7c00 */ xorw %ax, %ax movw %ax, %ss movw $0x7c00, %sp /* Clear direction flag, for the sake of sanity */ cld /* Print welcome message */ movw $10f, %si call print_message .section ".prefix.data" 10: .asciz "PXE->EB:" .previous /***************************************************************************** * Verify PXENV+ structure and record parameters of interest ***************************************************************************** */ detect_pxenv: /* Signature check */ les pxenv_segoff, %di cmpl $0x4e455850, %es:(%di) /* 'PXEN' signature */ jne 99f cmpw $0x2b56, %es:4(%di) /* 'V+' signature */ jne 99f /* Record entry point and UNDI segments */ pushl %es:0x0a(%di) /* Entry point */ popl entry_segoff pushw %es:0x24(%di) /* UNDI code segment */ pushw %es:0x26(%di) /* UNDI code size */ popl undi_code_segoff pushw %es:0x20(%di) /* UNDI data segment */ pushw %es:0x22(%di) /* UNDI data size */ popl undi_data_segoff /* Print "PXENV+ at
" */ movw $10f, %si call print_message movw %bx, %di call print_segoff movb $',', %al call print_character .section ".prefix.data" 10: .asciz " PXENV+ at " .previous 99: /***************************************************************************** * Verify !PXE structure and record parameters of interest ***************************************************************************** */ detect_ppxe: /* Signature check */ les ppxe_segoff, %di cmpl $0x45585021, %es:(%di) /* '!PXE' signature */ jne 99f /* Record structure address, entry point, and UNDI segments */ pushw %es popw ppxe_segment movw %di, ppxe_offset pushl %es:0x10(%di) /* Entry point */ popl entry_segoff pushw %es:0x30(%di) /* UNDI code segment */ pushw %es:0x36(%di) /* UNDI code size */ popl undi_code_segoff pushw %es:0x28(%di) /* UNDI data segment */ pushw %es:0x2e(%di) /* UNDI data size */ popl undi_data_segoff /* Print "!PXE at " */ movw $10f, %si call print_message call print_segoff movb $',', %al call print_character .section ".prefix.data" 10: .asciz " !PXE at " .previous 99: /***************************************************************************** * Sanity check: we must have an entry point ***************************************************************************** */ check_have_stack: /* Check for entry point */ movl entry_segoff, %eax testl %eax, %eax jnz 99f /* No entry point: print message and skip everything else */ movw $10f, %si call print_message jmp finished .section ".prefix.data" 10: .asciz " No PXE stack found!\n" .previous 99: /***************************************************************************** * Calculate base memory usage by UNDI ***************************************************************************** */ find_undi_basemem_usage: movw undi_code_segment, %ax movw undi_code_size, %bx movw undi_data_segment, %cx movw undi_data_size, %dx cmpw %ax, %cx ja 1f xchgw %ax, %cx xchgw %bx, %dx 1: /* %ax:%bx now describes the lower region, %cx:%dx the higher */ shrw $6, %ax /* Round down to nearest kB */ movw %ax, undi_fbms_start addw $0x0f, %dx /* Round up to next segment */ shrw $4, %dx addw %dx, %cx addw $((1024 / 16) - 1), %cx /* Round up to next kB */ shrw $6, %cx movw %cx, undi_fbms_end /***************************************************************************** * Print information about detected PXE stack ***************************************************************************** */ print_structure_information: /* Print entry point */ movw $10f, %si call print_message les entry_segoff, %di call print_segoff .section ".prefix.data" 10: .asciz " entry point at " .previous /* Print UNDI code segment */ movw $10f, %si call print_message les undi_code_segoff, %di call print_segoff .section ".prefix.data" 10: .asciz "\n UNDI code segment " .previous /* Print UNDI data segment */ movw $10f, %si call print_message les undi_data_segoff, %di call print_segoff .section ".prefix.data" 10: .asciz ", data segment " .previous /* Print UNDI memory usage */ movw $10f, %si call print_message movw undi_fbms_start, %ax call print_word movb $'-', %al call print_character movw undi_fbms_end, %ax call print_word movw $20f, %si call print_message .section ".prefix.data" 10: .asciz " (" 20: .asciz "kB)\n" .previous /***************************************************************************** * Determine physical device ***************************************************************************** */ get_physical_device: /* Issue PXENV_UNDI_GET_NIC_TYPE */ movw $PXENV_UNDI_GET_NIC_TYPE, %bx call pxe_call jnc 1f call print_pxe_error jmp no_physical_device 1: /* Determine physical device type */ movb ( pxe_parameter_structure + 0x02 ), %al cmpb $2, %al je pci_physical_device jmp no_physical_device pci_physical_device: /* Record PCI bus:dev.fn */ movw ( pxe_parameter_structure + 0x0b ), %ax movw %ax, pci_busdevfn movw $10f, %si call print_message call print_pci_busdevfn movb $0x0a, %al call print_character jmp 99f .section ".prefix.data" 10: .asciz " UNDI device is PCI " .previous no_physical_device: /* No device found, or device type not understood */ movw $10f, %si call print_message .section ".prefix.data" 10: .asciz " Unable to determine UNDI physical device\n" .previous 99: /***************************************************************************** * Leave NIC in a safe state ***************************************************************************** */ shutdown_nic: /* Issue PXENV_UNDI_SHUTDOWN */ movw $PXENV_UNDI_SHUTDOWN, %bx call pxe_call jnc 1f call print_pxe_error 1: /***************************************************************************** * Unload PXE base code ***************************************************************************** */ unload_base_code: /* Issue PXENV_UNLOAD_STACK */ movw $PXENV_UNLOAD_STACK, %bx call pxe_call jnc 1f call print_pxe_error jmp 99f 1: /* Free base memory used by PXE base code */ movw %fs:(0x13), %si movw undi_fbms_start, %di call free_basemem 99: /***************************************************************************** * Unload UNDI driver ***************************************************************************** */ unload_undi: /* Issue PXENV_STOP_UNDI */ movw $PXENV_STOP_UNDI, %bx call pxe_call jnc 1f call print_pxe_error jmp 99f 1: /* Free base memory used by UNDI */ #ifndef PXELOADER_KEEP_UNDI movw undi_fbms_start, %si movw undi_fbms_end, %di call free_basemem #endif /* PXELOADER_KEEP_UNDI */ 99: /***************************************************************************** * Print remaining free base memory ***************************************************************************** */ print_free_basemem: movw $10f, %si call print_message movw %fs:(0x13), %ax call print_word movw $20f, %si call print_message .section ".prefix.data" 10: .asciz " " 20: .asciz "kB free base memory after PXE unload\n" .previous /***************************************************************************** * Exit point ***************************************************************************** */ finished: jmp run_etherboot /***************************************************************************** * Subroutine: print character (with LF -> LF,CR translation) * * Parameters: * %al : character to print * Returns: * Nothing ***************************************************************************** */ print_character: /* Preserve registers */ pushw %ax pushw %bx pushw %bp /* Print character */ movw $0x0007, %bx /* page 0, attribute 7 (normal) */ movb $0x0e, %ah /* write char, tty mode */ cmpb $0x0a, %al /* '\n'? */ jne 1f int $0x10 movb $0x0d, %al 1: int $0x10 /* Restore registers and return */ popw %bp popw %bx popw %ax ret /***************************************************************************** * Subroutine: print a NUL-terminated string * * Parameters: * %ds:%si : string to print * Returns: * Nothing ***************************************************************************** */ print_message: /* Preserve registers */ pushw %ax pushw %si /* Print string */ 1: lodsb testb %al, %al je 2f call print_character jmp 1b 2: /* Restore registers and return */ popw %si popw %ax ret /***************************************************************************** * Subroutine: print hex digit * * Parameters: * %al (low nibble) : digit to print * Returns: * Nothing ***************************************************************************** */ print_hex_nibble: /* Preserve registers */ pushw %ax /* Print digit (technique by Norbert Juffa