blob: e92c84831209b7d9ad82cf5eefd07f9bdf8c377a [file] [log] [blame]
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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, MA 02111-1307 USA
21 *
22 */
23
24#include <common.h>
25#include <command.h>
26#include <asm/byteorder.h>
27
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090028/* The SH kernel reads arguments from the empty zero page at location
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010029 * 0 at the start of SDRAM. The following are copied from
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090030 * arch/sh/kernel/setup.c and may require tweaking if the kernel sources
31 * change.
32 */
Wolfgang Denk438a4c12008-03-26 11:48:46 +010033#define PARAM ((unsigned char *)CFG_SDRAM_BASE + 0x1000)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090034
35#define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
36#define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
37#define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
38#define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
39#define INITRD_START (*(unsigned long *) (PARAM+0x010))
40#define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
41/* ... */
42#define COMMAND_LINE ((char *) (PARAM+0x100))
43
Wolfgang Denk438a4c12008-03-26 11:48:46 +010044#define RAMDISK_IMAGE_START_MASK 0x07FF
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090045
46#ifdef CFG_DEBUG
47static void hexdump (unsigned char *buf, int len)
48{
49 int i;
50
51 for (i = 0; i < len; i++) {
52 if ((i % 16) == 0)
53 printf ("%s%08x: ", i ? "\n" : "", (unsigned int) &buf[i]);
54 printf ("%02x ", buf[i]);
55 }
56 printf ("\n");
57}
58#endif
59
Kumar Gala40d7e992008-08-15 08:24:45 -050060int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090061{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010062 char *bootargs = getenv("bootargs");
63
Kumar Galac160a952008-08-15 08:24:36 -050064 void (*kernel) (void) = (void (*)(void))images->ep;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090065
66 /* Setup parameters */
67 memset(PARAM, 0, 0x1000); /* Clear zero page */
68 strcpy(COMMAND_LINE, bootargs);
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090069
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090070 kernel();
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010071 /* does not return */
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010072
73error:
Kumar Gala40d7e992008-08-15 08:24:45 -050074 return 1;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090075}