blob: f27955d44476c28545f7030d826ea37350a9be64 [file] [log] [blame]
#define DEBUG
#include <common.h>
#include <command.h>
#include <watchdog.h>
#include <image.h>
#include <init.h>
#include <environment.h>
#include <asm/global_data.h>
#include <asm/bitops.h>
#include <boot.h>
#include <errno.h>
#include <fs.h>
#ifdef CONFIG_OF_FLAT_TREE
#include <ft_build.h>
#endif
extern bd_t *bd;
static int do_bootm_linux(struct image_data *idata)
{
ulong sp;
ulong initrd_end = 0;
ulong cmd_start, cmd_end;
ulong initrd_high;
int initrd_copy_to_ram = 1;
char *cmdline;
const char *c;
bd_t *kbd;
void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
#ifdef CONFIG_OF_FLAT_TREE
char *of_flat_tree = NULL;
#endif
image_header_t *os_header = &idata->os->header;
image_header_t *initrd_header = NULL;
void *os_data = NULL;
void *initrd_data = NULL;
void *of_data = NULL;
struct image_handle *oftree_handle;
unsigned long os_len, initrd_len;
if (idata->initrd)
initrd_header = &idata->initrd->header;
printf("entering %s: os_header: %p initrd_header: %p oftree: %s\n",
__FUNCTION__, os_header, initrd_header, idata->oftree);
if (image_get_type(os_header) == IH_TYPE_MULTI) {
unsigned long *data = (unsigned long *)(idata->os->data);
unsigned long len1 = 0, len2 = 0;
if (!*data) {
printf("multifile image with 0 entries???\n");
return -1;
}
os_len = ntohl(*data); /* first one is the kernel */
data++;
if (*data) {
len1 = ntohl(*data); /* could be initrd or oftree */
data++;
}
if (*data) {
len2 = ntohl(*data); /* could be oftree */
data++;
}
while (*data) /* skip all remaining files */
data++;
data++; /* skip terminating zero */
os_data = (void *)ntohl(data);
if (len2) {
initrd_data = (void *)
((unsigned long)data + ((os_len + 3) & ~3));
initrd_len = len1;
of_data = (void *)
((unsigned long)initrd_data + ((initrd_len + 3) & ~3));
} else if (len1) {
/* We could check here if this is a multifile image
* with only a kernel and an oftree. Original barebox
* did not do this, so leave it out for now.
*/
initrd_data = (void *)((unsigned long)data + ((os_len + 3) & ~3));
initrd_len = len1;
}
} else {
os_data = idata->os->data;
printf("set os_data to %p\n", os_data);
}
if (idata->initrd)
initrd_data = idata->initrd->data;
#ifdef CONFIG_OF_FLAT_TREE
if (idata->oftree) {
/* The oftree can be given either as an barebox image or as a
* binary blob. First try to read it as an image.
*/
oftree_handle = map_image(idata->oftree, 1);
if (oftree_handle) {
of_data = oftree_handle->data;
} else {
of_data = read_file(idata->oftree, 0);
if (!of_data) {
printf("could not read %s: %s\n", idata->oftree, errno_str());
return -1;
}
}
/* FIXME: check if this is really an oftree */
}
#endif
printf("loading kernel.\n");
if ((c = getenv ("initrd_high")) != NULL) {
/* a value of "no" or a similar string will act like 0,
* turning the "load high" feature off. This is intentional.
*/
initrd_high = simple_strtoul(c, NULL, 16);
if (initrd_high == ~0)
initrd_copy_to_ram = 0;
} else { /* not set, no restrictions to load high */
initrd_high = ~0;
}
#ifdef CONFIG_LOGBUFFER
kbd=gd->bd;
/* Prevent initrd from overwriting logbuffer */
if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
#endif
/*
* Booting a (Linux) kernel image
*
* Allocate space for command line and board info - the
* address should be as high as possible within the reach of
* the kernel (see CFG_BOOTMAPSZ settings), but in unused
* memory, which means far enough below the current stack
* pointer.
*/
asm( "mr %0,1": "=r"(sp) : );
debug ("## Current stack ends at 0x%08lX ", sp);
sp -= 2048; /* just to be sure */
if (sp > CFG_BOOTMAPSZ)
sp = CFG_BOOTMAPSZ;
sp &= ~0xF;
debug ("=> set upper limit to 0x%08lX\n", sp);
cmdline = (char *)((sp - CONFIG_CBSIZE) & ~0xF);
kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
printf("cmdline: %p kbd: %p\n", cmdline, kbd);
if ((c = getenv("bootargs")) == NULL)
c = "";
strcpy (cmdline, c);
cmd_start = (ulong)cmdline;
cmd_end = cmd_start + strlen(cmdline);
init_board_data(kbd);
#ifdef DEBUG
printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
// do_bdinfo (NULL, 0, 0, NULL);
#endif
if ((c = getenv ("clocks_in_mhz")) != NULL) {
/* convert all clock information to MHz */
kbd->bi_intfreq /= 1000000L;
kbd->bi_busfreq /= 1000000L;
#if defined(CONFIG_MPC8220)
kbd->bi_inpfreq /= 1000000L;
kbd->bi_pcifreq /= 1000000L;
kbd->bi_pevfreq /= 1000000L;
kbd->bi_flbfreq /= 1000000L;
kbd->bi_vcofreq /= 1000000L;
#endif
#if defined(CONFIG_CPM2)
kbd->bi_cpmfreq /= 1000000L;
kbd->bi_brgfreq /= 1000000L;
kbd->bi_sccfreq /= 1000000L;
kbd->bi_vco /= 1000000L;
#endif
#if defined(CONFIG_MPC5xxx)
kbd->bi_ipbfreq /= 1000000L;
kbd->bi_pcifreq /= 1000000L;
#endif /* CONFIG_MPC5xxx */
}
kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))image_get_ep(os_header); /* FIXME */
if (relocate_image(idata->os, (void *)image_get_load(os_header)))
return -1;
#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
unlock_ram_in_cache();
#endif
#ifdef CONFIG_OF_FLAT_TREE
/* move of_flat_tree if needed */
if (of_data) {
ulong of_start, of_len;
of_len = ((struct boot_param_header *)of_data)->totalsize;
/* provide extra 8k pad */
if (initrd_data)
of_start = (unsigned long)initrd_data - of_len - 8192;
else
of_start = (ulong)kbd - of_len - 8192;
of_start &= ~(4096 - 1); /* align on page */
debug ("## device tree at 0x%p ... 0x%p (len=%ld=0x%lX)\n",
of_data, of_data + of_len - 1, of_len, of_len);
of_flat_tree = (char *)of_start;
printf (" Loading Device Tree to %08lx, end %08lx ... ",
of_start, of_start + of_len - 1);
memmove ((void *)of_start, (void *)of_data, of_len);
}
#endif
/*
* Linux Kernel Parameters (passing board info data):
* r3: ptr to board info data
* r4: initrd_start or 0 if no initrd
* r5: initrd_end - unused if r4 is 0
* r6: Start of command line string
* r7: End of command line string
*/
#ifdef CONFIG_OF_FLAT_TREE
if (!of_flat_tree) /* no device tree; boot old style */
#endif
(*kernel) (kbd, (ulong)initrd_data, initrd_end, cmd_start, cmd_end);
/* does not return */
#ifdef CONFIG_OF_FLAT_TREE
/*
* Linux Kernel Parameters (passing device tree):
* r3: ptr to OF flat tree, followed by the board info data
* r4: physical pointer to the kernel itself
* r5: NULL
* r6: NULL
* r7: NULL
*/
ft_setup(of_flat_tree, kbd, (long)initrd_data, initrd_end);
ft_cpu_setup(of_flat_tree, kbd);
(*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
#endif
reset_cpu(0);
/* not reached */
return -1;
}
static struct image_handler handler = {
.bootm = do_bootm_linux,
.image_type = IH_OS_LINUX,
};
static int ppclinux_register_image_handler(void)
{
return register_image_handler(&handler);
}
late_initcall(ppclinux_register_image_handler);