]>
Commit | Line | Data |
---|---|---|
d0dd1077 WD |
1 | /* |
2 | * (C) Copyright 2001 | |
3 | * Kyle Harris, [email protected] | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
d0dd1077 WD |
6 | */ |
7 | ||
8 | /* | |
74de7aef WD |
9 | * The "source" command allows to define "script images", i. e. files |
10 | * that contain command sequences that can be executed by the command | |
11 | * interpreter. It returns the exit status of the last command | |
12 | * executed from the script. This is very similar to running a shell | |
13 | * script in a UNIX shell, hence the name for the command. | |
d0dd1077 WD |
14 | */ |
15 | ||
16 | /* #define DEBUG */ | |
17 | ||
18 | #include <common.h> | |
19 | #include <command.h> | |
20 | #include <image.h> | |
21 | #include <malloc.h> | |
0eb25b61 | 22 | #include <mapmem.h> |
d0dd1077 | 23 | #include <asm/byteorder.h> |
4ca30d60 | 24 | #include <asm/io.h> |
d0dd1077 | 25 | |
d0dd1077 | 26 | int |
74de7aef | 27 | source (ulong addr, const char *fit_uname) |
d0dd1077 | 28 | { |
53677ef1 | 29 | ulong len; |
21d29f7f | 30 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
4ca30d60 | 31 | const image_header_t *hdr; |
21d29f7f | 32 | #endif |
210fbee9 | 33 | u32 *data; |
424c4abd | 34 | int verify; |
4ca30d60 | 35 | void *buf; |
424c4abd MB |
36 | #if defined(CONFIG_FIT) |
37 | const void* fit_hdr; | |
38 | int noffset; | |
39 | const void *fit_data; | |
40 | size_t fit_len; | |
41 | #endif | |
d0dd1077 | 42 | |
bfebc8c9 | 43 | verify = env_get_yesno("verify"); |
d0dd1077 | 44 | |
4ca30d60 SG |
45 | buf = map_sysmem(addr, 0); |
46 | switch (genimg_get_format(buf)) { | |
21d29f7f | 47 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
d5934ad7 | 48 | case IMAGE_FORMAT_LEGACY: |
4ca30d60 | 49 | hdr = buf; |
d0dd1077 | 50 | |
d5934ad7 MB |
51 | if (!image_check_magic (hdr)) { |
52 | puts ("Bad magic number\n"); | |
53 | return 1; | |
54 | } | |
d0dd1077 | 55 | |
d5934ad7 MB |
56 | if (!image_check_hcrc (hdr)) { |
57 | puts ("Bad header crc\n"); | |
d0dd1077 WD |
58 | return 1; |
59 | } | |
d0dd1077 | 60 | |
d5934ad7 MB |
61 | if (verify) { |
62 | if (!image_check_dcrc (hdr)) { | |
63 | puts ("Bad data crc\n"); | |
64 | return 1; | |
65 | } | |
66 | } | |
67 | ||
68 | if (!image_check_type (hdr, IH_TYPE_SCRIPT)) { | |
69 | puts ("Bad image type\n"); | |
70 | return 1; | |
71 | } | |
d0dd1077 | 72 | |
d5934ad7 | 73 | /* get length of script */ |
210fbee9 | 74 | data = (u32 *)image_get_data (hdr); |
d0dd1077 | 75 | |
9a4daad0 | 76 | if ((len = uimage_to_cpu (*data)) == 0) { |
d5934ad7 MB |
77 | puts ("Empty Script\n"); |
78 | return 1; | |
79 | } | |
36cc8cbb BS |
80 | |
81 | /* | |
82 | * scripts are just multi-image files with one component, seek | |
83 | * past the zero-terminated sequence of image lengths to get | |
84 | * to the actual image data | |
85 | */ | |
86 | while (*data++); | |
d5934ad7 | 87 | break; |
21d29f7f | 88 | #endif |
d5934ad7 MB |
89 | #if defined(CONFIG_FIT) |
90 | case IMAGE_FORMAT_FIT: | |
424c4abd MB |
91 | if (fit_uname == NULL) { |
92 | puts ("No FIT subimage unit name\n"); | |
93 | return 1; | |
94 | } | |
95 | ||
4ca30d60 | 96 | fit_hdr = buf; |
424c4abd MB |
97 | if (!fit_check_format (fit_hdr)) { |
98 | puts ("Bad FIT image format\n"); | |
99 | return 1; | |
100 | } | |
101 | ||
102 | /* get script component image node offset */ | |
103 | noffset = fit_image_get_node (fit_hdr, fit_uname); | |
104 | if (noffset < 0) { | |
105 | printf ("Can't find '%s' FIT subimage\n", fit_uname); | |
106 | return 1; | |
107 | } | |
108 | ||
109 | if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) { | |
110 | puts ("Not a image image\n"); | |
111 | return 1; | |
112 | } | |
113 | ||
114 | /* verify integrity */ | |
115 | if (verify) { | |
b8da8366 | 116 | if (!fit_image_verify(fit_hdr, noffset)) { |
424c4abd MB |
117 | puts ("Bad Data Hash\n"); |
118 | return 1; | |
119 | } | |
120 | } | |
121 | ||
122 | /* get script subimage data address and length */ | |
123 | if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) { | |
124 | puts ("Could not find script subimage data\n"); | |
125 | return 1; | |
126 | } | |
127 | ||
210fbee9 | 128 | data = (u32 *)fit_data; |
424c4abd MB |
129 | len = (ulong)fit_len; |
130 | break; | |
d5934ad7 MB |
131 | #endif |
132 | default: | |
74de7aef | 133 | puts ("Wrong image format for \"source\" command\n"); |
d0dd1077 WD |
134 | return 1; |
135 | } | |
136 | ||
699b13a6 | 137 | debug ("** Script length: %ld\n", len); |
d51004a8 | 138 | return run_command_list((char *)data, len, 0); |
d0dd1077 WD |
139 | } |
140 | ||
8bde7f77 | 141 | /**************************************************/ |
74de7aef | 142 | #if defined(CONFIG_CMD_SOURCE) |
0e350f81 | 143 | static int do_source(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
d0dd1077 WD |
144 | { |
145 | ulong addr; | |
146 | int rcode; | |
424c4abd | 147 | const char *fit_uname = NULL; |
d0dd1077 | 148 | |
424c4abd | 149 | /* Find script image */ |
d0dd1077 | 150 | if (argc < 2) { |
6d0f6bcf | 151 | addr = CONFIG_SYS_LOAD_ADDR; |
74de7aef | 152 | debug ("* source: default load address = 0x%08lx\n", addr); |
424c4abd MB |
153 | #if defined(CONFIG_FIT) |
154 | } else if (fit_parse_subimage (argv[1], load_addr, &addr, &fit_uname)) { | |
74de7aef | 155 | debug ("* source: subimage '%s' from FIT image at 0x%08lx\n", |
424c4abd MB |
156 | fit_uname, addr); |
157 | #endif | |
d0dd1077 | 158 | } else { |
424c4abd | 159 | addr = simple_strtoul(argv[1], NULL, 16); |
74de7aef | 160 | debug ("* source: cmdline image address = 0x%08lx\n", addr); |
d0dd1077 WD |
161 | } |
162 | ||
424c4abd | 163 | printf ("## Executing script at %08lx\n", addr); |
74de7aef | 164 | rcode = source (addr, fit_uname); |
d0dd1077 WD |
165 | return rcode; |
166 | } | |
8bde7f77 | 167 | |
088f1b19 KP |
168 | #ifdef CONFIG_SYS_LONGHELP |
169 | static char source_help_text[] = | |
74de7aef WD |
170 | "[addr]\n" |
171 | "\t- run script starting at addr\n" | |
a89c33db | 172 | "\t- A valid image header must be present" |
424c4abd | 173 | #if defined(CONFIG_FIT) |
a89c33db | 174 | "\n" |
424c4abd | 175 | "For FIT format uImage addr must include subimage\n" |
a89c33db | 176 | "unit name in the form of addr:<subimg_uname>" |
90253178 | 177 | #endif |
088f1b19 KP |
178 | ""; |
179 | #endif | |
180 | ||
181 | U_BOOT_CMD( | |
182 | source, 2, 0, do_source, | |
183 | "run script from memory", source_help_text | |
424c4abd | 184 | ); |
90253178 | 185 | #endif |