Subversion Repositories HelenOS

Rev

Rev 2089 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2089 Rev 2474
1
#
1
#
2
# Copyright (c) 2006 Martin Decky
2
# Copyright (c) 2006 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
#include <arch/mm/page.h>
29
#include <arch/mm/page.h>
30
#include <arch/hypercall.h>
30
#include <arch/hypercall.h>
31
 
31
 
32
#define ELFNOTE(name, type, desctype, descval) \
32
#define ELFNOTE(name, type, desctype, descval) \
33
	.section .note.name; \
33
	.section .note.name; \
34
	.align 4; \
34
	.align 4; \
35
	.long 2f - 1f; \
35
	.long 2f - 1f; \
36
	.long 4f - 3f; \
36
	.long 4f - 3f; \
37
	.long type; \
37
	.long type; \
38
	1:.asciz #name; \
38
	1:.asciz #name; \
39
	2:.align 4; \
39
	2:.align 4; \
40
	3:desctype descval; \
40
	3:desctype descval; \
41
	4:.align 4
41
	4:.align 4
42
 
42
 
43
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,			.asciz,	"HelenOS")
43
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS,			.asciz,	"HelenOS")
44
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION,		.asciz,	RELEASE)
44
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION,		.asciz,	RELEASE)
45
ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION,		.asciz,	"xen-3.0")
45
ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION,		.asciz,	"xen-3.0")
46
ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,			.long,	PA2KA(BOOT_OFFSET))
46
ELFNOTE(Xen, XEN_ELFNOTE_VIRT_BASE,			.long,	PA2KA(BOOT_OFFSET))
47
ELFNOTE(Xen, XEN_ELFNOTE_PADDR_OFFSET,		.long,	0)
47
ELFNOTE(Xen, XEN_ELFNOTE_PADDR_OFFSET,		.long,	0)
48
ELFNOTE(Xen, XEN_ELFNOTE_ENTRY,				.long,	kernel_image_start)
48
ELFNOTE(Xen, XEN_ELFNOTE_ENTRY,				.long,	kernel_image_start)
49
ELFNOTE(Xen, XEN_ELFNOTE_HYPERCALL_PAGE,	.long,	hypercall_page)
49
ELFNOTE(Xen, XEN_ELFNOTE_HYPERCALL_PAGE,	.long,	hypercall_page)
50
ELFNOTE(Xen, XEN_ELFNOTE_FEATURES,			.asciz,	"auto_translated_physmap|supervisor_mode_kernel")
50
ELFNOTE(Xen, XEN_ELFNOTE_FEATURES,			.asciz,	"auto_translated_physmap|supervisor_mode_kernel")
51
ELFNOTE(Xen, XEN_ELFNOTE_PAE_MODE,			.asciz,	"no")
51
ELFNOTE(Xen, XEN_ELFNOTE_PAE_MODE,			.asciz,	"no")
52
ELFNOTE(Xen, XEN_ELFNOTE_LOADER,			.asciz,	"generic")
52
ELFNOTE(Xen, XEN_ELFNOTE_LOADER,			.asciz,	"generic")
53
 
53
 
54
.text
54
.text
55
 
55
 
56
.code32
56
.code32
57
.align 4
57
.align 4
58
.global kernel_image_start
58
.global kernel_image_start
59
	
59
	
60
kernel_image_start:
60
kernel_image_start:
61
	# copy start_info (esi initialized by Xen)
61
	# copy start_info (esi initialized by Xen)
62
	
62
	
63
	movl $start_info, %edi
63
	movl $start_info, %edi
64
	movl $START_INFO_SIZE >> 2, %ecx
64
	movl $START_INFO_SIZE >> 2, %ecx
65
	cld
65
	cld
66
	rep movsb
66
	rep movsb
67
	
67
	
68
	# switch to temporal kernel stack
68
	# switch to temporal kernel stack
69
	
69
	
70
	movl $kernel_stack, %esp
70
	movl $kernel_stack, %esp
71
	
71
	
72
	call arch_pre_main
72
	call arch_pre_main
73
	call main_bsp								# never returns
73
	call main_bsp								# never returns
74
 
74
 
75
	cli
75
	cli
76
	hlt
76
	hlt
77
 
77
 
78
kernel_stack_bottom:
78
kernel_stack_bottom:
79
	.space TEMP_STACK_SIZE
79
	.space TEMP_STACK_SIZE
80
kernel_stack:
80
kernel_stack:
81
 
81
 
82
.section K_TEXT_START, "aw", @progbits
82
.section K_TEXT_START, "aw", @progbits
83
.global hypercall_page
83
.global hypercall_page
84
.org 0
84
.org 0
85
hypercall_page:
85
hypercall_page:
86
	.space PAGE_SIZE
86
	.space PAGE_SIZE
87
 
87
 
88
.global shared_info
88
.global shared_info
89
.org 0x1000
89
.org 0x1000
90
shared_info:
90
shared_info:
91
	.space PAGE_SIZE
91
	.space PAGE_SIZE
92
 
92
 
93
.global console_page
93
.global console_page
94
.org 0x2000
94
.org 0x2000
95
console_page:
95
console_page:
96
	.space PAGE_SIZE
96
	.space PAGE_SIZE
97
 
97
 
98
# Xen 3.0.3 ELF loader is somehow buggy
98
# Xen 3.0.3 ELF loader is somehow buggy
99
# thus this workaround
99
# thus this workaround
100
.global dummy_fill
100
.global dummy_fill
101
dummy_fill:
101
dummy_fill:
102
	.space (1024 * 1024)
102
	.space (1024 * 1024)
103
 
103