2009-08-16 13:07:24 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT 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; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-27 08:54:22 +00:00
|
|
|
* @file chsys.h
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief System related macros and structures.
|
|
|
|
*
|
2009-08-30 06:59:43 +00:00
|
|
|
* @addtogroup system
|
2009-08-16 13:07:24 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#ifndef _CHSYS_H_
|
|
|
|
#define _CHSYS_H_
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2011-05-13 17:34:08 +00:00
|
|
|
#if !CH_NO_IDLE_THREAD || defined(__DOXYGEN__)
|
2010-08-20 07:15:55 +00:00
|
|
|
/**
|
|
|
|
* @brief Returns a pointer to the idle thread.
|
2011-05-13 17:34:08 +00:00
|
|
|
* @pre In order to use this function the option @p CH_NO_IDLE_THREAD
|
|
|
|
* must be disabled.
|
2010-08-20 07:15:55 +00:00
|
|
|
* @note The reference counter of the idle thread is not incremented but
|
|
|
|
* it is not strictly required being the idle thread a static
|
|
|
|
* object.
|
|
|
|
*
|
2010-12-12 07:36:51 +00:00
|
|
|
* @return Pointer to the idle thread.
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @api
|
2010-08-20 07:15:55 +00:00
|
|
|
*/
|
|
|
|
#define chSysGetIdleThread() ((Thread *)_idle_thread_wa)
|
2011-05-13 17:34:08 +00:00
|
|
|
#endif
|
2010-08-20 07:15:55 +00:00
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Halts the system.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details This function is invoked by the operating system when an
|
2010-11-11 11:04:05 +00:00
|
|
|
* unrecoverable error is detected, for example because a programming
|
2010-02-06 12:31:09 +00:00
|
|
|
* error in the application code that triggers an assertion while
|
|
|
|
* in debug mode.
|
2010-09-21 10:22:06 +00:00
|
|
|
* @note Can be invoked from any system state.
|
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2010-08-21 08:38:14 +00:00
|
|
|
#if !defined(SYSTEM_HALT_HOOK) || defined(__DOXYGEN__)
|
2009-08-16 13:07:24 +00:00
|
|
|
#define chSysHalt() port_halt()
|
2010-08-21 08:38:14 +00:00
|
|
|
#else
|
|
|
|
#define chSysHalt() { \
|
|
|
|
SYSTEM_HALT_HOOK(); \
|
|
|
|
port_halt(); \
|
|
|
|
}
|
|
|
|
#endif
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Performs a context switch.
|
2010-09-21 10:22:06 +00:00
|
|
|
* @note This function should nevel be used from user code directly.
|
2009-08-16 13:07:24 +00:00
|
|
|
*
|
2010-02-06 12:31:09 +00:00
|
|
|
* @param[in] ntp the thread to be switched in
|
2010-03-14 09:13:21 +00:00
|
|
|
* @param[in] otp the thread to be switched out
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2010-03-14 09:13:21 +00:00
|
|
|
#define chSysSwitchI(ntp, otp) port_switch(ntp, otp)
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Raises the system interrupt priority mask to the maximum level.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details All the maskable interrupt sources are disabled regardless their
|
2010-02-06 12:31:09 +00:00
|
|
|
* hardware priority.
|
|
|
|
* @note Do not invoke this API from within a kernel lock.
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define chSysDisable() port_disable()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Raises the system interrupt priority mask to system level.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details The interrupt sources that should not be able to preempt the kernel
|
2010-02-06 12:31:09 +00:00
|
|
|
* are disabled, interrupt sources with higher priority are still
|
|
|
|
* enabled.
|
|
|
|
* @note Do not invoke this API from within a kernel lock.
|
|
|
|
* @note This API is no replacement for @p chSysLock(), the @p chSysLock()
|
|
|
|
* could do more than just disable the interrupts.
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define chSysSuspend() port_suspend()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Lowers the system interrupt priority mask to user level.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @details All the interrupt sources are enabled.
|
2010-02-06 12:31:09 +00:00
|
|
|
* @note Do not invoke this API from within a kernel lock.
|
|
|
|
* @note This API is no replacement for @p chSysUnlock(), the
|
|
|
|
* @p chSysUnlock() could do more than just enable the interrupts.
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define chSysEnable() port_enable()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Enters the kernel lock mode.
|
|
|
|
* @note The use of kernel lock mode is not recommended in the user code,
|
|
|
|
* it is a better idea to use the semaphores or mutexes instead.
|
|
|
|
* @see CH_USE_NESTED_LOCKS
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#if CH_USE_NESTED_LOCKS || defined(__DOXYGEN__)
|
|
|
|
#if CH_OPTIMIZE_SPEED || defined(__DOXYGEN__)
|
|
|
|
#define chSysLock() { \
|
|
|
|
if (currp->p_locks++ == 0) \
|
|
|
|
port_lock(); \
|
|
|
|
}
|
|
|
|
#endif /* CH_OPTIMIZE_SPEED */
|
|
|
|
#else /* !CH_USE_NESTED_LOCKS */
|
|
|
|
#define chSysLock() port_lock()
|
|
|
|
#endif /* !CH_USE_NESTED_LOCKS */
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Leaves the kernel lock mode.
|
|
|
|
* @note The use of kernel lock mode is not recommended in the user code,
|
|
|
|
* it is a better idea to use the semaphores or mutexes instead.
|
|
|
|
* @see CH_USE_NESTED_LOCKS
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#if CH_USE_NESTED_LOCKS || defined(__DOXYGEN__)
|
|
|
|
#if CH_OPTIMIZE_SPEED || defined(__DOXYGEN__)
|
|
|
|
#define chSysUnlock() { \
|
|
|
|
if (--currp->p_locks == 0) \
|
|
|
|
port_unlock(); \
|
|
|
|
}
|
|
|
|
#endif /* CH_OPTIMIZE_SPEED */
|
|
|
|
#else /* !CH_USE_NESTED_LOCKS */
|
|
|
|
#define chSysUnlock() port_unlock()
|
|
|
|
#endif /* !CH_USE_NESTED_LOCKS */
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Enters the kernel lock mode from within an interrupt handler.
|
|
|
|
* @note This API may do nothing on some architectures, it is required
|
|
|
|
* because on ports that support preemptable interrupt handlers
|
|
|
|
* it is required to raise the interrupt mask to the same level of
|
|
|
|
* the system mutual exclusion zone.<br>
|
|
|
|
* It is good practice to invoke this API before invoking any I-class
|
|
|
|
* syscall from an interrupt handler.
|
|
|
|
* @note This API must be invoked exclusively from interrupt handlers.
|
2010-09-21 10:22:06 +00:00
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define chSysLockFromIsr() port_lock_from_isr()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Leaves the kernel lock mode from within an interrupt handler.
|
2009-08-16 13:07:24 +00:00
|
|
|
*
|
2010-02-06 12:31:09 +00:00
|
|
|
* @note This API may do nothing on some architectures, it is required
|
|
|
|
* because on ports that support preemptable interrupt handlers
|
|
|
|
* it is required to raise the interrupt mask to the same level of
|
|
|
|
* the system mutual exclusion zone.<br>
|
|
|
|
* It is good practice to invoke this API after invoking any I-class
|
|
|
|
* syscall from an interrupt handler.
|
2010-09-21 10:22:06 +00:00
|
|
|
* @note This API must be invoked exclusively from interrupt handlers.
|
|
|
|
*
|
|
|
|
* @special
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define chSysUnlockFromIsr() port_unlock_from_isr()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief IRQ handler enter code.
|
|
|
|
* @note Usually IRQ handlers functions are also declared naked.
|
|
|
|
* @note On some architectures this macro can be empty.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define CH_IRQ_PROLOGUE() PORT_IRQ_PROLOGUE()
|
|
|
|
|
|
|
|
/**
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief IRQ handler exit code.
|
|
|
|
* @note Usually IRQ handlers function are also declared naked.
|
2010-03-18 16:01:11 +00:00
|
|
|
* @note This macro usually performs the final reschedule by using
|
2010-02-06 12:31:09 +00:00
|
|
|
* @p chSchRescRequiredI() and @p chSchDoRescheduleI().
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define CH_IRQ_EPILOGUE() PORT_IRQ_EPILOGUE()
|
|
|
|
|
|
|
|
/**
|
2010-04-26 12:34:10 +00:00
|
|
|
* @brief Standard normal IRQ handler declaration.
|
2010-02-06 12:31:09 +00:00
|
|
|
* @note @p id can be a function name or a vector number depending on the
|
|
|
|
* port implementation.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define CH_IRQ_HANDLER(id) PORT_IRQ_HANDLER(id)
|
|
|
|
|
2010-04-26 12:34:10 +00:00
|
|
|
/**
|
|
|
|
* @brief Standard fast IRQ handler declaration.
|
|
|
|
* @note @p id can be a function name or a vector number depending on the
|
|
|
|
* port implementation.
|
|
|
|
* @note Not all architectures support fast interrupts.
|
|
|
|
*/
|
|
|
|
#define CH_FAST_IRQ_HANDLER(id) PORT_FAST_IRQ_HANDLER(id)
|
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void chSysInit(void);
|
|
|
|
void chSysTimerHandlerI(void);
|
|
|
|
#if CH_USE_NESTED_LOCKS && !CH_OPTIMIZE_SPEED
|
|
|
|
void chSysLock(void);
|
|
|
|
void chSysUnlock(void);
|
|
|
|
#endif /* CH_USE_NESTED_LOCKS && !CH_OPTIMIZE_SPEED */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#endif /* _CHSYS_H_ */
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/** @} */
|