Change license from GPLv3 to LGPLv3.
[seabios.git] / src / romlayout.S
index 4249d4471f69f5695311e6389cfa979d362a2226..7fd7f3e9329571682c5ea79ff3863901c610d986 100644 (file)
@@ -3,11 +3,12 @@
 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
 // Copyright (C) 2002  MandrakeSoft S.A.
 //
-// This file may be distributed under the terms of the GNU GPLv3 license.
+// This file may be distributed under the terms of the GNU LGPLv3 license.
 
 #include "config.h" // CONFIG_*
 #include "ioport.h" // PORT_A20
 #include "bregs.h" // CR0_*
+#include "cmos.h" // CMOS_RESET_CODE
 #include "../out/asm-offsets.h" // BREGS_*
 
 
@@ -16,7 +17,7 @@
  ****************************************************************/
 
         .code16gcc
-.include "out/blob.16.s"
+.include "out/ccode.16.s"
 
 
 /****************************************************************
@@ -129,7 +130,14 @@ post16:
         andl $~(CR0_CD|CR0_NW), %eax
         movl %eax, %cr0
 
-        // init the stack pointer
+        // Check for restart indicator.
+        movl $CMOS_RESET_CODE, %eax
+        outb %al, $PORT_CMOS_INDEX
+        inb $PORT_CMOS_DATA, %al
+        cmpb $0x0, %al
+        jnz entry_resume
+
+        // Normal entry point
         RESET_STACK
 
         pushl $_code32__start
@@ -153,15 +161,15 @@ transition32:
         outb %al, $PORT_A20
 
         // Set segment descriptors
-        lidt %cs:pmode_IDT_info
-        lgdt %cs:rombios32_gdt_48
+        lidtw %cs:pmode_IDT_info
+        lgdtw %cs:rombios32_gdt_48
 
         // Enable protected mode
         movl %cr0, %eax
         orl $CR0_PE, %eax
         movl %eax, %cr0
 
-        // start protected mode code
+        // start 32bit protected mode code
         ljmpl $SEG32_MODE32_CS, $(BUILD_BIOS_ADDR + 1f)
 
         .code32
@@ -171,7 +179,6 @@ transition32:
         movw %ax, %ds
         movw %ax, %es
         movw %ax, %ss
-        xorl %eax, %eax
         movw %ax, %fs
         movw %ax, %gs
 
@@ -180,12 +187,12 @@ transition32:
 // Call a 16bit function from 32bit mode.
 // %eax = address of struct bregs
 // Clobbers: all gp registers, flags, stack registers, cr0, idt/gdt
-        .global __call16_from32
+        .global __call16_from32, __call16big_from32
 __call16_from32:
         pushl %eax
 
         // restore data segment limits to 0xffff
-        movw $SEG32_MODE16_DS, %ax
+        movl $SEG32_MODE16_DS, %eax
         movw %ax, %ds
         movw %ax, %es
         movw %ax, %ss
@@ -200,6 +207,18 @@ __call16_from32:
         // Jump to 16bit mode
         ljmpw $SEG32_MODE16_CS, $1f
 
+__call16big_from32:
+        pushl %eax
+
+        movl $SEG32_MODE16BIG_DS, %eax
+        movw %ax, %ds
+        movw %ax, %es
+        movw %ax, %ss
+        movw %ax, %fs
+        movw %ax, %gs
+
+        ljmpl $SEG32_MODE16BIG_CS, $(BUILD_BIOS_ADDR + 1f)
+
         .code16gcc
 1:
         // Disable protected mode
@@ -212,7 +231,7 @@ __call16_from32:
 
 2:
         // restore IDT to normal real-mode defaults
-        lidt %cs:rmode_IDT_info
+        lidtw %cs:rmode_IDT_info
 
         // Clear segment registers
         xorw %ax, %ax
@@ -284,6 +303,60 @@ __call16:
 
         retl
 
+// Entry point when a post call looks like a resume.
+// %eax = shutdown status from cmos
+entry_resume:
+        // Save old shutdown status.
+        movl %eax, %ebx
+
+        // Clear shutdown status register.
+        movl $CMOS_RESET_CODE, %eax
+        outb %al, $PORT_CMOS_INDEX
+        xorl %eax, %eax
+        outb %al, $PORT_CMOS_DATA
+
+        // Use a stack in EBDA
+        movw $SEG_BDA, %ax
+        movw %ax, %ds
+        movw BDA_ebda_seg, %ax
+        movw %ax, %ss
+        movw %ax, %ds
+        movl $EBDA_OFFSET_TOP_STACK, %esp
+
+        // Call handler.
+        movl %ebx, %eax
+        cld
+        cli
+        jmp handle_resume
+
+// PnP trampolines
+        .global entry_pnp_real, entry_pnp_prot
+entry_pnp_prot:
+        pushl %esp
+        jmp 1f
+entry_pnp_real:
+        pushl %esp              // Backup %esp, then clear high bits
+        movzwl %sp, %esp
+1:
+        pushfl                  // Save registers clobbered by C code
+        pushl %eax
+        pushl %ecx
+        pushl %edx
+        pushw %es
+        pushw %ds
+        movw %ss, %cx           // Move %ss to %ds
+        movw %cx, %ds
+        lea 28(%esp), %eax      // %eax points to start of u16 args
+        calll handle_pnp
+        movw %ax, 12(%esp)      // Modify %eax to return %ax
+        popw %ds
+        popw %es
+        popl %edx
+        popl %ecx
+        popl %eax
+        popfl
+        popl %esp
+        lretw
 
 // APM trampolines
         .global apm16protected_entry
@@ -338,9 +411,52 @@ permanent_halt:
 1:      hlt
         jmp 1b
 
+        // IRQ trampolines
+        .macro IRQ_TRAMPOLINE num
+        .global irq_trampoline_0x\num
+        irq_trampoline_0x\num :
+        int $0x\num
+        lretw
+        .endm
+
+        IRQ_TRAMPOLINE 02
+        IRQ_TRAMPOLINE 10
+        IRQ_TRAMPOLINE 13
+        IRQ_TRAMPOLINE 15
+        IRQ_TRAMPOLINE 16
+        IRQ_TRAMPOLINE 18
+        IRQ_TRAMPOLINE 19
+        IRQ_TRAMPOLINE 1c
+        IRQ_TRAMPOLINE 4a
+
 
 /****************************************************************
- * GDT and IDT tables
+ * Interrupt entry points
+ ****************************************************************/
+
+        // Define an entry point for an interrupt (no args passed).
+        .macro IRQ_ENTRY num
+        .global entry_\num
+        entry_\num :
+        cli         // In case something far-calls instead of using "int"
+        ENTRY handle_\num
+        iretw
+        .endm
+
+        // Define an entry point for an interrupt (can read/modify args).
+        .macro IRQ_ENTRY_ARG num
+        .global entry_\num
+        entry_\num :
+        cli         // In case something far-calls instead of using "int"
+        ENTRY_ARG handle_\num
+        iretw
+        .endm
+
+        ORG 0xe2c3
+        IRQ_ENTRY nmi
+
+/****************************************************************
+ * GDT and IDT tables (between 0xe2c3 - 0xe3fe)
  ****************************************************************/
 
 // Protected mode IDT descriptor
