Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 2 | /* |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 3 | * (C) Copyright 2007 Michal Simek |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 4 | * (C) Copyright 2004 Atmark Techno, Inc. |
| 5 | * |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 6 | * Michal SIMEK <monstr@monstr.eu> |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 7 | * Yasushi SHOJI <yashi@atmark-techno.com> |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 13 | #include <fdt_support.h> |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 14 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6bb9449 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 15 | #include <u-boot/zlib.h> |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 17 | |
Michal Simek | 040872e | 2019-09-25 10:45:51 +0200 | [diff] [blame^] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
| 20 | static ulong get_sp(void) |
| 21 | { |
| 22 | ulong ret; |
| 23 | |
| 24 | asm("addik %0, r1, 0" : "=r"(ret) : ); |
| 25 | return ret; |
| 26 | } |
| 27 | |
| 28 | void arch_lmb_reserve(struct lmb *lmb) |
| 29 | { |
| 30 | ulong sp, bank_end; |
| 31 | int bank; |
| 32 | |
| 33 | /* |
| 34 | * Booting a (Linux) kernel image |
| 35 | * |
| 36 | * Allocate space for command line and board info - the |
| 37 | * address should be as high as possible within the reach of |
| 38 | * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused |
| 39 | * memory, which means far enough below the current stack |
| 40 | * pointer. |
| 41 | */ |
| 42 | sp = get_sp(); |
| 43 | debug("## Current stack ends at 0x%08lx ", sp); |
| 44 | |
| 45 | /* adjust sp by 4K to be safe */ |
| 46 | sp -= 4096; |
| 47 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { |
| 48 | if (sp < gd->bd->bi_dram[bank].start) |
| 49 | continue; |
| 50 | bank_end = gd->bd->bi_dram[bank].start + |
| 51 | gd->bd->bi_dram[bank].size; |
| 52 | if (sp >= bank_end) |
| 53 | continue; |
| 54 | lmb_reserve(lmb, sp, bank_end - sp); |
| 55 | break; |
| 56 | } |
| 57 | } |
| 58 | |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 59 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 60 | bootm_headers_t *images) |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 61 | { |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 62 | /* First parameter is mapped to $r5 for kernel boot args */ |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 63 | void (*thekernel) (char *, ulong, ulong); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 64 | char *commandline = env_get("bootargs"); |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 65 | ulong rd_data_start, rd_data_end; |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 66 | |
Andreas Bießmann | da233ce | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 67 | /* |
| 68 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 69 | */ |
| 70 | if (flag & BOOTM_STATE_OS_PREP) |
| 71 | return 0; |
| 72 | |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 73 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 74 | return 1; |
| 75 | |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 76 | int ret; |
| 77 | |
| 78 | char *of_flat_tree = NULL; |
| 79 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 708e667 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 80 | /* did generic code already find a device tree? */ |
| 81 | if (images->ft_len) |
| 82 | of_flat_tree = images->ft_addr; |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 83 | #endif |
| 84 | |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 85 | thekernel = (void (*)(char *, ulong, ulong))images->ep; |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 86 | |
| 87 | /* find ramdisk */ |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 88 | ret = boot_get_ramdisk(argc, argv, images, IH_ARCH_MICROBLAZE, |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 89 | &rd_data_start, &rd_data_end); |
| 90 | if (ret) |
| 91 | return 1; |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 92 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 93 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 94 | |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 95 | if (!of_flat_tree && argc > 1) |
| 96 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Michal Simek | 70b1c49 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 97 | |
| 98 | /* fixup the initrd now that we know where it should be */ |
Bin Meng | e728983 | 2018-02-12 17:54:37 +0800 | [diff] [blame] | 99 | if (images->rd_start && images->rd_end && of_flat_tree) { |
Michal Simek | 70b1c49 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 100 | ret = fdt_initrd(of_flat_tree, images->rd_start, |
Masahiro Yamada | 5b11489 | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 101 | images->rd_end); |
Michal Simek | 70b1c49 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 102 | if (ret) |
| 103 | return 1; |
Bin Meng | e728983 | 2018-02-12 17:54:37 +0800 | [diff] [blame] | 104 | } |
Michal Simek | 70b1c49 | 2013-05-02 12:49:18 +0200 | [diff] [blame] | 105 | |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 106 | #ifdef DEBUG |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 107 | printf("## Transferring control to Linux (at address 0x%08lx) ", |
| 108 | (ulong)thekernel); |
| 109 | printf("ramdisk 0x%08lx, FDT 0x%08lx...\n", |
| 110 | rd_data_start, (ulong) of_flat_tree); |
Michal Simek | 922ce20 | 2007-03-11 13:48:24 +0100 | [diff] [blame] | 111 | #endif |
| 112 | |
Michal Simek | 80c42c7 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 113 | #ifdef XILINX_USE_DCACHE |
Michal Simek | 80c42c7 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 114 | flush_cache(0, XILINX_DCACHE_BYTE_SIZE); |
Michal Simek | 80c42c7 | 2010-04-16 12:01:32 +0200 | [diff] [blame] | 115 | #endif |
Arun Bhanu | 2304c05 | 2010-04-15 18:27:17 +0800 | [diff] [blame] | 116 | /* |
| 117 | * Linux Kernel Parameters (passing device tree): |
| 118 | * r5: pointer to command line |
| 119 | * r6: pointer to ramdisk |
| 120 | * r7: pointer to the fdt, followed by the board info data |
| 121 | */ |
Michal Simek | c78ce29 | 2013-05-02 12:51:48 +0200 | [diff] [blame] | 122 | thekernel(commandline, rd_data_start, (ulong)of_flat_tree); |
Marian Balakowicz | df8ff33 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 123 | /* does not return */ |
Jean-Christophe PLAGNIOL-VILLARD | 7ed7a27 | 2008-09-10 22:48:09 +0200 | [diff] [blame] | 124 | |
Kumar Gala | 48626aa | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 125 | return 1; |
wdenk | 1249065 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 126 | } |