Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 5 | * (c) Copyright 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> |
| 6 | * (c) Copyright 2008 Renesas Solutions Corp. |
| 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
| 13 | #include <asm/byteorder.h> |
Nobuhiro Iwamatsu | 9980df5 | 2010-12-08 13:46:36 +0900 | [diff] [blame] | 14 | #include <asm/zimage.h> |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 15 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 16 | #ifdef CONFIG_SYS_DEBUG |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 17 | static void hexdump(unsigned char *buf, int len) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 18 | { |
| 19 | int i; |
| 20 | |
| 21 | for (i = 0; i < len; i++) { |
| 22 | if ((i % 16) == 0) |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 23 | printf("%s%08x: ", i ? "\n" : "", |
| 24 | (unsigned int)&buf[i]); |
| 25 | printf("%02x ", buf[i]); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 26 | } |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 27 | printf("\n"); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 28 | } |
| 29 | #endif |
| 30 | |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 31 | #ifdef CONFIG_SH_SDRAM_OFFSET |
| 32 | #define GET_INITRD_START(initrd, linux) (initrd - linux + CONFIG_SH_SDRAM_OFFSET) |
| 33 | #else |
| 34 | #define GET_INITRD_START(initrd, linux) (initrd - linux) |
| 35 | #endif |
| 36 | |
| 37 | static void set_sh_linux_param(unsigned long param_addr, unsigned long data) |
| 38 | { |
| 39 | *(unsigned long *)(param_addr) = data; |
| 40 | } |
| 41 | |
| 42 | static unsigned long sh_check_cmd_arg(char *cmdline, char *key, int base) |
| 43 | { |
| 44 | unsigned long val = 0; |
| 45 | char *p = strstr(cmdline, key); |
| 46 | if (p) { |
| 47 | p += strlen(key); |
| 48 | val = simple_strtol(p, NULL, base); |
| 49 | } |
| 50 | return val; |
| 51 | } |
| 52 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 53 | int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 54 | { |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 55 | /* Linux kernel load address */ |
Kumar Gala | c160a95 | 2008-08-15 08:24:36 -0500 | [diff] [blame] | 56 | void (*kernel) (void) = (void (*)(void))images->ep; |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 57 | /* empty_zero_page */ |
Nobuhiro Iwamatsu | b5d10a1 | 2008-09-18 19:34:36 +0900 | [diff] [blame] | 58 | unsigned char *param |
| 59 | = (unsigned char *)image_get_load(images->legacy_hdr_os); |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 60 | /* Linux kernel command line */ |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 61 | char *cmdline = (char *)param + COMMAND_LINE; |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 62 | /* PAGE_SIZE */ |
Nobuhiro Iwamatsu | b5d10a1 | 2008-09-18 19:34:36 +0900 | [diff] [blame] | 63 | unsigned long size = images->ep - (unsigned long)param; |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 64 | char *bootargs = getenv("bootargs"); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 65 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 66 | /* |
| 67 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 68 | */ |
| 69 | if (flag & BOOTM_STATE_OS_PREP) |
| 70 | return 0; |
| 71 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 72 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 73 | return 1; |
| 74 | |
Nobuhiro Iwamatsu | 9980df5 | 2010-12-08 13:46:36 +0900 | [diff] [blame] | 75 | /* Clear zero page */ |
| 76 | memset(param, 0, size); |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 77 | |
| 78 | /* Set commandline */ |
Nobuhiro Iwamatsu | 6b44a43 | 2008-09-17 11:08:36 +0900 | [diff] [blame] | 79 | strcpy(cmdline, bootargs); |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 80 | |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 81 | /* Initrd */ |
| 82 | if (images->rd_start || images->rd_end) { |
Nobuhiro Iwamatsu | de03f8b | 2010-10-19 17:14:15 +0900 | [diff] [blame] | 83 | unsigned long ramdisk_flags = 0; |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 84 | int val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_PROMPT, 10); |
| 85 | if (val == 1) |
| 86 | ramdisk_flags |= RD_PROMPT; |
| 87 | else |
| 88 | ramdisk_flags &= ~RD_PROMPT; |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 89 | |
Nobuhiro Iwamatsu | cf2c87d | 2010-09-28 12:14:57 +0900 | [diff] [blame] | 90 | val = sh_check_cmd_arg(bootargs, CMD_ARG_RD_DOLOAD, 10); |
| 91 | if (val == 1) |
| 92 | ramdisk_flags |= RD_DOLOAD; |
| 93 | else |
| 94 | ramdisk_flags &= ~RD_DOLOAD; |
| 95 | |
| 96 | set_sh_linux_param((unsigned long)param + MOUNT_ROOT_RDONLY, 0x0001); |
| 97 | set_sh_linux_param((unsigned long)param + RAMDISK_FLAGS, ramdisk_flags); |
| 98 | set_sh_linux_param((unsigned long)param + ORIG_ROOT_DEV, 0x0200); |
| 99 | set_sh_linux_param((unsigned long)param + LOADER_TYPE, 0x0001); |
| 100 | set_sh_linux_param((unsigned long)param + INITRD_START, |
| 101 | GET_INITRD_START(images->rd_start, CONFIG_SYS_SDRAM_BASE)); |
| 102 | set_sh_linux_param((unsigned long)param + INITRD_SIZE, |
| 103 | images->rd_end - images->rd_start); |
| 104 | } |
| 105 | |
| 106 | /* Boot kernel */ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 107 | kernel(); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 108 | |
Nobuhiro Iwamatsu | 9980df5 | 2010-12-08 13:46:36 +0900 | [diff] [blame] | 109 | /* does not return */ |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 110 | return 1; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 111 | } |