/* * xbarrier.h - Busy-waiting, trans-clusters, kernel barrier definition. * * Author Alain Greiner (2016,2017,2018) * * Copyright (c) UPMC Sorbonne Universites * * This file is part of ALMOS-MKH. * * ALMOS-MKH is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2.0 of the License. * * ALMOS-MKH is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ALMOS-MKH; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _XBARRIER_H_ #define _XBARRIER_H_ #include #include /***************************************************************************************** * This structure defines a "rendez-vous" barrier, that can be used * to synchronise several kernel threads running in different clusters. * As it is used in the kernel_init phase, it implements a busy-waiting policy. * It does not need to be initialised, but it must be statically allocated * in the KDATA segment to be properly initialised by the compiler/loader. ****************************************************************************************/ typedef struct xbarrier_s { uint32_t current; /*! number of arrived threads */ uint32_t sense; /*! barrier state (toggle) */ uint32_t padding[(CONFIG_CACHE_LINE_SIZE>>2)-2]; } xbarrier_t; /***************************************************************************************** * This blocking function implements a toggle barrier. It returns only when all * expected threads reach the barrier. It can be used several times without * specific initialisation. ***************************************************************************************** * @ barrier_xp : extended pointer on barrier descriptor. * @ count : number of expected threads. ****************************************************************************************/ inline void xbarrier_wait( xptr_t barrier_xp, uint32_t count ); #endif /* _XBARRIER_H_ */