refactor(sds): modify log level for region validityModify the log level from WARNING to VERBOSE for the SDS regionvalidity check. An invalid region causes the initialization stepto fail, but norm
refactor(sds): modify log level for region validityModify the log level from WARNING to VERBOSE for the SDS regionvalidity check. An invalid region causes the initialization stepto fail, but normally it's only a temporary condition as theactual initialization of the region (such as adding a valid regiondescriptor structure) can happen asynchronously in another systemcomponent. The goal of this tiny modification is to avoid floodingthe log with this message when we're waiting in a loop for theregion initialization to happen.Change-Id: I180e35e25df3f31bbc816e6421ded17ba6ae1d85Signed-off-by: David Vincze <david.vincze@arm.com>
show more ...
refactor(css): support multiple SDS regionsExtend the SDS driver to be able to handle multipleSDS regions: - AP-SCP - AP-RSSChange-Id: Id303840b248c383b3f960227cbf6333d1cc75e65Signed-off-by:
refactor(css): support multiple SDS regionsExtend the SDS driver to be able to handle multipleSDS regions: - AP-SCP - AP-RSSChange-Id: Id303840b248c383b3f960227cbf6333d1cc75e65Signed-off-by: Tamas Ban <tamas.ban@arm.com>Signed-off-by: David Vincze <david.vincze@arm.com>
Replace __ASSEMBLY__ with compiler-builtin __ASSEMBLER__NOTE: __ASSEMBLY__ macro is now deprecated in favor of __ASSEMBLER__.All common C compilers predefine a macro called __ASSEMBLER__ whenpre
Replace __ASSEMBLY__ with compiler-builtin __ASSEMBLER__NOTE: __ASSEMBLY__ macro is now deprecated in favor of __ASSEMBLER__.All common C compilers predefine a macro called __ASSEMBLER__ whenpreprocessing a .S file. There is no reason for TF-A to define it's own__ASSEMBLY__ macro for this purpose instead. To unify code with theexport headers (which use __ASSEMBLER__ to avoid one extra dependency),let's deprecate __ASSEMBLY__ and switch the code base over to thepredefined standard.Change-Id: Id7d0ec8cf330195da80499c68562b65cb5ab7417Signed-off-by: Julius Werner <jwerner@chromium.org>
plat/arm: sds: Move to drivers/ folderChange-Id: Ia601d5ad65ab199e747fb60af4979b7db477d249Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>