mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
fix(imx8m): correct serial output for HAB JR0
Serial output is missing the EOL marker, which makes the output garbled.
Add EOL to the output, which adds a newline and makes log output
consistent.
Fixes: 77850c96f2
("feat(plat/imx8m): do not release JR0 to NS if HAB is using it")
Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Cc: Franck LENORMAND <franck.lenormand@nxp.com>
Cc: Jacky Bai <ping.bai@nxp.com>
Change-Id: I58b67f441016122bc9361d7224d310522917eff0
This commit is contained in:
parent
9f8de54b0f
commit
6e24d79509
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ void imx8m_caam_init(void)
|
|||
|
||||
/* config CAAM JRaMID set MID to Cortex A */
|
||||
if (mmio_read_32(CAAM_JR0MID) == HAB_JR0_DID) {
|
||||
NOTICE("Do not release JR0 to NS as it can be used by HAB");
|
||||
NOTICE("Do not release JR0 to NS as it can be used by HAB\n");
|
||||
} else {
|
||||
mmio_write_32(CAAM_JR0MID, CAAM_NS_MID);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue