Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 8 | #include <bootstage.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 9 | #include <command.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 10 | #include <env.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6bb9449 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 15 | #include <u-boot/zlib.h> |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 16 | #include <bzlib.h> |
TsiChungLiew | 890adcb | 2007-10-25 17:14:00 -0500 | [diff] [blame] | 17 | #include <watchdog.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 18 | #include <asm/byteorder.h> |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 19 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 20 | # include <status_led.h> |
| 21 | #endif |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 22 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 25 | #define PHYSADDR(x) x |
| 26 | |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 27 | #define LINUX_MAX_ENVS 256 |
| 28 | #define LINUX_MAX_ARGS 256 |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 29 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 30 | static ulong get_sp (void); |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 31 | static void set_clocks_in_mhz (struct bd_info *kbd); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 32 | |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 33 | void arch_lmb_reserve(struct lmb *lmb) |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 34 | { |
Marek Vasut | d0dd68f | 2021-09-10 22:47:10 +0200 | [diff] [blame] | 35 | arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 1024); |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 36 | } |
| 37 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 38 | int do_bootm_linux(int flag, int argc, char *const argv[], |
| 39 | bootm_headers_t *images) |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 40 | { |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 41 | int ret; |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 42 | struct bd_info *kbd; |
| 43 | void (*kernel) (struct bd_info *, ulong, ulong, ulong, ulong); |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 44 | struct lmb *lmb = &images->lmb; |
| 45 | |
Andreas Bießmann | da233ce | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 46 | /* |
| 47 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 48 | */ |
| 49 | if (flag & BOOTM_STATE_OS_PREP) |
| 50 | return 0; |
| 51 | |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 52 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 53 | return 1; |
| 54 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 55 | /* allocate space for kernel copy of board info */ |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 56 | ret = boot_get_kbd (lmb, &kbd); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 57 | if (ret) { |
| 58 | puts("ERROR with allocation of kernel bd\n"); |
| 59 | goto error; |
| 60 | } |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 61 | set_clocks_in_mhz(kbd); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 62 | |
Simon Glass | 6b4f076 | 2013-05-08 08:06:05 +0000 | [diff] [blame] | 63 | ret = image_setup_linux(images); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 64 | if (ret) |
| 65 | goto error; |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 66 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 67 | kernel = (void (*)(struct bd_info *, ulong, ulong, ulong, ulong))images->ep; |
Simon Glass | 6b4f076 | 2013-05-08 08:06:05 +0000 | [diff] [blame] | 68 | |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 69 | debug("## Transferring control to Linux (at address %08lx) ...\n", |
| 70 | (ulong) kernel); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 71 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 72 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 73 | |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 74 | /* |
| 75 | * Linux Kernel Parameters (passing board info data): |
Richard Retanubun | 15fa2f0 | 2009-02-20 13:01:56 -0500 | [diff] [blame] | 76 | * sp+00: Ignore, side effect of using jsr to jump to kernel |
| 77 | * sp+04: ptr to board info data |
| 78 | * sp+08: initrd_start or 0 if no initrd |
| 79 | * sp+12: initrd_end - unused if initrd_start is 0 |
| 80 | * sp+16: Start of command line string |
| 81 | * sp+20: End of command line string |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 82 | */ |
Simon Glass | 660031e | 2014-06-07 22:07:58 -0600 | [diff] [blame] | 83 | (*kernel)(kbd, images->initrd_start, images->initrd_end, |
| 84 | images->cmdline_start, images->cmdline_end); |
TsiChungLiew | fc3ca3b6 | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 85 | /* does not return */ |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 86 | error: |
Kumar Gala | 48626aa | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 87 | return 1; |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 88 | } |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 89 | |
| 90 | static ulong get_sp (void) |
| 91 | { |
| 92 | ulong sp; |
| 93 | |
| 94 | asm("movel %%a7, %%d0\n" |
| 95 | "movel %%d0, %0\n": "=d"(sp): :"%d0"); |
| 96 | |
| 97 | return sp; |
| 98 | } |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 99 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 100 | static void set_clocks_in_mhz (struct bd_info *kbd) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 101 | { |
| 102 | char *s; |
| 103 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 104 | s = env_get("clocks_in_mhz"); |
| 105 | if (s) { |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 106 | /* convert all clock information to MHz */ |
| 107 | kbd->bi_intfreq /= 1000000L; |
| 108 | kbd->bi_busfreq /= 1000000L; |
| 109 | } |
| 110 | } |