wdenk | abf7a7c | 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 | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | abf7a7c | 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 | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <command.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 26 | #include <image.h> |
| 27 | #include <zlib.h> |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 28 | #include <bzlib.h> |
TsiChungLiew | 890adcb | 2007-10-25 17:14:00 -0500 | [diff] [blame] | 29 | #include <watchdog.h> |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 30 | #include <environment.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 31 | #include <asm/byteorder.h> |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 32 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 33 | # include <status_led.h> |
| 34 | #endif |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 35 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 38 | #define PHYSADDR(x) x |
| 39 | |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 40 | #define LINUX_MAX_ENVS 256 |
| 41 | #define LINUX_MAX_ARGS 256 |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 42 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 43 | static ulong get_sp (void); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 44 | static void set_clocks_in_mhz (bd_t *kbd); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 45 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 46 | |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 47 | void do_bootm_linux(cmd_tbl_t * cmdtp, int flag, |
| 48 | int argc, char *argv[], |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame^] | 49 | bootm_headers_t *images) |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 50 | { |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 51 | ulong sp, sp_limit, alloc_current; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 52 | |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 53 | ulong rd_data_start, rd_data_end, rd_len; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 54 | ulong initrd_start, initrd_end; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 55 | |
| 56 | ulong cmd_start, cmd_end; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 57 | bd_t *kbd; |
| 58 | ulong ep = 0; |
| 59 | void (*kernel) (bd_t *, ulong, ulong, ulong, ulong); |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 60 | |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 61 | /* |
| 62 | * Booting a (Linux) kernel image |
| 63 | * |
| 64 | * Allocate space for command line and board info - the |
| 65 | * address should be as high as possible within the reach of |
| 66 | * the kernel (see CFG_BOOTMAPSZ settings), but in unused |
| 67 | * memory, which means far enough below the current stack |
| 68 | * pointer. |
| 69 | */ |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 70 | sp = get_sp(); |
| 71 | debug ("## Current stack ends at 0x%08lx ", sp); |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 72 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 73 | alloc_current = sp_limit = get_boot_sp_limit(sp); |
| 74 | debug ("=> set upper limit to 0x%08lx\n", sp_limit); |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 75 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 76 | /* allocate space and init command line */ |
| 77 | alloc_current = get_boot_cmdline (alloc_current, &cmd_start, &cmd_end); |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 78 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 79 | /* allocate space for kernel copy of board info */ |
| 80 | alloc_current = get_boot_kbd (alloc_current, &kbd); |
| 81 | set_clocks_in_mhz(kbd); |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 82 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 83 | /* find kernel entry point */ |
| 84 | if (images->legacy_hdr_valid) { |
| 85 | ep = image_get_ep (images->legacy_hdr_os); |
| 86 | #if defined(CONFIG_FIT) |
| 87 | } else if (images->fit_uname_os) { |
| 88 | fit_unsupported_reset ("M68K linux bootm"); |
| 89 | do_reset (cmdtp, flag, argc, argv); |
| 90 | #endif |
| 91 | } else { |
| 92 | puts ("Could not find kernel entry point!\n"); |
| 93 | do_reset (cmdtp, flag, argc, argv); |
| 94 | } |
| 95 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep; |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 96 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 97 | /* find ramdisk */ |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame^] | 98 | get_ramdisk (cmdtp, flag, argc, argv, images, |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 99 | IH_ARCH_M68K, &rd_data_start, &rd_data_end); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 100 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 101 | rd_len = rd_data_end - rd_data_start; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 102 | alloc_current = ramdisk_high (alloc_current, rd_data_start, rd_len, |
| 103 | kbd, sp_limit, get_sp (), |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 104 | &initrd_start, &initrd_end); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 105 | |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 106 | debug("## Transferring control to Linux (at address %08lx) ...\n", |
| 107 | (ulong) kernel); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 108 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 109 | show_boot_progress (15); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 110 | |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 111 | /* |
| 112 | * Linux Kernel Parameters (passing board info data): |
| 113 | * r3: ptr to board info data |
| 114 | * r4: initrd_start or 0 if no initrd |
| 115 | * r5: initrd_end - unused if r4 is 0 |
| 116 | * r6: Start of command line string |
| 117 | * r7: End of command line string |
| 118 | */ |
| 119 | (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end); |
| 120 | /* does not return */ |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 121 | } |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 122 | |
| 123 | static ulong get_sp (void) |
| 124 | { |
| 125 | ulong sp; |
| 126 | |
| 127 | asm("movel %%a7, %%d0\n" |
| 128 | "movel %%d0, %0\n": "=d"(sp): :"%d0"); |
| 129 | |
| 130 | return sp; |
| 131 | } |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 132 | |
| 133 | static void set_clocks_in_mhz (bd_t *kbd) |
| 134 | { |
| 135 | char *s; |
| 136 | |
| 137 | if ((s = getenv("clocks_in_mhz")) != NULL) { |
| 138 | /* convert all clock information to MHz */ |
| 139 | kbd->bi_intfreq /= 1000000L; |
| 140 | kbd->bi_busfreq /= 1000000L; |
| 141 | } |
| 142 | } |