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