mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-01-25 11:54:29 +00:00
Merge pull request #687 from sandrine-bailleux-arm/sb/panic-handler
Add WFI in platform's unexpected error handlers
This commit is contained in:
commit
079e522d39
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
|
* Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
@ -28,6 +28,7 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <arch_helpers.h>
|
||||||
#include <board_arm_def.h>
|
#include <board_arm_def.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@ -61,5 +62,5 @@ void plat_error_handler(int err)
|
|||||||
|
|
||||||
/* Loop until the watchdog resets the system */
|
/* Loop until the watchdog resets the system */
|
||||||
for (;;)
|
for (;;)
|
||||||
;
|
wfi();
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
|
* Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
@ -28,6 +28,7 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <arch_helpers.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <v2m_def.h>
|
#include <v2m_def.h>
|
||||||
|
|
||||||
@ -45,5 +46,5 @@ void plat_error_handler(int err)
|
|||||||
|
|
||||||
/* Loop until the watchdog resets the system */
|
/* Loop until the watchdog resets the system */
|
||||||
for (;;)
|
for (;;)
|
||||||
;
|
wfi();
|
||||||
}
|
}
|
||||||
|
@ -130,6 +130,7 @@ endfunc bl1_plat_prepare_exit
|
|||||||
* -----------------------------------------------------
|
* -----------------------------------------------------
|
||||||
*/
|
*/
|
||||||
func plat_error_handler
|
func plat_error_handler
|
||||||
|
wfi
|
||||||
b plat_error_handler
|
b plat_error_handler
|
||||||
endfunc plat_error_handler
|
endfunc plat_error_handler
|
||||||
|
|
||||||
@ -139,5 +140,6 @@ endfunc plat_error_handler
|
|||||||
* -----------------------------------------------------
|
* -----------------------------------------------------
|
||||||
*/
|
*/
|
||||||
func plat_panic_handler
|
func plat_panic_handler
|
||||||
|
wfi
|
||||||
b plat_panic_handler
|
b plat_panic_handler
|
||||||
endfunc plat_panic_handler
|
endfunc plat_panic_handler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user