view gsm-fw/services/ffs/intctl.h @ 992:a7b0b426f9ca

target-utils: boot ROM UART autodetection revamped The new implementation should work with both the familiar Calypso C035 boot ROM version found in our regular targets as well as the older Calypso F741979B version found on the vintage D-Sample board.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 21:28:41 +0000
parents 6f4a12b4582f
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);
}