summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gaelco3d.c
blob: 7142991918e68dd5a26df70857475bc4f3175ae4 (plain) (blame)
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
/***************************************************************************

    Gaelco 3D serial hardware

	Couriersud, early 2010

	Not all lines are fully understood. There is some handshaking going
	on on send which is not fully understood. Those wishing to have a look
	at this:

	Serial send:          0x1fca (radikalb, 68020) 1866e (surfplnt)
	Serial receive:       0x1908 (radikalb, 68020) 185ae

	The receive is interrupt driven (interrupt 6) and the send is
	initiated out of the normal program loop. There is the chance
	of race conditions in mame.

	To run two instances of radikalb on *nix, use the following

	a) Uncomment SHARED_MEM_DRIVER below
	b) Open two terminals
	c) In terminal 1: mkdir /tmp/x1; cd /tmp/x1; /path/to/mame64 -np 2 -mt -rp /mnt/mame/romlib/r -inipath . radikalb -w -nomaximize -inipath .
	d) In terminal 2: mkdir /tmp/x2; cd /tmp/x2; /path/to/mame64 -np 2 -mt -rp /mnt/mame/romlib/r -inipath . radikalb -w -nomaximize -inipath .
	e) Set one instance to be master and one to be slave in service mode
	f) Have fun

***************************************************************************/

#include "emu.h"
#include "gaelco3d.h"

//#define SHARED_MEM_DRIVER		 (1)

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef _MSC_VER
#include <io.h>
#define	S_IRWXU	(_S_IREAD | _S_IWRITE | _S_IEXEC)
#else
#include <unistd.h>
#endif
#include <errno.h>
#ifdef SHARED_MEM_DRIVER
#include <sys/mman.h>
#endif

#define VERBOSE		(0)
#if VERBOSE
#define LOGMSG(x) 	logerror x
#else
#define LOGMSG(x)	do {} while (0);
#endif

/*
 * 115200 seems plausible, radikalb won't work below this speed
 * surfplnt will not work below 460800 ....
 * speedup will not work above 115200
 * 10 bits = 8 data + 1 start + 1 stop
 */

#define LINK_BAUD (115200*4)
//Only for speedup
//#define LINK_BAUD (115200)
#define LINK_BITS 10

#define LINK_FREQ (LINK_BAUD / LINK_BITS)

/* Sync up the instances 8 times for each byte transfered */
#define SYNC_MULT (4)

#define SYNC_FREQ (15000000 / 20) //(LINK_FREQ * SYNC_MULT)

/* allow for slight differences in execution speed */

#define LINK_SLACK ((SYNC_MULT / 4) + 1)
#define LINK_SLACK_B ((LINK_SLACK / 3) + 1)


typedef struct _buf_t buf_t;
struct _buf_t
{
	volatile UINT8 data;
	volatile UINT8 stat;
	volatile int cnt;
	volatile int data_cnt;
};

typedef struct _shmem_t shmem_t;
struct _shmem_t
{
	volatile INT32 	lock;
	buf_t				buf[2];
};

typedef struct _osd_shared_mem osd_shared_mem;

typedef struct _gaelco_serial_state gaelco_serial_state;
struct _gaelco_serial_state
{
	device_t *device;
	devcb_resolved_write_line irq_func;

	UINT8 status;
	int last_in_msg_cnt;
	int slack_cnt;

	emu_timer *sync_timer;

	buf_t *in_ptr;
	buf_t *out_ptr;
	osd_shared_mem *os_shmem;
	shmem_t *shmem;
};

struct _osd_shared_mem
{
	char *fn;
	size_t size;
	void *ptr;
	int creator;
};

/* code below currently works on unix only */
#ifdef SHARED_MEM_DRIVER
static osd_shared_mem *osd_sharedmem_alloc(const char *path, int create, size_t size)
{
	int fd;
	osd_shared_mem *os_shmem = (osd_shared_mem *) osd_malloc(sizeof(osd_shared_mem));

	if (create)
	{
		char *buf = (char *) osd_malloc(size);
		memset(buf,0, size);

		fd = open(path, O_RDWR | O_CREAT, S_IRWXU);
        write(fd, buf, size);
        os_shmem->creator = 1;

	}
	else
	{
		fd = open(path, O_RDWR);
		if (fd == -1)
		{
			osd_free(os_shmem);
			return NULL;
		}
        os_shmem->creator = 0;
	}
	os_shmem->fn = (char *) osd_malloc(strlen(path)+1);
	strcpy(os_shmem->fn, path);

	assert(fd != -1);

	os_shmem->ptr = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
	os_shmem->size =size;
	close(fd);
	return os_shmem;
}

