Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
e10af77b
Commit
e10af77b
authored
10 years ago
by
Dan Handley
Browse files
Options
Download
Plain Diff
Merge pull request #111 'soby-mathew-sm:fix_cookie_to_int_handler'
parents
886dfdf2
a3781085
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
v2.0
v2.0-rc0
v1.6
v1.6-rc1
v1.6-rc0
v1.5
v1.5-rc3
v1.5-rc2
v1.5-rc1
v1.5-rc0
v1.4
v1.4-rc0
v1.3
v1.3_rc2
v1.3_rc1
v1.3-rc0
v1.2
v1.2-rc0
v1.1
v1.1-rc3
v1.1-rc2
v1.1-rc1
v1.1-rc0
v1.1-Juno-0.1
v1.0
v1.0-rc0
v0.4
v0.4-rc2
v0.4-Juno-0.6-rc1
v0.4-Juno-0.6-rc0
v0.4-Juno-0.5
v0.4-Juno-0.5-rc1
v0.4-Juno-0.5-rc0
v0.4-Juno-0.4
v0.4-Juno-0.4-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bl31/aarch64/runtime_exceptions.S
+5
-1
bl31/aarch64/runtime_exceptions.S
services/spd/tspd/tspd_main.c
+1
-1
services/spd/tspd/tspd_main.c
with
6 additions
and
2 deletions
+6
-2
bl31/aarch64/runtime_exceptions.S
View file @
e10af77b
...
...
@@ -105,8 +105,9 @@
*
Read
the
id
of
the
highest
priority
pending
interrupt
.
If
*
no
interrupt
is
asserted
then
return
to
where
we
came
from
.
*/
mov
x19
,
#
INTR_ID_UNAVAILABLE
bl
plat_ic_get_pending_interrupt_id
cmp
x
0
,
#
INTR_ID_UNAVAILABLE
cmp
x
19
,
x0
b.eq
interrupt_exit_
\
label
#endif
...
...
@@ -125,6 +126,9 @@
/
*
Restore
the
reference
to
the
'handle'
i
.
e
.
SP_EL3
*/
mov
x2
,
x20
/
*
x3
will
point
to
a
cookie
(
not
used
now
)
*/
mov
x3
,
xzr
/
*
Call
the
interrupt
type
handler
*/
blr
x21
...
...
This diff is collapsed.
Click to expand it.
services/spd/tspd/tspd_main.c
View file @
e10af77b
...
...
@@ -90,7 +90,7 @@ static uint64_t tspd_sel1_interrupt_handler(uint32_t id,
#if IMF_READ_INTERRUPT_ID
/* Check the security status of the interrupt */
assert
(
ic_get_interrupt_
group
(
id
)
==
SECURE
);
assert
(
plat_
ic_get_interrupt_
type
(
id
)
==
INTR_TYPE_S_EL1
);
#endif
/* Sanity check the pointer to this cpu's context */
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help