]> git.sur5r.net Git - u-boot/blobdiff - board/sc520_spunk/sc520_spunk_asm16.S
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[u-boot] / board / sc520_spunk / sc520_spunk_asm16.S
index cdcbbbef6a7f3c24ed9729f8732821eed0a7e7d6..8bb1766b50769c686f40df9ce9babb4f476c309e 100644 (file)
 board_init16:
        /* Alias MMCR to 0xdf000 */
        movw    $0xfffc, %dx
-       movl    $0x800df0cb, %eax       
-       outl    %eax, %dx               
-       
+       movl    $0x800df0cb, %eax
+       outl    %eax, %dx
+
        /* Set ds to point to MMCR alias */
-       movw    $0xdf00, %ax            
-       movw    %ax, %ds                 
-               
-       /* Map the entire flash at 0x38000000  
+       movw    $0xdf00, %ax
+       movw    %ax, %ds
+
+       /* Map the entire flash at 0x38000000
         * (with BOOTCS and PAR14, use 0xabfff800 for ROMCS1) */
        movl    $0xc0, %edi
-        movl   $0x8bfff800, %eax
-        movl   %eax, (%di)             
+       movl    $0x8bfff800, %eax
+       movl    %eax, (%di)
 
        /* Disable SDRAM write buffer */
        movw    $0x40,%di
-        xorw    %ax,%ax
-        movb    %al, (%di)              
+       xorw    %ax,%ax
+       movb    %al, (%di)
 
        /* Disabe MMCR alias */
        movw    $0xfffc, %dx
-       movl    $0x000000cb, %eax       
-       outl    %eax, %dx               
-       
+       movl    $0x000000cb, %eax
+       outl    %eax, %dx
+
        /* the return address is stored in bp */
        jmp     *%bp
-       
+
 
 .section .bios, "ax"
 .code16
@@ -67,18 +67,17 @@ board_init16:
 realmode_reset:
        /* Alias MMCR to 0xdf000 */
        movw    $0xfffc, %dx
-       movl    $0x800df0cb, %eax       
-       outl    %eax, %dx               
-       
+       movl    $0x800df0cb, %eax
+       outl    %eax, %dx
+
        /* Set ds to point to MMCR alias */
-       movw    $0xdf00, %ax            
-       movw    %ax, %ds                 
-               
+       movw    $0xdf00, %ax
+       movw    %ax, %ds
+
        /* issue software reset thorugh MMCR */
        movl    $0xd72, %edi
-        movb   $0x01, %al
-        movb   %al, (%di)              
+       movb    $0x01, %al
+       movb    %al, (%di)
 
 1:     hlt
        jmp     1
-