Skip to content
Snippets Groups Projects
cmd_bootm.c 41.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • 		printf("Wrong Image Format for %s command\n", cmdtp->name);
    
    		bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
    
    	debug("   kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	bootm,	CONFIG_SYS_MAXARGS,	1,	do_bootm,
    
    Peter Tyser's avatar
    Peter Tyser committed
    	"boot application image from memory",
    
    	"[addr [arg ...]]\n    - boot application image stored in memory\n"
    	"\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
    	"\t'arg' can be the address of an initrd image\n"
    
    	"\tWhen booting a Linux kernel which requires a flat device-tree\n"
    
    Detlev Zundel's avatar
    Detlev Zundel committed
    	"\ta third argument is required which is the address of the\n"
    
    	"\tdevice-tree blob. To boot that kernel without an initrd image,\n"
    	"\tuse a '-' for the second argument. If you do not pass a third\n"
    	"\ta bd_info struct will be passed instead\n"
    #endif
    
    #if defined(CONFIG_FIT)
    	"\t\nFor the new multi component uImage format (FIT) addresses\n"
    	"\tmust be extened to include component or configuration unit name:\n"
    	"\taddr:<subimg_uname> - direct component image specification\n"
    	"\taddr#<conf_uname>   - configuration specification\n"
    	"\tUse iminfo command to get the list of existing component\n"
    	"\timages and configurations.\n"
    #endif
    
    Kumar Gala's avatar
    Kumar Gala committed
    	"\nSub-commands to do part of the bootm sequence.  The sub-commands "
    	"must be\n"
    	"issued in the order below (it's ok to not issue all sub-commands):\n"
    	"\tstart [addr [arg ...]]\n"
    	"\tloados  - load OS image\n"
    #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
    	"\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
    #endif
    #if defined(CONFIG_OF_LIBFDT)
    	"\tfdt     - relocate flat device tree\n"
    #endif
    	"\tcmdline - OS specific command line processing/setup\n"
    
    	"\tbdt     - OS specific bd_t processing\n"
    
    Kumar Gala's avatar
    Kumar Gala committed
    	"\tprep    - OS specific prep before relocation or go\n"
    
    	"\tgo      - start OS"
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    );
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    /*******************************************************************/
    /* bootd - boot default image */
    /*******************************************************************/
    
    #if defined(CONFIG_CMD_BOOTD)
    
    int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	int rcode = 0;
    
    
    	if (run_command(getenv("bootcmd"), flag) < 0)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	return rcode;
    }
    
    
    	boot,	1,	1,	do_bootd,
    
    Peter Tyser's avatar
    Peter Tyser committed
    	"boot default, i.e., run 'bootcmd'",
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    /* keep old command name "bootd" for backward compatibility */
    
    	bootd, 1,	1,	do_bootd,
    
    Peter Tyser's avatar
    Peter Tyser committed
    	"boot default, i.e., run 'bootcmd'",
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    );
    
    /*******************************************************************/
    /* iminfo - print header info for a requested image */
    /*******************************************************************/
    
    int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	int	arg;
    	ulong	addr;
    
    	int	rcode = 0;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	if (argc < 2) {
    
    		return image_info(load_addr);
    
    	for (arg = 1; arg < argc; ++arg) {
    
    		addr = simple_strtoul(argv[arg], NULL, 16);
    		if (image_info(addr) != 0)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	}
    	return rcode;
    }
    
    
    static int image_info(ulong addr)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    
    	void *hdr = (void *)addr;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	printf("\n## Checking Image at %08lx ...\n", addr);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	switch (genimg_get_format(hdr)) {
    
    	case IMAGE_FORMAT_LEGACY:
    
    		puts("   Legacy image found\n");
    		if (!image_check_magic(hdr)) {
    			puts("   Bad Magic Number\n");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    		if (!image_check_hcrc(hdr)) {
    			puts("   Bad Header Checksum\n");
    
    		image_print_contents(hdr);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    		puts("   Verifying Checksum ... ");
    		if (!image_check_dcrc(hdr)) {
    			puts("   Bad Data CRC\n");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		}
    
    		puts("OK\n");
    
    		return 0;
    #if defined(CONFIG_FIT)
    	case IMAGE_FORMAT_FIT:
    
    		puts("   FIT image found\n");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    		if (!fit_check_format(hdr)) {
    			puts("Bad FIT image format!\n");
    
    		fit_print_contents(hdr);
    
    		if (!fit_all_image_check_hashes(hdr)) {
    			puts("Bad hash in FIT image!\n");
    
    		puts("Unknown image format!\n");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    }
    
    	iminfo,	CONFIG_SYS_MAXARGS,	1,	do_iminfo,
    
    Peter Tyser's avatar
    Peter Tyser committed
    	"print header information for application image",
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	"addr [addr ...]\n"
    	"    - print header information for application image starting at\n"
    	"      address 'addr' in memory; this includes verification of the\n"
    
    	"      image contents (magic number, header and payload checksums)"
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    );
    
    /*******************************************************************/
    /* imls - list all images found in flash */
    /*******************************************************************/
    
    int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
    
    	for (i = 0, info = &flash_info[0];
    
    		i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
    
    		if (info->flash_id == FLASH_UNKNOWN)
    			goto next_bank;
    
    		for (j = 0; j < info->sector_count; ++j) {
    
    			hdr = (void *)info->start[j];
    			if (!hdr)
    
    			switch (genimg_get_format(hdr)) {
    
    			case IMAGE_FORMAT_LEGACY:
    
    				if (!image_check_hcrc(hdr))
    
    				printf("Legacy Image at %08lX:\n", (ulong)hdr);
    				image_print_contents(hdr);
    
    				puts("   Verifying Checksum ... ");
    				if (!image_check_dcrc(hdr)) {
    					puts("Bad Data CRC\n");
    
    					puts("OK\n");
    
    				}
    				break;
    #if defined(CONFIG_FIT)
    			case IMAGE_FORMAT_FIT:
    
    				if (!fit_check_format(hdr))
    
    				printf("FIT Image at %08lX:\n", (ulong)hdr);
    				fit_print_contents(hdr);
    
    Peter Tyser's avatar
    Peter Tyser committed
    	"list all images found in flash",
    
    	"\n"
    	"    - Prints information about all images found at sector\n"
    
    	"      boundaries in flash."
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    /*******************************************************************/
    
    /*******************************************************************/
    #ifdef CONFIG_SILENT_CONSOLE
    
    static void fixup_silent_linux(void)
    
    {
    	char buf[256], *start, *end;
    
    	char *cmdline = getenv("bootargs");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	/* Only fix cmdline when requested */
    	if (!(gd->flags & GD_FLG_SILENT))
    		return;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	debug("before silent fix-up: %s\n", cmdline);
    
    	if (cmdline) {
    
    		start = strstr(cmdline, "console=");
    		if (start) {
    			end = strchr(start, ' ');
    			strncpy(buf, cmdline, (start - cmdline + 8));
    
    				strcpy(buf + (start - cmdline + 8), end);
    
    			else
    				buf[start - cmdline + 8] = '\0';
    		} else {
    
    			strcpy(buf, cmdline);
    			strcat(buf, " console=");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		}
    	} else {
    
    		strcpy(buf, "console=");
    
    	setenv("bootargs", buf);
    	debug("after silent fix-up: %s\n", buf);
    
    }
    #endif /* CONFIG_SILENT_CONSOLE */
    
    /*******************************************************************/
    /* OS booting routines */
    /*******************************************************************/
    
    #ifdef CONFIG_BOOTM_NETBSD
    
    static int do_bootm_netbsd(int flag, int argc, char * const argv[],
    
    	void (*loader)(bd_t *, image_header_t *, char *, char *);
    
    	image_header_t *os_hdr, *hdr;
    
    	ulong kernel_data, kernel_len;
    
    	char *consdev;
    	char *cmdline;
    
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("NetBSD");
    
    	hdr = images->legacy_hdr_os;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	/*
    	 * Booting a (NetBSD) kernel image
    	 *
    	 * This process is pretty similar to a standalone application:
    	 * The (first part of an multi-) image must be a stage-2 loader,
    	 * which in turn is responsible for loading & invoking the actual
    	 * kernel.  The only differences are the parameters being passed:
    	 * besides the board info strucure, the loader expects a command
    	 * line, the name of the console device, and (optionally) the
    	 * address of the original image header.
    	 */
    
    	if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
    		image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	consdev = "";
    
    #if   defined(CONFIG_8xx_CONS_SMC1)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	consdev = "smc1";
    
    #elif defined(CONFIG_8xx_CONS_SMC2)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	consdev = "smc2";
    
    #elif defined(CONFIG_8xx_CONS_SCC2)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	consdev = "scc2";
    
    #elif defined(CONFIG_8xx_CONS_SCC3)
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	consdev = "scc3";
    #endif
    
    	if (argc > 2) {
    		ulong len;
    		int   i;
    
    
    		for (i = 2, len = 0; i < argc; i += 1)
    
    			len += strlen(argv[i]) + 1;
    		cmdline = malloc(len);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    		for (i = 2, len = 0; i < argc; i += 1) {
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    			if (i > 2)
    				cmdline[len++] = ' ';
    
    			strcpy(&cmdline[len], argv[i]);
    			len += strlen(argv[i]);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		}
    
    	} else if ((cmdline = getenv("bootargs")) == NULL) {
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		cmdline = "";
    	}
    
    
    	loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	printf("## Transferring control to NetBSD stage-2 loader "
    		"(at address %08lx) ...\n",
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    		(ulong)loader);
    
    
    	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    	/*
    	 * NetBSD Stage-2 Loader Parameters:
    	 *   r3: ptr to board info data
    	 *   r4: image address
    	 *   r5: console device
    	 *   r6: boot args string
    	 */
    
    	(*loader)(gd->bd, os_hdr, consdev, cmdline);
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    }
    
    #endif /* CONFIG_BOOTM_NETBSD*/
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    #ifdef CONFIG_LYNXKDI
    
    static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
    
    	image_header_t *hdr = &images->legacy_hdr_os_copy;
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("Lynx");
    
    	lynxkdi_boot((image_header_t *)hdr);
    
    }
    #endif /* CONFIG_LYNXKDI */
    
    
    #ifdef CONFIG_BOOTM_RTEMS
    
    static int do_bootm_rtems(int flag, int argc, char * const argv[],
    
    {
    	void (*entry_point)(bd_t *);
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("RTEMS");
    
    	entry_point = (void (*)(bd_t *))images->ep;
    
    	printf("## Transferring control to RTEMS (at address %08lx) ...\n",
    
    	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
    
    
    	/*
    	 * RTEMS Parameters:
    	 *   r3: ptr to board info data
    	 */
    
    	(*entry_point)(gd->bd);
    
    #endif /* CONFIG_BOOTM_RTEMS */
    
    #if defined(CONFIG_BOOTM_OSE)
    
    static int do_bootm_ose(int flag, int argc, char * const argv[],
    
    			   bootm_headers_t *images)
    {
    	void (*entry_point)(void);
    
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("OSE");
    
    		return 1;
    	}
    #endif
    
    	entry_point = (void (*)(void))images->ep;
    
    
    	printf("## Transferring control to OSE (at address %08lx) ...\n",
    
    		(ulong)entry_point);
    
    
    	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
    
    
    	/*
    	 * OSE Parameters:
    	 *   None
    	 */
    	(*entry_point)();
    
    	return 1;
    }
    #endif /* CONFIG_BOOTM_OSE */
    
    
    static int do_bootm_vxworks(int flag, int argc, char * const argv[],
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	char str[80];
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    		fit_unsupported_reset("VxWorks");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	sprintf(str, "%lx", images->ep); /* write entry-point into string */
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	setenv("loadaddr", str);
    
    	do_bootvx(NULL, 0, 0, NULL);
    
    	return 1;
    
    static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    {
    	char *local_args[2];
    	char str[16];
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("QNX");
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    
    
    	sprintf(str, "%lx", images->ep); /* write entry-point into string */
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    	local_args[0] = argv[0];
    	local_args[1] = str;	/* and provide it via the arguments */
    
    	do_bootelf(NULL, 0, 2, local_args);
    
    	return 1;
    
    Wolfgang Denk's avatar
    Wolfgang Denk committed
    }
    
    static int do_bootm_integrity(int flag, int argc, char * const argv[],
    
    			   bootm_headers_t *images)
    {
    	void (*entry_point)(void);
    
    
    Kumar Gala's avatar
    Kumar Gala committed
    	if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
    		return 1;
    
    
    #if defined(CONFIG_FIT)
    	if (!images->legacy_hdr_valid) {
    
    		fit_unsupported_reset("INTEGRITY");
    
    		return 1;
    	}
    #endif
    
    	entry_point = (void (*)(void))images->ep;
    
    
    	printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
    
    	bootstage_mark(BOOTSTAGE_ID_RUN_OS);
    
    
    	/*
    	 * INTEGRITY Parameters:
    	 *   None
    	 */
    	(*entry_point)();
    
    	return 1;
    }
    #endif
    
    
    #ifdef CONFIG_CMD_BOOTZ
    
    static int __bootz_setup(void *image, void **start, void **end)
    {
    	/* Please define bootz_setup() for your platform */
    
    	puts("Your platform's zImage format isn't supported yet!\n");
    	return -1;
    }
    int bootz_setup(void *image, void **start, void **end)
    	__attribute__((weak, alias("__bootz_setup")));
    
    /*
     * zImage booting support
     */
    static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
    			char * const argv[], bootm_headers_t *images)
    {
    	int ret;
    	void *zi_start, *zi_end;
    
    	memset(images, 0, sizeof(bootm_headers_t));
    
    	boot_start_lmb(images);
    
    	/* Setup Linux kernel zImage entry point */
    	if (argc < 2) {
    		images->ep = load_addr;
    		debug("*  kernel: default image load address = 0x%08lx\n",
    				load_addr);
    	} else {
    		images->ep = simple_strtoul(argv[1], NULL, 16);
    		debug("*  kernel: cmdline image address = 0x%08lx\n",
    			images->ep);
    	}
    
    	ret = bootz_setup((void *)images->ep, &zi_start, &zi_end);
    	if (ret != 0)
    		return 1;
    
    	lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
    
    	/* Find ramdisk */
    	ret = boot_get_ramdisk(argc, argv, images, IH_INITRD_ARCH,
    			&images->rd_start, &images->rd_end);
    	if (ret) {
    		puts("Ramdisk image is corrupt or invalid\n");
    		return 1;
    	}
    
    #if defined(CONFIG_OF_LIBFDT)
    	/* find flattened device tree */
    	ret = boot_get_fdt(flag, argc, argv, images,
    			   &images->ft_addr, &images->ft_len);
    	if (ret) {
    		puts("Could not find a valid device tree\n");
    		return 1;
    	}
    
    	set_working_fdt_addr(images->ft_addr);
    #endif
    
    	return 0;
    }
    
    static int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
    {
    	bootm_headers_t	images;
    
    	if (bootz_start(cmdtp, flag, argc, argv, &images))
    		return 1;
    
    	/*
    	 * We have reached the point of no return: we are going to
    	 * overwrite all exception vector code, so we cannot easily
    	 * recover from any failures any more...
    	 */
    
    	disable_interrupts();
    
    #ifdef CONFIG_NETCONSOLE
    	/* Stop the ethernet stack if NetConsole could have left it up */
    	eth_halt();
    #endif
    
    
    #if defined(CONFIG_CMD_USB)
    	/*
    	 * turn off USB to prevent the host controller from writing to the
    	 * SDRAM while Linux is booting. This could happen (at least for OHCI
    	 * controller), because the HCCA (Host Controller Communication Area)
    	 * lies within the SDRAM and the host controller writes continously to
    	 * this area (as busmaster!). The HccaFrameNumber is for example
    	 * updated every 1 ms within the HCCA structure in SDRAM! For more
    	 * details see the OpenHCI specification.
    	 */
    	usb_stop();
    #endif
    
    #ifdef CONFIG_SILENT_CONSOLE
    	fixup_silent_linux();
    #endif
    	arch_preboot_os();
    
    	do_bootm_linux(0, argc, argv, &images);
    #ifdef DEBUG
    	puts("\n## Control returned to monitor - resetting...\n");
    #endif
    	do_reset(cmdtp, flag, argc, argv);
    
    	return 1;
    }
    
    U_BOOT_CMD(
    	bootz,	CONFIG_SYS_MAXARGS,	1,	do_bootz,
    	"boot Linux zImage image from memory",
    
    	"[addr [initrd[:size]] [fdt]]\n"
    	"    - boot Linux zImage stored in memory\n"
    
    	"\tThe argument 'initrd' is optional and specifies the address\n"
    
    	"\tof the initrd in memory. The optional argument ':size' allows\n"
    	"\tspecifying the size of RAW initrd.\n"
    
    #if defined(CONFIG_OF_LIBFDT)
    	"\tWhen booting a Linux kernel which requires a flat device-tree\n"
    	"\ta third argument is required which is the address of the\n"
    	"\tdevice-tree blob. To boot that kernel without an initrd image,\n"
    	"\tuse a '-' for the second argument. If you do not pass a third\n"
    	"\ta bd_info struct will be passed instead\n"
    #endif
    );
    #endif	/* CONFIG_CMD_BOOTZ */