mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
arm_ffa: use debug logs
replace info logs with debug logs Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com> Cc: Tom Rini <trini@konsulko.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
6831a4be29
commit
67969516b0
5 changed files with 6 additions and 6 deletions
|
@ -231,7 +231,7 @@ Please refer the command documentation at :doc:`../usage/cmd/armffa`
|
|||
Example of boot logs with FF-A enabled
|
||||
--------------------------------------
|
||||
|
||||
For example, when using FF-A with Corstone-1000 the logs are as follows:
|
||||
For example, when using FF-A with Corstone-1000, debug logs enabled, the output is as follows:
|
||||
|
||||
::
|
||||
|
||||
|
|
|
@ -201,11 +201,11 @@ int ffa_get_version_hdlr(struct udevice *dev)
|
|||
major = GET_FFA_MAJOR_VERSION(res.a0);
|
||||
minor = GET_FFA_MINOR_VERSION(res.a0);
|
||||
|
||||
log_info("FF-A driver %d.%d\nFF-A framework %d.%d\n",
|
||||
log_debug("FF-A driver %d.%d\nFF-A framework %d.%d\n",
|
||||
FFA_MAJOR_VERSION, FFA_MINOR_VERSION, major, minor);
|
||||
|
||||
if (major == FFA_MAJOR_VERSION && minor >= FFA_MINOR_VERSION) {
|
||||
log_info("FF-A versions are compatible\n");
|
||||
log_debug("FF-A versions are compatible\n");
|
||||
|
||||
if (dev) {
|
||||
uc_priv = dev_get_uclass_priv(dev);
|
||||
|
|
|
@ -42,7 +42,7 @@ static bool arm_ffa_discover(struct udevice *dev)
|
|||
{
|
||||
int ret;
|
||||
|
||||
log_info("Arm FF-A framework discovery\n");
|
||||
log_debug("Arm FF-A framework discovery\n");
|
||||
|
||||
ret = ffa_get_version_hdlr(dev);
|
||||
if (ret)
|
||||
|
|
|
@ -695,7 +695,7 @@ int ffa_emul_find(struct udevice *dev, struct udevice **emulp)
|
|||
return ret;
|
||||
}
|
||||
|
||||
log_info("FF-A emulator ready to use\n");
|
||||
log_debug("FF-A emulator ready to use\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ static int sandbox_ffa_discover(struct udevice *dev)
|
|||
int ret;
|
||||
struct udevice *emul;
|
||||
|
||||
log_info("Emulated FF-A framework discovery\n");
|
||||
log_debug("Emulated FF-A framework discovery\n");
|
||||
|
||||
ret = ffa_emul_find(dev, &emul);
|
||||
if (ret) {
|
||||
|
|
Loading…
Reference in a new issue