diff options
author | Jiong Wang <jiong.wang@foss.arm.com> | 2016-03-24 14:32:04 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-03-26 12:45:07 +0100 |
commit | 18b47e05d3a971656ebb2306c205d0a6b36e6b91 (patch) | |
tree | 35a622c6b818e7d48c64159bf3b2af2d25358f1d /libgloss | |
parent | 4799377456ff1c702dc6cb71505c0d90bb204ed4 (diff) | |
download | newlib-18b47e05d3a971656ebb2306c205d0a6b36e6b91.zip newlib-18b47e05d3a971656ebb2306c205d0a6b36e6b91.tar.gz newlib-18b47e05d3a971656ebb2306c205d0a6b36e6b91.tar.bz2 |
Initializing TTBR0 to inner/outer WB
While running tests on internal systems, we identified an issue in the
startup code for newlib on AArch32 systems with Multiprocessor
Extensions to the architecture.
The issue is we were configuring page table flags to be Inner
cacheable/Outer non-cacheable, while for at least architectures with
Multiprocessor Extension, we'd configure it to Inner/Outer write-back, no
write-allocate, and cacheable.
The attached patch fixes this, and no regression on arm-none-eabi
bare-metal tests.
Adopted suggestion given by Richard offline to avoid using jump.
libgloss/
* arm/cpu-init/rdimon-aem.S: Set TTBR0 to inner/outer
cacheable WB, and no allocate on WB for arch with multiprocessor
extension.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/arm/cpu-init/rdimon-aem.S | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libgloss/arm/cpu-init/rdimon-aem.S b/libgloss/arm/cpu-init/rdimon-aem.S index 19814c6..95b86e4 100644 --- a/libgloss/arm/cpu-init/rdimon-aem.S +++ b/libgloss/arm/cpu-init/rdimon-aem.S @@ -127,7 +127,16 @@ spin: mcr 15, 0, r4, cr2, cr0, 2 @ Write TTBCR adr r4, page_table_addr @ Load the base for vectors ldr r4, [r4] - add r4, r4, #1 @ Page tables inner cacheable + mrc p15, 0, r0, c0, c0, 5 @ read MPIDR + tst r0, #0x80000000 @ bis[31] + @ Set page table flags - there are two page table flag formats for the + @ architecture. For systems without multiprocessor extensions we use 0x1 + @ which is Inner cacheable/Outer non-cacheable. For systems with + @ multiprocessor extensions we use 0x59 which is Inner/Outer write-back, + @ no write-allocate, and cacheable. See the ARMARM-v7AR for more details. + it ne + addne r4, r4, #0x58 + add r4, r4, #1 mcr 15, 0, r4, cr2, cr0, 0 @ Write TTBR0 |