Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
a1ec2f4c
Commit
a1ec2f4c
authored
May 08, 2014
by
danh-arm
Browse files
Merge pull request #60 from athoelke/disable-mmu-v2
Replace disable_mmu with assembler version v2
parents
b3e2268e
2f5dcfef
Changes
5
Show whitespace changes
Inline
Side-by-side
bl1/aarch64/bl1_exceptions.S
View file @
a1ec2f4c
...
...
@@ -212,18 +212,10 @@ func process_exception
/
*
---------------------------------------------
*
If
BL31
is
to
be
executed
in
EL3
as
well
*
then
turn
off
the
MMU
so
that
it
can
perform
*
its
own
setup
.
TODO
:
Assuming
flat
mapped
*
translations
here
.
Also
all
should
go
into
a
*
separate
MMU
teardown
function
*
its
own
setup
.
*
---------------------------------------------
*/
mov
x1
,
#(
SCTLR_M_BIT
| SCTLR_C_BIT |
SCTLR_I_BIT
)
bl
read_sctlr_el3
bic
x0
,
x0
,
x1
bl
write_sctlr_el3
isb
mov
x0
,
#
DCCISW
bl
dcsw_op_all
bl
disable_mmu_icache_el3
bl
tlbialle3
skip_mmu_teardown
:
ldp
x6
,
x7
,
[
sp
,
#
0x30
]
...
...
include/lib/aarch64/arch_helpers.h
View file @
a1ec2f4c
...
...
@@ -78,6 +78,9 @@ extern void inv_dcache_range(unsigned long, unsigned long);
extern
void
dcsw_op_louis
(
unsigned
int
);
extern
void
dcsw_op_all
(
unsigned
int
);
extern
void
disable_mmu_el3
(
void
);
extern
void
disable_mmu_icache_el3
(
void
);
/*******************************************************************************
* Misc. accessor prototypes
******************************************************************************/
...
...
lib/aarch64/misc_helpers.S
View file @
a1ec2f4c
...
...
@@ -79,6 +79,9 @@
.
globl
zeromem16
.
globl
memcpy16
.
globl
disable_mmu_el3
.
globl
disable_mmu_icache_el3
func
get_afflvl_shift
cmp
x0
,
#
3
...
...
@@ -332,3 +335,27 @@ m_loop1:
subs
x2
,
x2
,
#
1
b.ne
m_loop1
m_end
:
ret
/*
---------------------------------------------------------------------------
*
Disable
the
MMU
at
EL3
*
This
is
implemented
in
assembler
to
ensure
that
the
data
cache
is
cleaned
*
and
invalidated
after
the
MMU
is
disabled
without
any
intervening
cacheable
*
data
accesses
*
---------------------------------------------------------------------------
*/
func
disable_mmu_el3
mov
x1
,
#(
SCTLR_M_BIT
|
SCTLR_C_BIT
)
do_disable_mmu
:
mrs
x0
,
sctlr_el3
bic
x0
,
x0
,
x1
msr
sctlr_el3
,
x0
isb
//
ensure
MMU
is
off
mov
x0
,
#
DCCISW
//
DCache
clean
and
invalidate
b
dcsw_op_all
func
disable_mmu_icache_el3
mov
x1
,
#(
SCTLR_M_BIT
| SCTLR_C_BIT |
SCTLR_I_BIT
)
b
do_disable_mmu
plat/fvp/aarch64/plat_common.c
View file @
a1ec2f4c
...
...
@@ -118,29 +118,6 @@ void enable_mmu()
return
;
}
void
disable_mmu
(
void
)
{
unsigned
long
sctlr
;
unsigned
long
current_el
=
read_current_el
();
if
(
GET_EL
(
current_el
)
==
MODE_EL3
)
{
sctlr
=
read_sctlr_el3
();
sctlr
=
sctlr
&
~
(
SCTLR_M_BIT
|
SCTLR_C_BIT
);
write_sctlr_el3
(
sctlr
);
}
else
{
sctlr
=
read_sctlr_el1
();
sctlr
=
sctlr
&
~
(
SCTLR_M_BIT
|
SCTLR_C_BIT
);
write_sctlr_el1
(
sctlr
);
}
/* ensure the MMU disable takes effect immediately */
isb
();
/* Flush the caches */
dcsw_op_all
(
DCCISW
);
return
;
}
/*
* Table of regions to map using the MMU.
* This doesn't include TZRAM as the 'mem_layout' argument passed to to
...
...
plat/fvp/platform.h
View file @
a1ec2f4c
...
...
@@ -370,7 +370,6 @@ extern void bl2_plat_arch_setup(void);
extern
void
bl31_plat_arch_setup
(
void
);
extern
int
platform_setup_pm
(
const
struct
plat_pm_ops
**
);
extern
unsigned
int
platform_get_core_pos
(
unsigned
long
mpidr
);
extern
void
disable_mmu
(
void
);
extern
void
enable_mmu
(
void
);
extern
void
configure_mmu
(
struct
meminfo
*
,
unsigned
long
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment