blob: 1a9343c108263a0a3c28512669a201504b08a046 [file] [log] [blame]
Daniel Hellstromc2f02da2008-03-28 09:47:00 +01001/* SPARC code for booting linux 2.6
2 *
3 * (C) Copyright 2007
4 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <command.h>
27#include <asm/byteorder.h>
28#include <asm/prom.h>
29#include <asm/cache.h>
Daniel Hellstromaf5eb842008-11-10 12:46:20 +000030#include <image.h>
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010031
32#define PRINT_KERNEL_HEADER
33
34extern image_header_t header;
35extern void srmmu_init_cpu(unsigned int entry);
36extern void prepare_bootargs(char *bootargs);
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010037
38#ifdef CONFIG_USB_UHCI
Lucas Stachc7e3b2b2012-09-26 00:14:34 +020039extern int usb_lowlevel_stop(int index);
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010040#endif
41
42/* sparc kernel argument (the ROM vector) */
43struct linux_romvec *kernel_arg_promvec;
44
45/* page szie is 4k */
46#define PAGE_SIZE 0x1000
47#define RAMDISK_IMAGE_START_MASK 0x07FF
48#define RAMDISK_PROMPT_FLAG 0x8000
49#define RAMDISK_LOAD_FLAG 0x4000
50struct __attribute__ ((packed)) {
51 char traptable[PAGE_SIZE];
52 char swapper_pg_dir[PAGE_SIZE];
53 char pg0[PAGE_SIZE];
54 char pg1[PAGE_SIZE];
55 char pg2[PAGE_SIZE];
56 char pg3[PAGE_SIZE];
57 char empty_bad_page[PAGE_SIZE];
58 char empty_bad_page_table[PAGE_SIZE];
59 char empty_zero_page[PAGE_SIZE];
60 unsigned char hdr[4]; /* ascii "HdrS" */
61 /* 00.02.06.0b is for Linux kernel 2.6.11 */
62 unsigned char linuxver_mega_major;
63 unsigned char linuxver_major;
64 unsigned char linuxver_minor;
65 unsigned char linuxver_revision;
66 /* header version 0x0203 */
67 unsigned short hdr_ver;
68 union __attribute__ ((packed)) {
69 struct __attribute__ ((packed)) {
70 unsigned short root_flags;
71 unsigned short root_dev;
72 unsigned short ram_flags;
73 unsigned int sparc_ramdisk_image;
74 unsigned int sparc_ramdisk_size;
75 unsigned int reboot_command;
76 unsigned int resv[3];
77 unsigned int end;
78 } ver_0203;
79 } hdr_input;
80} *linux_hdr;
81
82/* temporary initrd image holder */
83image_header_t ihdr;
84
Kumar Gala76da19d2008-10-16 21:52:08 -050085void arch_lmb_reserve(struct lmb *lmb)
86{
87 /* Reserve the space used by PROM and stack. This is done
88 * to avoid that the RAM image is copied over stack or
89 * PROM.
90 */
91 lmb_reserve(lmb, CONFIG_SYS_RELOC_MONITOR_BASE, CONFIG_SYS_RAM_END);
92}
93
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010094/* boot the linux kernel */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020095int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t * images)
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010096{
97 char *bootargs;
Kumar Galac4f94192008-08-15 08:24:37 -050098 ulong rd_len;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +010099 void (*kernel) (struct linux_romvec *, void *);
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100100 int ret;
101
Kumar Gala49c3a862008-10-21 17:25:45 -0500102 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
103 return 1;
104
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100105 /* Get virtual address of kernel start */
Kumar Gala396f6352008-08-15 08:24:41 -0500106 linux_hdr = (void *)images->os.load;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100107
108 /* */
Kumar Galac160a952008-08-15 08:24:36 -0500109 kernel = (void (*)(struct linux_romvec *, void *))images->ep;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100110
111 /* check for a SPARC kernel */
112 if ((linux_hdr->hdr[0] != 'H') ||
113 (linux_hdr->hdr[1] != 'd') ||
114 (linux_hdr->hdr[2] != 'r') || (linux_hdr->hdr[3] != 'S')) {
115 puts("Error reading header of SPARC Linux kernel, aborting\n");
116 goto error;
117 }
118#ifdef PRINT_KERNEL_HEADER
119 printf("## Found SPARC Linux kernel %d.%d.%d ...\n",
120 linux_hdr->linuxver_major,
121 linux_hdr->linuxver_minor, linux_hdr->linuxver_revision);
122#endif
123
124#ifdef CONFIG_USB_UHCI
125 usb_lowlevel_stop();
126#endif
127
128 /* set basic boot params in kernel header now that it has been
129 * extracted and is writeable.
130 */
131
Simon Glass2a08b742013-05-08 08:06:06 +0000132 ret = image_setup_linux(images);
133 if (ret) {
134 puts("### Failed to relocate RAM disk\n");
135 goto error;
136 }
137
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100138 /* Calc length of RAM disk, if zero no ramdisk available */
Kumar Galac4f94192008-08-15 08:24:37 -0500139 rd_len = images->rd_end - images->rd_start;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100140
141 if (rd_len) {
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100142 /* Update SPARC kernel header so that Linux knows
143 * what is going on and where to find RAM disk.
144 *
145 * Set INITRD Image address relative to RAM Start
146 */
147 linux_hdr->hdr_input.ver_0203.sparc_ramdisk_image =
Simon Glass2a08b742013-05-08 08:06:06 +0000148 images->initrd_start - CONFIG_SYS_RAM_BASE;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100149 linux_hdr->hdr_input.ver_0203.sparc_ramdisk_size = rd_len;
150 /* Clear READ ONLY flag if set to non-zero */
151 linux_hdr->hdr_input.ver_0203.root_flags = 1;
152 /* Set root device to: Root_RAM0 */
153 linux_hdr->hdr_input.ver_0203.root_dev = 0x100;
154 linux_hdr->hdr_input.ver_0203.ram_flags = 0;
155 } else {
156 /* NOT using RAMDISK image, overwriting kernel defaults */
157 linux_hdr->hdr_input.ver_0203.sparc_ramdisk_image = 0;
158 linux_hdr->hdr_input.ver_0203.sparc_ramdisk_size = 0;
159 /* Leave to kernel defaults
160 linux_hdr->hdr_input.ver_0203.root_flags = 1;
161 linux_hdr->hdr_input.ver_0203.root_dev = 0;
162 linux_hdr->hdr_input.ver_0203.ram_flags = 0;
163 */
164 }
165
166 /* Copy bootargs from bootargs variable to kernel readable area */
167 bootargs = getenv("bootargs");
168 prepare_bootargs(bootargs);
169
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100170 /* turn on mmu & setup context table & page table for process 0 (kernel) */
171 srmmu_init_cpu((unsigned int)kernel);
172
173 /* Enter SPARC Linux kernel
174 * From now on the only code in u-boot that will be
175 * executed is the PROM code.
176 */
Daniel Hellstromaf5eb842008-11-10 12:46:20 +0000177 kernel(kernel_arg_promvec, (void *)images->ep);
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100178
179 /* It will never come to this... */
180 while (1) ;
181
182 error:
Kumar Gala40d7e992008-08-15 08:24:45 -0500183 return 1;
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100184}