xref: /openbmc/u-boot/arch/microblaze/lib/bootm.c (revision 3ce88cd7)
1 /*
2  * (C) Copyright 2007 Michal Simek
3  * (C) Copyright 2004 Atmark Techno, Inc.
4  *
5  * Michal  SIMEK <monstr@monstr.eu>
6  * Yasushi SHOJI <yashi@atmark-techno.com>
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #include <common.h>
12 #include <command.h>
13 #include <fdt_support.h>
14 #include <image.h>
15 #include <u-boot/zlib.h>
16 #include <asm/byteorder.h>
17 
18 int do_bootm_linux(int flag, int argc, char * const argv[],
19 		   bootm_headers_t *images)
20 {
21 	/* First parameter is mapped to $r5 for kernel boot args */
22 	void	(*thekernel) (char *, ulong, ulong);
23 	char	*commandline = env_get("bootargs");
24 	ulong	rd_data_start, rd_data_end;
25 
26 	/*
27 	 * allow the PREP bootm subcommand, it is required for bootm to work
28 	 */
29 	if (flag & BOOTM_STATE_OS_PREP)
30 		return 0;
31 
32 	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
33 		return 1;
34 
35 	int	ret;
36 
37 	char	*of_flat_tree = NULL;
38 #if defined(CONFIG_OF_LIBFDT)
39 	/* did generic code already find a device tree? */
40 	if (images->ft_len)
41 		of_flat_tree = images->ft_addr;
42 #endif
43 
44 	thekernel = (void (*)(char *, ulong, ulong))images->ep;
45 
46 	/* find ramdisk */
47 	ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE,
48 			&rd_data_start, &rd_data_end);
49 	if (ret)
50 		return 1;
51 
52 	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
53 
54 	if (!of_flat_tree && argc > 1)
55 		of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
56 
57 	/* fixup the initrd now that we know where it should be */
58 	if (images->rd_start && images->rd_end && of_flat_tree) {
59 		ret = fdt_initrd(of_flat_tree, images->rd_start,
60 				 images->rd_end);
61 		if (ret)
62 			return 1;
63 	}
64 
65 #ifdef DEBUG
66 	printf("## Transferring control to Linux (at address 0x%08lx) ",
67 	       (ulong)thekernel);
68 	printf("ramdisk 0x%08lx, FDT 0x%08lx...\n",
69 	       rd_data_start, (ulong) of_flat_tree);
70 #endif
71 
72 #ifdef XILINX_USE_DCACHE
73 	flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
74 #endif
75 	/*
76 	 * Linux Kernel Parameters (passing device tree):
77 	 * r5: pointer to command line
78 	 * r6: pointer to ramdisk
79 	 * r7: pointer to the fdt, followed by the board info data
80 	 */
81 	thekernel(commandline, rd_data_start, (ulong)of_flat_tree);
82 	/* does not return */
83 
84 	return 1;
85 }
86