bootm.c 10.7 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 15
 * (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>
#include <command.h>
16
#include <cpu_func.h>
17
#include <dm.h>
18
#include <dm/root.h>
S
Simon Glass 已提交
19
#include <env.h>
W
wdenk 已提交
20
#include <image.h>
21
#include <u-boot/zlib.h>
W
wdenk 已提交
22
#include <asm/byteorder.h>
23
#include <linux/libfdt.h>
24
#include <mapmem.h>
J
John Rigby 已提交
25
#include <fdt_support.h>
26
#include <asm/bootm.h>
27
#include <asm/secure.h>
28
#include <linux/compiler.h>
29 30
#include <bootm.h>
#include <vxworks.h>
W
wdenk 已提交
31

32
#ifdef CONFIG_ARMV7_NONSEC
33 34
#include <asm/armv7.h>
#endif
35
#include <asm/setup.h>
36

37 38
DECLARE_GLOBAL_DATA_PTR;

W
wdenk 已提交
39
static struct tag *params;
J
John Rigby 已提交
40

41 42 43 44 45 46 47 48
static ulong get_sp(void)
{
	ulong ret;

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

J
John Rigby 已提交
49 50
void arch_lmb_reserve(struct lmb *lmb)
{
51 52
	ulong sp, bank_end;
	int bank;
J
John Rigby 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65

	/*
	 * 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);

66 67
	/* adjust sp by 4K to be safe */
	sp -= 4096;
68
	for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
69 70
		if (!gd->bd->bi_dram[bank].size ||
		    sp < gd->bd->bi_dram[bank].start)
71
			continue;
72
		/* Watch out for RAM at end of address space! */
73
		bank_end = gd->bd->bi_dram[bank].start +
74 75
			gd->bd->bi_dram[bank].size - 1;
		if (sp > bank_end)
76
			continue;
77
		lmb_reserve(lmb, sp, bank_end - sp + 1);
78 79
		break;
	}
J
John Rigby 已提交
80 81
}

82 83 84 85
__weak void board_quiesce_devices(void)
{
}

86 87 88 89 90 91
/**
 * 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 已提交
92
{
93
	bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
94
#ifdef CONFIG_BOOTSTAGE_FDT
95
	bootstage_fdt_add_report();
96
#endif
97 98 99
#ifdef CONFIG_BOOTSTAGE_REPORT
	bootstage_report();
#endif
100

101 102
#ifdef CONFIG_USB_DEVICE
	udc_disconnect();
J
John Rigby 已提交
103
#endif
104 105 106

	board_quiesce_devices();

107 108
	printf("\nStarting kernel ...%s\n\n", fake ?
		"(fake run for tracing)" : "");
109 110 111 112 113 114 115
	/*
	 * 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.
	 */
	dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);

116 117
	cleanup_before_linux();
}
W
wdenk 已提交
118

119
static void setup_start_tag (bd_t *bd)
W
wdenk 已提交
120
{
121
	params = (struct tag *)bd->bi_boot_params;
W
wdenk 已提交
122

123 124
	params->hdr.tag = ATAG_CORE;
	params->hdr.size = tag_size (tag_core);
W
wdenk 已提交
125

126 127 128
	params->u.core.flags = 0;
	params->u.core.pagesize = 0;
	params->u.core.rootdev = 0;
W
wdenk 已提交
129

130
	params = tag_next (params);
W
wdenk 已提交
131 132
}

133
static void setup_memory_tags(bd_t *bd)
W
wdenk 已提交
134
{
135
	int i;
W
wdenk 已提交
136

137 138 139
	for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
		params->hdr.tag = ATAG_MEM;
		params->hdr.size = tag_size (tag_mem32);
W
wdenk 已提交
140

141 142
		params->u.mem.start = bd->bi_dram[i].start;
		params->u.mem.size = bd->bi_dram[i].size;
W
wdenk 已提交
143

144 145
		params = tag_next (params);
	}
W
wdenk 已提交
146 147
}

