2009-12-08 19:11:39 +00:00
|
|
|
/*
|
2010-02-21 07:24:53 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
2009-12-08 19:11:39 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup SIMIA32_CORE
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-12-23 20:06:26 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2009-12-08 19:11:39 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a context switch between two threads.
|
|
|
|
* @param otp the thread to be switched out
|
2010-02-20 19:55:00 +00:00
|
|
|
* @param ntp the thread to be switched in
|
2009-12-08 19:11:39 +00:00
|
|
|
*/
|
|
|
|
__attribute__((used))
|
2010-03-26 07:40:25 +00:00
|
|
|
static void __dummy(Thread *ntp, Thread *otp) {
|
|
|
|
(void)ntp; (void)otp;
|
2009-12-23 20:06:26 +00:00
|
|
|
#if defined(WIN32)
|
2009-12-08 19:11:39 +00:00
|
|
|
asm volatile (".globl @port_switch@8 \n\t" \
|
2009-12-23 20:06:26 +00:00
|
|
|
"@port_switch@8:");
|
2010-02-20 19:55:00 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
asm volatile (".globl _port_switch \n\t" \
|
|
|
|
"_port_switch:");
|
2009-12-23 20:06:26 +00:00
|
|
|
#else
|
|
|
|
asm volatile (".globl port_switch \n\t" \
|
|
|
|
"port_switch:");
|
|
|
|
#endif
|
|
|
|
asm volatile ("push %ebp \n\t" \
|
2009-12-08 19:11:39 +00:00
|
|
|
"push %esi \n\t" \
|
|
|
|
"push %edi \n\t" \
|
|
|
|
"push %ebx \n\t" \
|
2010-03-26 07:40:25 +00:00
|
|
|
"movl %esp, 12(%edx) \n\t" \
|
|
|
|
"movl 12(%ecx), %esp \n\t" \
|
2009-12-08 19:11:39 +00:00
|
|
|
"pop %ebx \n\t" \
|
|
|
|
"pop %edi \n\t" \
|
|
|
|
"pop %esi \n\t" \
|
|
|
|
"pop %ebp \n\t" \
|
|
|
|
"ret");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-20 19:55:00 +00:00
|
|
|
* Halts the system. In this implementation it just exits the simulation.
|
2009-12-08 19:11:39 +00:00
|
|
|
*/
|
|
|
|
__attribute__((fastcall))
|
|
|
|
void port_halt(void) {
|
|
|
|
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-20 19:55:00 +00:00
|
|
|
* Threads return point, it just invokes @p chThdExit().
|
2009-12-08 19:11:39 +00:00
|
|
|
*/
|
|
|
|
void threadexit(void) {
|
|
|
|
|
2010-02-20 19:55:00 +00:00
|
|
|
#if defined(WIN32) || defined (__APPLE__)
|
2009-12-08 19:11:39 +00:00
|
|
|
asm volatile ("push %eax \n\t" \
|
|
|
|
"call _chThdExit");
|
2009-12-23 20:06:26 +00:00
|
|
|
#else
|
|
|
|
asm volatile ("push %eax \n\t" \
|
|
|
|
"call chThdExit");
|
|
|
|
#endif
|
2009-12-08 19:11:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|