00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <vxTIInterruptService.hxx>
00019
00020
00021 using namespace std;
00022 using namespace codaObject;
00023
00024
00025
00026
00027
00028
00029
00030 namespace codaObject {
00031
00033 static int dispatcher(int ptr) {
00034 return ((vxTIInterruptService*)ptr)->dispatchInterrupt();
00035 }
00036 }
00037
00038
00039
00040
00041
00042
00051 vxTIInterruptService::vxTIInterruptService(unsigned short *base_addr, int dispatchPriority, int interruptLevel, short interruptVector)
00052 : myBaseAddr(base_addr), myInterruptTaskId(0), mySemId(NULL),
00053 myDispatchPriority(dispatchPriority), myInterruptLevel(interruptLevel),
00054 myInterruptVector(interruptVector) {
00055 }
00056
00057
00058
00059
00060
00064 vxTIInterruptService::~vxTIInterruptService(void) throw() {
00065 deleteInterrupt();
00066 }
00067
00068
00069
00070
00071
00077 void vxTIInterruptService::ISR(int sem) {
00078 semGive((SEM_ID)sem);
00079 }
00080
00081
00082
00083
00084
00090 int vxTIInterruptService::dispatchInterrupt(void) {
00091
00092 unsigned int trigType;
00093
00094
00095 while(true) {
00096
00097
00098 semTake((SEM_ID)mySemId,WAIT_FOREVER);
00099
00100
00101 trigType = (*((volatile unsigned short*)(myAddr+3)))&0xff;
00102
00103
00104 if(myIntObj!=NULL)myIntObj->interrupt(trigType);
00105
00106
00107 *(myAddr+2)=TI_INTERRUPT_REENABLE;
00108 }
00109 }
00110
00111
00112
00113
00114
00120 bool vxTIInterruptService::setupInterrupt(void) {
00121
00122
00123 sysBusToLocalAdrs(TI_VME_ACCESS_MODE,(char*)myBaseAddr,(char**)&myAddr);
00124
00125
00126 *(myAddr+0)=TI_RESET;
00127
00128
00129 *(myAddr+1)=TI_INTERRUPT_VECTOR;
00130
00131
00132 mySemId = semBCreate(SEM_Q_FIFO,SEM_EMPTY);
00133
00134
00135 intDisconnect((int)INUM_TO_IVEC(TI_INTERRUPT_VECTOR));
00136
00137
00138 intConnect(INUM_TO_IVEC(TI_INTERRUPT_VECTOR),(void(*)(...))&ISR,(int)mySemId);
00139
00140
00141 myInterruptTaskId = taskSpawn("tiIntHandler",myDispatchPriority,0,20000,(int(*)(...))&dispatcher,
00142 (int)this,0,0,0,0, 0,0,0,0,0);
00143
00144 return(true);
00145 }
00146
00147
00148
00149
00150
00156 bool vxTIInterruptService::enableInterrupt(void) {
00157
00158
00159
00160 sysIntEnable(TI_INTERRUPT_LEVEL);
00161
00162
00163
00164 *(myAddr+0)=TI_MODE;
00165
00166 return(true);
00167 }
00168
00169
00170
00171
00172
00178 bool vxTIInterruptService::deleteInterrupt(void) {
00179
00180
00181 *(myAddr+0)=0;
00182
00183
00184
00185 intDisconnect((int)INUM_TO_IVEC(TI_INTERRUPT_VECTOR));
00186
00187
00188
00189 if(myInterruptTaskId!=0) {
00190 taskDelete(myInterruptTaskId);
00191 myInterruptTaskId=0;
00192 }
00193
00194
00195
00196 if(mySemId!=NULL) {
00197 semDelete(mySemId);
00198 mySemId=NULL;
00199 }
00200
00201 return(true);
00202 }
00203
00204
00205