rt-thread-official/libcpu/ia32/start_gcc.S

94 lines
1.7 KiB
ArmAsm
Raw Permalink Normal View History

2013-01-08 21:05:02 +08:00
/*
* Copyright (c) 2006-2022, RT-Thread Development Team
2013-01-08 21:05:02 +08:00
*
* SPDX-License-Identifier: Apache-2.0
2013-01-08 21:05:02 +08:00
*
* Change Logs:
* Date Author Notes
* 2006-09-15 QiuYi The first version.
* 2012-02-15 aozima update.
*/
/* the magic number for the multiboot header. */
#define MULTIBOOT_HEADER_MAGIC 0x1BADB002
2013-01-08 21:05:02 +08:00
/* the flags for the multiboot header. */
#define MULTIBOOT_HEADER_FLAGS 0x00000003
2013-01-08 21:05:02 +08:00
#define CONFIG_STACKSIZE 8192
/**
* @addtogroup I386
*/
/*@{*/
.section .init, "ax"
/* the system entry */
.globl _start
_start:
jmp multiboot_entry
2013-01-08 21:05:02 +08:00
/* Align 32 bits boundary. */
.align 4
2013-01-08 21:05:02 +08:00
/* multiboot header. */
2013-01-08 21:05:02 +08:00
multiboot_header:
/* magic */
.long MULTIBOOT_HEADER_MAGIC
/* flags */
.long MULTIBOOT_HEADER_FLAGS
/* checksum */
.long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)
2013-01-08 21:05:02 +08:00
multiboot_entry:
movl $(_end + 0x1000),%esp
2013-01-08 21:05:02 +08:00
/* reset eflags. */
pushl $0
popf
2013-01-08 21:05:02 +08:00
/* rebuild globe describe table */
lgdt __gdtdesc
2013-01-08 21:05:02 +08:00
movl $0x10,%eax
movw %ax,%ds
movw %ax,%es
movw %ax,%ss
ljmp $0x08, $relocated
2013-01-08 21:05:02 +08:00
relocated:
/* push the pointer to the multiboot information structure. */
pushl %ebx
2013-01-08 21:05:02 +08:00
/* push the magic value. */
pushl %eax
2013-01-08 21:05:02 +08:00
call rtthread_startup
2013-01-08 21:05:02 +08:00
/* never get here */
2013-01-08 21:05:02 +08:00
spin:
hlt
jmp spin
2013-01-08 21:05:02 +08:00
.data
.p2align 2
__gdt:
.word 0,0,0,0
2013-01-08 21:05:02 +08:00
.word 0x07FF /* 8Mb - limit=2047 */
.word 0x0000
.word 0x9A00 /* code read/exec */
.word 0x00C0
2013-01-08 21:05:02 +08:00
.word 0x07FF /* 8Mb - limit=2047 */
.word 0x0000
.word 0x9200 /* data read/write */
.word 0x00C0
2013-01-08 21:05:02 +08:00
__gdtdesc:
.word 0x17
.long __gdt
2013-01-08 21:05:02 +08:00
/*@}*/