148
static void setup_commandline_tag(bd_t *bd, char *commandline)
W
wdenk 已提交
149
{
150
	char *p;
W
wdenk 已提交
151

W
wdenk 已提交
152 153 154
	if (!commandline)
		return;

155 156
	/* eat leading white space */
	for (p = commandline; *p == ' '; p++);
W
wdenk 已提交
157

158 159 160 161 162
	/* skip non-existent command lines so the kernel will still
	 * use its default command line.
	 */
	if (*p == '\0')
		return;
W
wdenk 已提交
163

164 165 166
	params->hdr.tag = ATAG_CMDLINE;
	params->hdr.size =
		(sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
W
wdenk 已提交
167

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

170
	params = tag_next (params);
W
wdenk 已提交
171 172
}

173
static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
W
wdenk 已提交
174
{
175 176 177
	/* an ATAG_INITRD node tells the kernel where the compressed
	 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
	 */
178
	params->hdr.tag = ATAG_INITRD2;
179
	params->hdr.size = tag_size (tag_initrd);
W
wdenk 已提交
180

181 182
	params->u.initrd.start = initrd_start;
	params->u.initrd.size = initrd_end - initrd_start;
W
wdenk 已提交
183

184
	params = tag_next (params);
W
wdenk 已提交
185 186
}

187
static void setup_serial_tag(struct tag **tmp)
W
wdenk 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200
{
	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;
}

201
static void setup_revision_tag(struct tag **in_params)
W
wdenk 已提交
202 203 204 205 206 207 208 209 210 211
{
	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);
}

212
static void setup_end_tag(bd_t *bd)
W
wdenk 已提交
213
{
214 215
	params->hdr.tag = ATAG_NONE;
	params->hdr.size = 0;
W
wdenk 已提交
216 217
}

218 219
__weak void setup_board_tags(struct tag **in_params) {}

220
#ifdef CONFIG_ARM64
221 222
static void do_nonsec_virt_switch(void)
{
D
David Feng 已提交
223
	smp_kick_all_cpus();
224
	dcache_disable();	/* flush cache before swtiching to EL2 */
225
}
226
#endif
227

228 229
__weak void board_prep_linux(bootm_headers_t *images) { }

230 231 232
/* Subcommand: PREP */
static void boot_prep_linux(bootm_headers_t *images)
{
233
	char *commandline = env_get("bootargs");
234

235
	if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
236 237
#ifdef CONFIG_OF_LIBFDT
		debug("using: FDT\n");
238
		if (image_setup_linux(images)) {
239 240 241 242
			printf("FDT creation failed! hanging...");
			hang();
		}
#endif
243
	} else if (BOOTM_ENABLE_TAGS) {
244 245
		debug("using: ATAGS\n");
		setup_start_tag(gd->bd);
246 247 248 249 250 251 252 253 254
		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) {
255 256 257 258 259 260 261 262 263 264 265
			/*
			 * 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) {
266 267 268 269
				setup_initrd_tag(gd->bd, images->rd_start,
						 images->rd_end);
			}
		}
270
		setup_board_tags(&params);
271
		setup_end_tag(gd->bd);
272
	} else {
273 274 275
		printf("FDT and ATAGS support not compiled in - hanging\n");
		hang();
	}
276 277

	board_prep_linux(images);
278 279
}

280
__weak bool armv7_boot_nonsec_default(void)
281 282
{
#ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
283
	return false;
284
#else
285
	return true;
286
#endif
287 288 289 290 291
}

#ifdef CONFIG_ARMV7_NONSEC
bool armv7_boot_nonsec(void)
{
292
	char *s = env_get("bootm_boot_mode");
293
	bool nonsec = armv7_boot_nonsec_default();
294 295 296 297 298 299 300 301 302 303 304

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

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

	return nonsec;
}
#endif

305
#ifdef CONFIG_ARM64
306 307 308 309
__weak void update_os_arch_secondary_cores(uint8_t os_arch)
{
}

310 311 312 313 314 315
#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
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,
316
				    (u64)images.ft_addr, 0,
317 318 319
				    (u64)images.ep,
				    ES_TO_AARCH32);
	else
320
		armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0,
321 322 323 324 325 326
				    images.ep,
				    ES_TO_AARCH64);
}
#endif
#endif

327
/* Subcommand: GO */
328
static void boot_jump_linux(bootm_headers_t *images, int flag)
329
{
D
David Feng 已提交
330
#ifdef CONFIG_ARM64
331 332
	void (*kernel_entry)(void *fdt_addr, void *res0, void *res1,
			void *res2);
D
David Feng 已提交
333 334
	int fake = (flag & BOOTM_STATE_OS_FAKE_GO);

335 336
	kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1,
				void *res2))images->ep;
