Path: blob/master/arch/arm/mach-bcmring/include/csp/intcHw.h
10820 views
/*****************************************************************************1* Copyright 2003 - 2008 Broadcom Corporation. All rights reserved.2*3* Unless you and Broadcom execute a separate written software license4* agreement governing use of this software, this software is licensed to you5* under the terms of the GNU General Public License version 2, available at6* http://www.broadcom.com/licenses/GPLv2.php (the "GPL").7*8* Notwithstanding the above, under no circumstances may you combine this9* software in any way with any other Broadcom software provided under a10* license other than the GPL, without Broadcom's express prior written11* consent.12*****************************************************************************/131415/****************************************************************************/16/**17* @file intcHw.h18*19* @brief generic interrupt controller API20*21* @note22* None23*/24/****************************************************************************/2526#ifndef _INTCHW_H27#define _INTCHW_H2829/* ---- Include Files ---------------------------------------------------- */30#include <mach/csp/intcHw_reg.h>3132/* ---- Public Constants and Types --------------------------------------- */33/* ---- Public Variable Externs ------------------------------------------ */34/* ---- Public Function Prototypes --------------------------------------- */35static inline void intcHw_irq_disable(void *basep, uint32_t mask);36static inline void intcHw_irq_enable(void *basep, uint32_t mask);3738#endif /* _INTCHW_H */39404142