bootm.c 10.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6
/* Copyright (C) 2011
 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
 *  - Added prep subcommand support
 *  - Reorganized source - modeled after powerpc version
 *
W
wdenk 已提交
7 8 9 10 11 12 13 14
 * (C) Copyright 2002
 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
 * Marius Groeger <mgroeger@sysgo.de>
 *
 * Copyright (C) 2001  Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
 */

#include <common.h>
15
#include <bootstage.h>
W
wdenk 已提交
16
#include <command.h>
17
#include <cpu_func.h>
18
#include <dm.h>
19
#include <lmb.h>
20
#include <log.h>
21
#include <asm/global_data.h>
22
#include <dm/root.h>
S
Simon Glass 已提交
23
#include <env.h>
W
wdenk 已提交
24
#include <image.h>
25
#include <u-boot/zlib.h>
W
wdenk 已提交
26
#include <asm/byteorder.h>
27
#include <linux/libfdt.h>
28
#include <mapmem.h>
J
John Rigby 已提交
29
#include <fdt_support.h>
30
#include <asm/bootm.h>
31
#include <asm/secure.h>
32
#include <linux/compiler.h>
33 34
#include <bootm.h>
#include <vxworks.h>
35
#include <asm/cache.h>
W
wdenk 已提交
36

37
#ifdef CONFIG_ARMV7_NONSEC
38 39
#include <asm/armv7.h>
#endif
40
#include <asm/setup.h>
41

42 43
DECLARE_GLOBAL_DATA_PTR;

W
wdenk 已提交
44
static struct tag *params;
J
John Rigby 已提交
45

46 47 48 49 50 51 52 53
static ulong get_sp(void)
{
	ulong ret;

	asm("mov %0, sp" : "=r"(ret) : );
	return ret;
}

J
John Rigby 已提交
54 55
void arch_lmb_reserve(struct lmb *lmb)
{
56 57
	ulong sp, bank_end;
	int bank;
J
John Rigby 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70

	/*
	 * Booting a (Linux) kernel image
	 *
	 * Allocate space for command line and board info - the
	 * address should be as high as possible within the reach of
	 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
	 * memory, which means far enough below the current stack
	 * pointer.
	 */
	sp = get_sp();
	debug("## Current stack ends at 0x%08lx ", sp);

71 72
	/* adjust sp by 4K to be safe */
	sp -= 4096;
73
	for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
74 75
		if (!gd->bd->bi_dram[bank].size ||
		    sp < gd->bd->bi_dram[bank].start)
76
			continue;
77
		/* Watch out for RAM at end of address space! */
78
		bank_end = gd->bd->bi_dram[bank].start +
79 80
			gd->bd->bi_dram[bank].size - 1;
		if (sp > bank_end)
81
			continue;
82 83 84
		if (bank_end > gd->ram_top)
			bank_end = gd->ram_top - 1;

85
		lmb_reserve(lmb, sp, bank_end - sp + 1);
86 87
		break;
	}
J
John Rigby 已提交
88 89
}

90 91 92 93
__weak void board_quiesce_devices(void)
{
}

94 95 96 97 98 99
/**
 * announce_and_cleanup() - Print message and prepare for kernel boot
 *
 * @fake: non-zero to do everything except actually boot
 */
static void announce_and_cleanup(int fake)
J
John Rigby 已提交
100
{
101
	bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
102
#ifdef CONFIG_BOOTSTAGE_FDT
103
	bootstage_fdt_add_report();
104
#endif
105 106 107
#ifdef CONFIG_BOOTSTAGE_REPORT
	bootstage_report();
#endif
108

109 110
#ifdef CONFIG_USB_DEVICE
	udc_disconnect();
J
John Rigby 已提交
111
#endif
112 113 114

	board_quiesce_devices();

115 116
	printf("\nStarting kernel ...%s\n\n", fake ?
		"(fake run for tracing)" : "");
117 118 119 120 121
	/*
	 * Call remove function of all devices with a removal flag set.
	 * This may be useful for last-stage operations, like cancelling
	 * of DMA operation or releasing device internal buffers.
	 */
S
Simon Glass 已提交
122 123 124
	dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL | DM_REMOVE_NON_VITAL);

	/* Remove all active vital devices next */
