2016-06-30 07:29:15 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-06-30 07:29:15 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Kernel event logger support for Nios II
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __KERNEL_EVENT_LOGGER_ARCH_H__
|
|
|
|
#define __KERNEL_EVENT_LOGGER_ARCH_H__
|
|
|
|
|
|
|
|
#include <arch/cpu.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the identification of the current interrupt.
|
|
|
|
*
|
|
|
|
* This routine obtain the key of the interrupt that is currently processed
|
|
|
|
* if it is called from a ISR context.
|
|
|
|
*
|
|
|
|
* @return The key of the interrupt that is currently being processed.
|
|
|
|
*/
|
|
|
|
static inline int _sys_current_irq_key_get(void)
|
|
|
|
{
|
2017-04-21 02:30:33 +08:00
|
|
|
u32_t ipending;
|
2016-06-30 07:29:15 +08:00
|
|
|
|
|
|
|
ipending = _nios2_creg_read(NIOS2_CR_IPENDING);
|
|
|
|
return find_lsb_set(ipending) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __KERNEL_EVENT_LOGGER_ARCH_H__ */
|