blob: b88c2eb7df90408acc0e8fbbd78048187dc6bb32 [file] [log] [blame]
/*
* Copyright (c) 2025, Advanced Micro Devices, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef PLAT_OCM_COHERENCY_H
#define PLAT_OCM_COHERENCY_H
#define COHERENCY_CHECK_NOT_SUPPORTED -1
#if (DEBUG == 1)
int32_t check_ocm_coherency(void);
#else
static inline int32_t check_ocm_coherency(void)
{
return COHERENCY_CHECK_NOT_SUPPORTED;
}
#endif
#endif/*PLAT_OCM_COHERENCY_H*/