mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +00:00
ic iallu doesn't broadcast at all, replace the "icache invalidate all" function
This commit is contained in:
parent
0cc2cf0dc0
commit
9c588d4965
2 changed files with 9 additions and 9 deletions
|
@ -15,6 +15,6 @@ void invalidate_dcache_all(void);
|
|||
void flush_dcache_range(const void *start, const void *end);
|
||||
void invalidate_dcache_range(const void *start, const void *end);
|
||||
|
||||
void invalidate_icache_all(void);
|
||||
void invalidate_icache_inner_shareable(void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -213,17 +213,17 @@ invalidate_dcache_range:
|
|||
ret
|
||||
|
||||
/*
|
||||
* void __asm_invalidate_icache_all(void) (-> invalidate_icache_all)
|
||||
* void __asm_invalidate_icache_all(void) (-> invalidate_icache_inner_shareable)
|
||||
*
|
||||
* invalidate all icache entries.
|
||||
*/
|
||||
.section .text.invalidate_icache_all, "ax", %progbits
|
||||
.type invalidate_icache_all, %function
|
||||
.global invalidate_icache_all
|
||||
invalidate_icache_all:
|
||||
dsb sy
|
||||
.section .text.invalidate_icache_inner_shareable, "ax", %progbits
|
||||
.type invalidate_icache_inner_shareable, %function
|
||||
.global invalidate_icache_inner_shareable
|
||||
invalidate_icache_inner_shareable:
|
||||
dsb ish
|
||||
isb
|
||||
ic iallu
|
||||
dsb sy
|
||||
ic ialluis
|
||||
dsb ish
|
||||
isb
|
||||
ret
|
||||
|
|
Loading…
Reference in a new issue