mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
Merge "fix(cpus): use hint instruction for "tsb csync"" into integration
This commit is contained in:
commit
b516a6f46c
1 changed files with 5 additions and 1 deletions
|
@ -382,7 +382,11 @@ func errata_cortex_a510_2684597_wa
|
|||
bl check_errata_2684597
|
||||
cbz x0, 2f
|
||||
|
||||
tsb csync
|
||||
/*
|
||||
* Many assemblers do not yet understand the "tsb csync" mnemonic,
|
||||
* so use the equivalent hint instruction.
|
||||
*/
|
||||
hint #18 /* tsb csync */
|
||||
2:
|
||||
ret x17
|
||||
endfunc errata_cortex_a510_2684597_wa
|
||||
|
|
Loading…
Add table
Reference in a new issue