summaryrefslogtreecommitdiffstats
path: root/purgatory/arch/i386/entry32-16-debug.S
blob: 5167944d7f7fc8339f441bc958b9d0e749d4e5d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * kexec: Linux boots Linux
 *
 * Copyright (C) 2003,2004  Eric Biederman (ebiederm@xmission.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation (version 2 of the License).
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include "arch/debug.h"	

#undef i386	
	.text
	.globl entry16_debug, entry16_debug_regs
	.globl entry16_debug_pre32
	.globl entry16_debug_first32
	.globl entry16_debug_old_first32
	.arch i386
	.balign 16
entry16_debug:
	.code32
	/* Compute where I am running at (assumes esp valid) */
	call	1f
1:	popl	%ebx
	subl	$(1b - entry16_debug), %ebx

	/* Fixup my real mode segment */
	movl	%ebx, %eax
	shrl	$4, %eax
	movw	%ax, (2 + realptr - entry16_debug)(%ebx)

	/* Fixup the gdt */
	leal	(gdt - entry16_debug)(%ebx), %eax
	movl	%eax, (0x02 + gdt - entry16_debug)(%ebx)

	movl	%ebx, %eax
	shll	$16, %eax
	
	movl	%ebx, %ecx
	shrl	$16, %ecx
	andl	$0xff, %ecx
	
	movl	%ebx, %edx
	andl	$0xff000000, %edx
	orl	%edx, %ecx

	orl	%eax, (0x08 + gdt - entry16_debug)(%ebx)
	orl	%ecx, (0x0c + gdt - entry16_debug)(%ebx)
	orl	%eax, (0x10 + gdt - entry16_debug)(%ebx)
	orl	%ecx, (0x14 + gdt - entry16_debug)(%ebx)
	
	
DEBUG_CHAR('a')
	/* Setup the classic BIOS interrupt table at 0x0 */
	lidt	(idtptr - entry16_debug)(%ebx)

DEBUG_CHAR('b')
	/* Provide us with 16bit segments that we can use */
	lgdt	(gdt - entry16_debug)(%ebx)

DEBUG_CHAR('c')
	/* Note we don't disable the a20 line, (this shouldn't be required)
	 * The code to do it is in kexec_test and it is a real pain.
	 * I will worry about that when I need it.
	 */
	
	/* Load 16bit data segments, to ensure the segment limits are set */
	movl	$0x10, %eax
	movl	%eax, %ds
	movl	%eax, %es
	movl	%eax, %ss
	movl	%eax, %fs
	movl	%eax, %gs

DEBUG_CHAR('d')

	/* switch to 16bit mode */
	ljmp	$0x08, $1f - entry16_debug
1:
	.code16
DEBUG_CHAR('e')
	/* Disable Paging and protected mode */
	/* clear the PG & PE bits of CR0 */
	movl	%cr0,%eax
	andl	$~((1 << 31)|(1<<0)),%eax
	movl	%eax,%cr0

DEBUG_CHAR('f')
	/* make intersegment jmp to flush the processor pipeline
	 * and reload %cs:%eip (to clear upper 16 bits of %eip).
	 */
	ljmp	*(realptr - entry16_debug)
3:
DEBUG_CHAR('g')
	/* we are in real mode now
	 * set up the real mode segment registers : %ds, $ss, %es
	 */
	/* Setup the data segment */
	movw	%cs, %ax
	movw	%ax, %ds

DEBUG_CHAR('h')
	/* Load the registers */
	movl	eax - entry16_debug, %eax
	movl	ebx - entry16_debug, %ebx
	movl	ecx - entry16_debug, %ecx
	movl	edx - entry16_debug, %edx
	movl	esi - entry16_debug, %esi
	movl	edi - entry16_debug, %esi
	movl	esp - entry16_debug, %esp
	movl	ebp - entry16_debug, %ebp
	movw	es  - entry16_debug, %es
	movw	ss  - entry16_debug, %ss
	movw	fs  - entry16_debug, %fs
	movw	gs  - entry16_debug, %gs
	movw	ds  - entry16_debug, %ds

	/* Jump to the kernel entrypoint */
	ljmp	%cs:*(realdest - entry16_debug)

	.balign 4
entry16_debug_regs:	
eax:	.long	0x00000000
ebx:	.long	0x00000000
ecx:	.long	0x00000000
edx:	.long	0x00000000
esi:	.long	0x00000000
edi:	.long	0x00000000
esp:	.long	0x00000000
ebp:	.long	0x00000000
ds:	.word	0x0000
es:	.word	0x0000
ss:	.word	0x0000
fs:	.word	0x0000
gs:	.word	0x0000
realdest:
ip:	.word	0x0000
cs:	.word	0x0000
pad:	.word	0x0000
	.size entry16_debug_regs, . - entry16_debug_regs	

	.balign 16
realptr:		
	.word	3b - entry16_debug
	.word	0x0000
	
	.data
	.balign 16

idtptr:
	/* 256 entry idt at 0 */
	.word	0x400 - 1
	.word	0, 0

gdt:
	/* 0x00 unusable segment so used as the gdt ptr */
	.word gdt_end - gdt - 1
	.long 0 /* gdt */
	.word 0

	/* 0x08 16 bit real mode code segment */
	.word	0xffff, 0x0000
	.byte	0x00, 0x9b, 0x00, 0x00

	/* 0x10 16 bit real mode data segment */
	.word	0xffff, 0x0000
	.byte	0x00, 0x93, 0x00, 0x00
gdt_end:
	.size gdt, . - gdt

	.text	
entry16_debug_pre32:
	.code16
DEBUG_CHAR('i')
	cli					# no interrupts allowed !
	movb	$0x80, %al			# disable NMI for bootup
						# sequence
	outb	%al, $0x70
	lret
.size entry16_debug_pre32, . - entry16_debug_pre32
	
entry16_debug_first32:
	.code32
DEBUG_CHAR('j')
	.byte	0xb8	/* movl $0x10000, %eax */
entry16_debug_old_first32:
	.long 0x100000
	.size entry16_debug_old_first32, . - entry16_debug_old_first32
	jmp	*%eax
.size entry16_debug_first32, . - entry16_debug_first32