static void osd_sharedmem_free(osd_shared_mem *os_shmem)
{
	munmap(os_shmem->ptr, os_shmem->size);
	if (os_shmem->creator)
		unlink(os_shmem->fn);
	osd_free(os_shmem->fn);
	osd_free(os_shmem);
}

static void *osd_sharedmem_ptr(osd_shared_mem *os_shmem)
{
	return os_shmem->ptr;
}
#else
static osd_shared_mem *osd_sharedmem_alloc(const char *path, int create, size_t size)
{
	int fd;
	osd_shared_mem *os_shmem = (osd_shared_mem *) osd_malloc(sizeof(osd_shared_mem));

	if (create)
	{
		char *buf = (char *) osd_malloc(size);
		memset(buf,0, size);

		fd = open(path, O_RDWR | O_CREAT, S_IRWXU);
        write(fd, buf, size);
        os_shmem->creator = 1;

	}
	else
	{
		fd = open(path, O_RDWR);
		if (fd == -1)
		{
			osd_free(os_shmem);
			return NULL;
		}
        os_shmem->creator = 0;
	}
	os_shmem->fn = (char *) osd_malloc(strlen(path)+1);
	strcpy(os_shmem->fn, path);

	assert(fd != -1);

	os_shmem->ptr = (void *) osd_malloc(size);
	os_shmem->size =size;
	close(fd);
	return os_shmem;
}

static void osd_sharedmem_free(osd_shared_mem *os_shmem)
{
	osd_free(os_shmem->ptr);
	if (os_shmem->creator)
		unlink(os_shmem->fn);
	osd_free(os_shmem->fn);
	osd_free(os_shmem);
}

static void *osd_sharedmem_ptr(osd_shared_mem *os_shmem)
{
	return os_shmem->ptr;
}
#endif

/***************************************************************************
    INLINE FUNCTIONS
***************************************************************************/

/*-------------------------------------------------
    get_safe_token - convert a device's token
    into a gaelco_serial_state
-------------------------------------------------*/

INLINE gaelco_serial_state *get_token(device_t *device)
{
	assert(device != NULL);
	assert(device->type() == GAELCO_SERIAL);
	return (gaelco_serial_state *) downcast<legacy_device_base *>(device)->token();
}

INLINE const gaelco_serial_interface *get_interface(device_t *device)
{
	assert(device != NULL);
	assert(device->type() == GAELCO_SERIAL);
	return (gaelco_serial_interface *) downcast<legacy_device_base *>(device)->baseconfig().static_config();
}

INLINE void shmem_lock(shmem_t *shmem)
{
	while (atomic_exchange32(&shmem->lock,1) == 0)
		;
}

INLINE void shmem_unlock(shmem_t *shmem)
{
	atomic_exchange32(&shmem->lock,0);
}

/***************************************************************************
    STATIC FUNCTIONS
***************************************************************************/


static TIMER_CALLBACK( set_status_cb )
{
	gaelco_serial_state *state = (gaelco_serial_state *) ptr;
	UINT8 mask = param >> 8;
	UINT8 set = param & 0xff;

	state->status &= mask;
	state->status |= set;
}

static void set_status(gaelco_serial_state *state, UINT8 mask, UINT8 set, int wait)
{
	timer_set(state->device->machine, ATTOTIME_IN_HZ(wait),
			state, (mask << 8)|set, set_status_cb);
}

static void process_in(gaelco_serial_state *state)
{
	int t;

	if ((state->in_ptr->stat & GAELCOSER_STATUS_RESET) != 0)
		state->out_ptr->cnt = 0;

	/* new data available ? */
	t = state->in_ptr->data_cnt;
	if (t != state->last_in_msg_cnt)
	{
		state->last_in_msg_cnt = t;
		if (state->in_ptr->cnt > 10)
		{
			state->status &= ~GAELCOSER_STATUS_READY;
			LOGMSG(("command receive %02x at %d (%d)\n", state->in_ptr->data, state->out_ptr->cnt, state->in_ptr->cnt));
			if ((state->status & GAELCOSER_STATUS_IRQ_ENABLE) != 0)
			{
				devcb_call_write_line(&state->irq_func, 1);
				LOGMSG(("irq!\n"));
			}
		}
	}
}

