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
|
/* This file is part of the program psim.
Copyright (C) 1997,2008, Joel Sherrill <joel@OARcorp.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _HW_SEM_C_
#define _HW_SEM_C_
#include "device_table.h"
#include <string.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <errno.h>
/* DEVICE
sem - provide access to a unix semaphore
DESCRIPTION
This device implements an interface to a unix semaphore.
PROPERTIES
reg = <address> <size> (required)
Determine where the memory lives in the parents address space.
key = <integer> (required)
This is the key of the unix semaphore.
EXAMPLES
Enable tracing of the sem:
| bash$ psim -t sem-device \
Configure a UNIX semaphore using key 0x12345678 mapped into psim
address space at 0xfff00000:
| -o '/sem@0xfff00000/reg 0xfff00000 0x80000' \
| -o '/sem@0xfff00000/key 0x12345678' \
sim/ppc/run -o '/#address-cells 1' \
-o '/sem@0xfff00000/reg 0xfff00000 12' \
-o '/sem@0xfff00000/key 0x12345678' ../psim-hello/hello
REGISTERS
offset 0 - lock count
offset 4 - lock operation
offset 8 - unlock operation
All reads return the current or resulting count.
BUGS
None known.
*/
#ifdef HAVE_SYSV_SEM
typedef struct _hw_sem_device {
unsigned_word physical_address;
key_t key;
int id;
int initial;
int count;
} hw_sem_device;
#ifndef HAVE_UNION_SEMUN
union semun {
int val;
struct semid_ds *buf;
unsigned short int *array;
#if defined(__linux__)
struct seminfo *__buf;
#endif
};
#endif
static void
hw_sem_init_data(device *me)
{
hw_sem_device *sem = (hw_sem_device*)device_data(me);
const device_unit *d;
int status;
union semun help = {};
/* initialize the properties of the sem */
if (device_find_property(me, "key") == NULL)
error("sem_init_data() required key property is missing\n");
if (device_find_property(me, "value") == NULL)
error("sem_init_data() required value property is missing\n");
sem->key = (key_t) device_find_integer_property(me, "key");
DTRACE(sem, ("semaphore key (%d)\n", sem->key) );
sem->initial = (int) device_find_integer_property(me, "value");
DTRACE(sem, ("semaphore initial value (%d)\n", sem->initial) );
d = device_unit_address(me);
sem->physical_address = d->cells[ d->nr_cells-1 ];
DTRACE(sem, ("semaphore physical_address=0x%x\n", sem->physical_address));
/* Now to initialize the semaphore */
if ( sem->initial != -1 ) {
sem->id = semget(sem->key, 1, IPC_CREAT | 0660);
if (sem->id == -1)
error("hw_sem_init_data() semget failed\n");
help.val = sem->initial;
status = semctl( sem->id, 0, SETVAL, help );
if (status == -1)
error("hw_sem_init_data() semctl -- set value failed\n");
} else {
sem->id = semget(sem->key, 1, 0660);
if (sem->id == -1)
error("hw_sem_init_data() semget failed\n");
}
sem->count = semctl( sem->id, 0, GETVAL, help );
if (sem->count == -1)
error("hw_sem_init_data() semctl -- get value failed\n");
DTRACE(sem, ("semaphore OS value (%d)\n", sem->count) );
}
static void
hw_sem_attach_address_callback(device *me,
attach_type attach,
int space,
unsigned_word addr,
unsigned nr_bytes,
access_type access,
device *client) /*callback/default*/
{
hw_sem_device *sem = (hw_sem_device*)device_data(me);
if (space != 0)
error("sem_attach_address_callback() invalid address space\n");
if (nr_bytes == 12)
error("sem_attach_address_callback() invalid size\n");
sem->physical_address = addr;
DTRACE(sem, ("semaphore physical_address=0x%x\n", addr));
}
static unsigned
hw_sem_io_read_buffer(device *me,
void *dest,
int space,
unsigned_word addr,
unsigned nr_bytes,
cpu *processor,
unsigned_word cia)
{
hw_sem_device *sem = (hw_sem_device*)device_data(me);
struct sembuf sb;
int status;
uint32_t u32;
union semun help = {};
/* do we need to worry about out of range addresses? */
DTRACE(sem, ("semaphore read addr=0x%x length=%d\n", addr, nr_bytes));
if (!(addr >= sem->physical_address && addr <= sem->physical_address + 11))
error("hw_sem_io_read_buffer() invalid address - out of range\n");
if ((addr % 4) != 0)
error("hw_sem_io_read_buffer() invalid address - alignment\n");
if (nr_bytes != 4)
error("hw_sem_io_read_buffer() invalid length\n");
switch ( (addr - sem->physical_address) / 4 ) {
case 0: /* OBTAIN CURRENT VALUE */
break;
case 1: /* LOCK */
sb.sem_num = 0;
sb.sem_op = -1;
sb.sem_flg = 0;
status = semop(sem->id, &sb, 1);
if (status == -1) {
perror( "hw_sem.c: lock" );
error("hw_sem_io_read_buffer() sem lock\n");
}
DTRACE(sem, ("semaphore lock %d\n", sem->count));
break;
case 2: /* UNLOCK */
sb.sem_num = 0;
sb.sem_op = 1;
sb.sem_flg = 0;
status = semop(sem->id, &sb, 1);
if (status == -1) {
perror( "hw_sem.c: unlock" );
error("hw_sem_io_read_buffer() sem unlock\n");
}
DTRACE(sem, ("semaphore unlock %d\n", sem->count));
break;
default:
error("hw_sem_io_read_buffer() invalid address - unknown error\n");
break;
}
/* assume target is big endian */
u32 = H2T_4(semctl( sem->id, 0, GETVAL, help ));
DTRACE(sem, ("semaphore OS value (%d)\n", u32) );
if (u32 == 0xffffffff) {
perror( "hw_sem.c: getval" );
error("hw_sem_io_read_buffer() semctl -- get value failed\n");
}
memcpy(dest, &u32, nr_bytes);
return nr_bytes;
}
static device_callbacks const hw_sem_callbacks = {
{ generic_device_init_address, hw_sem_init_data },
{ hw_sem_attach_address_callback, }, /* address */
{ hw_sem_io_read_buffer, NULL }, /* IO */
{ NULL, }, /* DMA */
{ NULL, }, /* interrupt */
{ NULL, }, /* unit */
NULL,
};
static void *
hw_sem_create(const char *name,
const device_unit *unit_address,
const char *args)
{
hw_sem_device *sem = ZALLOC(hw_sem_device);
return sem;
}
const device_descriptor hw_sem_device_descriptor[] = {
{ "sem", hw_sem_create, &hw_sem_callbacks },
{ NULL },
};
#else
const device_descriptor hw_sem_device_descriptor[] = {
{ NULL },
};
#endif /* HAVE_SYSV_SEM */
#endif /* _HW_SEM_C_ */
|