@@ -352,6 +468,7 @@ permanent_halt:
 // Set base to f0000 to correspond to beginning of BIOS,
 // in case I actually define an IDT later
 // Set limit to 0
+        .type pmode_IDT_info, @object
 pmode_IDT_info:
         .word 0x0000  // limit 15:00
         .long 0xf0000 // base 16:47
@@ -361,16 +478,18 @@ pmode_IDT_info:
 // Set to typical real-mode values.
 // base  = 000000
 // limit =   03ff
+        .type rmode_IDT_info, @object
 rmode_IDT_info:
         .word 0x03ff  // limit 15:00
         .long 0       // base 16:47
 
+        .type rombios32_gdt_48, @object
 rombios32_gdt_48:
-        .word 0x30
-        .word rombios32_gdt
-        .word 0x000f
+        .word (rombios32_gdt_end - rombios32_gdt)
+        .long (BUILD_BIOS_ADDR + rombios32_gdt)
 
         .balign 8
+        .type rombios32_gdt, @object
 rombios32_gdt:
         .word 0, 0, 0, 0
         .word 0, 0, 0, 0
@@ -382,56 +501,30 @@ rombios32_gdt:
         .word 0xffff, 0, 0x9b0f, 0x0000
         // 16 bit data segment base=0x0 limit=0xffff (SEG32_MODE16_DS)
         .word 0xffff, 0, 0x9300, 0x0000
-
-// We need a copy of this string in the 0xf000 segment, but we are not
-// actually a PnP BIOS, so make sure it is *not* aligned, so OSes will
-// not see it if they scan.
-        .global pnp_string
-        .balign 2
-        .byte 0
-pnp_string:
-        .ascii "$PnP"
+        // 16 bit code segment base=0 limit=0xffffffff (SEG32_MODE16BIG_CS)
+        .word 0xffff, 0, 0x9b00, 0x008f
+        // 16 bit data segment base=0 limit=0xffffffff (SEG32_MODE16BIG_DS)
+        .word 0xffff, 0, 0x9300, 0x008f
+rombios32_gdt_end:
 
 
 /****************************************************************
- * Interrupt entry points
+ * Interrupt entry points (continued)
  ****************************************************************/
 
-        // Define an entry point for an interrupt (no args passed).
-        .macro IRQ_ENTRY num
-        .global entry_\num
-        entry_\num :
-        cli         // In case something far-calls instead of using "int"
-        ENTRY handle_\num
-        iretw
-        .endm
-
-        // Define an entry point for an interrupt (can read/modify args).
-        .macro IRQ_ENTRY_ARG num
-        .global entry_\num
-        entry_\num :
-        cli         // In case something far-calls instead of using "int"
-        ENTRY_ARG handle_\num
-        iretw
-        .endm
-
-        ORG 0xe2c3
-        IRQ_ENTRY nmi
-
-        IRQ_ENTRY_ARG 13
-        IRQ_ENTRY_ARG 12
-        IRQ_ENTRY_ARG 11
-        IRQ_ENTRY 76
-        IRQ_ENTRY 1c
-        IRQ_ENTRY 70
-
         ORG 0xe3fe
