Analog Devices ee-134 Application Notes

Engineer To Engineer Note EE-134
Technical Notes on using Analog Devices’ DSP components and development tools
Phone: (800) ANALOG-D, FAX: (781) 461-3010, EMAIL: dsp.support@analog.com, FTP: ftp.analog.com, WEB: www.analog.com/dsp
Copyright 2001, Analog Devices, Inc. All rights reserved. Analog Devices assumes no responsibility for customer product design or the use or application of customers’ products or for any infringements of patents or rights of others which may result from Analog Devices assistance. All trademarks and logos are property of their respective holders. Information furnished by Analog Devices Applications and Development Tools Engineers is believed to be accurate and reliable, however no responsibility is assumed by Analog Devices regarding the technical accuracy of the content provided in all Analog Devices’ Engineer-to-Engineer Notes.
Writing C Compatible Assembly Code Interrupt Handlers for the SHARC
Kevin C. Kreitzer last modified 05/10/2001
Introduction
Very often, DSP programs will consist of a mix of C code and assembly code. The assembly code is typically used for time critical routines. Interrupt Service Routines (ISRs) can be some of the most time critical elements of the program and, as such, often need to be coded in assembly. This EE-note describes how to write C-compatible assembly code interrupt handlers for the SHARC family.

Family
Name Cycle
Count
Regular 128 interrupt() Saves and
Fast 60 interruptf() Saves the
Super fast
interrupt (SIG_TMZI, Timer_ISR);
30 interrupts() Alternate
Figure 1. C interrupt handler table.
Figure 2. C interrupt handler example.
Assembly Interrupt Handlers
C library function
What is saved?
restores everything.
scratch registers only.
register set is used. Nothing is saved. Interrupt nesting is disabled.
C Interrupt Handlers
C provides its own set of interrupt handlers via the interrupt() and signal() functions. Visual DSP has extended the interrupt() function with interruptf() and interrupts() versions. These are summarized for the ADSP-2106x family in Figure 1. Interrupts are enabled at runtime using these library functions as shown in Figure 2.
The function interrupt() unmasks the appropriate interrupt in the IMASK register, enables global interrupts in MODE1 register, and maps the specified function as the interrupt service routine. Signal() will enable only one instance of the interrupt.
While not inherently inefficient themselves, C interrupt handlers, even if the interrupt service routine is written in assembly, are general purpose and must account for all possible conditions. Writing your own custom assembly interrupt handlers is simple and will greatly speed execution.
The interrupt handler consists of three parts – the initialization, the interrupt vector, and the interrupt service routine. Initialization performs the tasks previously associated with the C interrupt() function – assigning the interrupt service routine to an interrupt vector (dynamic ISR vectors only), unmasking the interrupt, and enabling global interrupts. The interrupt vector routes execution to the appropriate interrupt service routine.
a
Interrupt Service Routine
Essential to the proper execution of an interrupt service routine is a thorough understanding of the context switch. The context switch must do two things. The first task is to preserve the state of the processor for a seamless return to the main code execution. The second is to put the processor into a known state in which the interrupt service routine may properly operate.
There are no scratch registers reserved by C for use in interrupts. Therefore, all registers used
in an interrupt service routine must be preserved. One register needing preservation
that may not be obvious is the arithmetic status or ASTAT register. Any operations in the interrupt service routine that modify the flags will affect this register. The ASTAT register is pushed onto the hardware status stack implicitly for external interrupts (IRQs), vector interrupts, and timer interrupts. For all other interrupts, it must be pushed and popped explicitly.
allowed since there is only one alternate register set. Additionally, the alternate registers used for interrupts may not be used anywhere else in your code – e.g., assembly code subroutines. A compromise is to parse out a subset of alternate registers for use in ISRs and another for use in assembly subroutines.
The alternate registers can be selected using bits in the MODE1 register. There is a 1 cycle
effect latency for writes to the MODE1 register! Therefore, a NOP or some other
instruction not using the alternate registers must follow the write to the MODE1 register. Assuming that the MODE1 register was pushed onto the status stack either implicitly or explicitly, you will not need to reset to the default register sets on exit from the interrupt service routine. The pop of the status stack will do that for you.
The example in Figure 4 preserves I0-3, M0-3, L0-3, B0-3, and R0-15.
Once the MODE1 register is pushed, the processor can then be set to a known state for the interrupt service routine. For example, the ADSP-2116x family interrupt service routines will want to guarantee whether the processor is in SIMD or SISD mode.
The code in Figure 3 will explicitly push and pop the ASTAT and MODE1 registers. There are two options for performing register preservation of the remaining registers.
push sts; … pop sts;
Figure 3. Status stack push/pop example.
Alternate Register Set Context Switch
The SHARC family provides an alternate register set for the general purpose registers (Rx, Fx), data address generator registers (Ix, Mx, Bx, Lx), and the fixed-point multiplier result register (MR). This is the fastest, but most inflexible method. Interrupt nesting is not
/************************************ * save environment ************************************/ push sts bit set mode1 SRD1L|SRRFL|SRRFH; bit clr mode1 PEYEN; nop;
/************************************ * restore environment ************************************/ pop sts; rti;
Figure 4. Alternate register set context switch
example.
C Run-Time Stack Context Switch
The most flexible method is to push and pop registers using the C run-time stack. While less efficient than the alternate register set method, it is in most cases still considerably faster than using C handlers. This method will allow nesting and will save your alternate registers for fast assembly subroutines. C run-time stack
EE-134 Page 2
Technical Notes on using Analog Devices’ DSP components and development tools
Phone: (800) ANALOG-D, FAX: (781)461-3010, EMAIL: dsp.support@analog.com, FTP: ftp.analog.com, WEB: www.analog.com/dsp
support is provided in ASM_SPRT.H using the PUTS, GETS, and ALTER macros. Note that these macros will not work on a DAG1 register so those must be saved into a general purpose register first.
Since the C run-time stack uses the default I6 and I7 registers, care must be taken if there is any possibility of entering the interrupt service routine with the alternate register set active. For the ADSP-2116x family, the processor must also be in SISD mode. These can be accomplished by clearing the appropriate bits in the MODE1 register after it has been pushed onto the status stack. As before, there is a one cycle effect latency and you do not need to reset the MODE1 one back to its previous state on exit – the pop of the status stack will do it for you.
/************************************ * save environment ************************************/ push sts; bit clr mode1 SRD1H|PEYEN; nop; puts = r0; r0 = i0; puts = r0; puts = r1; puts = r2; puts = r3;
/************************************ * restore environment ************************************/ r3 = gets(1); r2 = gets(2); r1 = gets(3); r0 = gets(4); i0 = r0; r0 = gets(5) alter(5); pop sts; rti;
PEYEN bit in the MODE1 register is only valid for the ADSP-2116x family.
Interrupt Vectors
The run-time header file contains the actual interrupt vector locations. These reside at the lowest addressed internal memory of the processor and contain four instruction words per vector. The entire vector table is 256 words long, allowing for a maximum of 64 vectors. Some of these are reserved. A default file called 060_HDR.ASM is used for the C interrupt handlers. In order to use assembly handlers, you will need to provide your own 060_HDR.ASM and include it as a source file in your project. Examples of the vectors are shown in the next two sections. Note that in some of the examples, the vector can not be completed in the allotted four instructions. A secondary vector location must be added to accommodate the additional instructions. These secondary vectors should go at the end of the primary vector locations.
Fixed ISR Vectors
Here are examples of interrupt vectors for a fixed interrupt service routine. Notice that in order to save cycles, we have moved the first few instructions of the context switch examples given above into the vector itself. In all examples, a nop or other instruction follows a write to the MODE1 register to account for the 1 cycle effect latency.
Figures 6a&b show examples for a timer interrupt with an implicit status stack push and an alternate register set context switch. These examples preserve I0-4, M0-4, L0-4, B0-4, and R0-15.
Figure 5. C run-time stack context switch example.
The example in Figure 5 preserves I0, R0, R1, R2, and R3. Note that the clearing of the
EE-134 Page 3
Technical Notes on using Analog Devices’ DSP components and development tools
Phone: (800) ANALOG-D, FAX: (781)461-3010, EMAIL: dsp.support@analog.com, FTP: ftp.analog.com, WEB: www.analog.com/dsp
Loading...
+ 4 hidden pages