blob: 083a43c3a5c74de6b05adaab8f8a275b478f9559 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk507bbe32004-04-18 21:13:41 +00002/*
Michal Simekcfc67112007-03-11 13:48:24 +01003 * (C) Copyright 2007 Michal Simek
wdenk507bbe32004-04-18 21:13:41 +00004 * (C) Copyright 2004 Atmark Techno, Inc.
5 *
Michal Simekcfc67112007-03-11 13:48:24 +01006 * Michal SIMEK <monstr@monstr.eu>
wdenk507bbe32004-04-18 21:13:41 +00007 * Yasushi SHOJI <yashi@atmark-techno.com>
wdenk507bbe32004-04-18 21:13:41 +00008 */
9
10#include <common.h>
11#include <command.h>
Simon Glass73223f02016-02-22 22:55:43 -070012#include <fdt_support.h>
Michal Simekcfc67112007-03-11 13:48:24 +010013#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020014#include <u-boot/zlib.h>
Michal Simekcfc67112007-03-11 13:48:24 +010015#include <asm/byteorder.h>
wdenk507bbe32004-04-18 21:13:41 +000016
Michal Simek1e71fa42013-05-02 12:51:48 +020017int do_bootm_linux(int flag, int argc, char * const argv[],
18 bootm_headers_t *images)
wdenk507bbe32004-04-18 21:13:41 +000019{
Michal Simekcfc67112007-03-11 13:48:24 +010020 /* First parameter is mapped to $r5 for kernel boot args */
Michal Simek1e71fa42013-05-02 12:51:48 +020021 void (*thekernel) (char *, ulong, ulong);
Simon Glass00caae62017-08-03 12:22:12 -060022 char *commandline = env_get("bootargs");
Arun Bhanu398b1d52010-04-15 18:27:17 +080023 ulong rd_data_start, rd_data_end;
Michal Simekcfc67112007-03-11 13:48:24 +010024
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020025 /*
26 * allow the PREP bootm subcommand, it is required for bootm to work
27 */
28 if (flag & BOOTM_STATE_OS_PREP)
29 return 0;
30
Kumar Gala49c3a862008-10-21 17:25:45 -050031 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
32 return 1;
33
Arun Bhanu398b1d52010-04-15 18:27:17 +080034 int ret;
35
36 char *of_flat_tree = NULL;
37#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060038 /* did generic code already find a device tree? */
39 if (images->ft_len)
40 of_flat_tree = images->ft_addr;
Arun Bhanu398b1d52010-04-15 18:27:17 +080041#endif
42
Michal Simek1e71fa42013-05-02 12:51:48 +020043 thekernel = (void (*)(char *, ulong, ulong))images->ep;
Arun Bhanu398b1d52010-04-15 18:27:17 +080044
45 /* find ramdisk */
Michal Simek1e71fa42013-05-02 12:51:48 +020046 ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE,
Arun Bhanu398b1d52010-04-15 18:27:17 +080047 &rd_data_start, &rd_data_end);
48 if (ret)
49 return 1;
Michal Simekcfc67112007-03-11 13:48:24 +010050
Simon Glass770605e2012-02-13 13:51:18 +000051 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Michal Simekcfc67112007-03-11 13:48:24 +010052
Simon Glass983c72f2013-06-11 11:14:46 -070053 if (!of_flat_tree && argc > 1)
54 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Michal Simeka8425d52013-05-02 12:49:18 +020055
56 /* fixup the initrd now that we know where it should be */
Bin Meng244ce782018-02-12 17:54:37 +080057 if (images->rd_start && images->rd_end && of_flat_tree) {
Michal Simeka8425d52013-05-02 12:49:18 +020058 ret = fdt_initrd(of_flat_tree, images->rd_start,
Masahiro Yamadadbe963a2014-04-18 17:40:59 +090059 images->rd_end);
Michal Simeka8425d52013-05-02 12:49:18 +020060 if (ret)
61 return 1;
Bin Meng244ce782018-02-12 17:54:37 +080062 }
Michal Simeka8425d52013-05-02 12:49:18 +020063
Michal Simekcfc67112007-03-11 13:48:24 +010064#ifdef DEBUG
Michal Simek1e71fa42013-05-02 12:51:48 +020065 printf("## Transferring control to Linux (at address 0x%08lx) ",
66 (ulong)thekernel);
67 printf("ramdisk 0x%08lx, FDT 0x%08lx...\n",
68 rd_data_start, (ulong) of_flat_tree);
Michal Simekcfc67112007-03-11 13:48:24 +010069#endif
70
Michal Simek9b4d9052010-04-16 12:01:32 +020071#ifdef XILINX_USE_DCACHE
Michal Simek9b4d9052010-04-16 12:01:32 +020072 flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
Michal Simek9b4d9052010-04-16 12:01:32 +020073#endif
Arun Bhanu398b1d52010-04-15 18:27:17 +080074 /*
75 * Linux Kernel Parameters (passing device tree):
76 * r5: pointer to command line
77 * r6: pointer to ramdisk
78 * r7: pointer to the fdt, followed by the board info data
79 */
Michal Simek1e71fa42013-05-02 12:51:48 +020080 thekernel(commandline, rd_data_start, (ulong)of_flat_tree);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010081 /* does not return */
Jean-Christophe PLAGNIOL-VILLARDa3a08c02008-09-10 22:48:09 +020082
Kumar Gala40d7e992008-08-15 08:24:45 -050083 return 1;
wdenk507bbe32004-04-18 21:13:41 +000084}