Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 8 | #include <bootstage.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 9 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 10 | #include <env.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <lmb.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 13 | #include <u-boot/zlib.h> |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 14 | #include <bzlib.h> |
TsiChungLiew | 688e8eb | 2007-10-25 17:14:00 -0500 | [diff] [blame] | 15 | #include <watchdog.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 16 | #include <asm/byteorder.h> |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 17 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 18 | # include <status_led.h> |
| 19 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 20 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 23 | #define PHYSADDR(x) x |
| 24 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 25 | #define LINUX_MAX_ENVS 256 |
| 26 | #define LINUX_MAX_ARGS 256 |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 27 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 28 | static ulong get_sp (void); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 29 | static void set_clocks_in_mhz (bd_t *kbd); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 30 | |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 31 | void arch_lmb_reserve(struct lmb *lmb) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 32 | { |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 33 | ulong sp; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 34 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 35 | /* |
| 36 | * Booting a (Linux) kernel image |
| 37 | * |
| 38 | * Allocate space for command line and board info - the |
| 39 | * address should be as high as possible within the reach of |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 40 | * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 41 | * memory, which means far enough below the current stack |
| 42 | * pointer. |
| 43 | */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 44 | sp = get_sp(); |
| 45 | debug ("## Current stack ends at 0x%08lx ", sp); |
Stefan Roese | 8280f6a | 2007-08-18 14:33:02 +0200 | [diff] [blame] | 46 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 47 | /* adjust sp by 1K to be safe */ |
| 48 | sp -= 1024; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 49 | lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp)); |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 50 | } |
| 51 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame^] | 52 | int do_bootm_linux(int flag, int argc, char *const argv[], |
| 53 | bootm_headers_t *images) |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 54 | { |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 55 | int ret; |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 56 | bd_t *kbd; |
| 57 | void (*kernel) (bd_t *, ulong, ulong, ulong, ulong); |
| 58 | struct lmb *lmb = &images->lmb; |
| 59 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 60 | /* |
| 61 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 62 | */ |
| 63 | if (flag & BOOTM_STATE_OS_PREP) |
| 64 | return 0; |
| 65 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 66 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 67 | return 1; |
| 68 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 69 | /* allocate space for kernel copy of board info */ |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 70 | ret = boot_get_kbd (lmb, &kbd); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 71 | if (ret) { |
| 72 | puts("ERROR with allocation of kernel bd\n"); |
| 73 | goto error; |
| 74 | } |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 75 | set_clocks_in_mhz(kbd); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 76 | |
Simon Glass | 24507cf | 2013-05-08 08:06:05 +0000 | [diff] [blame] | 77 | ret = image_setup_linux(images); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 78 | if (ret) |
| 79 | goto error; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 80 | |
Simon Glass | 24507cf | 2013-05-08 08:06:05 +0000 | [diff] [blame] | 81 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep; |
| 82 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 83 | debug("## Transferring control to Linux (at address %08lx) ...\n", |
| 84 | (ulong) kernel); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 85 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 86 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 87 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 88 | /* |
| 89 | * Linux Kernel Parameters (passing board info data): |
Richard Retanubun | edff7bc | 2009-02-20 13:01:56 -0500 | [diff] [blame] | 90 | * sp+00: Ignore, side effect of using jsr to jump to kernel |
| 91 | * sp+04: ptr to board info data |
| 92 | * sp+08: initrd_start or 0 if no initrd |
| 93 | * sp+12: initrd_end - unused if initrd_start is 0 |
| 94 | * sp+16: Start of command line string |
| 95 | * sp+20: End of command line string |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 96 | */ |
Simon Glass | ddc9437 | 2014-06-07 22:07:58 -0600 | [diff] [blame] | 97 | (*kernel)(kbd, images->initrd_start, images->initrd_end, |
| 98 | images->cmdline_start, images->cmdline_end); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 99 | /* does not return */ |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 100 | error: |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 101 | return 1; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 102 | } |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 103 | |
| 104 | static ulong get_sp (void) |
| 105 | { |
| 106 | ulong sp; |
| 107 | |
| 108 | asm("movel %%a7, %%d0\n" |
| 109 | "movel %%d0, %0\n": "=d"(sp): :"%d0"); |
| 110 | |
| 111 | return sp; |
| 112 | } |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 113 | |
| 114 | static void set_clocks_in_mhz (bd_t *kbd) |
| 115 | { |
| 116 | char *s; |
| 117 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 118 | s = env_get("clocks_in_mhz"); |
| 119 | if (s) { |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 120 | /* convert all clock information to MHz */ |
| 121 | kbd->bi_intfreq /= 1000000L; |
| 122 | kbd->bi_busfreq /= 1000000L; |
| 123 | } |
| 124 | } |