summaryrefslogtreecommitdiff
path: root/kexec/arch/arm64/kexec-arm64.c
blob: 829f0d34baf8a58b3d75a4aea2044f34f2450b52 (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
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
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
/*
 * ARM64 kexec.
 */

#define _GNU_SOURCE

#include <assert.h>
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <getopt.h>
#include <inttypes.h>
#include <libfdt.h>
#include <limits.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>

#include <sys/stat.h>

#include <linux/elf.h>

#include "dt-ops.h"
#include "kexec.h"
#include "crashdump.h"
#include "crashdump-arm64.h"
#include "kexec-arm64.h"
#include "fs2dt.h"
#include "kexec-syscall.h"
#include "arch/options.h"

/* Global varables the core kexec routines expect. */

unsigned char reuse_initrd;

off_t initrd_base;
off_t initrd_size;

const struct arch_map_entry arches[] = {
	{ "aarch64", KEXEC_ARCH_ARM64 },
	{ "aarch64_be", KEXEC_ARCH_ARM64 },
	{ NULL, 0 },
};

/* arm64 global varables. */

struct arm64_opts arm64_opts;
struct arm64_mem arm64_mem;

void arch_usage(void)
{
	dbgprintf("Build time: %s : %s\n", __DATE__, __TIME__);
	printf(arm64_opts_usage);
}

int arch_process_options(int argc, char **argv)
{
	static const char short_options[] = KEXEC_OPT_STR "";
	static const struct option options[] = {
		KEXEC_ARCH_OPTIONS
		{ 0 }
	};
	int opt;

	for (opt = 0; opt != -1; ) {
		opt = getopt_long(argc, argv, short_options, options, 0);

		switch (opt) {
		case OPT_APPEND:
			arm64_opts.command_line = optarg;
			break;
		case OPT_DTB:
			arm64_opts.dtb = optarg;
			break;
		case OPT_INITRD:
			arm64_opts.initrd = optarg;
			break;
		case OPT_LITE:
			arm64_opts.lite = 1;
			break;
		case OPT_PORT:
			arm64_opts.port = strtoull(optarg, NULL, 0);
			break;
		default:
			break; /* Ignore core and unknown options. */
		}
	}

	kexec_debug = 1; // FIXME: for debugging only.

	dbgprintf("%s:%d: command_line: %s\n", __func__, __LINE__,
		arm64_opts.command_line);
	dbgprintf("%s:%d: initrd: %s\n", __func__, __LINE__,
		arm64_opts.initrd);
	dbgprintf("%s:%d: dtb: %s\n", __func__, __LINE__, arm64_opts.dtb);
	dbgprintf("%s:%d: lite: %d\n", __func__, __LINE__, arm64_opts.lite);
	dbgprintf("%s:%d: port: 0x%" PRIx64 "\n", __func__, __LINE__,
		arm64_opts.port);

	return 0;
}

struct dtb {
	char *buf;
	off_t size;
	const char *name;
};

static void dump_reservemap(const struct dtb *dtb)
{
	int i;

	for (i = 0; ; i++) {
		uint64_t address;
		uint64_t size;

		fdt_get_mem_rsv(dtb->buf, i, &address, &size);

		if (!size)
			break;

		dbgprintf("%s: %s {%" PRIx64 ", %" PRIx64 "}\n", __func__,
			dtb->name, address, size);
	}
}

enum cpu_enable_method {
	cpu_enable_method_unknown,
	cpu_enable_method_psci,
	cpu_enable_method_spin_table,
};

/**
 * struct cpu_properties - Various properties from a device tree cpu node.
 *
 * These properties will be valid over a dtb re-size.
 */

struct cpu_properties {
	uint64_t hwid;
	uint64_t cpu_release_addr;
	char node_path[128];
	char enable_method[128];
	enum cpu_enable_method type;
};

/**
 * read_cpu_properties - Helper to read the device tree cpu properties.
 */

static int read_cpu_properties(struct cpu_properties *cp,
	const struct dtb *dtb, int node_offset)
{
	int result;
	const void *data;

	memset(cp, 0, sizeof(*cp));

	data = fdt_getprop(dtb->buf, node_offset, "reg", &result);

	if (!data) {
		fprintf(stderr, "kexec: %s:%d: read hwid failed: %s\n",
			__func__, __LINE__, fdt_strerror(result));
		return result;
	}

	cp->hwid = fdt64_to_cpu(*(uint64_t *)data);

	result = fdt_get_path(dtb->buf, node_offset, cp->node_path,
		sizeof(cp->node_path));

	if (result < 0) {
		dbgprintf("%s:%d: hwid-%" PRIx64 ": fdt_get_path failed %s.\n",
			__func__, __LINE__, cp->hwid,
			fdt_strerror(result));
		return result;
	}

	data = fdt_getprop(dtb->buf, node_offset, "enable-method", &result);

	if (!data) {
		fprintf(stderr,
			"kexec: %s:%d: read enable_method failed: %s\n",
			__func__, __LINE__, fdt_strerror(result));
		return result;
	}

	strncpy(cp->enable_method, data, sizeof(cp->enable_method));
	cp->enable_method[sizeof(cp->enable_method) - 1] = 0;

	if (!strcmp(cp->enable_method, "psci")) {
		cp->type = cpu_enable_method_psci;
		return 0;
	}

	if (strcmp(cp->enable_method, "spin-table")) {
		cp->type = cpu_enable_method_unknown;
		return -1;
	}

	cp->type = cpu_enable_method_spin_table;

	data = fdt_getprop(dtb->buf, node_offset, "cpu-release-addr", &result);

	if (!data) {
		fprintf(stderr, "kexec: %s:%d: "
			"read cpu-release-addr failed: %s\n",
			__func__, __LINE__, fdt_strerror(result));
		return result;
	}

	cp->cpu_release_addr = fdt64_to_cpu(*(uint64_t *)data);

	return 0;
}

static int check_cpu_properties(const struct cpu_properties *cp_1,
	const struct cpu_properties *cp_2)
{
	assert(cp_1->hwid == cp_2->hwid);

	if (cp_1->type != cp_2->type) {
		fprintf(stderr,
			"%s:%d: hwid-%" PRIx64 ": "
			"Error: Different enable methods: %s -> %s\n",
			__func__, __LINE__, cp_1->hwid, cp_1->enable_method,
			cp_2->enable_method);
		return -EINVAL;
	}

	if (cp_1->type != cpu_enable_method_psci
		&& cp_1->type != cpu_enable_method_spin_table) {
		fprintf(stderr,
			"%s:%d: hwid-%" PRIx64 ": "
			"Warning: Unknown enable method: %s.\n",
			__func__, __LINE__, cp_1->hwid,
			cp_1->enable_method);
	}

	if (cp_1->type == cpu_enable_method_spin_table) {
		if (cp_1->cpu_release_addr != cp_2->cpu_release_addr) {
			fprintf(stderr, "%s:%d: hwid-%" PRIx64 ": "
				"Error: Different cpu-release-addr: "
				"%" PRIx64 " -> %" PRIx64 ".\n",
				__func__, __LINE__,
				cp_1->hwid,
				cp_2->cpu_release_addr,
				cp_1->cpu_release_addr);
			return -EINVAL;
		}
	}

	dbgprintf("%s: hwid-%" PRIx64 ": OK\n", __func__, cp_1->hwid);

	return 0;
}

struct cpu_info {
	unsigned int cpu_count;
	struct cpu_properties *cp;
};

static int read_cpu_info(struct cpu_info *info, const struct dtb *dtb)
{
	int i;
	int offset;
	int result;
	int depth;

	offset = fdt_subnode_offset(dtb->buf, 0, "cpus");

	if (offset < 0) {
		fprintf(stderr, "kexec: %s:%d: read cpus node failed: %s\n",
			__func__, __LINE__, fdt_strerror(offset));
		return offset;
	}

	for (i = 0, depth = 0; ; i++) {

		offset = fdt_next_node(dtb->buf, offset, &depth);

		if (offset < 0) {
			fprintf(stderr, "kexec: %s:%d: "
				"read cpu node failed: %s\n", __func__,
				__LINE__, fdt_strerror(offset));
			result = offset;
			goto on_error;
		}

		if (depth != 1)
			break;

		info->cp = realloc(info->cp, (i + 1) * sizeof(*info->cp));

		if (!info->cp) {
			fprintf(stderr, "kexec: %s:%d: malloc failed: %s\n",
				__func__, __LINE__, fdt_strerror(offset));
			result = -ENOMEM;
			goto on_error;
		}

		result = read_cpu_properties(&info->cp[i], dtb, offset);

		if (result)
			goto on_error;

		if (info->cp[i].type == cpu_enable_method_psci)
			dbgprintf("%s: %s cpu-%d (%s): hwid-%" PRIx64 ", '%s'\n",
				__func__, dtb->name, i, info->cp[i].node_path,
				info->cp[i].hwid,
				info->cp[i].enable_method);
		else
			dbgprintf("%s: %s cpu-%d (%s): hwid-%" PRIx64 ", '%s', "
				"cpu-release-addr %" PRIx64 "\n",
				__func__, dtb->name, i, info->cp[i].node_path,
				info->cp[i].hwid,
				info->cp[i].enable_method,
				info->cp[i].cpu_release_addr);
	}

	info->cpu_count = i;
	return 0;

on_error:
	free(info->cp);
	info->cp = NULL;
	return result;
}

static int check_cpu_nodes(const struct dtb *dtb_1, const struct dtb *dtb_2)
{
	int result;
	unsigned int cpu_1;
	struct cpu_info info_1;
	struct cpu_info info_2;
	unsigned int to_process;

	memset(&info_1, 0, sizeof(info_1));
	memset(&info_2, 0, sizeof(info_2));

	result = read_cpu_info(&info_1, dtb_1);

	if (result)
		goto on_exit;

	result = read_cpu_info(&info_2, dtb_2);

	if (result)
		goto on_exit;

	to_process = info_1.cpu_count < info_2.cpu_count
		? info_1.cpu_count : info_2.cpu_count;

	for (cpu_1 = 0; cpu_1 < info_1.cpu_count; cpu_1++) {
		struct cpu_properties *cp_1 = &info_1.cp[cpu_1];
		unsigned int cpu_2;

		for (cpu_2 = 0; cpu_2 < info_2.cpu_count; cpu_2++) {
			struct cpu_properties *cp_2 = &info_2.cp[cpu_2];

			if (cp_1->hwid != cp_2->hwid)
				continue;

			to_process--;

			result = check_cpu_properties(cp_1, cp_2);

			if (result)
				goto on_exit;
		}
	}

	if (to_process) {
		fprintf(stderr, "kexec: %s:%d: Warning: "
			"Failed to process %u CPUs.\n",
			__func__, __LINE__, to_process);
		result = -EINVAL;
		goto on_exit;
	}

on_exit:
	free(info_1.cp);
	free(info_2.cp);
	return result;
}

static int read_1st_dtb(struct dtb *dtb, const char *command_line)
{
	int result;
	struct stat s;

	result = stat("/proc/device-tree/", &s);

	if (result) {
		dbgprintf("%s: %s\n", __func__, strerror(errno));
		return -1;
	}

	create_flatten_tree((char **)&dtb->buf, &dtb->size,
		command_line[0] ? command_line : NULL);

	return 0;
}

static int setup_2nd_dtb(char *command_line, const struct dtb *dtb_1,
	struct dtb *dtb_2)
{
	int result;

	result = fdt_check_header(dtb_2->buf);

	if (result) {
		fprintf(stderr, "kexec: Invalid 2nd device tree.\n");
		return -EINVAL;
	}

	if (command_line[0]) {
		result = dtb_set_bootargs((char **)&dtb_2->buf, &dtb_2->size,
			command_line);

		if (result) {
			fprintf(stderr,
				"kexec: Set device tree bootargs failed.\n");
			return result;
		}
	}

	dump_reservemap(dtb_2);

	return 0;
}

static uint64_t read_sink(const char *command_line)
{
	uint64_t v;
	const char *p;

	if (arm64_opts.port)
		return arm64_opts.port;

#if defined(ARM64_DEBUG_PORT)
	return (uint64_t)(ARM64_DEBUG_PORT);
#endif
	if (!command_line)
		return 0;

	p = strstr(command_line, "earlyprintk=");

	if (!p)
		return 0;

	while (*p != ',')
		p++;

	p++;

	while (isspace(*p))
		p++;

	if (*p == 0)
		return 0;

	errno = 0;

	v = strtoull(p, NULL, 0);

	if (errno)
		return 0;

	return v;
}

/**
 * arm64_load_other_segments - Prepare the dtb, initrd and purgatory segments.
 */

int arm64_load_other_segments(struct kexec_info *info,
	unsigned long kernel_entry)
{
	int result;
	struct mem_ehdr ehdr;
	unsigned long dtb_max;
	unsigned long dtb_base;
	char *initrd_buf = NULL;
	uint64_t purgatory_sink;
	unsigned long purgatory_base;
	struct dtb dtb_1 = {.name = "dtb_1"};
	struct dtb dtb_2 = {.name = "dtb_2"};
	char command_line[COMMAND_LINE_SIZE] = "";

	if (arm64_opts.command_line) {
		strncpy(command_line, arm64_opts.command_line,
			sizeof(command_line));
		command_line[sizeof(command_line) - 1] = 0;
	}

	purgatory_sink = read_sink(command_line);

	dbgprintf("%s:%d: purgatory sink: 0x%" PRIx64 "\n", __func__, __LINE__,
		purgatory_sink);

	if (arm64_opts.dtb) {
		dtb_2.buf = slurp_file(arm64_opts.dtb, &dtb_2.size);
		assert(dtb_2.buf);
	}

	result = read_1st_dtb(&dtb_1, command_line);

	if (result && !arm64_opts.dtb) {
		fprintf(stderr, "kexec: Error: No device tree available.\n");
		return result;
	}

	if (result && arm64_opts.dtb)
		dtb_1 = dtb_2;
	else if (!result && !arm64_opts.dtb)
		dtb_2 = dtb_1;

	result = setup_2nd_dtb(command_line, &dtb_1, &dtb_2);

	if (result)
		return result;
	
	result =  check_cpu_nodes(&dtb_1, &dtb_2);

	if (result)
		return result;

	/*
	 * Put the DTB after the kernel with an alignment of 128 KiB, giving
	 * a max supported DTB size of 128 KiB (worst case).  Also add 2 KiB
	 * to the DTB size for any DTB growth.
	 */

	dtb_max = dtb_2.size + 2 * 1024;

	dtb_base = locate_hole(info, dtb_max, 128UL * 1024,
		arm64_mem.memstart + arm64_mem.text_offset
			+ arm64_mem.image_size,
		_ALIGN_UP(arm64_mem.memstart + arm64_mem.text_offset,
			512UL * 1024 * 1024),
		1);

	dbgprintf("dtb:    base %lx, size %lxh (%ld)\n", dtb_base, dtb_2.size,
		dtb_2.size);

	if (dtb_base == ULONG_MAX)
		return -ENOMEM;

	purgatory_base = dtb_base + dtb_2.size;
	initrd_base = 0;
	initrd_size = 0;

	if (arm64_opts.initrd) {
		initrd_buf = slurp_file(arm64_opts.initrd, &initrd_size);

		if (!initrd_buf)
			fprintf(stderr, "kexec: Empty ramdisk file.\n");
		else {
			/* Put the initrd after the DTB with an alignment of
			 * page size. */

			initrd_base = locate_hole(info, initrd_size, 0,
				dtb_base + dtb_max, -1, 1);

			dbgprintf("initrd: base %lx, size %lxh (%ld)\n",
				initrd_base, initrd_size, initrd_size);

			if (initrd_base == ULONG_MAX)
				return -ENOMEM;

			result = dtb_set_initrd((char **)&dtb_2.buf,
				&dtb_2.size, initrd_base,
				initrd_base + initrd_size);

			if (result)
				return result;

			purgatory_base = initrd_base + initrd_size;
		}
	}

	if (dtb_2.size > dtb_max) {
		fprintf(stderr, "%s: Error: Too many DTB mods.\n", __func__);
		return -EINVAL;
	}

	add_segment_phys_virt(info, dtb_2.buf, dtb_2.size, dtb_base,
		dtb_2.size, 0);

	if (arm64_opts.initrd)
		add_segment_phys_virt(info, initrd_buf, initrd_size,
				initrd_base, initrd_size, 0);

	if (arm64_opts.lite)
		info->entry = (void *)kernel_entry;
	else {
		result = build_elf_rel_info(purgatory, purgatory_size, &ehdr,
			0);

		if (result < 0) {
			fprintf(stderr, "%s: Error: "
				"build_elf_rel_info failed.\n", __func__);
			return -EBADF;
		}

		elf_rel_build_load(info, &info->rhdr, purgatory, purgatory_size,
			purgatory_base, ULONG_MAX, 1, 0);

		info->entry = (void *)elf_rel_get_addr(&info->rhdr,
			"purgatory_start");

		elf_rel_set_symbol(&info->rhdr, "arm64_sink", &purgatory_sink,
			sizeof(purgatory_sink));

		elf_rel_set_symbol(&info->rhdr, "arm64_kernel_entry",
			&kernel_entry, sizeof(kernel_entry));

		elf_rel_set_symbol(&info->rhdr, "arm64_dtb_addr", &dtb_base,
				sizeof(dtb_base));
	}

	return 0;
}

unsigned long virt_to_phys(unsigned long v)
{
	unsigned long p;

	assert(arm64_mem.page_offset);
	assert(arm64_mem.memstart);

	p = v - arm64_mem.page_offset + arm64_mem.memstart;

	dbgprintf("%s: %016lx -> %016lx\n", __func__, v, p);
	return p;
}

unsigned long phys_to_virt(struct crash_elf_info *UNUSED(elf_info),
	unsigned long p)
{
	unsigned long v;

	assert(arm64_mem.page_offset);
	assert(arm64_mem.memstart);

	v = p - arm64_mem.memstart + arm64_mem.page_offset;

	dbgprintf("%s: %016lx -> %016lx\n", __func__, p, v);
	return p;
}

void add_segment(struct kexec_info *info, const void *buf, size_t bufsz,
	unsigned long base, size_t memsz)
{
	add_segment_phys_virt(info, buf, bufsz, base, memsz, 1);
}

int arm64_process_image_header(const struct arm64_image_header *h)
{
#if !defined(KERNEL_IMAGE_SIZE)
# define KERNEL_IMAGE_SIZE (768 * 1024)
#endif

	if (!arm64_header_check_magic(h))
		return -EINVAL;

	if (h->image_size) {
		arm64_mem.text_offset = le64_to_cpu(h->text_offset);
		arm64_mem.image_size = le64_to_cpu(h->image_size);
	} else {
		/* For 3.16 and older kernels. */
		arm64_mem.text_offset = 0x80000;
		arm64_mem.image_size = KERNEL_IMAGE_SIZE;
	}

	return 0;
}

static int get_memory_ranges_dt(struct memory_range *array, unsigned int *count)
{
	struct region {uint64_t base; uint64_t size;};
	char *dtb;
	off_t size;
	int offset;
	int result;

	*count = 0;

	create_flatten_tree(&dtb, &size, NULL);

	result = fdt_check_header(dtb);

	if (result) {
		dbgprintf("%s:%d: fdt_check_header failed:%s\n", __func__,
			__LINE__, fdt_strerror(result));
		goto on_error;
	}

	for (offset = 0; ; ) {
		const struct region *region;
		const struct region *end;
		int len;

		offset = fdt_subnode_offset(dtb, offset, "memory");

		if (offset == -FDT_ERR_NOTFOUND)
			break;

		if (offset <= 0) {
			dbgprintf("%s:%d: fdt_subnode_offset failed: %d %s\n",
				__func__, __LINE__, offset,
				fdt_strerror(offset));
			goto on_error;
		}

		dbgprintf("%s:%d: node_%d %s\n", __func__, __LINE__, offset,
			fdt_get_name(dtb, offset, NULL));

		region = fdt_getprop(dtb, offset, "reg", &len);

		if (region <= 0) {
			dbgprintf("%s:%d: fdt_getprop failed: %d %s\n",
				__func__, __LINE__, offset,
				fdt_strerror(offset));
			goto on_error;
		}

		for (end = region + len / sizeof(*region);
			region < end && *count < KEXEC_SEGMENT_MAX;
			region++) {
			struct memory_range r;

			r.type = RANGE_RAM;
			r.start = fdt64_to_cpu(region->base);
			r.end = r.start + fdt64_to_cpu(region->size);

			if (!region->size) {
				dbgprintf("%s:%d: SKIP: %016llx - %016llx\n",
					__func__, __LINE__, r.start, r.end);
				continue;
			}

			dbgprintf("%s:%d:  RAM: %016llx - %016llx\n", __func__,
				__LINE__, r.start, r.end);

			array[(*count)++] = r;

			if (!arm64_mem.memstart || r.start < arm64_mem.memstart)
				arm64_mem.memstart = r.start;
		}
	}

	if (!*count) {
		dbgprintf("%s:%d: failed: No RAM found.\n", __func__, __LINE__);
		goto on_error;
	}

	dbgprintf("%s:%d: Success\n", __func__, __LINE__);
	result = 0;
	goto on_exit;

on_error:
	fprintf(stderr, "%s:%d: Invalid /proc/device-tree.\n", __func__,
		__LINE__);
	result = -1;

on_exit:
	free(dtb);
	return result;
}

static int get_memory_ranges_iomem(struct memory_range *array,
	unsigned int *count)
{
	const char *iomem;
	char line[MAX_LINE];
	FILE *fp;

	*count = 0;

	iomem = proc_iomem();
	fp = fopen(iomem, "r");

	if (!fp) {
		fprintf(stderr, "Cannot open %s: %s\n", iomem, strerror(errno));
		return -1;
	}

	while(fgets(line, sizeof(line), fp) != 0) {
		struct memory_range r;
		char *str;
		int consumed;

		if (*count >= KEXEC_SEGMENT_MAX)
			break;

		if (sscanf(line, "%Lx-%Lx : %n", &r.start, &r.end, &consumed)
			!= 2)
			continue;

		str = line + consumed;
		r.end++;

		if (memcmp(str, "System RAM\n", 11)) {
			dbgprintf("%s:%d: SKIP: %016Lx - %016Lx : %s", __func__,
				__LINE__, r.start, r.end, str);
			continue;
		}

		r.type = RANGE_RAM;

		dbgprintf("%s:%d: RAM: %016llx - %016llx\n : %s", __func__,
			__LINE__, r.start, r.end, str);

		array[(*count)++] = r;

		if (!arm64_mem.memstart || r.start < arm64_mem.memstart)
			arm64_mem.memstart = r.start;
	}

	fclose(fp);

	if (!*count) {
		dbgprintf("%s:%d: failed: No RAM found.\n", __func__, __LINE__);
		return -1;
	}

	dbgprintf("%s:%d: Success\n", __func__, __LINE__);
	return 0;
}

int get_memory_ranges(struct memory_range **range, int *ranges,
	unsigned long kexec_flags)
{
	static struct memory_range array[KEXEC_SEGMENT_MAX];
	unsigned int count;
	int result;

	result = get_memory_ranges_dt(array, &count);

	if (result)
		result = get_memory_ranges_iomem(array, &count);

	*range = result ? NULL : array;
	*ranges = result ? 0 : count;

	return result;
}

struct file_type file_type[] = {
	{"elf-arm64", elf_arm64_probe, elf_arm64_load, elf_arm64_usage},
	{"image-arm64", image_arm64_probe, image_arm64_load, image_arm64_usage},
};

int file_types = sizeof(file_type) / sizeof(file_type[0]);

int arch_compat_trampoline(struct kexec_info *info)
{
	return 0;
}

int machine_verify_elf_rel(struct mem_ehdr *ehdr)
{
	return (ehdr->e_machine == EM_AARCH64);
}

void machine_apply_elf_rel(struct mem_ehdr *ehdr, unsigned long r_type,
	void *ptr, unsigned long address, unsigned long value)
{
#if !defined(R_AARCH64_ABS64)
# define R_AARCH64_ABS64 257
#endif

#if !defined(R_AARCH64_LD_PREL_LO19)
# define R_AARCH64_LD_PREL_LO19 273
#endif

#if !defined(R_AARCH64_ADR_PREL_LO21)
# define R_AARCH64_ADR_PREL_LO21 274
#endif

#if !defined(R_AARCH64_JUMP26)
# define R_AARCH64_JUMP26 282
#endif

#if !defined(R_AARCH64_CALL26)
# define R_AARCH64_CALL26 283
#endif

	uint32_t *location = (uint32_t *)ptr;
	uint32_t data = *location;
	const char *type = NULL;

	switch(r_type) {
	case R_AARCH64_ABS64:
		type = "ABS64";
		*location += value;
		break;
	case R_AARCH64_LD_PREL_LO19:
		type = "LD_PREL_LO19";
		*location += ((value - address) << 3) & 0xffffe0;
		break;
	case R_AARCH64_ADR_PREL_LO21:
		if (value & 3)
			die("%s: ERROR Unaligned value: %lx\n", __func__,
				value);
		type = "ADR_PREL_LO21";
		*location += ((value - address) << 3) & 0xffffe0;
		break;
	case R_AARCH64_JUMP26:
		type = "JUMP26";
		*location += ((value - address) >> 2) & 0x3ffffff;
		break;
	case R_AARCH64_CALL26:
		type = "CALL26";
		*location += ((value - address) >> 2) & 0x3ffffff;
		break;
	default:
		die("%s: ERROR Unknown type: %lu\n", __func__, r_type);
		break;
	}

	dbgprintf("%s: %s %x->%x\n", __func__, type, data, *location);
}

void arch_reuse_initrd(void)
{
	reuse_initrd = 1;
}

void arch_update_purgatory(struct kexec_info *UNUSED(info))
{
}