Merge "refactor(corstone700): namespace MHU driver filenames" into integration

This commit is contained in:
Sandrine Bailleux 2022-04-11 12:47:08 +02:00 committed by TrustedFirmware Code Review
commit a934332d98
4 changed files with 10 additions and 10 deletions

View File

@ -1,12 +1,12 @@
/* /*
* Copyright (c) 2019-2020, Arm Limited and Contributors. All rights reserved. * Copyright (c) 2019-2022, Arm Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <common/bl_common.h> #include <common/bl_common.h>
#include <mhu.h> #include <corstone700_mhu.h>
#include <plat/arm/common/plat_arm.h> #include <plat/arm/common/plat_arm.h>
#include <plat/common/platform.h> #include <plat/common/platform.h>
#include <platform_def.h> #include <platform_def.h>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2019-2020, ARM Limited. All rights reserved. * Copyright (c) 2019-2022, Arm Limited. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
@ -12,7 +12,7 @@
#include <lib/bakery_lock.h> #include <lib/bakery_lock.h>
#include <lib/mmio.h> #include <lib/mmio.h>
#include "mhu.h" #include "corstone700_mhu.h"
#include <plat_arm.h> #include <plat_arm.h>
#include <platform_def.h> #include <platform_def.h>

View File

@ -1,11 +1,11 @@
/* /*
* Copyright (c) 2019-2020, ARM Limited. All rights reserved. * Copyright (c) 2019-2022, Arm Limited. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#ifndef MHU_H #ifndef CORSTONE700_MHU_H
#define MHU_H #define CORSTONE700_MHU_H
#define MHU_POLL_INTR_STAT_TIMEOUT 50000 /*timeout value in us*/ #define MHU_POLL_INTR_STAT_TIMEOUT 50000 /*timeout value in us*/
@ -34,4 +34,4 @@ void mhu_secure_message_send(uintptr_t address,
void mhu_secure_message_end(uintptr_t address, unsigned int slot_id); void mhu_secure_message_end(uintptr_t address, unsigned int slot_id);
void mhu_secure_init(void); void mhu_secure_init(void);
#endif /* MHU_H */ #endif /* CORSTONE700_MHU_H */

View File

@ -1,5 +1,5 @@
# #
# Copyright (c) 2019-2020, Arm Limited and Contributors. All rights reserved. # Copyright (c) 2019-2022, Arm Limited and Contributors. All rights reserved.
# #
# SPDX-License-Identifier: BSD-3-Clause # SPDX-License-Identifier: BSD-3-Clause
# #
@ -17,7 +17,7 @@ BL32_SOURCES += plat/arm/common/aarch32/arm_helpers.S \
lib/xlat_tables/aarch32/xlat_tables.c \ lib/xlat_tables/aarch32/xlat_tables.c \
lib/xlat_tables/xlat_tables_common.c \ lib/xlat_tables/xlat_tables_common.c \
${CORSTONE700_CPU_LIBS} \ ${CORSTONE700_CPU_LIBS} \
plat/arm/board/corstone700/common/drivers/mhu/mhu.c plat/arm/board/corstone700/common/drivers/mhu/corstone700_mhu.c
PLAT_INCLUDES := -Iplat/arm/board/corstone700/common/include \ PLAT_INCLUDES := -Iplat/arm/board/corstone700/common/include \
-Iinclude/plat/arm/common \ -Iinclude/plat/arm/common \