fix APCI typos.
[coreboot.git] / src / arch / i386 / init / crt0.S.lb
1 /* -*- asm -*-
2  * $ $
3  *
4  */
5
6 /* 
7  * Copyright (C) 1996-2002 Markus Franz Xaver Johannes Oberhumer
8  *
9  * This file is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 2 of
12  * the License, or (at your option) any later version.
13  *
14  * Originally this code was part of ucl the data compression library
15  * for upx the ``Ultimate Packer of eXecutables''.
16  *
17  * - Converted to gas assembly, and refitted to work with etherboot.
18  *   Eric Biederman 20 Aug 2002
19  * - Merged the nrv2b decompressor into crt0.base of coreboot
20  *   Eric Biederman 26 Sept 2002
21  */
22
23
24 #include <arch/asm.h>
25 #include <arch/intel.h>
26 #include <console/loglevel.h>   
27
28 /*
29  * This is the entry code the code in .reset section
30  * jumps to this address.
31  *
32  */
33 .section ".rom.data", "a", @progbits
34 .section ".rom.text", "ax", @progbits
35
36         intel_chip_post_macro(0x01)             /* delay for chipsets */
37
38 #include "crt0_includes.h"
39
40 #if CONFIG_USE_DCACHE_RAM == 0
41 #ifndef CONSOLE_DEBUG_TX_STRING
42         /* uses:         esp, ebx, ax, dx */
43 # define __CRT_CONSOLE_TX_STRING(string) \
44         mov     string, %ebx    ; \
45         CALLSP(crt_console_tx_string)
46
47 # if defined(CONFIG_TTYS0_BASE) && (ASM_CONSOLE_LOGLEVEL > BIOS_DEBUG)
48 #  define CONSOLE_DEBUG_TX_STRING(string)        __CRT_CONSOLE_TX_STRING(string)
49 # else
50 #  define CONSOLE_DEBUG_TX_STRING(string)
51 # endif
52 #endif
53
54         /* clear boot_complete flag */
55         xorl    %ebp, %ebp
56 __main:
57         CONSOLE_DEBUG_TX_STRING($str_copying_to_ram)
58
59         /*
60          *      Copy data into RAM and clear the BSS. Since these segments
61          *      isn\'t really that big we just copy/clear using bytes, not
62          *      double words.
63          */
64         intel_chip_post_macro(0x11)             /* post 11 */
65
66         cld                             /* clear direction flag */
67         
68         /* copy coreboot from it's initial load location to 
69          * the location it is compiled to run at.
70          * Normally this is copying from FLASH ROM to RAM.
71          */
72         movl    %ebp, %esi
73         /* FIXME: look for a proper place for the stack */
74         movl    $0x4000000, %esp
75         movl    %esp, %ebp
76         pushl %esi
77         pushl $str_coreboot_ram_name
78         call cbfs_and_run_core
79
80 .Lhlt:  
81         intel_chip_post_macro(0xee)     /* post fe */
82         hlt
83         jmp     .Lhlt
84
85 #ifdef __CRT_CONSOLE_TX_STRING
86         /* Uses esp, ebx, ax, dx  */
87 crt_console_tx_string:
88         mov     (%ebx), %al
89         inc     %ebx
90         cmp     $0, %al
91         jne     9f
92         RETSP
93 9:
94 /* Base Address */
95 #ifndef CONFIG_TTYS0_BASE
96 #define CONFIG_TTYS0_BASE       0x3f8
97 #endif
98 /* Data */
99 #define TTYS0_RBR (CONFIG_TTYS0_BASE+0x00)
100
101 /* Control */
102 #define TTYS0_TBR TTYS0_RBR
103 #define TTYS0_IER (CONFIG_TTYS0_BASE+0x01)
104 #define TTYS0_IIR (CONFIG_TTYS0_BASE+0x02)
105 #define TTYS0_FCR TTYS0_IIR
106 #define TTYS0_LCR (CONFIG_TTYS0_BASE+0x03)
107 #define TTYS0_MCR (CONFIG_TTYS0_BASE+0x04)
108 #define TTYS0_DLL TTYS0_RBR
109 #define TTYS0_DLM TTYS0_IER
110
111 /* Status */
112 #define TTYS0_LSR (CONFIG_TTYS0_BASE+0x05)
113 #define TTYS0_MSR (CONFIG_TTYS0_BASE+0x06)
114 #define TTYS0_SCR (CONFIG_TTYS0_BASE+0x07)
115         
116         mov     %al, %ah
117 10:     mov     $TTYS0_LSR, %dx
118         inb     %dx, %al
119         test    $0x20, %al
120         je      10b
121         mov     $TTYS0_TBR, %dx
122         mov     %ah, %al
123         outb    %al, %dx
124
125         jmp crt_console_tx_string
126 #endif /* __CRT_CONSOLE_TX_STRING */
127
128 #if defined(CONSOLE_DEBUG_TX_STRING) && (ASM_CONSOLE_LOGLEVEL > BIOS_DEBUG)
129 .section ".rom.data"
130 #if CONFIG_COMPRESS
131 str_copying_to_ram:  .string "Uncompressing coreboot to RAM.\r\n"
132 #else
133 str_copying_to_ram:  .string "Copying coreboot to RAM.\r\n"
134 #endif
135 str_pre_main:        .string "Jumping to coreboot.\r\n"
136 .previous
137
138 #endif /* ASM_CONSOLE_LOGLEVEL > BIOS_DEBUG */
139
140 str_coreboot_ram_name:  .ascii CONFIG_CBFS_PREFIX
141                         .string "/coreboot_ram"
142
143 #endif /* CONFIG_USE_DCACHE_RAM */