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 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <command.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 26 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 27 | #include <u-boot/zlib.h> |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 28 | #include <bzlib.h> |
TsiChungLiew | 688e8eb | 2007-10-25 17:14:00 -0500 | [diff] [blame] | 29 | #include <watchdog.h> |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 30 | #include <environment.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 31 | #include <asm/byteorder.h> |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 32 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 33 | # include <status_led.h> |
| 34 | #endif |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 35 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 38 | #define PHYSADDR(x) x |
| 39 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 40 | #define LINUX_MAX_ENVS 256 |
| 41 | #define LINUX_MAX_ARGS 256 |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 42 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 43 | static ulong get_sp (void); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 44 | static void set_clocks_in_mhz (bd_t *kbd); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 45 | |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 46 | void arch_lmb_reserve(struct lmb *lmb) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 47 | { |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 48 | ulong sp; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 49 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 50 | /* |
| 51 | * Booting a (Linux) kernel image |
| 52 | * |
| 53 | * Allocate space for command line and board info - the |
| 54 | * 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] | 55 | * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 56 | * memory, which means far enough below the current stack |
| 57 | * pointer. |
| 58 | */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 59 | sp = get_sp(); |
| 60 | debug ("## Current stack ends at 0x%08lx ", sp); |
Stefan Roese | 8280f6a | 2007-08-18 14:33:02 +0200 | [diff] [blame] | 61 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 62 | /* adjust sp by 1K to be safe */ |
| 63 | sp -= 1024; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp)); |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 65 | } |
| 66 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 67 | 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] | 68 | { |
| 69 | ulong rd_len; |
| 70 | ulong initrd_start, initrd_end; |
| 71 | int ret; |
| 72 | |
| 73 | ulong cmd_start, cmd_end; |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 74 | bd_t *kbd; |
| 75 | void (*kernel) (bd_t *, ulong, ulong, ulong, ulong); |
| 76 | struct lmb *lmb = &images->lmb; |
| 77 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 78 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 79 | return 1; |
| 80 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 81 | /* allocate space and init command line */ |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 82 | ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 83 | if (ret) { |
| 84 | puts("ERROR with allocation of cmdline\n"); |
| 85 | goto error; |
| 86 | } |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 87 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 88 | /* allocate space for kernel copy of board info */ |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 89 | ret = boot_get_kbd (lmb, &kbd); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 90 | if (ret) { |
| 91 | puts("ERROR with allocation of kernel bd\n"); |
| 92 | goto error; |
| 93 | } |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 94 | set_clocks_in_mhz(kbd); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 95 | |
Kumar Gala | c160a95 | 2008-08-15 08:24:36 -0500 | [diff] [blame] | 96 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 97 | |
Kumar Gala | c4f9419 | 2008-08-15 08:24:37 -0500 | [diff] [blame] | 98 | rd_len = images->rd_end - images->rd_start; |
| 99 | ret = boot_ramdisk_high (lmb, images->rd_start, rd_len, |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 100 | &initrd_start, &initrd_end); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 101 | if (ret) |
| 102 | goto error; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 103 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 104 | debug("## Transferring control to Linux (at address %08lx) ...\n", |
| 105 | (ulong) kernel); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 106 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 107 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 108 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 109 | /* |
| 110 | * Linux Kernel Parameters (passing board info data): |
Richard Retanubun | edff7bc | 2009-02-20 13:01:56 -0500 | [diff] [blame] | 111 | * sp+00: Ignore, side effect of using jsr to jump to kernel |
| 112 | * sp+04: ptr to board info data |
| 113 | * sp+08: initrd_start or 0 if no initrd |
| 114 | * sp+12: initrd_end - unused if initrd_start is 0 |
| 115 | * sp+16: Start of command line string |
| 116 | * sp+20: End of command line string |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 117 | */ |
| 118 | (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end); |
| 119 | /* does not return */ |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 120 | error: |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 121 | return 1; |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 122 | } |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 123 | |
| 124 | static ulong get_sp (void) |
| 125 | { |
| 126 | ulong sp; |
| 127 | |
| 128 | asm("movel %%a7, %%d0\n" |
| 129 | "movel %%d0, %0\n": "=d"(sp): :"%d0"); |
| 130 | |
| 131 | return sp; |
| 132 | } |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 133 | |
| 134 | static void set_clocks_in_mhz (bd_t *kbd) |
| 135 | { |
| 136 | char *s; |
| 137 | |
| 138 | if ((s = getenv("clocks_in_mhz")) != NULL) { |
| 139 | /* convert all clock information to MHz */ |
| 140 | kbd->bi_intfreq /= 1000000L; |
| 141 | kbd->bi_busfreq /= 1000000L; |
| 142 | } |
| 143 | } |