SH: Move address environment switch from the task switchers to the interrupt handler. That may save doing the action multiple times per interrupt

This commit is contained in:
Gregory Nutt
2014-08-28 07:23:39 -06:00
parent 9c6fea03d0
commit 3a2f3e2753
3 changed files with 64 additions and 60 deletions
+4 -12
View File
@@ -49,7 +49,7 @@
#include "up_internal.h" #include "up_internal.h"
/**************************************************************************** /****************************************************************************
* Private Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -136,19 +136,11 @@ void up_block_task(struct tcb_s *tcb, tstate_t task_state)
rtcb = (struct tcb_s*)g_readytorun.head; rtcb = (struct tcb_s*)g_readytorun.head;
/* Then switch contexts */ /* Then switch contexts. Any necessary address environment
* changes will be made when the interrupt returns.
*/
current_regs = rtcb->xcp.regs; current_regs = rtcb->xcp.regs;
#ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously
* running task is closed down gracefully (data caches dump,
* MMU flushed) and set up the address environment for the new
* thread at the head of the ready-to-run list.
*/
(void)group_addrenv(rtcb);
#endif
} }
/* Copy the user C context into the TCB at the (old) head of the /* Copy the user C context into the TCB at the (old) head of the
+56 -36
View File
@@ -1,7 +1,7 @@
/**************************************************************************** /****************************************************************************
* arch/sh/src/common/up_doirq.c * arch/sh/src/common/up_doirq.c
* *
* Copyright (C) 2008-2009, 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2008-2009, 2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -48,8 +48,10 @@
#include "up_arch.h" #include "up_arch.h"
#include "up_internal.h" #include "up_internal.h"
#include "group/group.h"
/**************************************************************************** /****************************************************************************
* Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -76,56 +78,74 @@ uint32_t *up_doirq(int irq, uint32_t* regs)
#else #else
if ((unsigned)irq < NR_IRQS) if ((unsigned)irq < NR_IRQS)
{ {
uint32_t *savestate; /* Current regs non-zero indicates that we are processing
* an interrupt; current_regs is also used to manage
* interrupt level context switches.
*
* Nested interrupts are not supported.
*/
/* Nested interrupts are not supported in this implementation. If DEBUGASSERT(current_regs == NULL);
* you want to implement nested interrupts, you would have to (1) current_regs = regs;
* change the way that current_regs is handled and (2) the design
* associated with CONFIG_ARCH_INTERRUPTSTACK. The savestate
* variable will not work for that purpose as implemented here
* because only the outermost nested interrupt can result in a
* context switch (it can probably be deleted).
*/
/* Current regs non-zero indicates that we are processing /* Mask and acknowledge the interrupt (if supported by the chip) */
* an interrupt; current_regs is also used to manage
* interrupt level context switches.
*/
savestate = (uint32_t*)current_regs;
current_regs = regs;
/* Mask and acknowledge the interrupt (if supported by the chip) */
#ifndef CONFIG_ARCH_NOINTC #ifndef CONFIG_ARCH_NOINTC
up_maskack_irq(irq); up_maskack_irq(irq);
#endif #endif
/* Deliver the IRQ */ /* Deliver the IRQ */
irq_dispatch(irq, regs); irq_dispatch(irq, regs);
/* Get the current value of regs... it may have changed because #if defined(CONFIG_ARCH_FPU) || defined(CONFIG_ARCH_ADDRENV)
* of a context switch performed during interrupt processing. /* Check for a context switch. If a context switch occurred, then
*/ * current_regs will have a different value than it did on entry. If an
* interrupt level context switch has occurred, then restore the floating
* point state and the establish the correct address environment before
* returning from the interrupt.
*/
regs = current_regs; if (regs != current_regs)
{
#ifdef CONFIG_ARCH_FPU
/* Restore floating point registers */
/* Restore the previous value of current_regs. NULL would indicate that up_restorefpu((uint32_t*)current_regs);
* we are no longer in an interrupt handler. It will be non-NULL if we #endif
* are returning from a nested interrupt.
*/
current_regs = savestate; #ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously
* running task is closed down gracefully (data caches dump,
* MMU flushed) and set up the address environment for the new
* thread at the head of the ready-to-run list.
*/
/* Unmask the last interrupt (global interrupts are still (void)group_addrenv(rtcb);
* disabled. #endif
*/ }
#endif
/* Get the current value of regs... it may have changed because
* of a context switch performed during interrupt processing.
*/
regs = current_regs;
/* Set current_regs to NULL to indicate that we are no longer in an
* interrupt handler.
*/
current_regs = NULL;
/* Unmask the last interrupt (global interrupts are still
* disabled.
*/
#ifndef CONFIG_ARCH_NOINTC #ifndef CONFIG_ARCH_NOINTC
up_enable_irq(irq); up_enable_irq(irq);
#endif #endif
} }
board_led_off(LED_INIRQ); board_led_off(LED_INIRQ);
#endif #endif
return regs; return regs;
+4 -12
View File
@@ -49,7 +49,7 @@
#include "up_internal.h" #include "up_internal.h"
/**************************************************************************** /****************************************************************************
* Private Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
@@ -127,19 +127,11 @@ void up_unblock_task(struct tcb_s *tcb)
rtcb = (struct tcb_s*)g_readytorun.head; rtcb = (struct tcb_s*)g_readytorun.head;
/* Then switch contexts */ /* Then switch contexts. Any necessary address environment
* changes will be made when the interrupt returns.
*/
current_regs = rtcb->xcp.regs; current_regs = rtcb->xcp.regs;
#ifdef CONFIG_ARCH_ADDRENV
/* Make sure that the address environment for the previously
* running task is closed down gracefully (data caches dump,
* MMU flushed) and set up the address environment for the new
* thread at the head of the ready-to-run list.
*/
(void)group_addrenv(rtcb);
#endif
} }
/* We are not in an interrupt handler. Copy the user C context /* We are not in an interrupt handler. Copy the user C context