125 126
	dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);

127 128
	cleanup_before_linux();
}
W
wdenk 已提交
129

130
static void setup_start_tag (struct bd_info *bd)
W
wdenk 已提交
131
{
132
	params = (struct tag *)bd->bi_boot_params;
W
wdenk 已提交
133

134 135
	params->hdr.tag = ATAG_CORE;
	params->hdr.size = tag_size (tag_core);
W
wdenk 已提交
136

137 138 139
	params->u.core.flags = 0;
	params->u.core.pagesize = 0;
	params->u.core.rootdev = 0;
W
wdenk 已提交
140

141
	params = tag_next (params);
W
wdenk 已提交
142 143
}

144
static void setup_memory_tags(struct bd_info *bd)
W
wdenk 已提交
145
{
146
	int i;
W
wdenk 已提交
147

148 149 150
	for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
		params->hdr.tag = ATAG_MEM;
		params->hdr.size = tag_size (tag_mem32);
W
wdenk 已提交
151

152 153
		params->u.mem.start = bd->bi_dram[i].start;
		params->u.mem.size = bd->bi_dram[i].size;
W
wdenk 已提交
154

155 156
		params = tag_next (params);
	}
W
wdenk 已提交
157 158
}

159
static void setup_commandline_tag(struct bd_info *bd, char *commandline)
W
wdenk 已提交
160
{
161
	char *p;
W
wdenk 已提交
162

W
wdenk 已提交
163 164 165
	if (!commandline)
		return;

166 167
	/* eat leading white space */
	for (p = commandline; *p == ' '; p++);
W
wdenk 已提交
168

169 170 171 172 173
	/* skip non-existent command lines so the kernel will still
	 * use its default command line.
	 */
	if (*p == '\0')
		return;
W
wdenk 已提交
174

175 176 177
	params->hdr.tag = ATAG_CMDLINE;
	params->hdr.size =
		(sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
W
wdenk 已提交
178

179
	strcpy (params->u.cmdline.cmdline, p);
W
wdenk 已提交
180

181
	params = tag_next (params);
W
wdenk 已提交
182 183
}

184 185
static void setup_initrd_tag(struct bd_info *bd, ulong initrd_start,
			     ulong initrd_end)
W
wdenk 已提交
186
{
187 188 189
	/* an ATAG_INITRD node tells the kernel where the compressed
	 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
	 */
190
	params->hdr.tag = ATAG_INITRD2;
191
	params->hdr.size = tag_size (tag_initrd);
W
wdenk 已提交
192

193 194
	params->u.initrd.start = initrd_start;
	params->u.initrd.size = initrd_end - initrd_start;
W
wdenk 已提交
195

196
	params = tag_next (params);
W
wdenk 已提交
197 198
}

199
static void setup_serial_tag(struct tag **tmp)
W
wdenk 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212
{
	struct tag *params = *tmp;
	struct tag_serialnr serialnr;

	get_board_serial(&serialnr);
	params->hdr.tag = ATAG_SERIAL;
	params->hdr.size = tag_size (tag_serialnr);
	params->u.serialnr.low = serialnr.low;
	params->u.serialnr.high= serialnr.high;
	params = tag_next (params);
	*tmp = params;
}

213
static void setup_revision_tag(struct tag **in_params)
W
wdenk 已提交
214 215 216 217 218 219 220 221 222 223
{
	u32 rev = 0;

	rev = get_board_rev();
	params->hdr.tag = ATAG_REVISION;
	params->hdr.size = tag_size (tag_revision);
	params->u.revision.rev = rev;
	params = tag_next (params);
}

224
static void setup_end_tag(struct bd_info *bd)
W
wdenk 已提交
225
{
226 227
	params->hdr.tag = ATAG_NONE;
	params->hdr.size = 0;
W
wdenk 已提交
228 229
}

230 231
__weak void setup_board_tags(struct tag **in_params) {}

232
#ifdef CONFIG_ARM64
233 234
static void do_nonsec_virt_switch(void)
{
D
David Feng 已提交
235
	smp_kick_all_cpus();
236
	dcache_disable();	/* flush cache before swtiching to EL2 */
237
}
238
#endif
239

240 241
__weak void board_prep_linux(bootm_headers_t *images) { }

242 243 244
/* Subcommand: PREP */
static void boot_prep_linux(bootm_headers_t *images)
{
245
	char *commandline = env_get("bootargs");
246

247
	if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
248 249
#ifdef CONFIG_OF_LIBFDT
		debug("using: FDT\n");
250
		if (image_setup_linux(images)) {
251
			panic("FDT creation failed!");
252 253
		}
#endif
254
	} else if (BOOTM_ENABLE_TAGS) {
255 256
		debug("using: ATAGS\n");
		setup_start_tag(gd->bd);
257 258 259 260 261 262 263 264 265
		if (BOOTM_ENABLE_SERIAL_TAG)
			setup_serial_tag(&params);
		if (BOOTM_ENABLE_CMDLINE_TAG)
			setup_commandline_tag(gd->bd, commandline);
		if (BOOTM_ENABLE_REVISION_TAG)
			setup_revision_tag(&params);
		if (BOOTM_ENABLE_MEMORY_TAGS)
			setup_memory_tags(gd->bd);
		if (BOOTM_ENABLE_INITRD_TAG) {
266 267 268 269 270 271 272 273 274 275 276
			/*
			 * In boot_ramdisk_high(), it may relocate ramdisk to
			 * a specified location. And set images->initrd_start &
			 * images->initrd_end to relocated ramdisk's start/end
			 * addresses. So use them instead of images->rd_start &
			 * images->rd_end when possible.
			 */
			if (images->initrd_start && images->initrd_end) {
				setup_initrd_tag(gd->bd, images->initrd_start,
						 images->initrd_end);
			} else if (images->rd_start && images->rd_end) {
277 278 279 280
				setup_initrd_tag(gd->bd, images->rd_start,
						 images->rd_end);
			}
		}
281
		setup_board_tags(&params);
282
		setup_end_tag(gd->bd);
283
	} else {
284
		panic("FDT and ATAGS support not compiled in\n");
285
	}
286 287

	board_prep_linux(images);
288 289
}

