main.c revision 276289
1/*-
2 * Copyright (c) 2000 Benno Rice <benno@jeamland.net>
3 * Copyright (c) 2000 Stephane Potvin <sepotvin@videotron.ca>
4 * Copyright (c) 2007-2008 Semihalf, Rafal Jaworowski <raj@semihalf.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: stable/10/sys/boot/uboot/common/main.c 276289 2014-12-27 05:10:07Z ian $");
31
32#include <stand.h>
33
34#include "api_public.h"
35#include "bootstrap.h"
36#include "glue.h"
37#include "libuboot.h"
38
39#ifndef nitems
40#define	nitems(x)	(sizeof((x)) / sizeof((x)[0]))
41#endif
42
43struct uboot_devdesc currdev;
44struct arch_switch archsw;		/* MI/MD interface boundary */
45int devs_no;
46
47struct device_type {
48	const char *name;
49	int type;
50} device_types[] = {
51	{ "disk", DEV_TYP_STOR },
52	{ "ide",  DEV_TYP_STOR | DT_STOR_IDE },
53	{ "mmc",  DEV_TYP_STOR | DT_STOR_MMC },
54	{ "sata", DEV_TYP_STOR | DT_STOR_SATA },
55	{ "scsi", DEV_TYP_STOR | DT_STOR_SCSI },
56	{ "usb",  DEV_TYP_STOR | DT_STOR_USB },
57	{ "net",  DEV_TYP_NET }
58};
59
60extern char end[];
61extern char bootprog_name[];
62extern char bootprog_rev[];
63extern char bootprog_date[];
64extern char bootprog_maker[];
65
66extern unsigned char _etext[];
67extern unsigned char _edata[];
68extern unsigned char __bss_start[];
69extern unsigned char __sbss_start[];
70extern unsigned char __sbss_end[];
71extern unsigned char _end[];
72
73#ifdef LOADER_FDT_SUPPORT
74extern int command_fdt_internal(int argc, char *argv[]);
75#endif
76
77static void
78dump_sig(struct api_signature *sig)
79{
80#ifdef DEBUG
81	printf("signature:\n");
82	printf("  version\t= %d\n", sig->version);
83	printf("  checksum\t= 0x%08x\n", sig->checksum);
84	printf("  sc entry\t= 0x%08x\n", sig->syscall);
85#endif
86}
87
88static void
89dump_addr_info(void)
90{
91#ifdef DEBUG
92	printf("\naddresses info:\n");
93	printf(" _etext (sdata) = 0x%08x\n", (uint32_t)_etext);
94	printf(" _edata         = 0x%08x\n", (uint32_t)_edata);
95	printf(" __sbss_start   = 0x%08x\n", (uint32_t)__sbss_start);
96	printf(" __sbss_end     = 0x%08x\n", (uint32_t)__sbss_end);
97	printf(" __sbss_start   = 0x%08x\n", (uint32_t)__bss_start);
98	printf(" _end           = 0x%08x\n", (uint32_t)_end);
99	printf(" syscall entry  = 0x%08x\n", (uint32_t)syscall_ptr);
100#endif
101}
102
103static uint64_t
104memsize(struct sys_info *si, int flags)
105{
106	uint64_t size;
107	int i;
108
109	size = 0;
110	for (i = 0; i < si->mr_no; i++)
111		if (si->mr[i].flags == flags && si->mr[i].size)
112			size += (si->mr[i].size);
113
114	return (size);
115}
116
117static void
118meminfo(void)
119{
120	uint64_t size;
121	struct sys_info *si;
122	int t[3] = { MR_ATTR_DRAM, MR_ATTR_FLASH, MR_ATTR_SRAM };
123	int i;
124
125	if ((si = ub_get_sys_info()) == NULL)
126		panic("could not retrieve system info");
127
128	for (i = 0; i < 3; i++) {
129		size = memsize(si, t[i]);
130		if (size > 0)
131			printf("%s: %lldMB\n", ub_mem_type(t[i]),
132			    size / 1024 / 1024);
133	}
134}
135
136static const char *
137get_device_type(const char *devstr, int *devtype)
138{
139	int i;
140	int namelen;
141	struct device_type *dt;
142
143	if (devstr) {
144		for (i = 0; i < nitems(device_types); i++) {
145			dt = &device_types[i];
146			namelen = strlen(dt->name);
147			if (strncmp(dt->name, devstr, namelen) == 0) {
148				*devtype = dt->type;
149				return (devstr + namelen);
150			}
151		}
152		printf("Unknown device type '%s'\n", devstr);
153	}
154
155	*devtype = -1;
156	return (NULL);
157}
158
159static const char *
160device_typename(int type)
161{
162	int i;
163
164	for (i = 0; i < nitems(device_types); i++)
165		if (device_types[i].type == type)
166			return (device_types[i].name);
167
168	return ("<unknown>");
169}
170
171/*
172 * Parse a device string into type, unit, slice and partition numbers. A
173 * returned value of -1 for type indicates a search should be done for the
174 * first loadable device, otherwise a returned value of -1 for unit
175 * indicates a search should be done for the first loadable device of the
176 * given type.
177 *
178 * The returned values for slice and partition are interpreted by
179 * disk_open().
180 *
181 * Valid device strings:                     For device types:
182 *
183 * <type_name>                               DEV_TYP_STOR, DEV_TYP_NET
184 * <type_name><unit>                         DEV_TYP_STOR, DEV_TYP_NET
185 * <type_name><unit>:                        DEV_TYP_STOR, DEV_TYP_NET
186 * <type_name><unit>:<slice>                 DEV_TYP_STOR
187 * <type_name><unit>:<slice>.                DEV_TYP_STOR
188 * <type_name><unit>:<slice>.<partition>     DEV_TYP_STOR
189 *
190 * For valid type names, see the device_types array, above.
191 *
192 * Slice numbers are 1-based.  0 is a wildcard.
193 */
194static void
195get_load_device(int *type, int *unit, int *slice, int *partition)
196{
197	char *devstr;
198	const char *p;
199	char *endp;
200
201	*type = -1;
202	*unit = -1;
203	*slice = 0;
204	*partition = -1;
205
206	devstr = ub_env_get("loaderdev");
207	if (devstr == NULL) {
208		printf("U-Boot env: loaderdev not set, will probe all devices.\n");
209		return;
210	}
211	printf("U-Boot env: loaderdev='%s'\n", devstr);
212
213	p = get_device_type(devstr, type);
214
215	/* Ignore optional spaces after the device name. */
216	while (*p == ' ')
217		p++;
218
219	/* Unknown device name, or a known name without unit number.  */
220	if ((*type == -1) || (*p == '\0')) {
221		return;
222	}
223
224	/* Malformed unit number. */
225	if (!isdigit(*p)) {
226		*type = -1;
227		return;
228	}
229
230	/* Guaranteed to extract a number from the string, as *p is a digit. */
231	*unit = strtol(p, &endp, 10);
232	p = endp;
233
234	/* Known device name with unit number and nothing else. */
235	if (*p == '\0') {
236		return;
237	}
238
239	/* Device string is malformed beyond unit number. */
240	if (*p != ':') {
241		*type = -1;
242		*unit = -1;
243		return;
244	}
245
246	p++;
247
248	/* No slice and partition specification. */
249	if ('\0' == *p )
250		return;
251
252	/* Only DEV_TYP_STOR devices can have a slice specification. */
253	if (!(*type & DEV_TYP_STOR)) {
254		*type = -1;
255		*unit = -1;
256		return;
257	}
258
259	*slice = strtoul(p, &endp, 10);
260
261	/* Malformed slice number. */
262	if (p == endp) {
263		*type = -1;
264		*unit = -1;
265		*slice = 0;
266		return;
267	}
268
269	p = endp;
270
271	/* No partition specification. */
272	if (*p == '\0')
273		return;
274
275	/* Device string is malformed beyond slice number. */
276	if (*p != '.') {
277		*type = -1;
278		*unit = -1;
279		*slice = 0;
280		return;
281	}
282
283	p++;
284
285	/* No partition specification. */
286	if (*p == '\0')
287		return;
288
289	*partition = strtol(p, &endp, 10);
290	p = endp;
291
292	/*  Full, valid device string. */
293	if (*endp == '\0')
294		return;
295
296	/* Junk beyond partition number. */
297	*type = -1;
298	*unit = -1;
299	*slice = 0;
300	*partition = -1;
301}
302
303static void
304print_disk_probe_info()
305{
306	char slice[32];
307	char partition[32];
308
309	if (currdev.d_disk.slice > 0)
310		sprintf(slice, "%d", currdev.d_disk.slice);
311	else
312		strcpy(slice, "<auto>");
313
314	if (currdev.d_disk.partition > 0)
315		sprintf(partition, "%d", currdev.d_disk.partition);
316	else
317		strcpy(partition, "<auto>");
318
319	printf("  Checking unit=%d slice=%s partition=%s...",
320	    currdev.d_unit, slice, partition);
321
322}
323
324static int
325probe_disks(int devidx, int load_type, int load_unit, int load_slice,
326    int load_partition)
327{
328	int open_result, unit;
329	struct open_file f;
330
331	currdev.d_disk.slice = load_slice;
332	currdev.d_disk.partition = load_partition;
333
334	f.f_devdata = &currdev;
335	open_result = -1;
336
337	if (load_type == -1) {
338		printf("  Probing all disk devices...\n");
339		/* Try each disk in succession until one works.  */
340		for (currdev.d_unit = 0; currdev.d_unit < UB_MAX_DEV;
341		     currdev.d_unit++) {
342			print_disk_probe_info();
343			open_result = devsw[devidx]->dv_open(&f, &currdev);
344			if (open_result == 0) {
345				printf(" good.\n");
346				return (0);
347			}
348			printf("\n");
349		}
350		return (-1);
351	}
352
353	if (load_unit == -1) {
354		printf("  Probing all %s devices...\n", device_typename(load_type));
355		/* Try each disk of given type in succession until one works. */
356		for (unit = 0; unit < UB_MAX_DEV; unit++) {
357			currdev.d_unit = uboot_diskgetunit(load_type, unit);
358			if (currdev.d_unit == -1)
359				break;
360			print_disk_probe_info();
361			open_result = devsw[devidx]->dv_open(&f, &currdev);
362			if (open_result == 0) {
363				printf(" good.\n");
364				return (0);
365			}
366			printf("\n");
367		}
368		return (-1);
369	}
370
371	if ((currdev.d_unit = uboot_diskgetunit(load_type, load_unit)) != -1) {
372		print_disk_probe_info();
373		open_result = devsw[devidx]->dv_open(&f,&currdev);
374		if (open_result == 0) {
375			printf(" good.\n");
376			return (0);
377		}
378		printf("\n");
379	}
380
381	printf("  Requested disk type/unit not found\n");
382	return (-1);
383}
384
385int
386main(void)
387{
388	struct api_signature *sig = NULL;
389	int load_type, load_unit, load_slice, load_partition;
390	int i;
391	const char * loaderdev;
392
393	/*
394	 * If we can't find the magic signature and related info, exit with a
395	 * unique error code that U-Boot reports as "## Application terminated,
396	 * rc = 0xnnbadab1". Hopefully 'badab1' looks enough like "bad api" to
397	 * provide a clue. It's better than 0xffffffff anyway.
398	 */
399	if (!api_search_sig(&sig))
400		return (0x01badab1);
401
402	syscall_ptr = sig->syscall;
403	if (syscall_ptr == NULL)
404		return (0x02badab1);
405
406	if (sig->version > API_SIG_VERSION)
407		return (0x03badab1);
408
409        /* Clear BSS sections */
410	bzero(__sbss_start, __sbss_end - __sbss_start);
411	bzero(__bss_start, _end - __bss_start);
412
413	/*
414	 * Initialise the heap as early as possible.  Once this is done,
415	 * alloc() is usable. The stack is buried inside us, so this is safe.
416	 */
417	setheap((void *)end, (void *)(end + 512 * 1024));
418
419	/*
420	 * Set up console.
421	 */
422	cons_probe();
423	printf("Compatible U-Boot API signature found @%x\n", (uint32_t)sig);
424
425	printf("\n");
426	printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
427	printf("(%s, %s)\n", bootprog_maker, bootprog_date);
428	printf("\n");
429
430	dump_sig(sig);
431	dump_addr_info();
432
433	meminfo();
434
435	/*
436	 * Enumerate U-Boot devices
437	 */
438	if ((devs_no = ub_dev_enum()) == 0)
439		panic("no U-Boot devices found");
440	printf("Number of U-Boot devices: %d\n", devs_no);
441
442	get_load_device(&load_type, &load_unit, &load_slice, &load_partition);
443
444	/*
445	 * March through the device switch probing for things.
446	 */
447	for (i = 0; devsw[i] != NULL; i++) {
448
449		if (devsw[i]->dv_init == NULL)
450			continue;
451		if ((devsw[i]->dv_init)() != 0)
452			continue;
453
454		printf("Found U-Boot device: %s\n", devsw[i]->dv_name);
455
456		currdev.d_dev = devsw[i];
457		currdev.d_type = currdev.d_dev->dv_type;
458		currdev.d_unit = 0;
459
460		if ((load_type == -1 || (load_type & DEV_TYP_STOR)) &&
461		    strcmp(devsw[i]->dv_name, "disk") == 0) {
462			if (probe_disks(i, load_type, load_unit, load_slice,
463			    load_partition) == 0)
464				break;
465		}
466
467		if ((load_type == -1 || (load_type & DEV_TYP_NET)) &&
468		    strcmp(devsw[i]->dv_name, "net") == 0)
469			break;
470	}
471
472	/*
473	 * If we couldn't find a boot device, return an error to u-boot.
474	 * U-boot may be running a boot script that can try something different
475	 * so returning an error is better than forcing a reboot.
476	 */
477	if (devsw[i] == NULL) {
478		printf("No boot device found!\n");
479		return (0xbadef1ce);
480	}
481
482	env_setenv("currdev", EV_VOLATILE, uboot_fmtdev(&currdev),
483	    uboot_setcurrdev, env_nounset);
484	env_setenv("loaddev", EV_VOLATILE, uboot_fmtdev(&currdev),
485	    env_noset, env_nounset);
486
487	setenv("LINES", "24", 1);		/* optional */
488	setenv("prompt", "loader>", 1);
489
490	archsw.arch_getdev = uboot_getdev;
491	archsw.arch_copyin = uboot_copyin;
492	archsw.arch_copyout = uboot_copyout;
493	archsw.arch_readin = uboot_readin;
494	archsw.arch_autoload = uboot_autoload;
495
496	interact();				/* doesn't return */
497
498	return (0);
499}
500
501
502COMMAND_SET(heap, "heap", "show heap usage", command_heap);
503static int
504command_heap(int argc, char *argv[])
505{
506
507	printf("heap base at %p, top at %p, used %d\n", end, sbrk(0),
508	    sbrk(0) - end);
509
510	return (CMD_OK);
511}
512
513COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
514static int
515command_reboot(int argc, char *argv[])
516{
517
518	printf("Resetting...\n");
519	ub_reset();
520
521	printf("Reset failed!\n");
522	while(1);
523}
524
525COMMAND_SET(devinfo, "devinfo", "show U-Boot devices", command_devinfo);
526static int
527command_devinfo(int argc, char *argv[])
528{
529	int i;
530
531	if ((devs_no = ub_dev_enum()) == 0) {
532		command_errmsg = "no U-Boot devices found!?";
533		return (CMD_ERROR);
534	}
535
536	printf("U-Boot devices:\n");
537	for (i = 0; i < devs_no; i++) {
538		ub_dump_di(i);
539		printf("\n");
540	}
541	return (CMD_OK);
542}
543
544COMMAND_SET(sysinfo, "sysinfo", "show U-Boot system info", command_sysinfo);
545static int
546command_sysinfo(int argc, char *argv[])
547{
548	struct sys_info *si;
549
550	if ((si = ub_get_sys_info()) == NULL) {
551		command_errmsg = "could not retrieve U-Boot sys info!?";
552		return (CMD_ERROR);
553	}
554
555	printf("U-Boot system info:\n");
556	ub_dump_si(si);
557	return (CMD_OK);
558}
559
560enum ubenv_action {
561	UBENV_UNKNOWN,
562	UBENV_SHOW,
563	UBENV_IMPORT
564};
565
566static void
567handle_uboot_env_var(enum ubenv_action action, const char * var)
568{
569	const char * val;
570	char ubv[128];
571
572	/*
573	 * If the user prepended "uboot." (which is how they usually see these
574	 * names) strip it off as a convenience.
575	 */
576	if (strncmp(var, "uboot.", 6) == 0) {
577		snprintf(ubv, sizeof(ubv), "%s", &var[6]);
578		var = ubv;
579	}
580	val = ub_env_get(var);
581	if (action == UBENV_SHOW) {
582		if (val == NULL)
583			printf("uboot.%s is not set\n", var);
584		else
585			printf("uboot.%s=%s\n", var, val);
586	} else if (action == UBENV_IMPORT) {
587		if (val != NULL) {
588			snprintf(ubv, sizeof(ubv), "uboot.%s", var);
589			setenv(ubv, val, 1);
590		}
591	}
592}
593
594static int
595command_ubenv(int argc, char *argv[])
596{
597	enum ubenv_action action;
598	const char *var;
599	int i;
600
601	action = UBENV_UNKNOWN;
602	if (argc > 1) {
603		if (strcasecmp(argv[1], "import") == 0)
604			action = UBENV_IMPORT;
605		else if (strcasecmp(argv[1], "show") == 0)
606			action = UBENV_SHOW;
607	}
608	if (action == UBENV_UNKNOWN) {
609		command_errmsg = "usage: 'ubenv <import|show> [var ...]";
610		return (CMD_ERROR);
611	}
612
613	if (argc > 2) {
614		for (i = 2; i < argc; i++)
615			handle_uboot_env_var(action, argv[i]);
616	} else {
617		var = NULL;
618		for (;;) {
619			if ((var = ub_env_enum(var)) == NULL)
620				break;
621			handle_uboot_env_var(action, var);
622		}
623	}
624
625	return (CMD_OK);
626}
627COMMAND_SET(ubenv, "ubenv", "show or import U-Boot env vars", command_ubenv);
628
629#ifdef LOADER_FDT_SUPPORT
630/*
631 * Since proper fdt command handling function is defined in fdt_loader_cmd.c,
632 * and declaring it as extern is in contradiction with COMMAND_SET() macro
633 * (which uses static pointer), we're defining wrapper function, which
634 * calls the proper fdt handling routine.
635 */
636static int
637command_fdt(int argc, char *argv[])
638{
639
640	return (command_fdt_internal(argc, argv));
641}
642
643COMMAND_SET(fdt, "fdt", "flattened device tree handling", command_fdt);
644#endif
645