1 /* 2 * Copyright 2020-2021 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef LS_INTERCONNECT_H 9 #define LS_INTERCONNECT_H 10 11 #if (INTERCONNECT == CCI400) 12 #define CCI_TERMINATE_BARRIER_TX 0x8 13 #endif 14 15 /* Interconnect CCI/CCN functions */ 16 void plat_ls_interconnect_enter_coherency(unsigned int num_clusters); 17 void plat_ls_interconnect_exit_coherency(void); 18 19 #endif 20