view services/ffs/intctl.h @ 19:12f6c51be7b3

l1_cust.c: TCS211 reconstruction changes applied
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 10 Jun 2016 07:53:54 +0000
parents 75a11d740a02
children
line wrap: on
line source

/*
 * The int_disable() and int_enable() calls in TI's FFS code are nothing
 * more than TCT_Control_Interrupts() aka NU_Control_Interrupts().
 * TI's original code used assembly (proprietary toolchain asm syntax and
 * ABI semantics) to make the needed Thumb->ARM calls; we don't need such
 * idiocy in FreeCalypso, so we have turned int_disable() and int_enable()
 * into simple inline functions.
 */

#include "ffs.h"
#include "../../nucleus/nucleus.h"

static inline uint32 int_disable(void)
{
	return NU_Control_Interrupts(NU_DISABLE_INTERRUPTS);
}

static inline void int_enable(uint32 tmp)
{
	NU_Control_Interrupts(tmp);
}