| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- /*
- * Copyright (C) 2001-2010 by egnite Software GmbH
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holders nor the names of
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
- * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * For additional information see http://www.ethernut.de/
- */
- /*!
- * \file arch/avr32/os/context.c
- * \brief Context switching ported to AVR32.
- *
- * \verbatim File version $Id$ \endverbatim
- */
- #include <cfg/os.h>
- #include <string.h>
- #include <sys/atom.h>
- #include <sys/heap.h>
- #include <sys/thread.h>
- #include <avr32/io.h>
- /*!
- * \addtogroup xgNutAvr32OsContext Context Switching for AVR32 CPUs
- * \ingroup xgNutArchAvr32
- * \brief Thread context switching for avr-gcc.
- */
- /*@{*/
- /*!
- * \brief AVR32 GCC context switch frame layout.
- *
- * This is the layout of the stack after a thread's context has been
- * switched-out. The stack pointer is stored in the thread info and
- * points to this structure.
- */
- typedef struct {
- uint32_t csf_cpsr;
- uint32_t csf_lr;
- uint32_t csf_r7;
- uint32_t csf_r6;
- uint32_t csf_r5;
- uint32_t csf_r4;
- uint32_t csf_r3;
- uint32_t csf_r2;
- uint32_t csf_r1;
- uint32_t csf_r0;
- } SWITCHFRAME;
- /*!
- * \brief Thread entry frame layout.
- *
- * This is the stack layout being build to enter a new thread.
- */
- typedef struct {
- uint32_t cef_pc;
- uint32_t cef_r12;
- } ENTERFRAME;
- /*!
- * \brief Enter a new thread.
- */
- static void NutThreadEntry(void) NUT_NAKED_FUNC;
- void NutThreadEntry(void)
- {
- /* Load argument in r12 and jump to thread entry. */
- __asm__ volatile ("popm r12, lr\n\t" /* put the value of cef_r12 in R12 and the value of cef_pc in lr */
- "mov pc,lr\n\t" /* then pc recieve lr */
- :::"r12", "lr", "pc");
- }
- /*!
- * \brief Switch to another thread.
- *
- * Stop the current thread, saving its context. Then start the
- * one with the highest priority, which is ready to run.
- *
- * Application programs typically do not call this function.
- *
- * \note CPU interrupts must be disabled before calling this function.
- *
- */
- void NutThreadSwitch(void) NUT_NAKED_FUNC;
- void NutThreadSwitch(void)
- {
- /* Save CPU context. */
- __asm__ volatile ("pushm r0-r7, lr \n\t" /* Save registers in the stack */
- "mfsr r10, %1 \n\t" /* Save status in R10 */
- "pushm r10 \n\t" /* Save r10 in the stack */
- "st.w %0, sp \n\t" /* the address contained in R10 contain the address of the stack pointer. */
- :"=m" (runningThread->td_sp)
- :"i"(AVR32_SR)
- :"r10");
- /* Select thread on top of the run queue. */
- runningThread = runQueue;
- runningThread->td_state = TDS_RUNNING;
- /* Restore context. */
- /* When changing this, remember to keep NutThreadCreate copy in sync */
- __asm__ volatile ("ld.w sp, %0\n\t" /* Restore stack pointer. */
- "popm r10 \n\t" /* Get saved status... */
- "mtsr %1, r10\n\t" "popm r0-r7, lr\n\t" /* Restore registers. */
- "mov pc, lr\n\t" /* Restore status and return. */
- ::"m" (runningThread->td_sp), "i"(AVR32_SR)
- :"r10");
- #if defined(NUT_CRITICAL_NESTING) && !defined(NUT_CRITICAL_NESTING_STACK)
- critical_nesting_level = 0;
- #endif
- }
- /*!
- * \brief Create a new thread.
- *
- * If the current thread's priority is lower or equal than the default
- * priority (64), then the current thread is stopped and the new one
- * is started.
- *
- * \param name String containing the symbolic name of the new thread,
- * up to 8 characters long.
- * \param fn The thread's entry point, typically created by the
- * THREAD macro.
- * \param arg Argument pointer passed to the new thread.
- * \param stackSize Number of bytes of the stack space allocated for
- * the new thread.
- *
- * \note The thread must run in ARM mode. Thumb mode is not supported.
- *
- * \return Pointer to the NUTTHREADINFO structure or 0 to indicate an
- * error.
- */
- HANDLE NutThreadCreate(char *name, void (*fn) (void *), void *arg, size_t stackSize)
- {
- uint8_t *threadMem;
- SWITCHFRAME *sf;
- ENTERFRAME *ef;
- NUTTHREADINFO *td;
- size_t alloc_size;
- /*
- * Allocate stack and thread info structure in one block.
- * We sill setup the following layout:
- *
- * Upper memory addresses.
- *
- * +--------------------+
- * I I
- * I NUTTHREADINFO I
- * I I
- * td -> +-----+--------------+ <- Stack top
- * I I I
- * I T I ENTERFRAME I
- * I H I I
- * ef -> I R +--------------+
- * I E I I ^
- * I A I SWITCHFRAME I I
- * I D I I I pop moves up
- * sf -> I +--------------+ <- Initial stack pointer
- * I S I I I push moves down
- * I T I Application I I
- * I A I Stack I V
- * I C I I
- * I K I I
- * threadMem -> +-----+--------------+ <- Stack bottom
- *
- * Lower memory addresses.
- */
- alloc_size = stackSize + sizeof(NUTTHREADINFO);
- alloc_size += 7;
- alloc_size &= ~7;
- if ((threadMem = NutHeapAlloc(alloc_size)) == 0) {
- return 0;
- }
- td = (NUTTHREADINFO *) (((size_t)threadMem + stackSize) & ~7);
- ef = (ENTERFRAME *) ((uptr_t) td - sizeof(ENTERFRAME));
- sf = (SWITCHFRAME *) ((uptr_t) ef - sizeof(SWITCHFRAME));
- /*
- * Set predefined values at the stack bottom. May be used to detect
- * stack overflows.
- */
- #if defined(NUTDEBUG_CHECK_STACKMIN) || defined(NUTDEBUG_CHECK_STACK)
- {
- uint32_t *fip = (uint32_t *) threadMem;
- while (fip < (uint32_t *) sf) {
- *fip++ = DEADBEEF;
- }
- }
- #else
- *((uint32_t *) threadMem) = DEADBEEF;
- *((uint32_t *) (threadMem + 4)) = DEADBEEF;
- *((uint32_t *) (threadMem + 8)) = DEADBEEF;
- *((uint32_t *) (threadMem + 12)) = DEADBEEF;
- #endif
- /*
- * Setup the entry frame to simulate C function entry.
- */
- ef->cef_pc = (uptr_t) fn;
- ef->cef_r12 = (uptr_t) arg;
- /*
- * Setup the switch frame.
- */
- sf->csf_lr = (uptr_t) NutThreadEntry;
- sf->csf_cpsr = (AVR32_SR_M_SUP << AVR32_SR_M_OFFSET); /* [M2:M0]=001 - Supervisor Mode I1M=0 I0M=0, GM=0 */
- /*
- * Initialize the thread info structure and insert it into the
- * thread list and the run queue.
- */
- memcpy(td->td_name, name, sizeof(td->td_name) - 1);
- td->td_name[sizeof(td->td_name) - 1] = 0;
- td->td_state = TDS_READY;
- td->td_sp = (uptr_t) sf;
- td->td_priority = 64;
- td->td_memory = threadMem;
- td->td_timer = 0;
- td->td_queue = 0;
- NutEnterCritical();
- td->td_next = nutThreadList;
- nutThreadList = td;
- NutThreadAddPriQueue(td, (NUTTHREADINFO **) & runQueue);
- /*
- * If no thread is running, then this is the first thread ever
- * created. In Nut/OS, the idle thread is created first.
- */
- if (runningThread == 0) {
- /* This will never return. */
- runningThread = runQueue;
- runningThread->td_state = TDS_RUNNING;
- /* Restore context. */
- __asm__ volatile ( /* */
- "ld.w sp, %0\n\t" /* Restore stack pointer. */
- "popm r10 \n\t" /* Get saved status... */
- "mtsr %1, r10\n\t" "popm r0-r7, lr\n\t" /* Restore registers. */
- "mov pc, lr\n\t" /* Restore status and return. */
- ::"m" (runningThread->td_sp), "i"(AVR32_SR)
- :"r10");
- }
- /*
- * If current context is not in front of the run queue (highest
- * priority), then switch to the thread in front.
- */
- if (runningThread != runQueue) {
- runningThread->td_state = TDS_READY;
- NutThreadSwitch();
- }
- NutExitCritical();
- return td;
- }
- /*@}*/
|