Mercurial > ecos
annotate packages/hal/common/current/tests/intr.c @ 1850:ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
correctly.
| author | asl |
|---|---|
| date | Sat, 20 Nov 2004 15:23:08 +0000 |
| parents | d2c90368aeef |
| children | 74dbf4c3f2e1 |
| rev | line source |
|---|---|
| 0 | 1 /*================================================================= |
| 2 // | |
| 3 // intr.c | |
| 4 // | |
| 5 // HAL Interrupt API test | |
| 6 // | |
| 7 //========================================================================== | |
|
208
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
8 //####ECOSGPLCOPYRIGHTBEGIN#### |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
9 // ------------------------------------------- |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
10 // This file is part of eCos, the Embedded Configurable Operating System. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
12 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
13 // eCos is free software; you can redistribute it and/or modify it under |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
14 // the terms of the GNU General Public License as published by the Free |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
15 // Software Foundation; either version 2 or (at your option) any later version. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
16 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
19 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
20 // for more details. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
21 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
22 // You should have received a copy of the GNU General Public License along |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
23 // with eCos; if not, write to the Free Software Foundation, Inc., |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
25 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
26 // As a special exception, if other files instantiate templates or use macros |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
27 // or inline functions from this file, or you compile this file and link it |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
28 // with other works to produce a work based on this file, this file does not |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
29 // by itself cause the resulting work to be covered by the GNU General Public |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
30 // License. However the source code for this file must still be made available |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
31 // in accordance with section (3) of the GNU General Public License. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
32 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
33 // This exception does not invalidate any other reasons why a work based on |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
34 // this file might be covered by the GNU General Public License. |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
35 // |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. |
|
210
d2c90368aeef
Merge from eCos master repository on 2002-05-23-21:39:14-BST
jlarmour
parents:
208
diff
changeset
|
37 // at http://sources.redhat.com/ecos/ecos-license/ |
|
208
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
38 // ------------------------------------------- |
|
e0c0827131d1
Merge from eCos master repository on 2002-05-20-20:11:54-BST
jlarmour
parents:
174
diff
changeset
|
39 //####ECOSGPLCOPYRIGHTEND#### |
| 0 | 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> | |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
54 #include <cyg/hal/drv_api.h> |
| 0 | 55 |
|
8
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
56 // Include HAL/Platform specifics |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
57 #include CYGBLD_HAL_PLATFORM_H |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
58 |
| 2 | 59 #ifdef CYGPKG_KERNEL |
| 60 #include <pkgconf/kernel.h> // Need to look for the RTC config. | |
| 0 | 61 #endif |
| 62 | |
|
8
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
63 // Fallback defaults (in case HAL didn't define these) |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
64 #ifndef CYGNUM_HAL_RTC_NUMERATOR |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
65 #define CYGNUM_HAL_RTC_NUMERATOR 1000000000 |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
66 #define CYGNUM_HAL_RTC_DENOMINATOR 100 |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
67 #define CYGNUM_HAL_RTC_PERIOD 9999 |
| 0 | 68 #endif |
| 69 | |
| 70 // ------------------------------------------------------------------------- | |
| 71 | |
| 72 #define ISR_DATA 0xAAAA1234 | |
| 73 | |
| 74 // ------------------------------------------------------------------------- | |
| 75 | |
| 76 volatile cyg_count32 ticks = 0; | |
|
1850
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
77 volatile cyg_count32 dsr_ticks = 0; |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
78 static cyg_interrupt intr; |
|
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
79 static cyg_handle_t intr_handle; |
| 0 | 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"); | |
| 2 | 86 CYG_TEST_CHECK( CYGNUM_HAL_INTERRUPT_RTC == vector , |
| 87 "Bad vector passed to ISR"); | |
| 0 | 88 |
|
22
53104bbd5f99
Merge from eCos master repository on 1999-07-09-05:47:06-BST
jlarmour
parents:
8
diff
changeset
|
89 HAL_CLOCK_RESET( vector, CYGNUM_HAL_RTC_PERIOD ); |
| 0 | 90 |
| 91 HAL_INTERRUPT_ACKNOWLEDGE( vector ); | |
| 92 | |
| 93 ticks++; | |
| 94 | |
|
1850
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
95 return CYG_ISR_CALL_DSR; |
| 0 | 96 } |
| 97 | |
| 98 // ------------------------------------------------------------------------- | |
| 99 | |
|
1850
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
100 void dsr( cyg_uint32 vector, cyg_ucount32 count, CYG_ADDRWORD data ) |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
101 { |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
102 CYG_TEST_CHECK( ISR_DATA == data , "Bad data passed to DSR"); |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
103 CYG_TEST_CHECK( CYGNUM_HAL_INTERRUPT_RTC == vector , |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
104 "Bad vector passed to DSR"); |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
105 |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
106 dsr_ticks += count; |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
107 } |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
108 |
| 0 | 109 void intr_main( void ) |
| 110 { | |
| 111 CYG_INTERRUPT_STATE oldints; | |
| 112 | |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
113 cyg_drv_interrupt_create(CYGNUM_HAL_INTERRUPT_RTC, 1, |
|
1850
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
114 ISR_DATA, isr, dsr, &intr_handle, &intr); |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
115 cyg_drv_interrupt_attach(intr_handle); |
|
22
53104bbd5f99
Merge from eCos master repository on 1999-07-09-05:47:06-BST
jlarmour
parents:
8
diff
changeset
|
116 HAL_CLOCK_INITIALIZE( CYGNUM_HAL_RTC_PERIOD ); |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
117 cyg_drv_interrupt_unmask(CYGNUM_HAL_INTERRUPT_RTC); |
| 0 | 118 |
| 119 HAL_ENABLE_INTERRUPTS(); | |
| 120 | |
| 121 while( ticks < 10 ) | |
| 122 { | |
| 123 | |
| 124 } | |
| 125 | |
|
1850
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
126 |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
127 CYG_TEST_CHECK( dsr_ticks == 10, "DSR not called sufficient times"); |
|
ab3832848094
* tests/intr.c: Make the ISR call the DSR to make sure this works
asl
parents:
210
diff
changeset
|
128 |
| 0 | 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 { | |
| 2 | 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 | |
| 0 | 146 intr_main(); |
| 2 | 147 |
| 148 #else | |
| 149 | |
|
32
5af43b635655
Merge from eCos master repository on 1999-08-18-15:20:01-BST
jlarmour
parents:
22
diff
changeset
|
150 CYG_TEST_NA("Cannot override kernel real-time clock."); |
| 2 | 151 |
| 152 #endif | |
| 0 | 153 } |
| 154 | |
| 155 | |
| 156 // ------------------------------------------------------------------------- | |
|
174
38892b97b685
Merge from eCos master repository on 2001-07-28-00:17:32-BST
jlarmour
parents:
66
diff
changeset
|
157 // EOF intr.c |
