1 // SPDX-License-Identifier: GPL-2.0+
4 * Kyle Harris, kharris@nexus-tech.net
8 * The "source" command allows to define "script images", i. e. files
9 * that contain command sequences that can be executed by the command
10 * interpreter. It returns the exit status of the last command
11 * executed from the script. This is very similar to running a shell
12 * script in a UNIX shell, hence the name for the command.
22 #include <asm/byteorder.h>
25 #if defined(CONFIG_FIT)
27 * get_default_image() - Return default property from /images
29 * Return: Pointer to value of default property (or NULL)
31 static const char *get_default_image(const void *fit)
35 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
36 if (images_noffset < 0)
39 return fdt_getprop(fit, images_noffset, FIT_DEFAULT_PROP, NULL);
44 source (ulong addr, const char *fit_uname)
47 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
48 const image_header_t *hdr;
53 #if defined(CONFIG_FIT)
60 verify = env_get_yesno("verify");
62 buf = map_sysmem(addr, 0);
63 switch (genimg_get_format(buf)) {
64 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
65 case IMAGE_FORMAT_LEGACY:
68 if (!image_check_magic (hdr)) {
69 puts ("Bad magic number\n");
73 if (!image_check_hcrc (hdr)) {
74 puts ("Bad header crc\n");
79 if (!image_check_dcrc (hdr)) {
80 puts ("Bad data crc\n");
85 if (!image_check_type (hdr, IH_TYPE_SCRIPT)) {
86 puts ("Bad image type\n");
90 /* get length of script */
91 data = (u32 *)image_get_data (hdr);
93 if ((len = uimage_to_cpu (*data)) == 0) {
94 puts ("Empty Script\n");
99 * scripts are just multi-image files with one component, seek
100 * past the zero-terminated sequence of image lengths to get
101 * to the actual image data
106 #if defined(CONFIG_FIT)
107 case IMAGE_FORMAT_FIT:
109 if (!fit_check_format (fit_hdr)) {
110 puts ("Bad FIT image format\n");
115 fit_uname = get_default_image(fit_hdr);
118 puts("No FIT subimage unit name\n");
122 /* get script component image node offset */
123 noffset = fit_image_get_node (fit_hdr, fit_uname);
125 printf ("Can't find '%s' FIT subimage\n", fit_uname);
129 if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) {
130 puts ("Not a image image\n");
134 /* verify integrity */
136 if (!fit_image_verify(fit_hdr, noffset)) {
137 puts ("Bad Data Hash\n");
142 /* get script subimage data address and length */
143 if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) {
144 puts ("Could not find script subimage data\n");
148 data = (u32 *)fit_data;
149 len = (ulong)fit_len;
153 puts ("Wrong image format for \"source\" command\n");
157 debug ("** Script length: %ld\n", len);
158 return run_command_list((char *)data, len, 0);
161 /**************************************************/
162 #if defined(CONFIG_CMD_SOURCE)
163 static int do_source(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
167 const char *fit_uname = NULL;
169 /* Find script image */
171 addr = CONFIG_SYS_LOAD_ADDR;
172 debug ("* source: default load address = 0x%08lx\n", addr);
173 #if defined(CONFIG_FIT)
174 } else if (fit_parse_subimage (argv[1], load_addr, &addr, &fit_uname)) {
175 debug ("* source: subimage '%s' from FIT image at 0x%08lx\n",
179 addr = simple_strtoul(argv[1], NULL, 16);
180 debug ("* source: cmdline image address = 0x%08lx\n", addr);
183 printf ("## Executing script at %08lx\n", addr);
184 rcode = source (addr, fit_uname);
188 #ifdef CONFIG_SYS_LONGHELP
189 static char source_help_text[] =
191 "\t- run script starting at addr\n"
192 "\t- A valid image header must be present"
193 #if defined(CONFIG_FIT)
195 "For FIT format uImage addr must include subimage\n"
196 "unit name in the form of addr:<subimg_uname>"
202 source, 2, 0, do_source,
203 "run script from memory", source_help_text