blob: a4406143244beabca205c490ba370793980331f6 [file] [log] [blame]
wdenkd0dd1072002-10-20 17:17:16 +00001/*
2 * (C) Copyright 2001
3 * Kyle Harris, kharris@nexus-tech.net
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
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (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
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
Wolfgang Denk74de7ae2009-04-01 23:34:12 +020025 * The "source" command allows to define "script images", i. e. files
26 * that contain command sequences that can be executed by the command
27 * interpreter. It returns the exit status of the last command
28 * executed from the script. This is very similar to running a shell
29 * script in a UNIX shell, hence the name for the command.
wdenkd0dd1072002-10-20 17:17:16 +000030 */
31
32/* #define DEBUG */
33
34#include <common.h>
35#include <command.h>
36#include <image.h>
37#include <malloc.h>
38#include <asm/byteorder.h>
Simon Glass4ca30d62013-04-20 08:42:49 +000039#include <asm/io.h>
wdenkd0dd1072002-10-20 17:17:16 +000040#if defined(CONFIG_8xx)
41#include <mpc8xx.h>
42#endif
wdenkd0dd1072002-10-20 17:17:16 +000043
wdenkd0dd1072002-10-20 17:17:16 +000044int
Wolfgang Denk74de7ae2009-04-01 23:34:12 +020045source (ulong addr, const char *fit_uname)
wdenkd0dd1072002-10-20 17:17:16 +000046{
Wolfgang Denk53677ef2008-05-20 16:00:29 +020047 ulong len;
Simon Glass4ca30d62013-04-20 08:42:49 +000048 const image_header_t *hdr;
Marian Balakowicz424c4ab2008-03-12 10:33:00 +010049 ulong *data;
Marian Balakowicz424c4ab2008-03-12 10:33:00 +010050 int verify;
Simon Glass4ca30d62013-04-20 08:42:49 +000051 void *buf;
Marian Balakowicz424c4ab2008-03-12 10:33:00 +010052#if defined(CONFIG_FIT)
53 const void* fit_hdr;
54 int noffset;
55 const void *fit_data;
56 size_t fit_len;
57#endif
wdenkd0dd1072002-10-20 17:17:16 +000058
Bartlomiej Siekaedbed242008-04-18 12:39:23 +020059 verify = getenv_yesno ("verify");
wdenkd0dd1072002-10-20 17:17:16 +000060
Simon Glass4ca30d62013-04-20 08:42:49 +000061 buf = map_sysmem(addr, 0);
62 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010063 case IMAGE_FORMAT_LEGACY:
Simon Glass4ca30d62013-04-20 08:42:49 +000064 hdr = buf;
wdenkd0dd1072002-10-20 17:17:16 +000065
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010066 if (!image_check_magic (hdr)) {
67 puts ("Bad magic number\n");
wdenkd0dd1072002-10-20 17:17:16 +000068 return 1;
69 }
wdenkd0dd1072002-10-20 17:17:16 +000070
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010071 if (!image_check_hcrc (hdr)) {
72 puts ("Bad header crc\n");
73 return 1;
74 }
75
76 if (verify) {
77 if (!image_check_dcrc (hdr)) {
78 puts ("Bad data crc\n");
79 return 1;
80 }
81 }
82
83 if (!image_check_type (hdr, IH_TYPE_SCRIPT)) {
84 puts ("Bad image type\n");
85 return 1;
86 }
87
88 /* get length of script */
89 data = (ulong *)image_get_data (hdr);
90
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010091 if ((len = uimage_to_cpu (*data)) == 0) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010092 puts ("Empty Script\n");
93 return 1;
94 }
Bartlomiej Sieka36cc8cb2008-03-20 23:10:19 +010095
96 /*
97 * scripts are just multi-image files with one component, seek
98 * past the zero-terminated sequence of image lengths to get
99 * to the actual image data
100 */
101 while (*data++);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100102 break;
103#if defined(CONFIG_FIT)
104 case IMAGE_FORMAT_FIT:
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100105 if (fit_uname == NULL) {
106 puts ("No FIT subimage unit name\n");
107 return 1;
108 }
109
Simon Glass4ca30d62013-04-20 08:42:49 +0000110 fit_hdr = buf;
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100111 if (!fit_check_format (fit_hdr)) {
112 puts ("Bad FIT image format\n");
113 return 1;
114 }
115
116 /* get script component image node offset */
117 noffset = fit_image_get_node (fit_hdr, fit_uname);
118 if (noffset < 0) {
119 printf ("Can't find '%s' FIT subimage\n", fit_uname);
120 return 1;
121 }
122
123 if (!fit_image_check_type (fit_hdr, noffset, IH_TYPE_SCRIPT)) {
124 puts ("Not a image image\n");
125 return 1;
126 }
127
128 /* verify integrity */
129 if (verify) {
Simon Glassb8da8362013-05-07 06:11:57 +0000130 if (!fit_image_verify(fit_hdr, noffset)) {
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100131 puts ("Bad Data Hash\n");
132 return 1;
133 }
134 }
135
136 /* get script subimage data address and length */
137 if (fit_image_get_data (fit_hdr, noffset, &fit_data, &fit_len)) {
138 puts ("Could not find script subimage data\n");
139 return 1;
140 }
141
142 data = (ulong *)fit_data;
143 len = (ulong)fit_len;
144 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100145#endif
146 default:
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200147 puts ("Wrong image format for \"source\" command\n");
wdenkd0dd1072002-10-20 17:17:16 +0000148 return 1;
149 }
150
wdenk699b13a2002-11-03 18:03:52 +0000151 debug ("** Script length: %ld\n", len);
Simon Glassd51004a2012-03-30 21:30:55 +0000152 return run_command_list((char *)data, len, 0);
wdenkd0dd1072002-10-20 17:17:16 +0000153}
154
wdenk8bde7f72003-06-27 21:31:46 +0000155/**************************************************/
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200156#if defined(CONFIG_CMD_SOURCE)
wdenkd0dd1072002-10-20 17:17:16 +0000157int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200158do_source (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkd0dd1072002-10-20 17:17:16 +0000159{
160 ulong addr;
161 int rcode;
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100162 const char *fit_uname = NULL;
wdenkd0dd1072002-10-20 17:17:16 +0000163
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100164 /* Find script image */
wdenkd0dd1072002-10-20 17:17:16 +0000165 if (argc < 2) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166 addr = CONFIG_SYS_LOAD_ADDR;
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200167 debug ("* source: default load address = 0x%08lx\n", addr);
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100168#if defined(CONFIG_FIT)
169 } else if (fit_parse_subimage (argv[1], load_addr, &addr, &fit_uname)) {
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200170 debug ("* source: subimage '%s' from FIT image at 0x%08lx\n",
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100171 fit_uname, addr);
172#endif
wdenkd0dd1072002-10-20 17:17:16 +0000173 } else {
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100174 addr = simple_strtoul(argv[1], NULL, 16);
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200175 debug ("* source: cmdline image address = 0x%08lx\n", addr);
wdenkd0dd1072002-10-20 17:17:16 +0000176 }
177
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100178 printf ("## Executing script at %08lx\n", addr);
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200179 rcode = source (addr, fit_uname);
wdenkd0dd1072002-10-20 17:17:16 +0000180 return rcode;
181}
wdenk8bde7f72003-06-27 21:31:46 +0000182
Kim Phillips088f1b12012-10-29 13:34:31 +0000183#ifdef CONFIG_SYS_LONGHELP
184static char source_help_text[] =
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200185 "[addr]\n"
186 "\t- run script starting at addr\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200187 "\t- A valid image header must be present"
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100188#if defined(CONFIG_FIT)
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200189 "\n"
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100190 "For FIT format uImage addr must include subimage\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200191 "unit name in the form of addr:<subimg_uname>"
Jon Loeliger90253172007-07-10 11:02:44 -0500192#endif
Kim Phillips088f1b12012-10-29 13:34:31 +0000193 "";
194#endif
195
196U_BOOT_CMD(
197 source, 2, 0, do_source,
198 "run script from memory", source_help_text
Marian Balakowicz424c4ab2008-03-12 10:33:00 +0100199);
Jon Loeliger90253172007-07-10 11:02:44 -0500200#endif