ARM: Boot loader changes that make it more flexible about load and I/O addrs
authorPrakash Ramrakhyani <Prakash.Ramrakhyani@arm.com>
Thu, 5 May 2011 01:38:27 +0000 (20:38 -0500)
committerPrakash Ramrakhyani <Prakash.Ramrakhyani@arm.com>
Thu, 5 May 2011 01:38:27 +0000 (20:38 -0500)
system/arm/simple_bootloader/Makefile
system/arm/simple_bootloader/simple.S

index 43cd883768cf1a6e82e2f187b812875b718039dd..098f3724a990b1ba0b14cb660593106fc1aac27c 100644 (file)
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 # Authors: Ali Saidi
+#          Prakash Ramrakhyani
 
-# Need to have CROSS_COMPILE set to /path/to/bin/arm-none-eabi-
-# arm-unknown-linux-gnu- might also work
-#
-#
 
-CROSS_COMPILE=arm-none-eabi-
+# Need to have CROSS_COMPILE set to /path/to/bin/arm-unknown-linux-gnu-
+# or have arm-unknown-linux-gnu in your path
+
+CROSS_COMPILE?=arm-none-linux-gnueabi-
 
 CC=$(CROSS_COMPILE)gcc
 CPP=$(CROSS_COMPILE)g++
 LD=$(CROSS_COMPILE)ld
 
-all: boot
+all: boot.arm
 
-boot.o: boot.S
-       $(CC) -mfloat-abi=softfp -march=armv7-a -mfpu=vfpv3 -mthumb -fno-builtin -nostdinc -o boot.o -c boot.S
+boot.o: simple.S
+       $(CC) -mfloat-abi=softfp -march=armv7-a -fno-builtin -nostdinc -o boot.o -c simple.S
 
 boot.arm: boot.o
-       $(LD) -o boot.arm -N -Ttext 0 boot.o -non_shared -static
+       $(LD) -o boot.arm -N -Ttext 0x80000000 boot.o -non_shared -static
 
 
 clean: 
index d8f2905e984a9d36848774e9b643e7c8e3318e3c..afba4772899e270118e281c432604295ab7afbf5 100644 (file)
@@ -44,7 +44,7 @@
  *
  * Upon executing this code:
  * r0 = 0, r1 = machine number, r2 = atags ptr
- * r3 = kernel start address
+ * r3 = kernel start address, r4 = GIC address, r5 = flag register address
  *
  * CPU 0 should branch to the kernel start address and it's done with
  * the boot loader. Other CPUs need to start in a wfi loop. When CPU0 sends
 .extern        main
 _start:
 _entry:
-    mrc p15, 0, r4, c0, c0, 5 // get the MPIDR register
-    uxtb r4, r4               // isolate the lower 8 bits (affinity lvl 1)
-    adds r4, r4, #0           // set flags for branch
+    b bootldr // All the interrupt vectors jump to the boot loader
+    b bootldr
+    b bootldr
+    b bootldr
+    b bootldr
+    b bootldr
+    b bootldr
+    b bootldr
+    b bootldr
+
+bootldr:
+    mrc p15, 0, r8, c0, c0, 5 // get the MPIDR register
+    uxtb r8, r8               // isolate the lower 8 bits (affinity lvl 1)
+    adds r8, r8, #0           // set flags for branch
     bxeq r3                   // if it's 0 (CPU 0), branch to kernel
+    mov  r8, #1
+    str  r8, [r4, #0]         //  Enable CPU interface on GIC
+    wfi                       //  wait for an interrupt
 pen:
-    wfi                       // otherwise wait for an interrupt
-    mov r4, #0x30             // Build address of the system controller
-    movt r4, #0x1000          // flag register r4 =  0x10000030
-    ldr r5, [r4]              // load the value
-    movs r5, r5               // set the flags on this value
+    ldr r8, [r5]              // load the value
+    movs r8, r8               // set the flags on this value
     beq pen                   // if it's zero try again
-    bx r5                     // Jump to where we've been told
+    bx r8                     // Jump to where we've been told
     bkpt                      // We should never get here