+        .global entry_13_official
+entry_13_official:
         jmp entry_13
 
         ORG 0xe401
+        .type __fdpt, @object
+__fdpt:
         // XXX - Fixed Disk Parameter Table
 
         ORG 0xe6f2
+        .global entry_19_official
+entry_19_official:
         jmp entry_19
 
         ORG 0xe6f5
@@ -439,52 +532,16 @@ pnp_string:
         .text
 
         ORG 0xe729
+        .type __brgt, @object
+__brgt:
         // XXX - Baud Rate Generator Table
 
         ORG 0xe739
         IRQ_ENTRY_ARG 14
 
-        IRQ_ENTRY 74
-        IRQ_ENTRY 75
-
-        // int 18/19 are special - they reset the stack and do not return.
-        .global entry_19
-entry_19:
-        RESET_STACK
-        pushl $_code32_handle_19
-        jmp transition32
-
-        .global entry_18
-entry_18:
-        RESET_STACK
-        pushl $_code32_handle_18
-        jmp transition32
-
-        // IRQ trampolines
-        .macro IRQ_TRAMPOLINE num
-        .global irq_trampoline_0x\num
-        irq_trampoline_0x\num :
-        int $0x\num
-        lretw
-        .endm
-
-        IRQ_TRAMPOLINE 02
-        IRQ_TRAMPOLINE 10
-        IRQ_TRAMPOLINE 13
-        IRQ_TRAMPOLINE 15
-        IRQ_TRAMPOLINE 16
-        IRQ_TRAMPOLINE 18
-        IRQ_TRAMPOLINE 19
-        IRQ_TRAMPOLINE 1c
-        IRQ_TRAMPOLINE 4a
-
         ORG 0xe82e
         IRQ_ENTRY_ARG 16
 
-        .global entry_hwirq
-entry_hwirq:
-        ENTRY handle_hwirq
-
         ORG 0xe987
         IRQ_ENTRY 09
 
@@ -502,29 +559,61 @@ entry_hwirq:
         IRQ_ENTRY_ARG 17
 
         ORG 0xf045
-        // XXX int 10
+__int10_0x0f:
+        // XXX - INT 10 Functions 0-Fh Entry Point
         iretw
 
         ORG 0xf065
         IRQ_ENTRY_ARG 10
 
         ORG 0xf0a4
-        // XXX int 1D
-        iretw
+        .type __int1d, @object
+__int1d:
+        // XXX - INT 1D - SYSTEM DATA - VIDEO PARAMETER TABLES
+        .space 0x58
 
         .global freespace2_start, freespace2_end
 freespace2_start:
 
         ORG 0xf841
 freespace2_end:
+        .global entry_12_official
+entry_12_official:
         jmp entry_12
 
         ORG 0xf84d
+        .global entry_11_official
+entry_11_official:
         jmp entry_11
 
         ORG 0xf859
         IRQ_ENTRY_ARG 15
 
+        // Fit other misc defs if the freespace between 0xf859-0xfa6e
+
+        IRQ_ENTRY_ARG 13
+        IRQ_ENTRY_ARG 12
+        IRQ_ENTRY_ARG 11
+        IRQ_ENTRY 76
+        IRQ_ENTRY 1c
+        IRQ_ENTRY 70
+        IRQ_ENTRY 74
+        IRQ_ENTRY 75
+        IRQ_ENTRY hwpic1
+        IRQ_ENTRY hwpic2
+
+        // int 18/19 are special - they reset the stack and do not return.
+entry_19:
+        RESET_STACK
+        pushl $_code32_handle_19
+        jmp transition32
+
+        .global entry_18
+entry_18:
+        RESET_STACK
+        pushl $_code32_handle_18
+        jmp transition32
+
         ORG 0xfa6e
 .include "out/font.proc.16.s"
         .text
@@ -536,11 +625,14 @@ freespace2_end:
         IRQ_ENTRY 08
 
         ORG 0xfef3
+__initvector:
         // XXX - Initial Interrupt Vector Offsets Loaded by POST
 
         ORG 0xff00
+        .type __copyright, @object
+__copyright:
         // XXX - BIOS_COPYRIGHT_STRING
-        .ascii "(c) 2002 MandrakeSoft S.A. Written by Kevin Lawton & the Bochs team."
+        .asciz "(c) 2002 MandrakeSoft S.A. Written by Kevin Lawton & the Bochs team."
 
         ORG 0xff53
         .global dummy_iret_handler
@@ -556,13 +648,18 @@ reset_vector:
         ljmpw $SEG_BIOS, $post16
 
         ORG 0xfff5
+        .type __biosdate, @object
+__biosdate:
         // BIOS build date
         .ascii "06/23/99"
 
         ORG 0xfffe
+        .type __model_id, @object
+__model_id:
         .byte CONFIG_MODEL_ID
 
         .global bios_checksum
+        .type bios_checksum, @object
 bios_checksum:
         .byte 0x00