blob: 154671d4802edfa6c5606f37ed756dd58816a7a5 [file] [log] [blame]
wdenk507bbe32004-04-18 21:13:41 +00001/*
Michal Simekcfc67112007-03-11 13:48:24 +01002 * (C) Copyright 2007 Michal Simek
wdenk507bbe32004-04-18 21:13:41 +00003 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
Michal Simekcfc67112007-03-11 13:48:24 +01005 * Michal SIMEK <monstr@monstr.eu>
wdenk507bbe32004-04-18 21:13:41 +00006 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenk507bbe32004-04-18 21:13:41 +00009 */
10
11#include <common.h>
12#include <command.h>
Simon Glass73223f02016-02-22 22:55:43 -070013#include <fdt_support.h>
Michal Simekcfc67112007-03-11 13:48:24 +010014#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020015#include <u-boot/zlib.h>
Michal Simekcfc67112007-03-11 13:48:24 +010016#include <asm/byteorder.h>
wdenk507bbe32004-04-18 21:13:41 +000017
Michal Simekcfc67112007-03-11 13:48:24 +010018DECLARE_GLOBAL_DATA_PTR;
19
Michal Simek1e71fa42013-05-02 12:51:48 +020020int do_bootm_linux(int flag, int argc, char * const argv[],
21 bootm_headers_t *images)
wdenk507bbe32004-04-18 21:13:41 +000022{
Michal Simekcfc67112007-03-11 13:48:24 +010023 /* First parameter is mapped to $r5 for kernel boot args */
Michal Simek1e71fa42013-05-02 12:51:48 +020024 void (*thekernel) (char *, ulong, ulong);
Simon Glass00caae62017-08-03 12:22:12 -060025 char *commandline = env_get("bootargs");
Arun Bhanu398b1d52010-04-15 18:27:17 +080026 ulong rd_data_start, rd_data_end;
Michal Simekcfc67112007-03-11 13:48:24 +010027
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020028 /*
29 * allow the PREP bootm subcommand, it is required for bootm to work
30 */
31 if (flag & BOOTM_STATE_OS_PREP)
32 return 0;
33
Kumar Gala49c3a862008-10-21 17:25:45 -050034 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
35 return 1;
36
Arun Bhanu398b1d52010-04-15 18:27:17 +080037 int ret;
38
39 char *of_flat_tree = NULL;
40#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060041 /* did generic code already find a device tree? */
42 if (images->ft_len)
43 of_flat_tree = images->ft_addr;
Arun Bhanu398b1d52010-04-15 18:27:17 +080044#endif
45
Michal Simek1e71fa42013-05-02 12:51:48 +020046 thekernel = (void (*)(char *, ulong, ulong))images->ep;
Arun Bhanu398b1d52010-04-15 18:27:17 +080047
48 /* find ramdisk */
Michal Simek1e71fa42013-05-02 12:51:48 +020049 ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE,
Arun Bhanu398b1d52010-04-15 18:27:17 +080050 &rd_data_start, &rd_data_end);
51 if (ret)
52 return 1;
Michal Simekcfc67112007-03-11 13:48:24 +010053
Simon Glass770605e2012-02-13 13:51:18 +000054 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Michal Simekcfc67112007-03-11 13:48:24 +010055
Simon Glass983c72f2013-06-11 11:14:46 -070056 if (!of_flat_tree && argc > 1)
57 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Michal Simeka8425d52013-05-02 12:49:18 +020058
59 /* fixup the initrd now that we know where it should be */
Bin Meng244ce782018-02-12 17:54:37 +080060 if (images->rd_start && images->rd_end && of_flat_tree) {
Michal Simeka8425d52013-05-02 12:49:18 +020061 ret = fdt_initrd(of_flat_tree, images->rd_start,
Masahiro Yamadadbe963a2014-04-18 17:40:59 +090062 images->rd_end);
Michal Simeka8425d52013-05-02 12:49:18 +020063 if (ret)
64 return 1;
Bin Meng244ce782018-02-12 17:54:37 +080065 }
Michal Simeka8425d52013-05-02 12:49:18 +020066
Michal Simekcfc67112007-03-11 13:48:24 +010067#ifdef DEBUG
Michal Simek1e71fa42013-05-02 12:51:48 +020068 printf("## Transferring control to Linux (at address 0x%08lx) ",
69 (ulong)thekernel);
70 printf("ramdisk 0x%08lx, FDT 0x%08lx...\n",
71 rd_data_start, (ulong) of_flat_tree);
Michal Simekcfc67112007-03-11 13:48:24 +010072#endif
73
Michal Simek9b4d9052010-04-16 12:01:32 +020074#ifdef XILINX_USE_DCACHE
Michal Simek9b4d9052010-04-16 12:01:32 +020075 flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
Michal Simek9b4d9052010-04-16 12:01:32 +020076#endif
Arun Bhanu398b1d52010-04-15 18:27:17 +080077 /*
78 * Linux Kernel Parameters (passing device tree):
79 * r5: pointer to command line
80 * r6: pointer to ramdisk
81 * r7: pointer to the fdt, followed by the board info data
82 */
Michal Simek1e71fa42013-05-02 12:51:48 +020083 thekernel(commandline, rd_data_start, (ulong)of_flat_tree);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010084 /* does not return */
Jean-Christophe PLAGNIOL-VILLARDa3a08c02008-09-10 22:48:09 +020085
Kumar Gala40d7e992008-08-15 08:24:45 -050086 return 1;
wdenk507bbe32004-04-18 21:13:41 +000087}