290
__weak bool armv7_boot_nonsec_default(void)
291 292
{
#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
293
	return false;
294
#else
295
	return true;
296
#endif
297 298 299 300 301
}

#ifdef CONFIG_ARMV7_NONSEC
bool armv7_boot_nonsec(void)
{
302
	char *s = env_get("bootm_boot_mode");
303
	bool nonsec = armv7_boot_nonsec_default();
304 305 306 307 308 309 310 311 312 313 314

	if (s && !strcmp(s, "sec"))
		nonsec = false;

	if (s && !strcmp(s, "nonsec"))
		nonsec = true;

	return nonsec;
}
#endif

315
#ifdef CONFIG_ARM64
316 317 318 319
__weak void update_os_arch_secondary_cores(uint8_t os_arch)
{
}

320
#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
321 322 323 324 325
static void switch_to_el1(void)
{
	if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
	    (images.os.arch == IH_ARCH_ARM))
		armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number,
326
				    (u64)images.ft_addr, 0,
327 328 329
				    (u64)images.ep,
				    ES_TO_AARCH32);
	else
330
		armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
331 332 333 334
				    images.ep,
				    ES_TO_AARCH64);
}
#endif
335
#endif
336

337
/* Subcommand: GO */
338
static void boot_jump_linux(bootm_headers_t *images, int flag)
339
{
D
David Feng 已提交
340
#ifdef CONFIG_ARM64
341 342
	void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
			void *res2);
D
David Feng 已提交
343 344
	int fake = (flag & BOOTM_STATE_OS_FAKE_GO);

345 346
	kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
				void *res2))images->ep;
D
David Feng 已提交
347 348 349 350 351 352 353

	debug("## Transferring control to Linux (at address %lx)...\n",
		(ulong) kernel_entry);
	bootstage_mark(BOOTSTAGE_ID_RUN_OS);

	announce_and_cleanup(fake);

