Nut/OS  4.10.3
API Reference
ih_timer3_compa.c
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2001-2005 by egnite Software GmbH. All rights reserved.
00003  *
00004  * Redistribution and use in source and binary forms, with or without
00005  * modification, are permitted provided that the following conditions
00006  * are met:
00007  *
00008  * 1. Redistributions of source code must retain the above copyright
00009  *    notice, this list of conditions and the following disclaimer.
00010  * 2. Redistributions in binary form must reproduce the above copyright
00011  *    notice, this list of conditions and the following disclaimer in the
00012  *    documentation and/or other materials provided with the distribution.
00013  * 3. Neither the name of the copyright holders nor the names of
00014  *    contributors may be used to endorse or promote products derived
00015  *    from this software without specific prior written permission.
00016  *
00017  * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
00018  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00019  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00020  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
00021  * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00022  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00023  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
00024  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
00025  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00026  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
00027  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00028  * SUCH DAMAGE.
00029  *
00030  * For additional information see http://www.ethernut.de/
00031  *
00032  */
00033 
00087 #include <dev/irqreg.h>
00088 
00089 #if defined(MCU_AT90CAN128) || defined(MCU_ATMEGA2560) || defined(MCU_ATMEGA2561)
00090 #define INT_MASK_REG    TIMSK3
00091 #define INT_STATUS_REG  TIFR3
00092 #define INT_ENABLE_BIT  OCIE3A
00093 #define INT_STATUS_BIT  OCF3A
00094 #define INT_PRIORITY    27
00095 #else
00096 #define INT_MASK_REG    ETIMSK
00097 #define INT_STATUS_REG  ETIFR
00098 #define INT_ENABLE_BIT  OCIE3A
00099 #define INT_STATUS_BIT  OCF3A
00100 #define INT_PRIORITY    25
00101 #endif
00102 
00107 
00108 #if defined(SIG_OUTPUT_COMPARE3A) || defined(iv_TIMER3_COMPA)
00109 
00110 static int AvrTimer3CompAIrqCtl(int cmd, void *param);
00111 
00112 IRQ_HANDLER sig_OUTPUT_COMPARE3A = {
00113 #ifdef NUT_PERFMON
00114     0,                          /* Interrupt counter, ir_count. */
00115 #endif
00116     NULL,                       /* Passed argument, ir_arg. */
00117     NULL,                       /* Handler subroutine, ir_handler. */
00118     AvrTimer3CompAIrqCtl        /* Interrupt control, ir_ctl. */
00119 };
00120 
00136 static int AvrTimer3CompAIrqCtl(int cmd, void *param)
00137 {
00138     int rc = 0;
00139     unsigned int *ival = (unsigned int *) param;
00140     int_fast8_t enabled = bit_is_set(INT_MASK_REG, INT_ENABLE_BIT);
00141 
00142     /* Disable interrupt. */
00143     cbi(INT_MASK_REG, INT_ENABLE_BIT);
00144 
00145     switch (cmd) {
00146     case NUT_IRQCTL_INIT:
00147         enabled = 0;
00148     case NUT_IRQCTL_CLEAR:
00149         /* Clear any pending interrupt. */
00150         outb(INT_STATUS_REG, _BV(INT_STATUS_BIT));
00151         break;
00152     case NUT_IRQCTL_STATUS:
00153         if (bit_is_set(INT_STATUS_REG, INT_STATUS_BIT)) {
00154             *ival = 1;
00155         } else {
00156             *ival = 0;
00157         }
00158         if (enabled) {
00159             *ival |= 0x80;
00160         }
00161         break;
00162     case NUT_IRQCTL_ENABLE:
00163         enabled = 1;
00164         break;
00165     case NUT_IRQCTL_DISABLE:
00166         enabled = 0;
00167         break;
00168     case NUT_IRQCTL_GETPRIO:
00169         *ival = INT_PRIORITY;
00170         break;
00171 #ifdef NUT_PERFMON
00172     case NUT_IRQCTL_GETCOUNT:
00173         *ival = (unsigned int) sig_OUTPUT_COMPARE3A.ir_count;
00174         sig_OUTPUT_COMPARE3A.ir_count = 0;
00175         break;
00176 #endif
00177     default:
00178         rc = -1;
00179         break;
00180     }
00181 
00182     /* Enable interrupt. */
00183     if (enabled) {
00184         sbi(INT_MASK_REG, INT_ENABLE_BIT);
00185     }
00186     return rc;
00187 }
00188 
00192 #ifdef __IMAGECRAFT__
00193 #pragma interrupt_handler SIG_OUTPUT_COMPARE3A:iv_TIMER3_COMPA
00194 #endif
00195 NUTSIGNAL(SIG_OUTPUT_COMPARE3A, sig_OUTPUT_COMPARE3A)
00196 #endif
00197