Skip to content
Snippets Groups Projects
Commit 8deafdc6 authored by Stefan Roese's avatar Stefan Roese
Browse files

ppc4xx: Add dcache_enable() for 440


dcache_enable() was missing for 440 and the patch
017e9b79 ["allow ports to override bootelf
"] behavior uses this function.

Note: Currently the cache handling functions like
d/icache_disable/enable() are NOP's on 440. This may be changed in the
future.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent e1d09680
No related branches found
No related tags found
No related merge requests found
...@@ -166,9 +166,11 @@ _GLOBAL(invalidate_dcache) ...@@ -166,9 +166,11 @@ _GLOBAL(invalidate_dcache)
#ifdef CONFIG_440 #ifdef CONFIG_440
.globl dcache_disable .globl dcache_disable
.globl dcache_enable
.globl icache_disable .globl icache_disable
.globl icache_enable .globl icache_enable
dcache_disable: dcache_disable:
dcache_enable:
icache_disable: icache_disable:
icache_enable: icache_enable:
blr blr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment