-
Notifications
You must be signed in to change notification settings - Fork 4
/
simRegDev.c
568 lines (517 loc) · 15.9 KB
/
simRegDev.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <devLib.h>
#include <regDev.h>
#include <errlog.h>
#include <callback.h>
#include <epicsExit.h>
#include <epicsTimer.h>
#include <epicsMutex.h>
#include <epicsThread.h>
#include <epicsExport.h>
#include <epicsStdioRedirect.h>
#include "memDisplay.h"
#include "simRegDev.h"
#define MAGIC 322588966U /* crc("simRegDev") */
#ifndef __GNUC__
#define __attribute__(x) /*NOTHING*/
#endif
#ifndef S_dev_badArgument
#define S_dev_badArgument (M_devLib| 33)
#endif
typedef struct simRegDevMessage {
struct simRegDevMessage* next;
regDevice* device;
epicsTimerId timer;
unsigned int dlen;
size_t nelem;
volatile void* src;
volatile void* dest;
void* pmask;
int prio;
regDevTransferComplete callback;
const char* user;
int isOutput;
} simRegDevMessage;
struct regDevice {
unsigned long magic;
const char* name;
size_t size;
int swap;
int connected;
int blockDevice;
IOSCANPVT ioscanpvt;
epicsMutexId lock;
epicsTimerQueueId queue[NUM_CALLBACK_PRIORITIES];
simRegDevMessage* msgFreelist[NUM_CALLBACK_PRIORITIES];
unsigned char buffer[1];
};
int simRegDevDebug = 0;
epicsExportAddress(int, simRegDevDebug);
/******** async processing *****************************/
void simRegDevCallback(void* arg);
int simRegDevAsynTransfer(
regDevice *device,
unsigned int dlen,
size_t nelem,
void* src,
void* dest,
void* pmask,
int prio,
regDevTransferComplete callback,
const char* user,
int isOutput)
{
simRegDevMessage* msg;
if (simRegDevDebug & (isOutput ? DBG_OUT : DBG_IN))
printf ("simRegDevAsynTransfer %s %s: copy %s %u bytes * 0x%" Z "x elements\n",
user, device->name, isOutput ? "out" : "in", dlen, nelem);
epicsMutexLock(device->lock);
if (device->msgFreelist[prio] == NULL)
{
msg = calloc(sizeof(simRegDevMessage),1);
if (msg)
msg->timer = epicsTimerQueueCreateTimer(device->queue[prio], simRegDevCallback, msg);
if (msg == NULL || msg->timer == NULL)
{
errlogSevPrintf(errlogMajor,
"simRegDevAllocMessage %s %s: out of memory\n", user, device->name);
if (msg) free(msg);
epicsMutexUnlock(device->lock);
return S_dev_noMemory;
}
}
else
{
msg = device->msgFreelist[prio];
device->msgFreelist[prio] = device->msgFreelist[prio]->next;
}
msg->next = NULL;
msg->device = device;
msg->dlen = dlen;
msg->nelem = nelem;
msg->src = src;
msg->dest = dest;
msg->pmask = pmask;
msg->prio = prio;
msg->callback = callback;
msg->user = user;
msg->isOutput = isOutput;
epicsMutexUnlock(device->lock);
if (simRegDevDebug & (isOutput ? DBG_OUT : DBG_IN))
printf ("simRegDevAsynTransfer %s %s: starting timer %g seconds\n",
user, device->name, nelem*0.01);
epicsTimerStartDelay(msg->timer, nelem*0.01);
return ASYNC_COMPLETION;
}
void simRegDevCallback(void* arg)
{
simRegDevMessage* msg = arg;
regDevice *device = msg->device;
regDevTransferComplete callback = msg->callback;
int status;
if (simRegDevDebug & (msg->isOutput ? DBG_OUT : DBG_IN))
printf ("simRegDevCallback %s %s: copy %u bytes * 0x%" Z "x elements\n",
msg->user, device->name, msg->dlen, msg->nelem);
epicsMutexLock(device->lock);
if (device->connected == 0)
{
status = S_dev_noDevice;
}
else
{
regDevCopy(msg->dlen, msg->nelem, msg->src, msg->dest, msg->pmask, device->swap);
status = S_dev_success;
}
msg->next = device->msgFreelist[msg->prio];
device->msgFreelist[msg->prio] = msg;
if (msg->isOutput)
{
/* We got new data: trigger all interested input records */
if (simRegDevDebug & DBG_OUT)
printf ("simRegDevCallback %s %s: trigger input records\n", msg->user, device->name);
scanIoRequest(device->ioscanpvt);
}
epicsMutexUnlock(device->lock);
if (simRegDevDebug & (msg->isOutput ? DBG_OUT : DBG_IN))
printf ("simRegDevCallback %s %s: call back status=%d\n", msg->user, device->name, status);
callback(msg->user, status);
}
/******** Support functions *****************************/
void simRegDevReport(
regDevice *device,
int level)
{
if (device && device->magic == MAGIC)
{
printf("simRegDev driver: %" Z "u bytes, %ssync%s, status=%s\n",
device->size,
device->lock ? "a" : "",
device->blockDevice ? " block" : "",
device->connected ? "connected" : "disconnected");
if (level > 0)
memDisplay(0, device->buffer, 1, device->size);
}
}
IOSCANPVT simRegDevGetInScanPvt(
regDevice *device,
size_t offset,
unsigned int dlen,
size_t nelem,
int ivec,
const char* name)
{
if (!device || device->magic != MAGIC)
{
errlogSevPrintf(errlogMajor,
"simRegDevGetInScanPvt %s: illegal device handle\n", name);
return NULL;
}
return device->ioscanpvt;
}
int simRegDevRead(
regDevice *device,
size_t offset,
unsigned int dlen,
size_t nelem,
void* pdata,
int prio,
regDevTransferComplete callback,
const char* user)
{
if (!device || device->magic != MAGIC)
{
errlogSevPrintf(errlogMajor,
"simRegDevRead %s: illegal device handle\n", user);
return S_dev_wrongDevice;
}
if (device->connected == 0)
{
return S_dev_noDevice;
}
if (simRegDevDebug & DBG_OUT)
{
printf ("simRegDevRead %s: pdata=%p, buffer=[%p ... %p]\n",
user, pdata, device->buffer, device->buffer+device->size);
}
if (pdata == device->buffer+offset)
{
if (simRegDevDebug & DBG_IN)
printf ("simRegDevRead %s %s:0x%" Z "x: %u bytes * 0x%" Z "x elements, direct map, no copy\n",
user, device->name, offset, dlen, nelem);
return S_dev_success;
}
if (simRegDevDebug & DBG_IN)
printf ("simRegDevRead %s %s:0x%" Z "x: %u bytes * 0x%" Z "x elements, prio=%d\n",
user, device->name, offset, dlen, nelem, prio);
if (callback && nelem > 1 && device->lock)
return simRegDevAsynTransfer(device, dlen, nelem,
device->buffer+offset, pdata, NULL, prio, callback, user, FALSE);
if (simRegDevDebug & DBG_IN)
printf ("simRegDevRead %s %s:0x%" Z "x: copy values\n",
user, device->name, offset);
regDevCopy(dlen, nelem, device->buffer+offset, pdata, NULL, device->swap);
return S_dev_success;
}
int simRegDevWrite(
regDevice *device,
size_t offset,
unsigned int dlen,
size_t nelem,
void* pdata,
void* pmask,
int prio,
regDevTransferComplete callback,
const char* user)
{
if (!device || device->magic != MAGIC)
{
errlogSevPrintf(errlogMajor,
"simRegDevWrite: illegal device handle\n");
return S_dev_wrongDevice;
}
if (device->connected == 0)
{
return S_dev_noDevice;
}
if (pdata == device->buffer+offset)
{
if (simRegDevDebug & DBG_OUT)
printf ("simRegDevWrite %s %s:0x%" Z "x: direct map, no copy\n",
user, device->name, offset);
return S_dev_success;
}
if (simRegDevDebug & DBG_OUT)
{
size_t n;
printf ("simRegDevWrite %s %s:0x%" Z "x: %u bytes * 0x%" Z "x elements, prio=%d\n",
user, device->name, offset, dlen, nelem, prio);
for (n=0; n<nelem && n<10; n++)
{
switch (dlen)
{
case 1:
printf (" %02x",((epicsUInt8*)pdata)[n*dlen]);
break;
case 2:
printf (" %04x",((epicsUInt16*)pdata)[n*dlen]);
break;
case 4:
printf (" %08x",((epicsUInt32*)pdata)[n*dlen]);
break;
case 8:
printf (" %08llx",((unsigned long long*)pdata)[n*dlen]);
break;
}
}
printf ("\n");
}
if (callback && nelem > 1 && device->lock)
return simRegDevAsynTransfer(device, dlen, nelem, pdata,
device->buffer+offset, pmask, prio, callback, user, TRUE);
if (simRegDevDebug & DBG_OUT)
printf ("simRegDevWrite %s %s:0x%" Z "x: copy values\n",
user, device->name, offset);
regDevCopy(dlen, nelem, pdata, device->buffer+offset, pmask, device->swap);
/* We got new data: trigger all interested input records */
if (simRegDevDebug & DBG_OUT)
printf ("simRegDevWrite %s: trigger input records\n", device->name);
scanIoRequest(device->ioscanpvt);
return S_dev_success;
}
static regDevSupport simRegDevSupport = {
simRegDevReport,
simRegDevGetInScanPvt,
NULL,
simRegDevRead,
simRegDevWrite,
};
/****** startup script configuration function ***********************/
int simRegDevConfigure(
const char* name,
size_t size,
int swapEndianFlag,
int async,
int blockDevice)
{
regDevice* device;
if (name == NULL)
{
printf("usage: simRegDevConfigure(\"name\", size, swapEndianFlag)\n");
printf("maps allocated memory block to device \"name\"");
printf("\"name\" must be a unique string on this IOC\n");
return S_dev_success;
}
device = (regDevice*)calloc(sizeof(regDevice)+size-1,1);
if (device == NULL)
{
errlogSevPrintf(errlogFatal,
"simRegDevConfigure %s: out of memory\n",
name);
return errno;
}
device->magic = MAGIC;
device->name = strdup(name);
device->size = size;
device->connected = 1;
device->swap = swapEndianFlag;
if (async)
{
int i;
device->lock = epicsMutexCreate();
for (i = 0; i < NUM_CALLBACK_PRIORITIES; i++)
{
const unsigned int prio [3] =
{epicsThreadPriorityLow, epicsThreadPriorityMedium, epicsThreadPriorityHigh};
device->queue[i] = epicsTimerQueueAllocate(FALSE, prio[i]);
}
}
regDevRegisterDevice(name, &simRegDevSupport, device, size);
device->blockDevice = blockDevice;
if (blockDevice)
regDevMakeBlockdevice(device, REGDEV_BLOCK_READ | REGDEV_BLOCK_WRITE, REGDEV_NO_SWAP, device->buffer);
scanIoInit(&device->ioscanpvt);
return S_dev_success;
}
int simRegDevAsyncConfigure(
const char* name,
size_t size,
int swapEndianFlag,
int blockFlag)
{
return simRegDevConfigure(name, size, swapEndianFlag, 1, blockFlag);
}
int simRegDevSetStatus(
const char* name,
int connected)
{
regDevice* device;
if (!name)
{
printf ("usage: simRegDevSetStatus name, 0|1\n");
return S_dev_badArgument;
}
device = regDevFind(name);
if (!device)
{
errlogSevPrintf(errlogFatal,
"simRegDevSetStatus: %s not found\n",
name);
return S_dev_noDevice;
}
if (device->magic != MAGIC)
{
errlogSevPrintf(errlogFatal,
"simRegDevSetStatus: %s is not a simRegDev\n",
name);
return S_dev_wrongDevice;
}
device->connected = connected;
if (simRegDevDebug >= 1)
printf ("simRegDevSetStatus %s: trigger input records\n", device->name);
scanIoRequest(device->ioscanpvt);
return S_dev_success;
}
int simRegDevSetData(
const char* name,
size_t offset,
int value)
{
regDevice* device;
if (!name)
{
printf ("usage: simRegDevSetData name, offset, value\n");
return S_dev_badArgument;
}
device = regDevFind(name);
if (!device)
{
errlogSevPrintf(errlogFatal,
"simRegDevSetData: %s not found\n",
name);
return S_dev_noDevice;
}
if (device->magic != MAGIC)
{
errlogSevPrintf(errlogFatal,
"simRegDevSetData: %s is not a simRegDev\n",
name);
return S_dev_wrongDevice;
}
if (offset > device->size)
{
errlogSevPrintf(errlogFatal,
"simRegDevSetData: %s offset %" Z "d out of range (0-%" Z "d)\n",
name, offset, device->size);
return S_dev_badSignalNumber;
}
device->buffer[offset] = value;
if (simRegDevDebug >= 1)
printf ("simRegDevSetData %s: trigger input records\n", device->name);
scanIoRequest(device->ioscanpvt);
return S_dev_success;
}
int simRegDevGetData(
const char* name,
size_t offset,
int *value)
{
regDevice* device;
if (!name)
{
printf ("usage: simRegDevGetData name, offset, &value\n");
return S_dev_badArgument;
}
device = regDevFind(name);
if (!device)
{
errlogSevPrintf(errlogFatal,
"simRegDevGetData: %s not found\n",
name);
return S_dev_noDevice;
}
if (device->magic != MAGIC)
{
errlogSevPrintf(errlogFatal,
"simRegDevGetData: %s is not a simRegDev\n",
name);
return S_dev_wrongDevice;
}
if (offset > device->size)
{
errlogSevPrintf(errlogFatal,
"simRegDevGetData: %s offset %" Z "d out of range (0-%" Z "d)\n",
name, offset, device->size);
return S_dev_badSignalNumber;
}
*value = device->buffer[offset];
return S_dev_success;
}
#ifndef EPICS_3_13
static const iocshArg simRegDevConfigureArg0 = { "name", iocshArgString };
static const iocshArg simRegDevConfigureArg1 = { "size", iocshArgInt };
static const iocshArg simRegDevConfigureArg2 = { "swapEndianFlag", iocshArgInt };
static const iocshArg simRegDevConfigureArg3 = { "blockDevice", iocshArgInt };
static const iocshArg * const simRegDevConfigureArgs[] = {
&simRegDevConfigureArg0,
&simRegDevConfigureArg1,
&simRegDevConfigureArg2,
&simRegDevConfigureArg3
};
static const iocshFuncDef simRegDevConfigureDef =
{ "simRegDevConfigure", 4, simRegDevConfigureArgs };
static void simRegDevConfigureFunc (const iocshArgBuf *args)
{
int status = simRegDevConfigure(
args[0].sval, args[1].ival, args[2].ival, 0, args[3].ival);
if (status != 0) epicsExit(1);
}
static const iocshFuncDef simRegDevAsyncConfigureDef =
{ "simRegDevAsyncConfigure", 4, simRegDevConfigureArgs };
static void simRegDevAsyncConfigureFunc (const iocshArgBuf *args)
{
int status = simRegDevAsyncConfigure(
args[0].sval, args[1].ival, args[2].ival, args[3].ival);
if (status != 0) epicsExit(1);
}
static const iocshArg simRegDevSetStatusArg0 = { "name", iocshArgString };
static const iocshArg simRegDevSetStatusArg1 = { "connected", iocshArgInt };
static const iocshArg * const simRegDevSetStatusArgs[] = {
&simRegDevSetStatusArg0,
&simRegDevSetStatusArg1
};
static const iocshFuncDef simRegDevSetStatusDef =
{ "simRegDevSetStatus", 2, simRegDevSetStatusArgs };
static void simRegDevSetStatusFunc (const iocshArgBuf *args)
{
simRegDevSetStatus(
args[0].sval, args[1].ival);
}
static const iocshArg simRegDevSetDataArg0 = { "name", iocshArgString };
static const iocshArg simRegDevSetDataArg1 = { "offset", iocshArgInt };
static const iocshArg simRegDevSetDataArg2 = { "value", iocshArgInt };
static const iocshArg * const simRegDevSetDataArgs[] = {
&simRegDevSetDataArg0,
&simRegDevSetDataArg1,
&simRegDevSetDataArg2
};
static const iocshFuncDef simRegDevSetDataDef =
{ "simRegDevSetData", 3, simRegDevSetDataArgs };
static void simRegDevSetDataFunc (const iocshArgBuf *args)
{
simRegDevSetData(
args[0].sval, args[1].ival, args[2].ival);
}
static void simRegDevRegistrar ()
{
iocshRegister(&simRegDevConfigureDef, simRegDevConfigureFunc);
iocshRegister(&simRegDevAsyncConfigureDef, simRegDevAsyncConfigureFunc);
iocshRegister(&simRegDevSetStatusDef, simRegDevSetStatusFunc);
iocshRegister(&simRegDevSetDataDef, simRegDevSetDataFunc);
}
epicsExportRegistrar(simRegDevRegistrar);
#endif