static void sync_link(gaelco_serial_state *state)
{
	volatile buf_t *buf = state->in_ptr;
	int breakme = 1;
	do
	{
		shmem_lock(state->shmem);
		process_in(state);
		/* HACK: put some timing noise on the line */
		if (buf->cnt + state->slack_cnt > state->out_ptr->cnt)
			breakme = 0;
		/* stop if not connected .. */
		if ((state->out_ptr->stat & GAELCOSER_STATUS_RESET) != 0)
			breakme = 0;
		shmem_unlock(state->shmem);
	} while (breakme);

	state->slack_cnt++;
	state->slack_cnt = (state->slack_cnt % LINK_SLACK) + LINK_SLACK_B;

	shmem_lock(state->shmem);
	state->out_ptr->stat &= ~GAELCOSER_STATUS_RESET;
	shmem_unlock(state->shmem);
}

static TIMER_CALLBACK( link_cb )
{
	gaelco_serial_state *state = (gaelco_serial_state *) ptr;

	shmem_lock(state->shmem);
	state->out_ptr->cnt++;
	sync_link(state);
	shmem_unlock(state->shmem);
}


/***************************************************************************
    INTERFACE FUNCTIONS
***************************************************************************/



WRITE8_DEVICE_HANDLER( gaelco_serial_irq_enable )
{
	LOGMSG(("???? irq enable %d\n", data));
}

READ8_DEVICE_HANDLER( gaelco_serial_status_r)
{
	gaelco_serial_state *serial = get_token(device);
	UINT8 ret = 0;

	shmem_lock(serial->shmem);
	process_in(serial);
	if ((serial->status & GAELCOSER_STATUS_READY) != 0)
		ret |= 0x01;
	if ((serial->in_ptr->stat & GAELCOSER_STATUS_RTS) != 0)
		ret |= 0x02;
	return ret;
	shmem_unlock(serial->shmem);
}

WRITE8_DEVICE_HANDLER( gaelco_serial_data_w)
{
	gaelco_serial_state *serial = get_token(device);

	shmem_lock(serial->shmem);

	serial->out_ptr->data = data;
	serial->status &= ~GAELCOSER_STATUS_READY;
	serial->out_ptr->data_cnt++;

	set_status(serial, ~GAELCOSER_STATUS_READY, GAELCOSER_STATUS_READY, LINK_FREQ );

	shmem_unlock(serial->shmem);
	LOGMSG(("command send %02x at %d\n", data, serial->out_ptr->cnt));
}

READ8_DEVICE_HANDLER( gaelco_serial_data_r)
{
	gaelco_serial_state *serial = get_token(device);
	UINT8 ret;

	shmem_lock(serial->shmem);
	process_in(serial);
	ret = (serial->in_ptr->data & 0xff);

	devcb_call_write_line(&serial->irq_func, 0);
	LOGMSG(("read %02x at %d (%d)\n", ret, serial->out_ptr->cnt, serial->in_ptr->cnt));

	/* if we are not sending, mark as as ready */
	if ((serial->status & GAELCOSER_STATUS_SEND) == 0)
		serial->status |= GAELCOSER_STATUS_READY;

	shmem_unlock(serial->shmem);
	return ret;
}

WRITE8_DEVICE_HANDLER( gaelco_serial_unknown_w)
{
	gaelco_serial_state *serial = get_token(device);

	shmem_lock(serial->shmem);
	LOGMSG(("???? unknown serial access %d\n", data));
	shmem_unlock(serial->shmem);

}

WRITE8_DEVICE_HANDLER( gaelco_serial_rts_w )
{
	gaelco_serial_state *serial = get_token(device);

	shmem_lock(serial->shmem);

	if (data == 0)
		serial->out_ptr->stat |= GAELCOSER_STATUS_RTS;
	else
	{
		//Commented out for now
		//serial->status |= GAELCOSER_STATUS_READY;
		serial->out_ptr->stat &= ~GAELCOSER_STATUS_RTS;
	}

	shmem_unlock(serial->shmem);
}

WRITE8_DEVICE_HANDLER( gaelco_serial_tr_w)
{
	gaelco_serial_state *serial = get_token(device);

	LOGMSG(("set transmit %d\n", data));
	shmem_lock(serial->shmem);
	if ((data & 0x01) != 0)
		serial->status |= GAELCOSER_STATUS_SEND;
	else
		serial->status &= ~GAELCOSER_STATUS_SEND;

	shmem_unlock(serial->shmem);
}


