wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 1 | /* |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 2 | * (C) Copyright 2007 Michal Simek |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 3 | * (C) Copyright 2004 Atmark Techno, Inc. |
| 4 | * |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 5 | * Michal SIMEK <monstr@monstr.eu> |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 6 | * Yasushi SHOJI <yashi@atmark-techno.com> |
| 7 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 13 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 14 | #include <u-boot/zlib.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 15 | #include <asm/byteorder.h> |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 16 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 19 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 20 | bootm_headers_t *images) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 21 | { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 22 | /* First parameter is mapped to $r5 for kernel boot args */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 23 | void (*thekernel) (char *, ulong, ulong); |
| 24 | char *commandline = getenv("bootargs"); |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 25 | ulong rd_data_start, rd_data_end; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 26 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 27 | /* |
| 28 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 29 | */ |
| 30 | if (flag & BOOTM_STATE_OS_PREP) |
| 31 | return 0; |
| 32 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 33 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 34 | return 1; |
| 35 | |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 36 | int ret; |
| 37 | |
| 38 | char *of_flat_tree = NULL; |
| 39 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 5a75e12 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 40 | /* did generic code already find a device tree? */ |
| 41 | if (images->ft_len) |
| 42 | of_flat_tree = images->ft_addr; |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 43 | #endif |
| 44 | |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 45 | thekernel = (void (*)(char *, ulong, ulong))images->ep; |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 46 | |
| 47 | /* find ramdisk */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 48 | ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE, |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 49 | &rd_data_start, &rd_data_end); |
| 50 | if (ret) |
| 51 | return 1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 52 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 53 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 54 | |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 55 | if (!of_flat_tree && argc > 1) |
| 56 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Michal Simek | a8425d5 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 57 | |
| 58 | /* fixup the initrd now that we know where it should be */ |
| 59 | if (images->rd_start && images->rd_end && of_flat_tree) |
| 60 | ret = fdt_initrd(of_flat_tree, images->rd_start, |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 61 | images->rd_end); |
Michal Simek | a8425d5 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 62 | if (ret) |
| 63 | return 1; |
| 64 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 65 | #ifdef DEBUG |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 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); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 70 | #endif |
| 71 | |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 72 | #ifdef XILINX_USE_DCACHE |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 73 | flush_cache(0, XILINX_DCACHE_BYTE_SIZE); |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 74 | #endif |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 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 | */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 81 | thekernel(commandline, rd_data_start, (ulong)of_flat_tree); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 82 | /* does not return */ |
Jean-Christophe PLAGNIOL-VILLARD | a3a08c0 | 2008-09-10 22:48:09 +0200 | [diff] [blame] | 83 | |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 84 | return 1; |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 85 | } |