D
David Feng 已提交
337 338 339 340 341 342 343

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

	announce_and_cleanup(fake);

344
	if (!fake) {
345 346 347
#ifdef CONFIG_ARMV8_PSCI
		armv8_setup_psci();
#endif
348
		do_nonsec_virt_switch();
349

350 351
		update_os_arch_secondary_cores(images->os.arch);

352
#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
353
		armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
354 355 356 357 358
				    (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,
359
					    (u64)images->ft_addr, 0,
360 361 362
					    (u64)images->ep,
					    ES_TO_AARCH32);
		else
363
			armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0,
364 365 366
					    images->ep,
					    ES_TO_AARCH64);
#endif
367
	}
D
David Feng 已提交
368
#else
369 370 371
	unsigned long machid = gd->bd->bi_arch_number;
	char *s;
	void (*kernel_entry)(int zero, int arch, uint params);
S
Stephen Warren 已提交
372
	unsigned long r2;
373
	int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
374 375

	kernel_entry = (void (*)(int, int, uint))images->ep;
376 377 378 379
#ifdef CONFIG_CPU_V7M
	ulong addr = (ulong)kernel_entry | 1;
	kernel_entry = (void *)addr;
#endif
380
	s = env_get("machid");
381
	if (s) {
382 383 384 385
		if (strict_strtoul(s, 16, &machid) < 0) {
			debug("strict_strtoul failed!\n");
			return;
		}
386 387 388 389 390 391
		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);
392
	announce_and_cleanup(fake);
S
Stephen Warren 已提交
393

394
	if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len)
S
Stephen Warren 已提交
395 396 397 398
		r2 = (unsigned long)images->ft_addr;
	else
		r2 = gd->bd->bi_boot_params;

399
	if (!fake) {
400
#ifdef CONFIG_ARMV7_NONSEC
401
		if (armv7_boot_nonsec()) {
402 403 404 405
			armv7_init_nonsec();
			secure_ram_addr(_do_nonsec_entry)(kernel_entry,
							  0, machid, r2);
		} else
406
#endif
407
			kernel_entry(0, machid, r2);
408
	}
D
David Feng 已提交
409
#endif
410 411 412 413 414 415 416 417
}

/* 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.
 */
418 419
int do_bootm_linux(int flag, int argc, char * const argv[],
		   bootm_headers_t *images)
420 421 422 423 424 425 426 427 428 429
{
	/* 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;
	}

430 431
	if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
		boot_jump_linux(images, flag);
432 433 434 435
		return 0;
	}

	boot_prep_linux(images);
436
	boot_jump_linux(images, flag);
437
	return 0;
J
John Rigby 已提交
438
}
439

440 441 442 443 444 445 446 447
#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");
448
		if (off > 0) {
449
			if (arch_fixup_fdt(images->ft_addr))
450 451 452 453 454 455 456 457
				puts("## WARNING: fixup memory failed!\n");
		}
	}
#endif
	cleanup_before_linux();
}
void boot_jump_vxworks(bootm_headers_t *images)
{
458 459 460 461 462
#if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI)
	armv8_setup_psci();
	smp_kick_all_cpus();
#endif

463 464 465 466
	/* ARM VxWorks requires device tree physical address to be passed */
	((void (*)(void *))images->ep)(images->ft_addr);
}
#endif