mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

Meson is the internal code name for the SoC family. The correct name for the platform should be Amlogic. Change the name of the platform directory. Signed-off-by: Carlo Caione <ccaione@baylibre.com> Change-Id: Icc140e1ea137f12117acbf64c7dcb1a8b66b345d
52 lines
906 B
C
52 lines
906 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <lib/bakery_lock.h>
|
|
#include <lib/mmio.h>
|
|
#include <platform_def.h>
|
|
|
|
static DEFINE_BAKERY_LOCK(mhu_lock);
|
|
|
|
void mhu_secure_message_start(void)
|
|
{
|
|
bakery_lock_get(&mhu_lock);
|
|
|
|
while (mmio_read_32(GXBB_HIU_MAILBOX_STAT_3) != 0)
|
|
;
|
|
}
|
|
|
|
void mhu_secure_message_send(uint32_t msg)
|
|
{
|
|
mmio_write_32(GXBB_HIU_MAILBOX_SET_3, msg);
|
|
|
|
while (mmio_read_32(GXBB_HIU_MAILBOX_STAT_3) != 0)
|
|
;
|
|
}
|
|
|
|
uint32_t mhu_secure_message_wait(void)
|
|
{
|
|
uint32_t val;
|
|
|
|
do {
|
|
val = mmio_read_32(GXBB_HIU_MAILBOX_STAT_0);
|
|
} while (val == 0);
|
|
|
|
return val;
|
|
}
|
|
|
|
void mhu_secure_message_end(void)
|
|
{
|
|
mmio_write_32(GXBB_HIU_MAILBOX_CLR_0, 0xFFFFFFFF);
|
|
|
|
bakery_lock_release(&mhu_lock);
|
|
}
|
|
|
|
void mhu_secure_init(void)
|
|
{
|
|
bakery_lock_init(&mhu_lock);
|
|
|
|
mmio_write_32(GXBB_HIU_MAILBOX_CLR_3, 0xFFFFFFFF);
|
|
}
|