"Steven J. Hill" wrote AND screwed up:
> 
> If you will notice, after we see if the MMU is enabled, we perform the
> test and if it is equal to one, we load in the PHYSICAL address instead
> of the virtual address. I think the lines are out of order. It should
> read:
> 
> #elif defined(CONFIG_ARCH_SA1100)
>         .macro  addruart,rx
>         mrc p15, 0, \rx, c1, c0
>         tst \rx, #1         @ MMU enabled?
>         movne   \rx, #0xf8000000    @ virtual address
>         moveq   \rx, #0x80000000    @ physical base address
> 

Crap, what I meant to say was:

#elif defined(CONFIG_ARCH_SA1100)
        .macro  addruart,rx
        mrc p15, 0, \rx, c1, c0
        tst \rx, #1         @ MMU enabled?
        moveq   \rx, #0xf8000000    @ virtual address
        movne   \rx, #0x80000000    @ physical base address

Sorry.

-Steve

-- 
 Steven J. Hill - Embedded SW Engineer
 Public Key: 'finger [EMAIL PROTECTED]'
 FPR1: E124 6E1C AF8E 7802 A815
 FPR2: 7D72 829C 3386 4C4A E17D

unsubscribe: body of `unsubscribe linux-arm' to [EMAIL PROTECTED]
++        Please use [EMAIL PROTECTED] for           ++
++                        kernel-related discussions.                      ++

Reply via email to