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
28d67b29
Commit
28d67b29
authored
May 29, 2014
by
Sandrine Bailleux
Browse files
juno: Rename platform porting functions
Change-Id: I069a552b772cffb06c9e9c8cbec68f21b46aa9d4
parent
494db580
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/juno/bl31_plat_setup.c
View file @
28d67b29
...
...
@@ -82,7 +82,7 @@ static entry_point_info_t bl33_ep_info;
* while BL3-2 corresponds to the secure image type. A NULL pointer is returned
* if the image does not exist.
******************************************************************************/
entry_point_info_t
*
bl31_get_next_image_info
(
uint32_t
type
)
entry_point_info_t
*
bl31_
plat_
get_next_image_
ep_
info
(
uint32_t
type
)
{
entry_point_info_t
*
next_image_info
;
...
...
plat/juno/plat_gic.c
View file @
28d67b29
...
...
@@ -206,7 +206,7 @@ uint32_t plat_interrupt_type_to_line(uint32_t type, uint32_t security_state)
* the GIC cpu interface. INTR_TYPE_INVAL is returned when there is no
* interrupt pending.
******************************************************************************/
uint32_t
ic_get_pending_interrupt_type
(
void
)
uint32_t
plat_
ic_get_pending_interrupt_type
(
void
)
{
uint32_t
id
;
...
...
@@ -227,7 +227,7 @@ uint32_t ic_get_pending_interrupt_type(void)
* the GIC cpu interface. INTR_ID_UNAVAILABLE is returned when there is no
* interrupt pending.
******************************************************************************/
uint32_t
ic_get_pending_interrupt_id
(
void
)
uint32_t
plat_
ic_get_pending_interrupt_id
(
void
)
{
uint32_t
id
;
...
...
@@ -250,7 +250,7 @@ uint32_t ic_get_pending_interrupt_id(void)
* This functions reads the GIC cpu interface Interrupt Acknowledge register
* to start handling the pending interrupt. It returns the contents of the IAR.
******************************************************************************/
uint32_t
ic_acknowledge_interrupt
(
void
)
uint32_t
plat_
ic_acknowledge_interrupt
(
void
)
{
return
gicc_read_IAR
(
GICC_BASE
);
}
...
...
@@ -259,7 +259,7 @@ uint32_t ic_acknowledge_interrupt(void)
* This functions writes the GIC cpu interface End Of Interrupt register with
* the passed value to finish handling the active interrupt
******************************************************************************/
void
ic_end_of_interrupt
(
uint32_t
id
)
void
plat_
ic_end_of_interrupt
(
uint32_t
id
)
{
gicc_write_EOIR
(
GICC_BASE
,
id
);
}
...
...
@@ -269,7 +269,7 @@ void ic_end_of_interrupt(uint32_t id)
* this interrupt has been configured under by the interrupt controller i.e.
* group0 or group1.
******************************************************************************/
uint32_t
ic_get_interrupt_type
(
uint32_t
id
)
uint32_t
plat_
ic_get_interrupt_type
(
uint32_t
id
)
{
uint32_t
group
;
...
...
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