mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
feat(errata_abi): add support for Cortex-X3
Add errata ABI support for Cortex-X3 CPU. Signed-off-by: Sona Mathew <sonarebecca.mathew@arm.com> Change-Id: Ifb68178948860cafe25b351f20c480c847608a1b
This commit is contained in:
parent
6babc4660c
commit
9c16521606
2 changed files with 12 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <cortex_a715.h>
|
||||
#include <cortex_x1.h>
|
||||
#include <cortex_x2.h>
|
||||
#include <cortex_x3.h>
|
||||
#include <neoverse_n1.h>
|
||||
#include <neoverse_n2.h>
|
||||
#include <neoverse_v1.h>
|
||||
|
|
|
@ -417,6 +417,17 @@ struct em_cpu_list cpu_list[] = {
|
|||
}
|
||||
},
|
||||
#endif /* CORTEX_A715_H_INC */
|
||||
|
||||
#if CORTEX_X3_H_INC
|
||||
{
|
||||
.cpu_partnumber = CORTEX_X3_MIDR,
|
||||
.cpu_errata_list = {
|
||||
[0] = {2313909, 0x00, 0x10, ERRATA_X3_2313909},
|
||||
[1] = {2615812, 0x00, 0x11, ERRATA_X3_2615812},
|
||||
[2 ... ERRATA_LIST_END] = UNDEF_ERRATA,
|
||||
}
|
||||
},
|
||||
#endif /* CORTEX_X3_H_INC */
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue