2 Copyright © 2013-2015, The AROS Development Team. All rights reserved.
11 #include <utility/tagitem.h>
12 #include <aros/macros.h>
17 #include <hardware/bcm2708.h>
18 #include <hardware/bcm2708_boot.h>
19 #include <hardware/videocore.h>
22 #include "serialdebug.h"
23 #include "bootconsole.h"
34 #define ARM_PERIIOBASE (__arm_periiobase)
36 uint32_t __arm_periiobase
;
38 extern void mem_init(void);
39 extern unsigned int uartclock
;
40 extern unsigned int uartdivint
;
41 extern unsigned int uartdivfrac
;
42 extern unsigned int uartbaud
;
44 asm(" .section .aros.startup \n"
45 " .globl bootstrap \n"
46 " .type bootstrap,%function \n"
48 " cps #0x13 \n" /* Should be in SVC (supervisor) mode already, but just incase.. */
49 " ldr sp, tmp_stack_ptr \n"
53 ".string \"$VER: arosraspi.img v40.45 (" __DATE__
")\"" "\n\t\n\t"
56 // The bootstrap tmp stack is re-used by the reset handler so we store it at this fixed location
57 static __used
void * tmp_stack_ptr
__attribute__((used
, section(".aros.startup"))) = (void *)(0x1000 - 16);
58 static struct TagItem
*boottag
;
59 static unsigned long *mem_upper
;
60 static void *pkg_image
;
61 static uint32_t pkg_size
;
63 static void parse_atags(struct tag
*tags
)
67 kprintf("[BOOT] Parsing ATAGS\n");
71 kprintf("[BOOT] %08x: ", t
->hdr
.tag
);
75 kprintf("ATAG_NONE - Ignored\n");
79 kprintf("ATAG_CORE - Ignored\n");
83 kprintf("ATAG_MEM (%08x-%08x)\n", t
->u
.mem
.start
, t
->u
.mem
.size
+ t
->u
.mem
.start
- 1);
84 boottag
->ti_Tag
= KRN_MEMLower
;
85 if ((boottag
->ti_Data
= t
->u
.mem
.start
) < sizeof(struct bcm2708bootmem
))
86 boottag
->ti_Data
= sizeof(struct bcm2708bootmem
); // Skip the *reserved* space for the cpu vectors/boot tmp stack/kernel private data.
89 boottag
->ti_Tag
= KRN_MEMUpper
;
90 boottag
->ti_Data
= t
->u
.mem
.start
+ t
->u
.mem
.size
;
92 mem_upper
= &boottag
->ti_Data
;
96 mmu_map_section(t
->u
.mem
.start
, t
->u
.mem
.start
, t
->u
.mem
.size
, 1, 1, 3, 1);
101 kprintf("ATAG_VIDEOTEXT - Ignored\n");
105 kprintf("ATAG_RAMDISK - Ignored\n");
109 kprintf("ATAG_INITRD2 (%08x-%08x)\n", t
->u
.initrd
.start
, t
->u
.initrd
.size
+ t
->u
.initrd
.start
- 1);
110 pkg_image
= (void *)t
->u
.initrd
.start
;
111 pkg_size
= t
->u
.initrd
.size
;
115 kprintf("ATAG_SERIAL - Ignored\n");
119 kprintf("ATAG_REVISION - Ignored\n");
123 kprintf("ATAG_VIDEOLFB - Ignored\n");
128 char *cmdline
= malloc(strlen(t
->u
.cmdline
.cmdline
) + 1);
129 strcpy(cmdline
, t
->u
.cmdline
.cmdline
);
130 kprintf("ATAG_CMDLINE \"%s\"\n", cmdline
);
132 boottag
->ti_Tag
= KRN_CmdLine
;
133 boottag
->ti_Data
= (intptr_t)cmdline
;
139 kprintf("(UNKNOWN)...\n");
147 volatile unsigned int *vc_msg
= (unsigned int *) BOOTMEMADDR(bm_mboxmsg
);
149 kprintf("[BOOT] Query VC memory\n");
151 vc_msg
[1] = VCTAG_REQ
;
152 vc_msg
[2] = VCTAG_GETVCRAM
;
159 vcmb_write(VCMB_BASE
, VCMB_PROPCHAN
, vc_msg
);
160 vc_msg
= vcmb_read(VCMB_BASE
, VCMB_PROPCHAN
);
162 kprintf("[BOOT] Base = %08x, Size = %08x\n", vc_msg
[5], vc_msg
[6]);
164 boottag
->ti_Tag
= KRN_VMEMLower
;
165 boottag
->ti_Data
= vc_msg
[5];
168 boottag
->ti_Tag
= KRN_VMEMUpper
;
169 boottag
->ti_Data
= vc_msg
[5] + vc_msg
[6];
172 mmu_map_section(vc_msg
[5], vc_msg
[5], vc_msg
[6], 1, 0, 3, 0);
175 static const char bootstrapName
[] = "Bootstrap/ARM BCM2708";
177 void boot(uintptr_t dummy
, uintptr_t arch
, struct tag
* atags
)
179 uint32_t tmp
, initcr
;
181 void (*entry
)(struct TagItem
*);
184 * Disable MMU, enable caches and branch prediction. Also enabled unaligned memory
187 asm volatile ("mrc p15, 0, %0, c1, c0, 0" : "=r"(initcr
));
189 tmp
&= ~1; /* Disable MMU */
190 tmp
|= (1 << 2) | (1 << 12) | (1 << 11); /* I and D caches, branch prediction */
191 tmp
= (tmp
& ~2) | (1 << 22); /* Unaligned access enable */
192 asm volatile ("mcr p15, 0, %0, c1, c0, 0" : : "r"(tmp
));
197 Check processor type - armv6 is old raspberry pi with SOC IO base at 0x20000000.
198 armv7 will be raspberry pi 2 with SOC IO base at 0x3f000000
200 asm volatile ("mrc p15, 0, %0, c0, c0, 0" : "=r" (tmp
));
202 tmp
= (tmp
>> 4) & 0xfff;
204 /* tmp == 7 means armv6 architecture. */
205 if (tmp
== 0xc07) /* armv7, also RaspberryPi 2 */
207 __arm_periiobase
= BCM2836_PERIPHYSBASE
;
210 /* prepare map for core boot vector(s) */
211 mmu_map_section(0x40000000, 0x40000000, 0x100000, 0, 0, 3, 0);
215 __arm_periiobase
= BCM2835_PERIPHYSBASE
;
216 /* Need to detect the plus board here in order to control LEDs properly */
219 /* Prepare map for MMIO registers */
220 mmu_map_section(__arm_periiobase
, __arm_periiobase
, ARM_PERIIOSIZE
, 1, 0, 3, 0);
224 boottag
= tmp_stack_ptr
- BOOT_STACK_SIZE
- BOOT_TAGS_SIZE
;
226 /* first of all, store the arch for the kernel to use .. */
227 boottag
->ti_Tag
= KRN_Platform
;
228 boottag
->ti_Data
= (IPTR
)arch
;
236 * Either B+ or rpi2 board. Uses two leds (power and activity) on GPIOs
237 * 47 and 35. Enable both leds as output and turn both of them off.
239 * The power led will be brought back up once AROS boots.
242 tmp
= *(volatile unsigned int *)GPFSEL4
;
243 tmp
&= ~(7 << 21); // GPIO 47 = 001 - output
245 *(volatile unsigned int *)GPFSEL4
= tmp
;
247 tmp
= *(volatile unsigned int *)GPFSEL3
;
248 tmp
&= ~(7 << 15); // GPIO 35 = 001 - output
250 *(volatile unsigned int *)GPFSEL3
= tmp
;
253 *(volatile unsigned int *)GPCLR1
= (1 << (47-32));
254 *(volatile unsigned int *)GPCLR1
= (1 << (35-32));
259 * Classic rpi board has only one controlable LED - activity on GPIO 16. Turn it
260 * off now, kernel.resource will bring it back later.
263 tmp
= *(volatile unsigned int *)GPFSEL1
;
264 tmp
&= ~(7 << 18); // GPIO 16 = 001 - output
266 *(volatile unsigned int *)GPFSEL1
= tmp
;
268 *(volatile unsigned int *)GPSET0
= (1 << 16);
274 boottag
->ti_Tag
= KRN_BootLoader
;
275 boottag
->ti_Data
= (IPTR
)bootstrapName
;
280 boottag
->ti_Tag
= KRN_FuncPutC
;
281 boottag
->ti_Data
= (IPTR
)fb_Putc
;
285 kprintf("[BOOT] AROS %s\n", bootstrapName
);
288 kprintf("[BOOT] UART clock speed: %d\n", uartclock
);
289 kprintf("[BOOT] using %d.%d divisor for %d baud\n", uartdivint
, uartdivfrac
, uartbaud
);
291 asm volatile ("mrc p15, 0, %0, c1, c0, 0" : "=r"(tmp
));
292 kprintf("[BOOT] control register init:%08x, now:%08x\n", initcr
, tmp
);
294 asm volatile ("mrc p15, 0, %0, c0, c0, 0" : "=r"(tmp
));
295 kprintf("[BOOT] main id register: %08x\n", tmp
);
301 kprintf("[BOOT] Bootstrap @ %08x-%08x\n", &__bootstrap_start
, &__bootstrap_end
);
303 boottag
->ti_Tag
= KRN_ProtAreaStart
;
304 boottag
->ti_Data
= (IPTR
)&__bootstrap_start
;
307 boottag
->ti_Tag
= KRN_ProtAreaEnd
;
308 boottag
->ti_Data
= (IPTR
)&__bootstrap_end
;
311 kprintf("[BOOT] Topmost address for kernel: %p\n", *mem_upper
);
315 *mem_upper
= *mem_upper
& ~4095;
317 unsigned long kernel_phys
= *mem_upper
;
318 unsigned long kernel_virt
= kernel_phys
;
320 unsigned long total_size_ro
, total_size_rw
;
321 uint32_t size_ro
, size_rw
;
323 /* Calculate total size of kernel and modules */
324 getElfSize(&_binary_core_bin_start
, &size_rw
, &size_ro
);
326 total_size_ro
= size_ro
= (size_ro
+ 4095) & ~4095;
327 total_size_rw
= size_rw
= (size_rw
+ 4095) & ~4095;
329 if (pkg_image
&& pkg_size
)
331 uint8_t *base
= pkg_image
;
333 if (base
[0] == 0x7f && base
[1] == 'E' && base
[2] == 'L' && base
[3] == 'F')
335 getElfSize(base
, &size_rw
, &size_ro
);
337 total_size_ro
+= (size_ro
+ 4095) & ~4095;
338 total_size_rw
+= (size_rw
+ 4095) & ~4095;
340 else if (base
[0] == 'P' && base
[1] == 'K' && base
[2] == 'G' && base
[3] == 0x01)
342 uint8_t *file
= base
+4;
343 uint32_t total_length
= AROS_BE2LONG(*(uint32_t*)file
); /* Total length of the module */
344 const uint8_t *file_end
= base
+total_length
;
345 uint32_t len
, cnt
= 0;
349 while(file
< file_end
)
351 const char *filename
= remove_path(file
+4);
353 /* get text length */
354 len
= AROS_BE2LONG(*(uint32_t*)file
);
358 len
= AROS_BE2LONG(*(uint32_t *)file
);
362 getElfSize(file
, &size_rw
, &size_ro
);
364 total_size_ro
+= (size_ro
+ 4095) & ~4095;
365 total_size_rw
+= (size_rw
+ 4095) & ~4095;
367 /* go to the next file */
374 total_size_ro
= (total_size_ro
+ 1024*1024-1) & 0xfff00000;
375 total_size_rw
= (total_size_rw
+ 1024*1024-1) & 0xfff00000;
377 kernel_phys
= *mem_upper
- total_size_ro
- total_size_rw
;
378 kernel_virt
= 0xf8000000;
380 kprintf("[BOOT] Physical address of kernel: %p\n", kernel_phys
);
381 kprintf("[BOOT] Virtual address of kernel: %p\n", kernel_virt
);
383 *mem_upper
= kernel_phys
;
385 DBOOT(kprintf("[BOOT] Topmost memory address: %p\n", *mem_upper
));
387 /* Unmap memory at physical location of kernel. In future this has to be eventually changed */
388 mmu_unmap_section(kernel_phys
, total_size_ro
+ total_size_rw
);
390 /* map kernel memory for user access */
391 mmu_map_section(kernel_phys
, kernel_virt
, total_size_ro
, 1, 1, 2, 1);
392 mmu_map_section(kernel_phys
+ total_size_ro
, kernel_virt
+ total_size_ro
, total_size_rw
, 1, 1, 3, 1);
394 entry
= (void (*)(struct TagItem
))kernel_virt
;
396 initAllocator(kernel_phys
, kernel_phys
+ total_size_ro
, kernel_virt
- kernel_phys
);
398 boottag
->ti_Tag
= KRN_KernelLowest
;
399 boottag
->ti_Data
= kernel_virt
;
402 boottag
->ti_Tag
= KRN_KernelHighest
;
403 boottag
->ti_Data
= kernel_virt
+ ((total_size_ro
+ 4095) & ~4095) + ((total_size_rw
+ 4095) & ~4095);
406 boottag
->ti_Tag
= KRN_KernelPhysLowest
;
407 boottag
->ti_Data
= kernel_phys
;
410 loadElf(&_binary_core_bin_start
);
412 if (pkg_image
&& pkg_size
)
414 uint8_t *base
= pkg_image
;
416 if (base
[0] == 0x7f && base
[1] == 'E' && base
[2] == 'L' && base
[3] == 'F')
418 kprintf("[BOOT] Kernel image is ELF file\n");
420 getElfSize(base
, &size_rw
, &size_ro
);
422 total_size_ro
+= (size_ro
+ 4095) & ~4095;
423 total_size_rw
+= (size_rw
+ 4095) & ~4095;
425 else if (base
[0] == 'P' && base
[1] == 'K' && base
[2] == 'G' && base
[3] == 0x01)
427 kprintf("[BOOT] Kernel image is a package:\n");
429 uint8_t *file
= base
+4;
430 uint32_t total_length
= AROS_BE2LONG(*(uint32_t*)file
); /* Total length of the module */
431 const uint8_t *file_end
= base
+total_length
;
432 uint32_t len
, cnt
= 0;
434 kprintf("[BOOT] Package size: %dKB", total_length
>> 10);
438 while(file
< file_end
)
440 const char *filename
= remove_path(file
+4);
442 /* get text length */
443 len
= AROS_BE2LONG(*(uint32_t*)file
);
444 /* display the file name */
446 kprintf("\n[BOOT] %s", filename
);
448 kprintf(", %s", filename
);
452 len
= AROS_BE2LONG(*(uint32_t *)file
);
458 total_size_ro
+= (size_ro
+ 4095) & ~4095;
459 total_size_rw
+= (size_rw
+ 4095) & ~4095;
461 /* go to the next file */
469 arm_flush_cache(kernel_phys
, total_size_ro
+ total_size_rw
);
471 boottag
->ti_Tag
= KRN_KernelBss
;
472 boottag
->ti_Data
= (IPTR
)tracker
;
476 boottag
->ti_Tag
= TAG_DONE
;
477 boottag
->ti_Data
= 0;
479 kprintf("[BOOT] Kernel taglist contains %d entries\n", ((intptr_t)boottag
- (intptr_t)(tmp_stack_ptr
- BOOT_STACK_SIZE
- BOOT_TAGS_SIZE
))/sizeof(struct TagItem
));
480 kprintf("[BOOT] Bootstrap wasted %d bytes of memory for kernels use\n", mem_used() );
484 kprintf("[BOOT] Heading over to AROS kernel @ %08x\n", entry
);
486 entry((struct TagItem
*)(tmp_stack_ptr
- BOOT_STACK_SIZE
- BOOT_TAGS_SIZE
));
488 kprintf("[BOOT] Back? Something wrong happened...\n");