wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 9 | #include <image.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 10 | #include <asm/addrspace.h> |
| 11 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 12 | DECLARE_GLOBAL_DATA_PTR; |
| 13 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 14 | #define LINUX_MAX_ENVS 256 |
| 15 | #define LINUX_MAX_ARGS 256 |
| 16 | |
Paul Burton | 10a74b5 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 17 | #if defined(CONFIG_MALTA) |
| 18 | #define mips_boot_malta 1 |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 19 | #else |
Paul Burton | 10a74b5 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 20 | #define mips_boot_malta 0 |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 21 | #endif |
| 22 | |
Daniel Schwierzeck | f9749fa | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 23 | #if defined(CONFIG_MIPS_BOOT_CMDLINE_LEGACY) |
| 24 | #define mips_boot_cmdline_legacy 1 |
| 25 | #else |
| 26 | #define mips_boot_cmdline_legacy 0 |
| 27 | #endif |
| 28 | |
Daniel Schwierzeck | c07dc60 | 2015-01-14 21:44:13 +0100 | [diff] [blame^] | 29 | #if defined(CONFIG_MIPS_BOOT_ENV_LEGACY) |
| 30 | #define mips_boot_env_legacy 1 |
| 31 | #else |
| 32 | #define mips_boot_env_legacy 0 |
| 33 | #endif |
| 34 | |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 35 | static int linux_argc; |
| 36 | static char **linux_argv; |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 37 | static char *linux_argp; |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 38 | |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 39 | static char **linux_env; |
| 40 | static char *linux_env_p; |
| 41 | static int linux_env_idx; |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 42 | |
Daniel Schwierzeck | 22d1c23 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 43 | static ulong arch_get_sp(void) |
| 44 | { |
| 45 | ulong ret; |
| 46 | |
| 47 | __asm__ __volatile__("move %0, $sp" : "=r"(ret) : ); |
| 48 | |
| 49 | return ret; |
| 50 | } |
| 51 | |
| 52 | void arch_lmb_reserve(struct lmb *lmb) |
| 53 | { |
| 54 | ulong sp; |
| 55 | |
| 56 | sp = arch_get_sp(); |
| 57 | debug("## Current stack ends at 0x%08lx\n", sp); |
| 58 | |
| 59 | /* adjust sp by 4K to be safe */ |
| 60 | sp -= 4096; |
| 61 | lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp); |
| 62 | } |
| 63 | |
Daniel Schwierzeck | 0665838 | 2014-11-16 01:27:23 +0100 | [diff] [blame] | 64 | static int boot_setup_linux(bootm_headers_t *images) |
| 65 | { |
| 66 | int ret; |
| 67 | ulong rd_len; |
| 68 | |
| 69 | rd_len = images->rd_end - images->rd_start; |
| 70 | ret = boot_ramdisk_high(&images->lmb, images->rd_start, |
| 71 | rd_len, &images->initrd_start, &images->initrd_end); |
| 72 | if (ret) |
| 73 | return ret; |
| 74 | |
| 75 | return 0; |
| 76 | } |
| 77 | |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 78 | static void linux_cmdline_init(void) |
| 79 | { |
| 80 | linux_argc = 1; |
| 81 | linux_argv = (char **)UNCACHED_SDRAM(gd->bd->bi_boot_params); |
| 82 | linux_argv[0] = 0; |
| 83 | linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS); |
| 84 | } |
| 85 | |
| 86 | static void linux_cmdline_set(const char *value, size_t len) |
| 87 | { |
| 88 | linux_argv[linux_argc] = linux_argp; |
| 89 | memcpy(linux_argp, value, len); |
| 90 | linux_argp[len] = 0; |
| 91 | |
| 92 | linux_argp += len + 1; |
| 93 | linux_argc++; |
| 94 | } |
| 95 | |
| 96 | static void linux_cmdline_dump(void) |
| 97 | { |
| 98 | int i; |
| 99 | |
| 100 | debug("## cmdline argv at 0x%p, argp at 0x%p\n", |
| 101 | linux_argv, linux_argp); |
| 102 | |
| 103 | for (i = 1; i < linux_argc; i++) |
| 104 | debug(" arg %03d: %s\n", i, linux_argv[i]); |
| 105 | } |
| 106 | |
Daniel Schwierzeck | f9749fa | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 107 | static void linux_cmdline_legacy(bootm_headers_t *images) |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 108 | { |
| 109 | const char *bootargs, *next, *quote; |
| 110 | |
| 111 | linux_cmdline_init(); |
| 112 | |
| 113 | bootargs = getenv("bootargs"); |
| 114 | if (!bootargs) |
| 115 | return; |
| 116 | |
| 117 | next = bootargs; |
| 118 | |
| 119 | while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) { |
| 120 | quote = strchr(bootargs, '"'); |
| 121 | next = strchr(bootargs, ' '); |
| 122 | |
| 123 | while (next && quote && quote < next) { |
| 124 | /* |
| 125 | * we found a left quote before the next blank |
| 126 | * now we have to find the matching right quote |
| 127 | */ |
| 128 | next = strchr(quote + 1, '"'); |
| 129 | if (next) { |
| 130 | quote = strchr(next + 1, '"'); |
| 131 | next = strchr(next + 1, ' '); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | if (!next) |
| 136 | next = bootargs + strlen(bootargs); |
| 137 | |
| 138 | linux_cmdline_set(bootargs, next - bootargs); |
| 139 | |
| 140 | if (*next) |
| 141 | next++; |
| 142 | |
| 143 | bootargs = next; |
| 144 | } |
Daniel Schwierzeck | f9749fa | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 145 | } |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 146 | |
Daniel Schwierzeck | f9749fa | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 147 | static void boot_cmdline_linux(bootm_headers_t *images) |
| 148 | { |
| 149 | if (mips_boot_cmdline_legacy) { |
| 150 | linux_cmdline_legacy(images); |
| 151 | linux_cmdline_dump(); |
| 152 | } |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 153 | } |
| 154 | |
Daniel Schwierzeck | 46145fb | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 155 | static void linux_env_init(void) |
| 156 | { |
| 157 | linux_env = (char **)(((ulong) linux_argp + 15) & ~15); |
| 158 | linux_env[0] = 0; |
| 159 | linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS); |
| 160 | linux_env_idx = 0; |
| 161 | } |
| 162 | |
| 163 | static void linux_env_set(const char *env_name, const char *env_val) |
| 164 | { |
| 165 | if (linux_env_idx < LINUX_MAX_ENVS - 1) { |
| 166 | linux_env[linux_env_idx] = linux_env_p; |
| 167 | |
| 168 | strcpy(linux_env_p, env_name); |
| 169 | linux_env_p += strlen(env_name); |
| 170 | |
Paul Burton | 10a74b5 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 171 | if (mips_boot_malta) { |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 172 | linux_env_p++; |
| 173 | linux_env[++linux_env_idx] = linux_env_p; |
| 174 | } else { |
| 175 | *linux_env_p++ = '='; |
| 176 | } |
Daniel Schwierzeck | 46145fb | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 177 | |
| 178 | strcpy(linux_env_p, env_val); |
| 179 | linux_env_p += strlen(env_val); |
| 180 | |
| 181 | linux_env_p++; |
| 182 | linux_env[++linux_env_idx] = 0; |
| 183 | } |
| 184 | } |
| 185 | |
Daniel Schwierzeck | c07dc60 | 2015-01-14 21:44:13 +0100 | [diff] [blame^] | 186 | static void linux_env_legacy(bootm_headers_t *images) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 187 | { |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 188 | char env_buf[12]; |
Daniel Schwierzeck | 46145fb | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 189 | const char *cp; |
Daniel Schwierzeck | eaadb1a | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 190 | ulong rd_start, rd_size; |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 191 | |
wdenk | 9b7f384 | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 192 | #ifdef CONFIG_MEMSIZE_IN_BYTES |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 193 | sprintf(env_buf, "%lu", (ulong)gd->ram_size); |
| 194 | debug("## Giving linux memsize in bytes, %lu\n", (ulong)gd->ram_size); |
wdenk | 9b7f384 | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 195 | #else |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 196 | sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20)); |
| 197 | debug("## Giving linux memsize in MB, %lu\n", |
Daniel Schwierzeck | 40f30c0 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 198 | (ulong)(gd->ram_size >> 20)); |
wdenk | 9b7f384 | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 199 | #endif /* CONFIG_MEMSIZE_IN_BYTES */ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 200 | |
Daniel Schwierzeck | eaadb1a | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 201 | rd_start = UNCACHED_SDRAM(images->initrd_start); |
| 202 | rd_size = images->initrd_end - images->initrd_start; |
| 203 | |
Daniel Schwierzeck | 46145fb | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 204 | linux_env_init(); |
| 205 | |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 206 | linux_env_set("memsize", env_buf); |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 207 | |
Daniel Schwierzeck | eaadb1a | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 208 | sprintf(env_buf, "0x%08lX", rd_start); |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 209 | linux_env_set("initrd_start", env_buf); |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 210 | |
Daniel Schwierzeck | eaadb1a | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 211 | sprintf(env_buf, "0x%lX", rd_size); |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 212 | linux_env_set("initrd_size", env_buf); |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 213 | |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 214 | sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart)); |
| 215 | linux_env_set("flash_start", env_buf); |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 216 | |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 217 | sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize)); |
| 218 | linux_env_set("flash_size", env_buf); |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 219 | |
Jason McMullan | cfbe457 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 220 | cp = getenv("ethaddr"); |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 221 | if (cp) |
Jason McMullan | cfbe457 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 222 | linux_env_set("ethaddr", cp); |
Jason McMullan | cfbe457 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 223 | |
| 224 | cp = getenv("eth1addr"); |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 225 | if (cp) |
Jason McMullan | cfbe457 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 226 | linux_env_set("eth1addr", cp); |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 227 | |
Paul Burton | 43c4f59 | 2013-11-26 17:45:25 +0000 | [diff] [blame] | 228 | if (mips_boot_malta) { |
| 229 | sprintf(env_buf, "%un8r", gd->baudrate); |
| 230 | linux_env_set("modetty0", env_buf); |
| 231 | } |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Daniel Schwierzeck | c07dc60 | 2015-01-14 21:44:13 +0100 | [diff] [blame^] | 234 | static void boot_prep_linux(bootm_headers_t *images) |
| 235 | { |
| 236 | if (mips_boot_env_legacy) |
| 237 | linux_env_legacy(images); |
| 238 | } |
| 239 | |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 240 | static void boot_jump_linux(bootm_headers_t *images) |
| 241 | { |
Daniel Schwierzeck | 0b95a7c | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 242 | typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong); |
| 243 | kernel_entry_t kernel = (kernel_entry_t) images->ep; |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 244 | ulong linux_extra = 0; |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 245 | |
Daniel Schwierzeck | 0b95a7c | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 246 | debug("## Transferring control to Linux (at address %p) ...\n", kernel); |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 247 | |
| 248 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
| 249 | |
Paul Burton | 10a74b5 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 250 | if (mips_boot_malta) |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 251 | linux_extra = gd->ram_size; |
| 252 | |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 253 | /* we assume that the kernel is in place */ |
| 254 | printf("\nStarting kernel ...\n\n"); |
| 255 | |
Daniel Schwierzeck | 0dfa0b3 | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 256 | kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, linux_extra); |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 260 | bootm_headers_t *images) |
| 261 | { |
Daniel Schwierzeck | 0665838 | 2014-11-16 01:27:23 +0100 | [diff] [blame] | 262 | int ret; |
| 263 | |
Gabor Juhos | 7f959fd | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 264 | /* No need for those on MIPS */ |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 265 | if (flag & BOOTM_STATE_OS_BD_T) |
Gabor Juhos | 7f959fd | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 266 | return -1; |
| 267 | |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 268 | if (flag & BOOTM_STATE_OS_CMDLINE) { |
| 269 | boot_cmdline_linux(images); |
| 270 | return 0; |
| 271 | } |
| 272 | |
Gabor Juhos | 7f959fd | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 273 | if (flag & BOOTM_STATE_OS_PREP) { |
| 274 | boot_prep_linux(images); |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | if (flag & BOOTM_STATE_OS_GO) { |
| 279 | boot_jump_linux(images); |
| 280 | return 0; |
| 281 | } |
Jason McMullan | cfbe457 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 282 | |
Daniel Schwierzeck | 0665838 | 2014-11-16 01:27:23 +0100 | [diff] [blame] | 283 | ret = boot_setup_linux(images); |
| 284 | if (ret) |
| 285 | return ret; |
| 286 | |
Daniel Schwierzeck | eb782d6 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 287 | boot_cmdline_linux(images); |
Gabor Juhos | 72cb5f0 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 288 | boot_prep_linux(images); |
Gabor Juhos | e0d783b | 2013-01-07 02:53:40 +0000 | [diff] [blame] | 289 | boot_jump_linux(images); |
Daniel Schwierzeck | 83010eb | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 290 | |
Marian Balakowicz | df8ff33 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 291 | /* does not return */ |
Kumar Gala | 48626aa | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 292 | return 1; |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 293 | } |