2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2004-03-12 00:14:09 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-11-03 00:24:07 +00:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2004-03-12 00:14:09 +00:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-11-03 00:24:07 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <image.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
|
|
|
|
defined (CONFIG_CMDLINE_TAG) || \
|
|
|
|
defined (CONFIG_INITRD_TAG) || \
|
2004-01-02 16:05:07 +00:00
|
|
|
defined (CONFIG_SERIAL_TAG) || \
|
|
|
|
defined (CONFIG_REVISION_TAG) || \
|
2004-10-09 23:25:58 +00:00
|
|
|
defined (CONFIG_VFD) || \
|
|
|
|
defined (CONFIG_LCD)
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_start_tag (bd_t *bd);
|
|
|
|
|
2002-11-03 18:03:52 +00:00
|
|
|
# ifdef CONFIG_SETUP_MEMORY_TAGS
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_memory_tags (bd_t *bd);
|
2002-11-03 18:03:52 +00:00
|
|
|
# endif
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_commandline_tag (bd_t *bd, char *commandline);
|
|
|
|
|
2002-11-03 18:03:52 +00:00
|
|
|
# ifdef CONFIG_INITRD_TAG
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_initrd_tag (bd_t *bd, ulong initrd_start,
|
|
|
|
ulong initrd_end);
|
2002-11-03 18:03:52 +00:00
|
|
|
# endif
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_end_tag (bd_t *bd);
|
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
# if defined (CONFIG_VFD) || defined (CONFIG_LCD)
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_videolfb_tag (gd_t *gd);
|
2002-11-03 18:03:52 +00:00
|
|
|
# endif
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
static struct tag *params;
|
|
|
|
#endif /* CONFIG_SETUP_MEMORY_TAGS || CONFIG_CMDLINE_TAG || CONFIG_INITRD_TAG */
|
|
|
|
|
2008-02-04 07:28:09 +00:00
|
|
|
extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
void do_bootm_linux (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
|
2008-02-27 10:01:04 +00:00
|
|
|
bootm_headers_t *images)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2008-02-04 07:28:09 +00:00
|
|
|
ulong initrd_start, initrd_end;
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
char *s;
|
|
|
|
int machid = bd->bi_arch_number;
|
|
|
|
void (*theKernel)(int zero, int arch, uint params);
|
2008-03-12 09:33:00 +00:00
|
|
|
int ret;
|
2003-12-06 23:55:10 +00:00
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#ifdef CONFIG_CMDLINE_TAG
|
2003-12-06 23:55:10 +00:00
|
|
|
char *commandline = getenv ("bootargs");
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-15 13:24:36 +00:00
|
|
|
theKernel = (void (*)(int, int, uint))images->ep;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2008-01-30 08:08:49 +00:00
|
|
|
s = getenv ("machid");
|
|
|
|
if (s) {
|
|
|
|
machid = simple_strtoul (s, NULL, 16);
|
|
|
|
printf ("Using machid 0x%x from environment\n", machid);
|
|
|
|
}
|
|
|
|
|
2008-03-12 09:14:38 +00:00
|
|
|
ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_ARM,
|
|
|
|
&initrd_start, &initrd_end);
|
|
|
|
if (ret)
|
2008-03-12 09:33:00 +00:00
|
|
|
goto error;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2007-07-13 07:54:17 +00:00
|
|
|
show_boot_progress (15);
|
2002-11-05 00:17:55 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
debug ("## Transferring control to Linux (at address %08lx) ...\n",
|
|
|
|
(ulong) theKernel);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
|
|
|
|
defined (CONFIG_CMDLINE_TAG) || \
|
|
|
|
defined (CONFIG_INITRD_TAG) || \
|
2004-01-02 16:05:07 +00:00
|
|
|
defined (CONFIG_SERIAL_TAG) || \
|
|
|
|
defined (CONFIG_REVISION_TAG) || \
|
2004-10-09 23:25:58 +00:00
|
|
|
defined (CONFIG_LCD) || \
|
2002-11-03 00:24:07 +00:00
|
|
|
defined (CONFIG_VFD)
|
2003-12-06 23:55:10 +00:00
|
|
|
setup_start_tag (bd);
|
2004-01-02 16:05:07 +00:00
|
|
|
#ifdef CONFIG_SERIAL_TAG
|
|
|
|
setup_serial_tag (¶ms);
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_REVISION_TAG
|
|
|
|
setup_revision_tag (¶ms);
|
|
|
|
#endif
|
2002-11-03 00:24:07 +00:00
|
|
|
#ifdef CONFIG_SETUP_MEMORY_TAGS
|
2003-12-06 23:55:10 +00:00
|
|
|
setup_memory_tags (bd);
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_CMDLINE_TAG
|
2003-12-06 23:55:10 +00:00
|
|
|
setup_commandline_tag (bd, commandline);
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_INITRD_TAG
|
2003-12-06 23:55:10 +00:00
|
|
|
if (initrd_start && initrd_end)
|
|
|
|
setup_initrd_tag (bd, initrd_start, initrd_end);
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
2004-10-09 23:25:58 +00:00
|
|
|
#if defined (CONFIG_VFD) || defined (CONFIG_LCD)
|
2003-12-06 23:55:10 +00:00
|
|
|
setup_videolfb_tag ((gd_t *) gd);
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
2003-12-06 23:55:10 +00:00
|
|
|
setup_end_tag (bd);
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
/* we assume that the kernel is in place */
|
|
|
|
printf ("\nStarting kernel ...\n\n");
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2004-03-12 00:14:09 +00:00
|
|
|
#ifdef CONFIG_USB_DEVICE
|
|
|
|
{
|
|
|
|
extern void udc_disconnect (void);
|
|
|
|
udc_disconnect ();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
cleanup_before_linux ();
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2008-01-30 08:08:49 +00:00
|
|
|
theKernel (0, machid, bd->bi_boot_params);
|
2008-03-12 09:33:00 +00:00
|
|
|
/* does not return */
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
2008-08-11 14:20:53 +00:00
|
|
|
do_reset (cmdtp, flag, argc, argv);
|
2008-03-12 09:33:00 +00:00
|
|
|
return;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
|
|
|
|
defined (CONFIG_CMDLINE_TAG) || \
|
|
|
|
defined (CONFIG_INITRD_TAG) || \
|
2004-01-02 16:05:07 +00:00
|
|
|
defined (CONFIG_SERIAL_TAG) || \
|
|
|
|
defined (CONFIG_REVISION_TAG) || \
|
2004-10-09 23:25:58 +00:00
|
|
|
defined (CONFIG_LCD) || \
|
2002-11-03 00:24:07 +00:00
|
|
|
defined (CONFIG_VFD)
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_start_tag (bd_t *bd)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
params = (struct tag *) bd->bi_boot_params;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->hdr.tag = ATAG_CORE;
|
|
|
|
params->hdr.size = tag_size (tag_core);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->u.core.flags = 0;
|
|
|
|
params->u.core.pagesize = 0;
|
|
|
|
params->u.core.rootdev = 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params = tag_next (params);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-03 18:03:52 +00:00
|
|
|
#ifdef CONFIG_SETUP_MEMORY_TAGS
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_memory_tags (bd_t *bd)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
int i;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
|
|
|
|
params->hdr.tag = ATAG_MEM;
|
|
|
|
params->hdr.size = tag_size (tag_mem32);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->u.mem.start = bd->bi_dram[i].start;
|
|
|
|
params->u.mem.size = bd->bi_dram[i].size;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params = tag_next (params);
|
|
|
|
}
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
2003-12-06 23:55:10 +00:00
|
|
|
#endif /* CONFIG_SETUP_MEMORY_TAGS */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_commandline_tag (bd_t *bd, char *commandline)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
char *p;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2004-03-23 21:43:07 +00:00
|
|
|
if (!commandline)
|
|
|
|
return;
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
/* eat leading white space */
|
|
|
|
for (p = commandline; *p == ' '; p++);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
/* skip non-existent command lines so the kernel will still
|
|
|
|
* use its default command line.
|
|
|
|
*/
|
|
|
|
if (*p == '\0')
|
|
|
|
return;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->hdr.tag = ATAG_CMDLINE;
|
|
|
|
params->hdr.size =
|
|
|
|
(sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
strcpy (params->u.cmdline.cmdline, p);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params = tag_next (params);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-03 18:03:52 +00:00
|
|
|
#ifdef CONFIG_INITRD_TAG
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_initrd_tag (bd_t *bd, ulong initrd_start, ulong initrd_end)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
/* an ATAG_INITRD node tells the kernel where the compressed
|
|
|
|
* ramdisk can be found. ATAG_RDIMG is a better name, actually.
|
|
|
|
*/
|
2004-04-18 22:26:17 +00:00
|
|
|
params->hdr.tag = ATAG_INITRD2;
|
2003-12-06 23:55:10 +00:00
|
|
|
params->hdr.size = tag_size (tag_initrd);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->u.initrd.start = initrd_start;
|
|
|
|
params->u.initrd.size = initrd_end - initrd_start;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params = tag_next (params);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
2003-12-06 23:55:10 +00:00
|
|
|
#endif /* CONFIG_INITRD_TAG */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
#if defined (CONFIG_VFD) || defined (CONFIG_LCD)
|
|
|
|
extern ulong calc_fbsize (void);
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_videolfb_tag (gd_t *gd)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
/* An ATAG_VIDEOLFB node tells the kernel where and how large
|
|
|
|
* the framebuffer for video was allocated (among other things).
|
|
|
|
* Note that a _physical_ address is passed !
|
|
|
|
*
|
|
|
|
* We only use it to pass the address and size, the other entries
|
|
|
|
* in the tag_videolfb are not of interest.
|
|
|
|
*/
|
|
|
|
params->hdr.tag = ATAG_VIDEOLFB;
|
|
|
|
params->hdr.size = tag_size (tag_videolfb);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params->u.videolfb.lfb_base = (u32) gd->fb_base;
|
2004-10-09 23:25:58 +00:00
|
|
|
/* Fb size is calculated according to parameters for our panel
|
|
|
|
*/
|
|
|
|
params->u.videolfb.lfb_size = calc_fbsize();
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
params = tag_next (params);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif /* CONFIG_VFD || CONFIG_LCD */
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2005-05-19 22:39:42 +00:00
|
|
|
#ifdef CONFIG_SERIAL_TAG
|
|
|
|
void setup_serial_tag (struct tag **tmp)
|
|
|
|
{
|
|
|
|
struct tag *params = *tmp;
|
|
|
|
struct tag_serialnr serialnr;
|
|
|
|
void get_board_serial(struct tag_serialnr *serialnr);
|
|
|
|
|
|
|
|
get_board_serial(&serialnr);
|
|
|
|
params->hdr.tag = ATAG_SERIAL;
|
|
|
|
params->hdr.size = tag_size (tag_serialnr);
|
|
|
|
params->u.serialnr.low = serialnr.low;
|
|
|
|
params->u.serialnr.high= serialnr.high;
|
|
|
|
params = tag_next (params);
|
|
|
|
*tmp = params;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-01-12 00:15:14 +00:00
|
|
|
#ifdef CONFIG_REVISION_TAG
|
|
|
|
void setup_revision_tag(struct tag **in_params)
|
|
|
|
{
|
|
|
|
u32 rev = 0;
|
|
|
|
u32 get_board_rev(void);
|
|
|
|
|
|
|
|
rev = get_board_rev();
|
|
|
|
params->hdr.tag = ATAG_REVISION;
|
|
|
|
params->hdr.size = tag_size (tag_revision);
|
|
|
|
params->u.revision.rev = rev;
|
|
|
|
params = tag_next (params);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_REVISION_TAG */
|
|
|
|
|
|
|
|
|
2003-12-06 23:55:10 +00:00
|
|
|
static void setup_end_tag (bd_t *bd)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2003-12-06 23:55:10 +00:00
|
|
|
params->hdr.tag = ATAG_NONE;
|
|
|
|
params->hdr.size = 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_SETUP_MEMORY_TAGS || CONFIG_CMDLINE_TAG || CONFIG_INITRD_TAG */
|