]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/hal/common/v2_0/tests/intr.c
Initial revision
[karo-tx-redboot.git] / packages / hal / common / v2_0 / tests / intr.c
1 /*=================================================================
2 //
3 //        intr.c
4 //
5 //        HAL Interrupt API test
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     nickg
44 // Contributors:  nickg
45 // Date:          1998-10-08
46 //####DESCRIPTIONEND####
47 */
48
49 #include <pkgconf/hal.h>
50
51 #include <cyg/infra/testcase.h>
52
53 #include <cyg/hal/hal_intr.h>
54 #include <cyg/hal/drv_api.h>
55
56 // Include HAL/Platform specifics
57 #include CYGBLD_HAL_PLATFORM_H
58
59 #ifdef CYGPKG_KERNEL
60 #include <pkgconf/kernel.h>             // Need to look for the RTC config.
61 #endif
62
63 // Fallback defaults (in case HAL didn't define these)
64 #ifndef CYGNUM_HAL_RTC_NUMERATOR       
65 #define CYGNUM_HAL_RTC_NUMERATOR     1000000000
66 #define CYGNUM_HAL_RTC_DENOMINATOR   100
67 #define CYGNUM_HAL_RTC_PERIOD        9999
68 #endif
69
70 // -------------------------------------------------------------------------
71
72 #define ISR_DATA        0xAAAA1234
73
74 // -------------------------------------------------------------------------
75
76 volatile cyg_count32 ticks = 0;
77 volatile cyg_count32 dsr_ticks = 0;
78 static cyg_interrupt intr;
79 static cyg_handle_t  intr_handle;
80
81 // -------------------------------------------------------------------------
82
83 cyg_uint32 isr( cyg_uint32 vector, CYG_ADDRWORD data )
84 {
85     CYG_TEST_CHECK( ISR_DATA == data , "Bad data passed to ISR");
86     CYG_TEST_CHECK( CYGNUM_HAL_INTERRUPT_RTC == vector ,
87                     "Bad vector passed to ISR");
88
89     HAL_CLOCK_RESET( vector, CYGNUM_HAL_RTC_PERIOD );
90
91     HAL_INTERRUPT_ACKNOWLEDGE( vector );
92     
93     ticks++;
94
95     return CYG_ISR_CALL_DSR;
96 }
97
98 // -------------------------------------------------------------------------
99
100 void dsr( cyg_uint32 vector, cyg_ucount32 count, CYG_ADDRWORD data )
101 {
102     CYG_TEST_CHECK( ISR_DATA == data , "Bad data passed to DSR");
103     CYG_TEST_CHECK( CYGNUM_HAL_INTERRUPT_RTC == vector ,
104                     "Bad vector passed to DSR");
105
106     dsr_ticks += count;
107 }
108
109 void intr_main( void )
110 {
111     CYG_INTERRUPT_STATE oldints;
112
113     cyg_drv_interrupt_create(CYGNUM_HAL_INTERRUPT_RTC, 1,
114                              ISR_DATA, isr, dsr, &intr_handle, &intr);
115     cyg_drv_interrupt_attach(intr_handle);
116     HAL_CLOCK_INITIALIZE( CYGNUM_HAL_RTC_PERIOD );
117     cyg_drv_interrupt_unmask(CYGNUM_HAL_INTERRUPT_RTC);
118
119     HAL_ENABLE_INTERRUPTS();
120
121     while( ticks < 10 )
122     {
123         
124     }
125
126
127     CYG_TEST_CHECK( dsr_ticks == 10, "DSR not called sufficient times");
128     
129     HAL_DISABLE_INTERRUPTS(oldints);
130
131     CYG_TEST_PASS_FINISH("HAL interrupt test");
132 }
133
134
135 // -------------------------------------------------------------------------
136
137 externC void
138 cyg_start( void )
139 {
140     CYG_TEST_INIT();
141
142     // Attaching the ISR will not succeed if the kernel real-time
143     // clock has been configured in.
144 #ifndef CYGVAR_KERNEL_COUNTERS_CLOCK
145
146     intr_main();
147
148 #else
149
150     CYG_TEST_NA("Cannot override kernel real-time clock.");
151
152 #endif
153 }
154
155
156 // -------------------------------------------------------------------------
157 // EOF intr.c