354
	if (!fake) {
355 356 357
#ifdef CONFIG_ARMV8_PSCI
		armv8_setup_psci();
#endif
358
		do_nonsec_virt_switch();
359

360 361
		update_os_arch_secondary_cores(images->os.arch);

362
#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
363 364 365 366 367 368 369 370 371 372
		armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
				    (u64)switch_to_el1, ES_TO_AARCH64);
#else
		if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) &&
		    (images->os.arch == IH_ARCH_ARM))
			armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number,
					    (u64)images->ft_addr, 0,
					    (u64)images->ep,
					    ES_TO_AARCH32);
		else
373
			armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
374 375 376
					    images->ep,
					    ES_TO_AARCH64);
#endif
377
	}
D
David Feng 已提交
378
#else
379 380 381
	unsigned long machid = gd->bd->bi_arch_number;
	char *s;
	void (*kernel_entry)(int zero, int arch, uint params);
S
Stephen Warren 已提交
382
	unsigned long r2;
383
	int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
384 385

	kernel_entry = (void (*)(int, int, uint))images->ep;
386 387 388 389
#ifdef CONFIG_CPU_V7M
	ulong addr = (ulong)kernel_entry | 1;
	kernel_entry = (void *)addr;
#endif
390
	s = env_get("machid");
391
	if (s) {
392 393 394 395
		if (strict_strtoul(s, 16, &machid) < 0) {
			debug("strict_strtoul failed!\n");
			return;
		}
396 397 398 399 400 401
		printf("Using machid 0x%lx from environment\n", machid);
	}

	debug("## Transferring control to Linux (at address %08lx)" \
		"...\n", (ulong) kernel_entry);
	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
402
	announce_and_cleanup(fake);
S
Stephen Warren 已提交
403

404
	if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
S
Stephen Warren 已提交
405 406 407 408
		r2 = (unsigned long)images->ft_addr;
	else
		r2 = gd->bd->bi_boot_params;

409
	if (!fake) {
410
#ifdef CONFIG_ARMV7_NONSEC
411
		if (armv7_boot_nonsec()) {
412 413 414 415
			armv7_init_nonsec();
			secure_ram_addr(_do_nonsec_entry)(kernel_entry,
							  0, machid, r2);
		} else
416
#endif
417
			kernel_entry(0, machid, r2);
418
	}
D
David Feng 已提交
419
#endif
420 421 422 423 424 425 426 427
}

/* Main Entry point for arm bootm implementation
 *
 * Modeled after the powerpc implementation
 * DIFFERENCE: Instead of calling prep and go at the end
 * they are called if subcommand is equal 0.
 */
428
int do_bootm_linux(int flag, int argc, char *const argv[],
429
		   bootm_headers_t *images)
430 431 432 433 434 435 436 437 438 439
{
	/* No need for those on ARM */
	if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
		return -1;

	if (flag & BOOTM_STATE_OS_PREP) {
		boot_prep_linux(images);
		return 0;
	}

440 441
	if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
		boot_jump_linux(images, flag);
442 443 444 445
		return 0;
	}

	boot_prep_linux(images);
446
	boot_jump_linux(images, flag);
447
	return 0;
J
John Rigby 已提交
448
}
449

450 451 452 453 454 455 456 457
#if defined(CONFIG_BOOTM_VXWORKS)
void boot_prep_vxworks(bootm_headers_t *images)
{
#if defined(CONFIG_OF_LIBFDT)
	int off;

	if (images->ft_addr) {
		off = fdt_path_offset(images->ft_addr, "/memory");
458
		if (off > 0) {
459
			if (arch_fixup_fdt(images->ft_addr))
460 461 462 463 464 465 466 467
				puts("## WARNING: fixup memory failed!\n");
		}
	}
#endif
	cleanup_before_linux();
}
void boot_jump_vxworks(bootm_headers_t *images)
{
468 469 470 471 472
#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
	armv8_setup_psci();
	smp_kick_all_cpus();
#endif

473 474 475 476
	/* ARM VxWorks requires device tree physical address to be passed */
	((void (*)(void *))images->ep)(images->ft_addr);
}
#endif