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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
|
/*
* Xen domain firmware emulation support
* Copyright (C) 2004 Hewlett-Packard Co.
* Dan Magenheimer (dan.magenheimer@hp.com)
*
* Copyright (c) 2006 Isaku Yamahata <yamahata at valinux co jp>
* VA Linux Systems Japan K.K.
* dom0 vp model support
*/
#include <xen/config.h>
#include <asm/system.h>
#include <asm/pgalloc.h>
#include <linux/efi.h>
#include <linux/sort.h>
#include <asm/io.h>
#include <asm/pal.h>
#include <asm/sal.h>
#include <asm/meminit.h>
#include <asm/fpswa.h>
#include <xen/version.h>
#include <xen/acpi.h>
#include <xen/errno.h>
#include <asm/dom_fw.h>
#include <asm/bundle.h>
#define ONE_MB (1UL << 20)
extern unsigned long running_on_sim;
#define FW_VENDOR "X\0e\0n\0/\0i\0a\0\066\0\064\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
#define MAKE_MD(typ, attr, start, end) \
do { \
md = tables->efi_memmap + i++; \
md->type = typ; \
md->pad = 0; \
md->phys_addr = start; \
md->virt_addr = 0; \
md->num_pages = (end - start) >> EFI_PAGE_SHIFT; \
md->attribute = attr; \
} while (0)
#define EFI_HYPERCALL_PATCH(tgt, call) \
do { \
dom_efi_hypercall_patch(d, FW_HYPERCALL_##call##_PADDR, \
FW_HYPERCALL_##call, hypercalls_imva); \
/* Descriptor address. */ \
tables->efi_runtime.tgt = \
FW_FIELD_MPA(func_ptrs) + 8 * pfn; \
/* Descriptor. */ \
tables->func_ptrs[pfn++] = FW_HYPERCALL_##call##_PADDR; \
tables->func_ptrs[pfn++] = 0; \
} while (0)
// allocate a page for fw
// build_physmap_table() which is called by new_thread()
// does for domU.
static inline void
assign_new_domain_page_if_dom0(struct domain *d, unsigned long mpaddr)
{
if (d == dom0)
assign_new_domain0_page(d, mpaddr);
}
/**************************************************************************
Hypercall bundle creation
**************************************************************************/
static void
build_hypercall_bundle(u64 *imva, u64 brkimm, u64 hypnum, u64 ret)
{
INST64_A5 slot0;
INST64_I19 slot1;
INST64_B4 slot2;
IA64_BUNDLE bundle;
// slot1: mov r2 = hypnum (low 20 bits)
slot0.inst = 0;
slot0.qp = 0; slot0.r1 = 2; slot0.r3 = 0; slot0.major = 0x9;
slot0.imm7b = hypnum; slot0.imm9d = hypnum >> 7;
slot0.imm5c = hypnum >> 16; slot0.s = 0;
// slot1: break brkimm
slot1.inst = 0;
slot1.qp = 0; slot1.x6 = 0; slot1.x3 = 0; slot1.major = 0x0;
slot1.imm20 = brkimm; slot1.i = brkimm >> 20;
// if ret slot2: br.ret.sptk.many rp
// else slot2: br.cond.sptk.many rp
slot2.inst = 0; slot2.qp = 0; slot2.p = 1; slot2.b2 = 0;
slot2.wh = 0; slot2.d = 0; slot2.major = 0x0;
if (ret) {
slot2.btype = 4; slot2.x6 = 0x21;
}
else {
slot2.btype = 0; slot2.x6 = 0x20;
}
bundle.i64[0] = 0; bundle.i64[1] = 0;
bundle.template = 0x11;
bundle.slot0 = slot0.inst; bundle.slot2 = slot2.inst;
bundle.slot1a = slot1.inst; bundle.slot1b = slot1.inst >> 18;
imva[0] = bundle.i64[0]; imva[1] = bundle.i64[1];
ia64_fc(imva);
ia64_fc(imva + 1);
}
static void
build_pal_hypercall_bundles(u64 *imva, u64 brkimm, u64 hypnum)
{
extern unsigned long pal_call_stub[];
IA64_BUNDLE bundle;
INST64_A5 slot_a5;
INST64_M37 slot_m37;
/* The source of the hypercall stub is the pal_call_stub function
defined in xenasm.S. */
/* Copy the first bundle and patch the hypercall number. */
bundle.i64[0] = pal_call_stub[0];
bundle.i64[1] = pal_call_stub[1];
slot_a5.inst = bundle.slot0;
slot_a5.imm7b = hypnum;
slot_a5.imm9d = hypnum >> 7;
slot_a5.imm5c = hypnum >> 16;
bundle.slot0 = slot_a5.inst;
imva[0] = bundle.i64[0];
imva[1] = bundle.i64[1];
ia64_fc(imva);
ia64_fc(imva + 1);
/* Copy the second bundle and patch the hypercall vector. */
bundle.i64[0] = pal_call_stub[2];
bundle.i64[1] = pal_call_stub[3];
slot_m37.inst = bundle.slot0;
slot_m37.imm20a = brkimm;
slot_m37.i = brkimm >> 20;
bundle.slot0 = slot_m37.inst;
imva[2] = bundle.i64[0];
imva[3] = bundle.i64[1];
ia64_fc(imva + 2);
ia64_fc(imva + 3);
}
// builds a hypercall bundle at domain physical address
static void
dom_fpswa_hypercall_patch(struct domain *d, unsigned long imva)
{
unsigned long *entry_imva, *patch_imva;
const unsigned long entry_paddr = FW_HYPERCALL_FPSWA_ENTRY_PADDR;
const unsigned long patch_paddr = FW_HYPERCALL_FPSWA_PATCH_PADDR;
entry_imva = (unsigned long *)(imva + entry_paddr -
FW_HYPERCALL_BASE_PADDR);
patch_imva = (unsigned long *)(imva + patch_paddr -
FW_HYPERCALL_BASE_PADDR);
/* Descriptor. */
*entry_imva++ = patch_paddr;
*entry_imva = 0;
build_hypercall_bundle(patch_imva, d->arch.breakimm,
FW_HYPERCALL_FPSWA, 1);
}
// builds a hypercall bundle at domain physical address
static void
dom_efi_hypercall_patch(struct domain *d, unsigned long paddr,
unsigned long hypercall, unsigned long imva)
{
build_hypercall_bundle((u64 *)(imva + paddr - FW_HYPERCALL_BASE_PADDR),
d->arch.breakimm, hypercall, 1);
}
// builds a hypercall bundle at domain physical address
static void
dom_fw_hypercall_patch(struct domain *d, unsigned long paddr,
unsigned long hypercall,unsigned long ret,
unsigned long imva)
{
build_hypercall_bundle((u64 *)(imva + paddr - FW_HYPERCALL_BASE_PADDR),
d->arch.breakimm, hypercall, ret);
}
static void
dom_fw_pal_hypercall_patch(struct domain *d, unsigned long paddr,
unsigned long imva)
{
build_pal_hypercall_bundles((u64*)(imva + paddr -
FW_HYPERCALL_BASE_PADDR),
d->arch.breakimm, FW_HYPERCALL_PAL_CALL);
}
static inline void
print_md(efi_memory_desc_t *md)
{
u64 size;
printk("dom mem: type=%2u, attr=0x%016lx, range=[0x%016lx-0x%016lx) ",
md->type, md->attribute, md->phys_addr,
md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT));
size = md->num_pages << EFI_PAGE_SHIFT;
if (size > ONE_MB)
printk ("(%luMB)\n", size >> 20);
else
printk ("(%luKB)\n", size >> 10);
}
static u32 lsapic_nbr;
/* Modify lsapic table. Provides LPs. */
static int
acpi_update_lsapic (acpi_table_entry_header *header, const unsigned long end)
{
struct acpi_table_lsapic *lsapic;
int enable;
lsapic = (struct acpi_table_lsapic *) header;
if (!lsapic)
return -EINVAL;
if (lsapic_nbr < MAX_VIRT_CPUS && dom0->vcpu[lsapic_nbr] != NULL)
enable = 1;
else
enable = 0;
if (lsapic->flags.enabled && enable) {
printk("enable lsapic entry: 0x%lx\n", (u64)lsapic);
lsapic->id = lsapic_nbr;
lsapic->eid = 0;
lsapic_nbr++;
} else if (lsapic->flags.enabled) {
printk("DISABLE lsapic entry: 0x%lx\n", (u64)lsapic);
lsapic->flags.enabled = 0;
lsapic->id = 0;
lsapic->eid = 0;
}
return 0;
}
static u8
generate_acpi_checksum(void *tbl, unsigned long len)
{
u8 *ptr, sum = 0;
for (ptr = tbl; len > 0 ; len--, ptr++)
sum += *ptr;
return 0 - sum;
}
static int
acpi_update_madt_checksum (unsigned long phys_addr, unsigned long size)
{
struct acpi_table_madt* acpi_madt;
if (!phys_addr || !size)
return -EINVAL;
acpi_madt = (struct acpi_table_madt *) __va(phys_addr);
acpi_madt->header.checksum = 0;
acpi_madt->header.checksum = generate_acpi_checksum(acpi_madt, size);
return 0;
}
/* base is physical address of acpi table */
static void touch_acpi_table(void)
{
lsapic_nbr = 0;
if (acpi_table_parse_madt(ACPI_MADT_LSAPIC, acpi_update_lsapic, 0) < 0)
printk("Error parsing MADT - no LAPIC entires\n");
acpi_table_parse(ACPI_APIC, acpi_update_madt_checksum);
return;
}
struct fake_acpi_tables {
struct acpi20_table_rsdp rsdp;
struct xsdt_descriptor_rev2 xsdt;
u64 madt_ptr;
struct fadt_descriptor_rev2 fadt;
struct facs_descriptor_rev2 facs;
struct acpi_table_header dsdt;
u8 aml[8 + 11 * MAX_VIRT_CPUS];
struct acpi_table_madt madt;
struct acpi_table_lsapic lsapic[MAX_VIRT_CPUS];
u8 pm1a_evt_blk[4];
u8 pm1a_cnt_blk[1];
u8 pm_tmr_blk[4];
};
#define ACPI_TABLE_MPA(field) \
FW_ACPI_BASE_PADDR + offsetof(struct fake_acpi_tables, field);
/* Create enough of an ACPI structure to make the guest OS ACPI happy. */
static void
dom_fw_fake_acpi(struct domain *d, struct fake_acpi_tables *tables)
{
struct acpi20_table_rsdp *rsdp = &tables->rsdp;
struct xsdt_descriptor_rev2 *xsdt = &tables->xsdt;
struct fadt_descriptor_rev2 *fadt = &tables->fadt;
struct facs_descriptor_rev2 *facs = &tables->facs;
struct acpi_table_header *dsdt = &tables->dsdt;
struct acpi_table_madt *madt = &tables->madt;
struct acpi_table_lsapic *lsapic = tables->lsapic;
int i;
int aml_len;
int nbr_cpus;
memset(tables, 0, sizeof(struct fake_acpi_tables));
/* setup XSDT (64bit version of RSDT) */
strncpy(xsdt->signature, XSDT_SIG, 4);
/* XSDT points to both the FADT and the MADT, so add one entry */
xsdt->length = sizeof(struct xsdt_descriptor_rev2) + sizeof(u64);
xsdt->revision = 1;
strcpy(xsdt->oem_id, "XEN");
strcpy(xsdt->oem_table_id, "Xen/ia64");
strcpy(xsdt->asl_compiler_id, "XEN");
xsdt->asl_compiler_revision = (xen_major_version() << 16) |
xen_minor_version();
xsdt->table_offset_entry[0] = ACPI_TABLE_MPA(fadt);
tables->madt_ptr = ACPI_TABLE_MPA(madt);
xsdt->checksum = generate_acpi_checksum(xsdt, xsdt->length);
/* setup FADT */
strncpy(fadt->signature, FADT_SIG, 4);
fadt->length = sizeof(struct fadt_descriptor_rev2);
fadt->revision = FADT2_REVISION_ID;
strcpy(fadt->oem_id, "XEN");
strcpy(fadt->oem_table_id, "Xen/ia64");
strcpy(fadt->asl_compiler_id, "XEN");
fadt->asl_compiler_revision = (xen_major_version() << 16) |
xen_minor_version();
strncpy(facs->signature, FACS_SIG, 4);
facs->version = 1;
facs->length = sizeof(struct facs_descriptor_rev2);
fadt->xfirmware_ctrl = ACPI_TABLE_MPA(facs);
fadt->Xdsdt = ACPI_TABLE_MPA(dsdt);
/*
* All of the below FADT entries are filled it to prevent warnings
* from sanity checks in the ACPI CA. Emulate required ACPI hardware
* registers in system memory.
*/
fadt->pm1_evt_len = 4;
fadt->xpm1a_evt_blk.address_space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
fadt->xpm1a_evt_blk.register_bit_width = 8;
fadt->xpm1a_evt_blk.address = ACPI_TABLE_MPA(pm1a_evt_blk);
fadt->pm1_cnt_len = 1;
fadt->xpm1a_cnt_blk.address_space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
fadt->xpm1a_cnt_blk.register_bit_width = 8;
fadt->xpm1a_cnt_blk.address = ACPI_TABLE_MPA(pm1a_cnt_blk);
fadt->pm_tm_len = 4;
fadt->xpm_tmr_blk.address_space_id = ACPI_ADR_SPACE_SYSTEM_MEMORY;
fadt->xpm_tmr_blk.register_bit_width = 8;
fadt->xpm_tmr_blk.address = ACPI_TABLE_MPA(pm_tmr_blk);
fadt->checksum = generate_acpi_checksum(fadt, fadt->length);
/* setup RSDP */
strncpy(rsdp->signature, RSDP_SIG, 8);
strcpy(rsdp->oem_id, "XEN");
rsdp->revision = 2; /* ACPI 2.0 includes XSDT */
rsdp->length = sizeof(struct acpi20_table_rsdp);
rsdp->xsdt_address = ACPI_TABLE_MPA(xsdt);
rsdp->checksum = generate_acpi_checksum(rsdp,
ACPI_RSDP_CHECKSUM_LENGTH);
rsdp->ext_checksum = generate_acpi_checksum(rsdp, rsdp->length);
/* setup DSDT with trivial namespace. */
strncpy(dsdt->signature, DSDT_SIG, 4);
dsdt->revision = 1;
strcpy(dsdt->oem_id, "XEN");
strcpy(dsdt->oem_table_id, "Xen/ia64");
strcpy(dsdt->asl_compiler_id, "XEN");
dsdt->asl_compiler_revision = (xen_major_version() << 16) |
xen_minor_version();
/* Trivial namespace, avoids ACPI CA complaints */
tables->aml[0] = 0x10; /* Scope */
tables->aml[1] = 0x40; /* length/offset to next object (patched) */
tables->aml[2] = 0x00;
strncpy((char *)&tables->aml[3], "_SB_", 4);
/* The processor object isn't absolutely necessary, revist for SMP */
aml_len = 7;
for (i = 0; i < 3; i++) {
unsigned char *p = tables->aml + aml_len;
p[0] = 0x5b; /* processor object */
p[1] = 0x83;
p[2] = 0x0b; /* next */
p[3] = 'C';
p[4] = 'P';
snprintf ((char *)p + 5, 3, "%02x", i);
if (i < 16)
p[5] = 'U';
p[7] = i; /* acpi_id */
p[8] = 0; /* pblk_addr */
p[9] = 0;
p[10] = 0;
p[11] = 0;
p[12] = 0; /* pblk_len */
aml_len += 13;
}
tables->aml[1] = 0x40 + ((aml_len - 1) & 0x0f);
tables->aml[2] = (aml_len - 1) >> 4;
dsdt->length = sizeof(struct acpi_table_header) + aml_len;
dsdt->checksum = generate_acpi_checksum(dsdt, dsdt->length);
/* setup MADT */
strncpy(madt->header.signature, APIC_SIG, 4);
madt->header.revision = 2;
strcpy(madt->header.oem_id, "XEN");
strcpy(madt->header.oem_table_id, "Xen/ia64");
strcpy(madt->header.asl_compiler_id, "XEN");
madt->header.asl_compiler_revision = (xen_major_version() << 16) |
xen_minor_version();
/* An LSAPIC entry describes a CPU. */
nbr_cpus = 0;
for (i = 0; i < MAX_VIRT_CPUS; i++) {
lsapic[i].header.type = ACPI_MADT_LSAPIC;
lsapic[i].header.length = sizeof(struct acpi_table_lsapic);
lsapic[i].acpi_id = i;
lsapic[i].id = i;
lsapic[i].eid = 0;
if (d->vcpu[i] != NULL) {
lsapic[i].flags.enabled = 1;
nbr_cpus++;
}
}
madt->header.length = sizeof(struct acpi_table_madt) +
nbr_cpus * sizeof(struct acpi_table_lsapic);
madt->header.checksum = generate_acpi_checksum(madt,
madt->header.length);
return;
}
static int
efi_mdt_cmp(const void *a, const void *b)
{
const efi_memory_desc_t *x = a, *y = b;
if (x->phys_addr > y->phys_addr)
return 1;
if (x->phys_addr < y->phys_addr)
return -1;
// num_pages == 0 is allowed.
if (x->num_pages > y->num_pages)
return 1;
if (x->num_pages < y->num_pages)
return -1;
return 0;
}
#define NFUNCPTRS 16
#define NUM_EFI_SYS_TABLES 6
#define NUM_MEM_DESCS 64 //large enough
struct fw_tables {
efi_system_table_t efi_systab;
|