/***************************************************************************
    DEVICE INTERFACE
***************************************************************************/

#define PATH_NAME "/tmp/gaelco_serial"

static DEVICE_START( gaelco_serial )
{
	gaelco_serial_state *state = get_token(device);
	const gaelco_serial_interface *intf = get_interface(device);

	/* validate arguments */
	assert(device != NULL);
	assert(strlen(device->tag()) < 20);

	/* clear out CIA structure, and copy the interface */
	memset(state, 0, sizeof(*state));
	state->device = device;

	devcb_resolve_write_line(&state->irq_func, &intf->irq_func, device);
	state->sync_timer = timer_alloc(device->machine, link_cb, state);

	/* register for save states */
	//state_save_register_device_item(device, 0, earom->offset);
	//state_save_register_device_item(device, 0, earom->data);

#ifdef SHARED_MEM_DRIVER
	timer_adjust_periodic(state->sync_timer, attotime_zero,0,ATTOTIME_IN_HZ(SYNC_FREQ));
#endif

	state->os_shmem = osd_sharedmem_alloc(PATH_NAME, 0, sizeof(shmem_t));
	if (state->os_shmem == NULL)
	{
		state->os_shmem = osd_sharedmem_alloc(PATH_NAME, 1, sizeof(shmem_t));
		state->shmem = (shmem_t *) osd_sharedmem_ptr(state->os_shmem);

		state->in_ptr = &state->shmem->buf[0];
		state->out_ptr = &state->shmem->buf[1];
	}
	else
	{
		state->shmem = (shmem_t *) osd_sharedmem_ptr(state->os_shmem);
		state->in_ptr = &state->shmem->buf[1];
		state->out_ptr = &state->shmem->buf[0];
	}
}

static void buf_reset(buf_t *buf)
{
	buf->stat = GAELCOSER_STATUS_RTS| GAELCOSER_STATUS_RESET;
	buf->data = 0;
	buf->data_cnt = -1;
	buf->cnt = 0;
}

static DEVICE_RESET( gaelco_serial )
{
	gaelco_serial_state *state = get_token(device);

	state->status = GAELCOSER_STATUS_READY 	|GAELCOSER_STATUS_IRQ_ENABLE ;

	state->last_in_msg_cnt = -1;
	state->slack_cnt = LINK_SLACK_B;

	shmem_lock(state->shmem);
	buf_reset(state->out_ptr);
	buf_reset(state->in_ptr);
	shmem_unlock(state->shmem);
}

static DEVICE_STOP( gaelco_serial )
{
	gaelco_serial_state *state = get_token(device);

	shmem_lock(state->shmem);
	buf_reset(state->out_ptr);
	buf_reset(state->in_ptr);
	shmem_unlock(state->shmem);

	osd_sharedmem_free(state->os_shmem);
}

DEVICE_GET_INFO( gaelco_serial )
{
	switch (state)
	{
		/* --- the following bits of info are returned as 64-bit signed integers --- */
		case DEVINFO_INT_TOKEN_BYTES:					info->i = sizeof(gaelco_serial_state);	break;
		case DEVINFO_INT_INLINE_CONFIG_BYTES:			info->i = 0;							break;
		//case DEVINFO_INT_CLASS:							info->i = DEVICE_CLASS_PERIPHERAL;		break;

		/* --- the following bits of info are returned as pointers to data or functions --- */
		case DEVINFO_FCT_START:							info->start = DEVICE_START_NAME(gaelco_serial);break;
		case DEVINFO_FCT_STOP:							info->stop = DEVICE_STOP_NAME(gaelco_serial);break;
		case DEVINFO_FCT_RESET:							info->reset = DEVICE_RESET_NAME(gaelco_serial);break;

		/* --- the following bits of info are returned as NULL-terminated strings --- */
		case DEVINFO_STR_NAME:							strcpy(info->s, "gaelco_serial");		break;
		case DEVINFO_STR_FAMILY:						strcpy(info->s, "SERIAL");				break;
		case DEVINFO_STR_VERSION:						strcpy(info->s, "1.0");					break;
		case DEVINFO_STR_SOURCE_FILE:					strcpy(info->s, __FILE__);				break;
		case DEVINFO_STR_CREDITS:						strcpy(info->s, "Copyright Nicola Salmoria and the MAME Team"); break;
	}
}


DEFINE_LEGACY_DEVICE(GAELCO_SERIAL, gaelco_serial);