Added S5L870X cache coherency support
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23058 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f0a96580ae
commit
a931acd3ab
3 changed files with 7 additions and 0 deletions
|
@ -1276,6 +1276,7 @@ target/arm/tcc780x/cowond2/audio-cowond2.c
|
|||
#endif /* COWON_D2 */
|
||||
|
||||
#ifdef CPU_S5L870X
|
||||
target/arm/mmu-arm.S
|
||||
target/arm/s5l8700/system-s5l8700.c
|
||||
#ifndef SIMULATOR
|
||||
#ifndef BOOTLOADER
|
||||
|
|
|
@ -155,6 +155,9 @@ cpucache_invalidate:
|
|||
.size invalidate_idcache, .-invalidate_idcache
|
||||
|
||||
#else /* !IMX31L */
|
||||
|
||||
/* S5L870X doesn't have a MMU */
|
||||
#ifndef CPU_S5L870X
|
||||
/** MMU setup **/
|
||||
|
||||
/*
|
||||
|
@ -243,6 +246,8 @@ enable_mmu:
|
|||
bx lr @
|
||||
.size enable_mmu, .-enable_mmu
|
||||
.ltorg
|
||||
|
||||
#endif /* S5L870X */
|
||||
|
||||
/** Cache coherency **/
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#define SYSTEM_TARGET_H
|
||||
|
||||
#include "system-arm.h"
|
||||
#include "mmu-arm.h"
|
||||
|
||||
#define CPUFREQ_DEFAULT 32000000
|
||||
#define CPUFREQ_NORMAL 48000000
|
||||
|
|
Loading…
Reference in a new issue