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> |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 13 | #include <fdt_support.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 14 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 15 | #include <u-boot/zlib.h> |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 17 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Masahiro Yamada | 63c0941 | 2016-11-26 11:02:10 +0900 | [diff] [blame] | 20 | int arch_fixup_fdt(void *blob) |
| 21 | { |
| 22 | return 0; |
| 23 | } |
| 24 | |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 25 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 26 | bootm_headers_t *images) |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 27 | { |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 28 | /* First parameter is mapped to $r5 for kernel boot args */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 29 | void (*thekernel) (char *, ulong, ulong); |
| 30 | char *commandline = getenv("bootargs"); |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 31 | ulong rd_data_start, rd_data_end; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 32 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 33 | /* |
| 34 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 35 | */ |
| 36 | if (flag & BOOTM_STATE_OS_PREP) |
| 37 | return 0; |
| 38 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 39 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 40 | return 1; |
| 41 | |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 42 | int ret; |
| 43 | |
| 44 | char *of_flat_tree = NULL; |
| 45 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 5a75e12 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 46 | /* did generic code already find a device tree? */ |
| 47 | if (images->ft_len) |
| 48 | of_flat_tree = images->ft_addr; |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 49 | #endif |
| 50 | |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 51 | thekernel = (void (*)(char *, ulong, ulong))images->ep; |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 52 | |
| 53 | /* find ramdisk */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 54 | ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE, |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 55 | &rd_data_start, &rd_data_end); |
| 56 | if (ret) |
| 57 | return 1; |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 58 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 59 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 60 | |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 61 | if (!of_flat_tree && argc > 1) |
| 62 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Michal Simek | a8425d5 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 63 | |
| 64 | /* fixup the initrd now that we know where it should be */ |
| 65 | if (images->rd_start && images->rd_end && of_flat_tree) |
| 66 | ret = fdt_initrd(of_flat_tree, images->rd_start, |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 67 | images->rd_end); |
Michal Simek | a8425d5 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 68 | if (ret) |
| 69 | return 1; |
| 70 | |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 71 | #ifdef DEBUG |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 72 | printf("## Transferring control to Linux (at address 0x%08lx) ", |
| 73 | (ulong)thekernel); |
| 74 | printf("ramdisk 0x%08lx, FDT 0x%08lx...\n", |
| 75 | rd_data_start, (ulong) of_flat_tree); |
Michal Simek | cfc6711 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 76 | #endif |
| 77 | |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 78 | #ifdef XILINX_USE_DCACHE |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 79 | flush_cache(0, XILINX_DCACHE_BYTE_SIZE); |
Michal Simek | 9b4d905 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 80 | #endif |
Arun Bhanu | 398b1d5 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 81 | /* |
| 82 | * Linux Kernel Parameters (passing device tree): |
| 83 | * r5: pointer to command line |
| 84 | * r6: pointer to ramdisk |
| 85 | * r7: pointer to the fdt, followed by the board info data |
| 86 | */ |
Michal Simek | 1e71fa4 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 87 | thekernel(commandline, rd_data_start, (ulong)of_flat_tree); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 88 | /* does not return */ |
Jean-Christophe PLAGNIOL-VILLARD | a3a08c0 | 2008-09-10 22:48:09 +0200 | [diff] [blame] | 89 | |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 90 | return 1; |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 91 | } |