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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
|
#include <xen/lib.h>
#include <xen/multiboot.h>
#include <xen/multiboot2.h>
#include <public/xen.h>
#include <asm/asm_defns.h>
#include <asm/fixmap.h>
#include <asm/page.h>
#include <asm/processor.h>
#include <asm/msr-index.h>
#include <asm/cpufeature.h>
#include <public/elfnote.h>
.section .text.header, "ax", @progbits
.code32
#define sym_offs(sym) ((sym) - __XEN_VIRT_START)
#define sym_esi(sym) sym_offs(sym)(%esi)
#define BOOT_CS32 0x0008
#define BOOT_CS64 0x0010
#define BOOT_DS 0x0018
#define BOOT_PSEUDORM_CS 0x0020
#define BOOT_PSEUDORM_DS 0x0028
#define MB2_HT(name) (MULTIBOOT2_HEADER_TAG_##name)
#define MB2_TT(name) (MULTIBOOT2_TAG_TYPE_##name)
.macro mb2ht_args arg:req, args:vararg
.long \arg
.ifnb \args
mb2ht_args \args
.endif
.endm
.macro mb2ht_init type:req, req:req, args:vararg
.balign MULTIBOOT2_TAG_ALIGN, 0xc2 /* Avoid padding with long nops. */
.Lmb2ht_init_start\@:
.short \type
.short \req
.long .Lmb2ht_init_end\@ - .Lmb2ht_init_start\@
.ifnb \args
mb2ht_args \args
.endif
.Lmb2ht_init_end\@:
.endm
ENTRY(start)
jmp __start
.balign 4
multiboot1_header: /*** MULTIBOOT1 HEADER ****/
#define MULTIBOOT_HEADER_FLAGS (MULTIBOOT_HEADER_MODS_ALIGNED | \
MULTIBOOT_HEADER_WANT_MEMORY)
/* Magic number indicating a Multiboot header. */
.long MULTIBOOT_HEADER_MAGIC
/* Flags to bootloader (see Multiboot spec). */
.long MULTIBOOT_HEADER_FLAGS
/* Checksum: must be the negated sum of the first two fields. */
.long -(MULTIBOOT_HEADER_MAGIC + MULTIBOOT_HEADER_FLAGS)
.size multiboot1_header, . - multiboot1_header
.type multiboot1_header, @object
/*** MULTIBOOT2 HEADER ****/
/* Some ideas are taken from grub-2.00/grub-core/tests/boot/kernel-i386.S file. */
.balign MULTIBOOT2_HEADER_ALIGN, 0xc2 /* Avoid padding the MB1 header with long nops. */
multiboot2_header:
/* Magic number indicating a Multiboot2 header. */
.long MULTIBOOT2_HEADER_MAGIC
/* Architecture: i386. */
.long MULTIBOOT2_ARCHITECTURE_I386
/* Multiboot2 header length. */
.long .Lmultiboot2_header_end - multiboot2_header
/* Multiboot2 header checksum. */
.long -(MULTIBOOT2_HEADER_MAGIC + MULTIBOOT2_ARCHITECTURE_I386 + \
(.Lmultiboot2_header_end - multiboot2_header))
/* Multiboot2 information request tag. */
mb2ht_init MB2_HT(INFORMATION_REQUEST), MB2_HT(REQUIRED), \
MB2_TT(BASIC_MEMINFO), MB2_TT(MMAP)
/* Align modules at page boundry. */
mb2ht_init MB2_HT(MODULE_ALIGN), MB2_HT(REQUIRED)
/* Load address preference. */
mb2ht_init MB2_HT(RELOCATABLE), MB2_HT(OPTIONAL), \
sym_offs(start), /* Min load address. */ \
0xffffffff, /* The end of image max load address (4 GiB - 1). */ \
0x200000, /* Load address alignment (2 MiB). */ \
MULTIBOOT2_LOAD_PREFERENCE_HIGH
/* Console flags tag. */
mb2ht_init MB2_HT(CONSOLE_FLAGS), MB2_HT(OPTIONAL), \
MULTIBOOT2_CONSOLE_FLAGS_EGA_TEXT_SUPPORTED
/* Framebuffer tag. */
mb2ht_init MB2_HT(FRAMEBUFFER), MB2_HT(OPTIONAL), \
0, /* Number of the columns - no preference. */ \
0, /* Number of the lines - no preference. */ \
0 /* Number of bits per pixel - no preference. */
/* Request that ExitBootServices() not be called. */
mb2ht_init MB2_HT(EFI_BS), MB2_HT(OPTIONAL)
/* EFI64 Multiboot2 entry point. */
mb2ht_init MB2_HT(ENTRY_ADDRESS_EFI64), MB2_HT(OPTIONAL), \
sym_offs(__efi64_mb2_start)
/* Multiboot2 header end tag. */
mb2ht_init MB2_HT(END), MB2_HT(REQUIRED)
.Lmultiboot2_header_end:
.size multiboot2_header, . - multiboot2_header
.type multiboot2_header, @object
.section .init.rodata, "a", @progbits
.Lbad_cpu_msg: .asciz "ERR: Not a 64-bit CPU!"
.Lbad_ldr_msg: .asciz "ERR: Not a Multiboot bootloader!"
.Lbad_ldr_nbs: .asciz "ERR: Bootloader shutdown EFI x64 boot services!"
.Lbad_ldr_nst: .asciz "ERR: EFI SystemTable is not provided by bootloader!"
.Lbad_ldr_nih: .asciz "ERR: EFI ImageHandle is not provided by bootloader!"
.Lbad_efi_msg: .asciz "ERR: EFI IA-32 platforms are not supported!"
.Lbag_alg_msg: .asciz "ERR: Xen must be loaded at a 2Mb boundary!"
.section .init.data, "aw", @progbits
.align 4
.word 0
gdt_boot_descr:
.word .Ltrampoline_gdt_end - trampoline_gdt - 1
gdt_boot_base:
.long sym_offs(trampoline_gdt)
.long 0 /* Needed for 64-bit lgdt */
vga_text_buffer:
.long 0xb8000
efi_platform:
.byte 0
.section .init.text, "ax", @progbits
bad_cpu:
add $sym_offs(.Lbad_cpu_msg),%esi # Error message
jmp .Lget_vtb
not_multiboot:
add $sym_offs(.Lbad_ldr_msg),%esi # Error message
jmp .Lget_vtb
.Lnot_aligned:
add $sym_offs(.Lbag_alg_msg),%esi # Error message
jmp .Lget_vtb
.Lmb2_no_st:
/*
* Here we are on EFI platform. vga_text_buffer was zapped earlier
* because there is pretty good chance that VGA is unavailable.
*/
add $sym_offs(.Lbad_ldr_nst),%esi # Error message
jmp .Lget_vtb
.Lmb2_no_ih:
/* Ditto. */
add $sym_offs(.Lbad_ldr_nih),%esi # Error message
jmp .Lget_vtb
.Lmb2_no_bs:
/*
* Ditto. Additionally, here there is a chance that Xen was started
* via start label. Then reliable vga_text_buffer zap is impossible
* in Multiboot2 scanning loop and we have to zero %edi below.
*/
add $sym_offs(.Lbad_ldr_nbs),%esi # Error message
xor %edi,%edi # No VGA text buffer
jmp .Lprint_err
.Lmb2_efi_ia_32:
/*
* Here we are on EFI IA-32 platform. Then reliable vga_text_buffer zap is
* impossible in Multiboot2 scanning loop and we have to zero %edi below.
*/
add $sym_offs(.Lbad_efi_msg),%esi # Error message
xor %edi,%edi # No VGA text buffer
jmp .Lprint_err
.Lget_vtb:
mov sym_esi(vga_text_buffer),%edi
.Lprint_err:
lodsb
test %al,%al # Terminate on '\0' sentinel
je .Lhalt
mov $0x3f8+5,%dx # UART Line Status Register
mov %al,%bl
2: in %dx,%al
test $0x20,%al # Test THR Empty flag
je 2b
mov $0x3f8+0,%dx # UART Transmit Holding Register
mov %bl,%al
out %al,%dx # Send a character over the serial line
test %edi,%edi # Is the VGA text buffer available?
jz .Lprint_err
stosb # Write a character to the VGA text buffer
mov $7,%al
stosb # Write an attribute to the VGA text buffer
jmp .Lprint_err
.Lhalt: hlt
jmp .Lhalt
.code64
__efi64_mb2_start:
/*
* Multiboot2 spec says that here CPU is in 64-bit mode. However,
* there is also guarantee that all code and data is always put
* by the bootloader below 4 GiB. Hence, we can safely truncate
* addresses to 32-bits in most cases below.
*/
cld
/* VGA is not available on EFI platforms. */
movl $0,vga_text_buffer(%rip)
/* Check for Multiboot2 bootloader. */
cmp $MULTIBOOT2_BOOTLOADER_MAGIC,%eax
je .Lefi_multiboot2_proto
/* Jump to not_multiboot after switching CPU to x86_32 mode. */
lea not_multiboot(%rip),%r15
jmp x86_32_switch
.Lefi_multiboot2_proto:
/* Zero EFI SystemTable and EFI ImageHandle addresses. */
xor %esi,%esi
xor %edi,%edi
/* Skip Multiboot2 information fixed part. */
lea (MB2_fixed_sizeof+MULTIBOOT2_TAG_ALIGN-1)(%rbx),%ecx
and $~(MULTIBOOT2_TAG_ALIGN-1),%ecx
.Lefi_mb2_tsize:
/* Check Multiboot2 information total size. */
mov %ecx,%r8d
sub %ebx,%r8d
cmp %r8d,MB2_fixed_total_size(%rbx)
jbe .Lrun_bs
/* Are EFI boot services available? */
cmpl $MULTIBOOT2_TAG_TYPE_EFI_BS,MB2_tag_type(%rcx)
jne .Lefi_mb2_st
/* We are on EFI platform and EFI boot services are available. */
incb efi_platform(%rip)
/*
* Disable real mode and other legacy stuff which should not
* be run on EFI platforms.
*/
incb skip_realmode(%rip)
jmp .Lefi_mb2_next_tag
.Lefi_mb2_st:
/* Get EFI SystemTable address from Multiboot2 information. */
cmpl $MULTIBOOT2_TAG_TYPE_EFI64,MB2_tag_type(%rcx)
cmove MB2_efi64_st(%rcx),%rsi
je .Lefi_mb2_next_tag
/* Get EFI ImageHandle address from Multiboot2 information. */
cmpl $MULTIBOOT2_TAG_TYPE_EFI64_IH,MB2_tag_type(%rcx)
cmove MB2_efi64_ih(%rcx),%rdi
je .Lefi_mb2_next_tag
/* Is it the end of Multiboot2 information? */
cmpl $MULTIBOOT2_TAG_TYPE_END,MB2_tag_type(%rcx)
je .Lrun_bs
.Lefi_mb2_next_tag:
/* Go to next Multiboot2 information tag. */
add MB2_tag_size(%rcx),%ecx
add $(MULTIBOOT2_TAG_ALIGN-1),%ecx
and $~(MULTIBOOT2_TAG_ALIGN-1),%ecx
jmp .Lefi_mb2_tsize
.Lrun_bs:
/* Are EFI boot services available? */
cmpb $0,efi_platform(%rip)
/* Jump to .Lmb2_no_bs after switching CPU to x86_32 mode. */
lea .Lmb2_no_bs(%rip),%r15
jz x86_32_switch
/* Is EFI SystemTable address provided by boot loader? */
test %rsi,%rsi
/* Jump to .Lmb2_no_st after switching CPU to x86_32 mode. */
lea .Lmb2_no_st(%rip),%r15
jz x86_32_switch
/* Is EFI ImageHandle address provided by boot loader? */
test %rdi,%rdi
/* Jump to .Lmb2_no_ih after switching CPU to x86_32 mode. */
lea .Lmb2_no_ih(%rip),%r15
jz x86_32_switch
/*
* Align the stack as UEFI spec requires. Keep it aligned
* before efi_multiboot2() call by pushing/popping even
* numbers of items on it.
*/
and $~15,%rsp
/* Save Multiboot2 magic on the stack. */
push %rax
/* Save EFI ImageHandle on the stack. */
push %rdi
/*
* Initialize BSS (no nasty surprises!).
* It must be done earlier than in BIOS case
* because efi_multiboot2() touches it.
*/
lea __bss_start(%rip),%edi
lea __bss_end(%rip),%ecx
sub %edi,%ecx
shr $3,%ecx
xor %eax,%eax
rep stosq
/* Keep the stack aligned. Do not pop a single item off it. */
mov (%rsp),%rdi
/*
* efi_multiboot2() is called according to System V AMD64 ABI:
* - IN: %rdi - EFI ImageHandle, %rsi - EFI SystemTable.
*/
call efi_multiboot2
/* Just pop an item from the stack. */
pop %rax
/* Restore Multiboot2 magic. */
pop %rax
/* Jump to trampoline_setup after switching CPU to x86_32 mode. */
lea trampoline_setup(%rip),%r15
x86_32_switch:
mov %r15,%rdi
/* Store Xen image load base address in place accessible for 32-bit code. */
lea __image_base__(%rip),%esi
cli
/* Initialize GDTR. */
add %esi,gdt_boot_base(%rip)
lgdt gdt_boot_descr(%rip)
/* Reload code selector. */
pushq $BOOT_CS32
lea cs32_switch(%rip),%edx
push %rdx
lretq
.code32
cs32_switch:
/* Initialize basic data segments. */
mov $BOOT_DS,%edx
mov %edx,%ds
mov %edx,%es
mov %edx,%ss
/* %esp is initialized later. */
/* Load null descriptor to unused segment registers. */
xor %edx,%edx
mov %edx,%fs
mov %edx,%gs
/* Disable paging. */
mov %cr0,%edx
and $(~X86_CR0_PG),%edx
mov %edx,%cr0
/* Jump to earlier loaded address. */
jmp *%edi
#ifdef CONFIG_PVH_GUEST
ELFNOTE(Xen, XEN_ELFNOTE_PHYS32_ENTRY, .long sym_offs(__pvh_start))
__pvh_start:
cld
cli
/*
* We need one push/pop to determine load address. Use the same
* absolute stack address as the native path, for lack of a better
* alternative.
*/
mov $0x1000, %esp
/* Calculate the load base address. */
call 1f
1: pop %esi
sub $sym_offs(1b), %esi
/* Set up stack. */
lea STACK_SIZE - CPUINFO_sizeof + sym_esi(cpu0_stack), %esp
mov %ebx, sym_esi(pvh_start_info_pa)
/* Force xen console. Will revert to user choice in init code. */
movb $-1, sym_esi(opt_console_xen)
/* Prepare gdt and segments */
add %esi, sym_esi(gdt_boot_base)
lgdt sym_esi(gdt_boot_descr)
mov $BOOT_DS, %ecx
mov %ecx, %ds
mov %ecx, %es
mov %ecx, %ss
/* Skip bootloader setup and bios setup, go straight to trampoline */
movb $1, sym_esi(pvh_boot)
movb $1, sym_esi(skip_realmode)
/* Set trampoline_phys to use mfn 1 to avoid having a mapping at VA 0 */
movw $0x1000, sym_esi(trampoline_phys)
mov (%ebx), %eax /* mov $XEN_HVM_START_MAGIC_VALUE, %eax */
jmp trampoline_setup
#endif /* CONFIG_PVH_GUEST */
__start:
cld
cli
/*
* Multiboot (both 1 and 2) specify the stack pointer as undefined
* when entering in BIOS circumstances. This is unhelpful for
* relocatable images, where one push/pop is required to calculate
* images load address.
*
* On a BIOS-based system, the IVT and BDA occupy the first 5/16ths of
* the first page of RAM, with the rest free for use. Use the top of
* this page for a temporary stack, being one of the safest locations
* to clobber.
*/
mov $0x1000, %esp
/* Calculate the load base address. */
call 1f
1: pop %esi
sub $sym_offs(1b), %esi
/* Set up stack. */
lea STACK_SIZE - CPUINFO_sizeof + sym_esi(cpu0_stack), %esp
/* Bootloaders may set multiboot{1,2}.mem_lower to a nonzero value. */
xor %edx,%edx
/* Check for Multiboot2 bootloader. */
cmp $MULTIBOOT2_BOOTLOADER_MAGIC,%eax
je .Lmultiboot2_proto
/* Check for Multiboot bootloader. */
cmp $MULTIBOOT_BOOTLOADER_MAGIC,%eax
jne not_multiboot
/* Get mem_lower from Multiboot information. */
testb $MBI_MEMLIMITS,MB_flags(%ebx)
/* Not available? BDA value will be fine. */
cmovnz MB_mem_lower(%ebx),%edx
jmp trampoline_bios_setup
.Lmultiboot2_proto:
/* Skip Multiboot2 information fixed part. */
lea (MB2_fixed_sizeof+MULTIBOOT2_TAG_ALIGN-1)(%ebx),%ecx
and $~(MULTIBOOT2_TAG_ALIGN-1),%ecx
.Lmb2_tsize:
/* Check Multiboot2 information total size. */
mov %ecx,%edi
sub %ebx,%edi
cmp %edi,MB2_fixed_total_size(%ebx)
jbe trampoline_bios_setup
/* Get mem_lower from Multiboot2 information. */
cmpl $MULTIBOOT2_TAG_TYPE_BASIC_MEMINFO,MB2_tag_type(%ecx)
cmove MB2_mem_lower(%ecx),%edx
je .Lmb2_next_tag
/* EFI IA-32 platforms are not supported. */
cmpl $MULTIBOOT2_TAG_TYPE_EFI32,MB2_tag_type(%ecx)
je .Lmb2_efi_ia_32
/* Bootloader shutdown EFI x64 boot services. */
cmpl $MULTIBOOT2_TAG_TYPE_EFI64,MB2_tag_type(%ecx)
je .Lmb2_no_bs
/* Is it the end of Multiboot2 information? */
cmpl $MULTIBOOT2_TAG_TYPE_END,MB2_tag_type(%ecx)
je trampoline_bios_setup
.Lmb2_next_tag:
/* Go to next Multiboot2 information tag. */
add MB2_tag_size(%ecx),%ecx
add $(MULTIBOOT2_TAG_ALIGN-1),%ecx
and $~(MULTIBOOT2_TAG_ALIGN-1),%ecx
jmp .Lmb2_tsize
trampoline_bios_setup:
/*
* Called on legacy BIOS platforms only.
*
* Initialize GDTR and basic data segments.
*/
add %esi,sym_esi(gdt_boot_base)
lgdt sym_esi(gdt_boot_descr)
mov $BOOT_DS,%ecx
mov %ecx,%ds
mov %ecx,%es
mov %ecx,%ss
/* %esp is initialized later. */
/* Load null descriptor to unused segment registers. */
xor %ecx,%ecx
mov %ecx,%fs
mov %ecx,%gs
/* Set up trampoline segment 64k below EBDA */
movzwl 0x40e,%ecx /* EBDA segment */
cmp $0xa000,%ecx /* sanity check (high) */
jae 0f
cmp $0x4000,%ecx /* sanity check (low) */
jae 1f
0:
movzwl 0x413,%ecx /* use base memory size on failure */
shl $10-4,%ecx
1:
/*
* Compare the value in the BDA with the information from the
* multiboot structure (if available) and use the smallest.
*/
cmp $0x100,%edx /* is the multiboot value too small? */
jb 2f /* if so, do not use it */
shl $10-4,%edx
cmp %ecx,%edx /* compare with BDA value */
cmovb %edx,%ecx /* and use the smaller */
2:
/* Reserve memory for the trampoline and the low-memory stack. */
sub $((TRAMPOLINE_SPACE+TRAMPOLINE_STACK_SPACE)>>4),%ecx
/* From arch/x86/smpboot.c: start_eip had better be page-aligned! */
xor %cl, %cl
shl $4, %ecx
mov %ecx,sym_esi(trampoline_phys)
trampoline_setup:
/*
* Called on legacy BIOS and EFI platforms.
*/
/* Save Xen image load base address for later use. */
mov %esi, sym_esi(xen_phys_start)
mov %esi, sym_esi(trampoline_xen_phys_start)
/* Get bottom-most low-memory stack address. */
mov sym_esi(trampoline_phys), %ecx
add $TRAMPOLINE_SPACE,%ecx
#ifdef CONFIG_VIDEO
lea sym_esi(boot_vid_info), %edx
#else
xor %edx, %edx
#endif
/* Save Multiboot / PVH info struct (after relocation) for later use. */
push %edx /* Boot video info to be filled from MB2. */
push %ecx /* Bottom-most low-memory stack address. */
push %ebx /* Multiboot / PVH information address. */
push %eax /* Magic number. */
call reloc
#ifdef CONFIG_PVH_GUEST
cmpb $0, sym_esi(pvh_boot)
je 1f
mov %eax, sym_esi(pvh_start_info_pa)
jmp 2f
#endif
1:
mov %eax, sym_esi(multiboot_ptr)
2:
/*
* Now trampoline_phys points to the following structure (lowest address
* is at the bottom):
*
* +------------------------+
* | TRAMPOLINE_STACK_SPACE |
* +------------------------+
* | Data (MBI / PVH) |
* +- - - - - - - - - - - - +
* | TRAMPOLINE_SPACE |
* +------------------------+
*
* Data grows downwards from the highest address of TRAMPOLINE_SPACE
* region to the end of the trampoline. The rest of TRAMPOLINE_SPACE is
* reserved for trampoline code and data.
*/
/*
* Do not zero BSS on EFI platform here.
* It was initialized earlier.
*/
cmpb $0, sym_esi(efi_platform)
jnz 1f
/*
* Initialise the BSS.
*
* !!! WARNING - also zeroes the current stack !!!
*/
lea sym_esi(__bss_start), %edi
lea sym_esi(__bss_end), %ecx
sub %edi,%ecx
xor %eax,%eax
shr $2,%ecx
rep stosl
1:
/* Interrogate CPU extended features via CPUID. */
mov $1, %eax
cpuid
mov %ecx, CPUINFO_FEATURE_OFFSET(X86_FEATURE_HYPERVISOR) + sym_esi(boot_cpu_data)
mov $0x80000000,%eax
cpuid
shld $16,%eax,%ecx
xor %edx,%edx
cmp $0x8000,%cx # any function @ 0x8000xxxx?
jne 1f
cmp $0x80000000,%eax # any function > 0x80000000?
jbe 1f
mov $0x80000001,%eax
cpuid
1: mov %edx, CPUINFO_FEATURE_OFFSET(X86_FEATURE_LM) + sym_esi(boot_cpu_data)
/* Check for NX. Adjust EFER setting if available. */
bt $cpufeat_bit(X86_FEATURE_NX), %edx
jnc 1f
orb $EFER_NXE >> 8, 1 + sym_esi(trampoline_efer)
1:
/* Check for availability of long mode. */
bt $cpufeat_bit(X86_FEATURE_LM),%edx
jnc bad_cpu
/* Stash TSC to calculate a good approximation of time-since-boot */
rdtsc
mov %eax, sym_esi(boot_tsc_stamp)
mov %edx, 4 + sym_esi(boot_tsc_stamp)
/* Relocate pagetables to point at Xen's current location in memory. */
mov $_PAGE_PRESENT, %edx
lea sym_esi(__page_tables_start), %eax
lea sym_esi(__page_tables_end), %edi
1: test %edx, (%eax) /* if page present */
jz 2f
add %esi, (%eax) /* pte += base */
2: add $8, %eax
cmp %edi, %eax
jb 1b
.if !IS_ALIGNED(sym_offs(0), 1 << L2_PAGETABLE_SHIFT)
.error "Symbol offset calculation breaks alignment"
.endif
/* Check that the image base is aligned. */
lea sym_esi(_start), %eax
test $(1 << L2_PAGETABLE_SHIFT) - 1, %eax
jnz .Lnot_aligned
/* Map Xen into the higher mappings using 2M superpages. */
lea _PAGE_PSE + PAGE_HYPERVISOR_RWX + sym_esi(_start), %eax
mov $sym_offs(_start), %ecx /* %eax = PTE to write ^ */
mov $sym_offs(_end - 1), %edx
shr $L2_PAGETABLE_SHIFT, %ecx /* %ecx = First slot to write */
shr $L2_PAGETABLE_SHIFT, %edx /* %edx = Final slot to write */
1: mov %eax, sym_offs(l2_xenmap)(%esi, %ecx, 8)
add $1, %ecx
add $1 << L2_PAGETABLE_SHIFT, %eax
cmp %edx, %ecx
jbe 1b
/*
* Map Xen into the directmap (needed for early-boot pagetable
* handling/walking), and identity map Xen into bootmap (needed for
* the transition into long mode), using 2M superpages.
*/
lea sym_esi(_start), %ecx
lea -1 + sym_esi(_end), %edx
lea _PAGE_PSE + PAGE_HYPERVISOR_RWX(%ecx), %eax /* PTE to write. */
shr $L2_PAGETABLE_SHIFT, %ecx /* First slot to write. */
shr $L2_PAGETABLE_SHIFT, %edx /* Final slot to write. */
1: mov %eax, sym_offs(l2_bootmap) (%esi, %ecx, 8)
mov %eax, sym_offs(l2_directmap)(%esi, %ecx, 8)
add $1, %ecx
add $1 << L2_PAGETABLE_SHIFT, %eax
cmp %edx, %ecx
jbe 1b
/* Map 4x l2_bootmap[] into l3_bootmap[0...3] */
lea __PAGE_HYPERVISOR + sym_esi(l2_bootmap), %eax
mov %eax, 0 + sym_esi(l3_bootmap)
add $PAGE_SIZE, %eax
mov %eax, 8 + sym_esi(l3_bootmap)
add $PAGE_SIZE, %eax
mov %eax, 16 + sym_esi(l3_bootmap)
add $PAGE_SIZE, %eax
mov %eax, 24 + sym_esi(l3_bootmap)
/* Map l1_bootmap[] into l2_bootmap[0]. */
lea __PAGE_HYPERVISOR + sym_esi(l1_bootmap), %eax
mov %eax, sym_esi(l2_bootmap)
/* Map the permanent trampoline page into l1_bootmap[]. */
mov sym_esi(trampoline_phys), %ecx
lea __PAGE_HYPERVISOR_RX(%ecx), %edx /* %edx = PTE to write */
shr $PAGE_SHIFT, %ecx /* %ecx = Slot to write */
mov %edx, sym_offs(l1_bootmap)(%esi, %ecx, 8)
/* Apply relocations to bootstrap trampoline. */
mov sym_esi(trampoline_phys), %edx
lea sym_esi(__trampoline_rel_start), %edi
lea sym_esi(__trampoline_rel_stop), %ecx
1:
mov (%edi), %eax
add %edx, (%edi, %eax)
add $4,%edi
cmp %ecx, %edi
jb 1b
/* Patch in the trampoline segment. */
shr $4,%edx
lea sym_esi(__trampoline_seg_start), %edi
lea sym_esi(__trampoline_seg_stop), %ecx
1:
mov (%edi), %eax
mov %dx, (%edi, %eax)
add $4,%edi
cmp %ecx, %edi
jb 1b
/* Do not parse command line on EFI platform here. */
cmpb $0, sym_esi(efi_platform)
jnz 1f
/* Bail if there is no command line to parse. */
mov sym_esi(multiboot_ptr), %ebx
testl $MBI_CMDLINE,MB_flags(%ebx)
jz 1f
lea sym_esi(early_boot_opts),%eax
push %eax
pushl MB_cmdline(%ebx)
call cmdline_parse_early
1:
/* Switch to low-memory stack which lives at the end of trampoline region. */
mov sym_esi(trampoline_phys), %edi
lea TRAMPOLINE_SPACE+TRAMPOLINE_STACK_SPACE(%edi),%esp
lea trampoline_boot_cpu_entry-trampoline_start(%edi),%eax
pushl $BOOT_CS32
push %eax
/* Copy bootstrap trampoline to low memory, below 1MB. */
lea sym_esi(trampoline_start), %esi
mov $((trampoline_end - trampoline_start) / 4),%ecx
rep movsl
/* Jump into the relocated trampoline. */
lret
/*
* cmdline and reloc are written in C, and linked to be 32bit PIC with
* entrypoints at 0 and using the stdcall convention.
*/
ALIGN
cmdline_parse_early:
.incbin "cmdline.bin"
ALIGN
reloc:
.incbin "reloc.bin"
ENTRY(trampoline_start)
#include "trampoline.S"
ENTRY(trampoline_end)
#include "x86_64.S"
|