aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/cpu-firmware/machine_interface.c
blob: aec68230cbe3b3061017266a172c3705bc135a9f (plain)
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
/*
 *   CNC-remote-control
 *   Machine interface
 *
 *   Copyright (C) 2011 Michael Buesch <m@bues.ch>
 *
 *   This program is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU General Public License
 *   version 2 as published by the Free Software Foundation.
 *
 *   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.
 */

#include "machine_interface.h"
#include "machine_interface_internal.h"
#include "usb.h"
#include "usb_application.h"
#include "util.h"
#include "main.h"
#include "pdiusb.h"
#include "debug.h"
#include "lcd.h"
#include "tiny-list.h"

#include <avr/wdt.h>

#include <string.h>


struct tx_queue_entry {
	struct control_interrupt buffer;
	uint8_t size;
	uint8_t count;
	struct tiny_list list;
};

static struct tx_queue_entry tx_queue_entry_buffer[INTERRUPT_QUEUE_MAX_LEN];
static struct tiny_list tx_queued;
static struct tiny_list tx_free;
static uint8_t tx_free_count;
static bool irq_queue_overflow;
static uint8_t irq_sequence_number;


uint16_t active_devflags;


uint8_t interrupt_queue_freecount(void)
{
	return ATOMIC_LOAD(tx_free_count);
}

static void tqentry_free(struct tx_queue_entry *e)
{
	tlist_move_tail(&e->list, &tx_free);
	tx_free_count++;
}

static struct tx_queue_entry * tqentry_alloc(void)
{
	struct tx_queue_entry *e;

	if (tlist_is_empty(&tx_free))
		return NULL;
	e = tlist_last_entry(&tx_free, struct tx_queue_entry, list);
	tlist_move_tail(&e->list, &tx_queued);
	tx_free_count--;

	return e;
}

void usb_app_reset(void)
{
	uint8_t sreg, i;
	struct tx_queue_entry *e;

	sreg = irq_disable_save();

	memset(tx_queue_entry_buffer, 0, sizeof(tx_queue_entry_buffer));

	tlist_init(&tx_queued);
	tlist_init(&tx_free);
	for (i = 0; i < ARRAY_SIZE(tx_queue_entry_buffer); i++) {
		e = &tx_queue_entry_buffer[i];
		tlist_add_tail(&e->list, &tx_free);
	}
	tx_free_count = ARRAY_SIZE(tx_queue_entry_buffer);

	irq_queue_overflow = 0;
	irq_sequence_number = 0;

	irq_restore(sreg);
}

void usb_app_highpower(bool granted)
{
	leds_enable(granted);
}

uint16_t get_active_devflags(void)
{
	uint16_t flags;
	uint8_t sreg;

	sreg = irq_disable_save();
	flags = active_devflags;
	irq_restore(sreg);

	return flags;
}

static uint16_t do_modify_devflags(uint16_t mask, uint16_t set)
{
	uint8_t sreg;
	uint16_t flags;

	sreg = irq_disable_save();

	flags = active_devflags;
	flags |= mask & set;
	flags &= ~mask | set;
	if (flags != active_devflags) {
		active_devflags = flags;
		update_userinterface();
	}

	irq_restore(sreg);

	return flags;
}

void reset_devflags(void)
{
	do_modify_devflags(0xFFFF, 0);
}

void modify_devflags(uint16_t mask, uint16_t set)
{
	struct control_interrupt irq = {
		.id		= IRQ_DEVFLAGS,
	};
	uint8_t sreg;

	sreg = irq_disable_save();
	irq.devflags.flags = do_modify_devflags(mask, set);
	send_interrupt_discard_old(&irq, CONTROL_IRQ_SIZE(devflags));
	irq_restore(sreg);
}

static noreturn void enter_bootloader(void)
{
	debug_printf("Entering bootloader...\n");

	irq_disable();
	wdt_reset();

	pdiusb_exit();

	/* Jump to bootloader code */
	__asm__ __volatile__(
	"ijmp\n"
	: /* None */
	: [_Z]		"z" (BOOT_OFFSET / 2)
	);
	unreachable();
}

static int8_t rx_raw_message(const void *msg, uint8_t ctl_size,
			     void *reply_buf, uint8_t reply_buf_size)
{
	const struct control_message *ctl = msg;
	struct control_reply *reply = reply_buf;

	if (reply_buf_size < CONTROL_REPLY_MAX_SIZE)
		return -1;

	if (ctl_size < CONTROL_MSG_HDR_SIZE)
		goto err_size;
	if (ctl->flags & CONTROL_FLG_BOOTLOADER)
		goto err_context;

	switch (ctl->id) {
	case CONTROL_PING:
		break;
	case CONTROL_RESET: {
		reset_device_state();
		break;
	}
	case CONTROL_DEVFLAGS: {
		uint16_t flags;

		if (ctl_size < CONTROL_MSG_SIZE(devflags))
			goto err_size;

		flags = do_modify_devflags(ctl->devflags.mask,
					   ctl->devflags.set);

		init_control_reply(reply, REPLY_VAL16, 0, ctl->seqno);
		reply->val16.value = flags;
		return CONTROL_REPLY_SIZE(val16);
	}
	case CONTROL_AXISUPDATE: {
		if (ctl_size < CONTROL_MSG_SIZE(axisupdate))
			goto err_size;

		if (ctl->axisupdate.axis >= NR_AXIS)
			goto err_inval;
		axis_pos_update(ctl->axisupdate.axis, ctl->axisupdate.pos);
		break;
	}
	case CONTROL_SPINDLEUPDATE: {
		if (ctl_size < CONTROL_MSG_SIZE(spindleupdate))
			goto err_size;

		spindle_state_update(ctl->spindleupdate.state == SPINDLE_CW);
		break;
	}
	case CONTROL_FOUPDATE: {
		if (ctl_size < CONTROL_MSG_SIZE(feedoverride))
			goto err_size;

		feed_override_feedback_update(ctl->feedoverride.percent);
		break;
	}
	case CONTROL_AXISENABLE: {
		if (ctl_size < CONTROL_MSG_SIZE(axisenable))
			goto err_size;

		if (!ctl->axisenable.mask)
			goto err_inval;
		set_axis_enable_mask(ctl->axisenable.mask);
		break;
	}
	case CONTROL_ESTOPUPDATE: {
		if (ctl_size < CONTROL_MSG_SIZE(estopupdate))
			goto err_size;

		set_estop_state(!!ctl->estopupdate.asserted);
		break;
	}
	case CONTROL_SETINCREMENT: {
		if (ctl_size < CONTROL_MSG_SIZE(setincrement))
			goto err_size;

		if (!set_increment_at_index(ctl->setincrement.index,
					    ctl->setincrement.increment))
			goto err_inval;
		break;
	}
	case CONTROL_ENTERBOOT: {
		if (ctl_size < CONTROL_MSG_SIZE(enterboot))
			goto err_size;

		if (!control_enterboot_magic_ok(ctl))
			goto err_inval;

		switch (ctl->enterboot.target) {
		case TARGET_CPU:
			lcd_clear_buffer();
			lcd_printf("BOOTLOADER");
			lcd_commit();
			enter_bootloader();
			break;
		case TARGET_COPROC:
		default:
			goto err_context;
		}
		break;
	}
	case CONTROL_EXITBOOT:
		break;
	default:
		goto err_command;
	}

	init_control_reply(reply, REPLY_OK, 0, ctl->seqno);
	return CONTROL_REPLY_SIZE(ok);

err_command:
	reply->error.code = CTLERR_COMMAND;
	goto error;
err_inval:
	reply->error.code = CTLERR_INVAL;
	goto error;
err_size:
	reply->error.code = CTLERR_SIZE;
	goto error;
err_context:
	reply->error.code = CTLERR_CONTEXT;
	goto error;

error:
	init_control_reply(reply, REPLY_ERROR, 0, ctl->seqno);
	return CONTROL_REPLY_SIZE(error);
}

uint8_t usb_app_control_setup_rx(struct usb_ctrl *ctl, uint8_t *reply_buf)
{
	DBG(usb_printstr("USB-APP: Received control frame"));

	return USB_APP_UNHANDLED;
}

uint8_t usb_app_ep1_rx(uint8_t *data, uint8_t size,
		       uint8_t *reply_buf)
{
	DBG(usb_printstr("USB-APP: Received EP1 frame"));

	return USB_APP_UNHANDLED;
}

uint8_t usb_app_ep2_rx(uint8_t *data, uint8_t size,
		       uint8_t *reply_buf)
{
	int8_t res;

	DBG(usb_printstr("USB-APP: Received EP2 frame"));

	res = rx_raw_message(data, size, reply_buf, USBCFG_EP1_MAXSIZE);
	if (res < 0)
		return USB_APP_UNHANDLED;
	return (uint8_t)res;
}

/* Interrupt endpoint */
uint8_t usb_app_ep1_tx_poll(void *buffer)
{
	struct tx_queue_entry *e;
	struct control_interrupt *irqbuf = buffer;
	uint8_t ret_size, sreg;

	sreg = irq_disable_save();

	if (tlist_is_empty(&tx_queued)) {
		irq_restore(sreg);
		return 0; /* Zero length reply */
	}

	e = tlist_first_entry(&tx_queued, struct tx_queue_entry, list);

	BUILD_BUG_ON(sizeof(e->buffer) > USBCFG_EP1_MAXSIZE);
	memcpy(irqbuf, &e->buffer, e->size);
	ret_size = e->size;

	irqbuf->seqno = irq_sequence_number++;
	if (unlikely(irq_queue_overflow)) {
		irq_queue_overflow = 0;
		irqbuf->flags |= IRQ_FLG_TXQOVR;
	}

	if (--e->count == 0)
		tqentry_free(e);

	irq_restore(sreg);

	return ret_size;
}

uint8_t usb_app_ep2_tx_poll(void *buffer)
{
	return USB_APP_UNHANDLED;
}

static bool interface_queue_interrupt(const struct control_interrupt *irq,
				      uint8_t size, uint8_t count)
{
	struct control_interrupt *irqbuf;
	struct tx_queue_entry *e;
	uint8_t sreg;

	BUG_ON(size > sizeof(tx_queue_entry_buffer[0].buffer));

	sreg = irq_disable_save();

	e = tqentry_alloc();
	if (!e) {
		irq_queue_overflow = 1;
		return 0;
	}
	e->size = size;
	e->count = count;
	irqbuf = &e->buffer;
	memcpy(irqbuf, irq, size);

	irq_restore(sreg);

	return 1;
}

static void interface_discard_irqs_by_id(uint8_t irq_id)
{
	struct tx_queue_entry *e, *tmp_e;
	uint8_t sreg;

	sreg = irq_disable_save();
	tlist_for_each_delsafe(e, tmp_e, &tx_queued, list) {
		if (e->buffer.id == irq_id) {
			/* Dequeue and discard it. */
			tqentry_free(e);
		}
	}
	irq_restore(sreg);
}

static bool interface_drop_one_droppable_irq(void)
{
	struct tx_queue_entry *e;
	uint8_t sreg;
	bool dropped = 0;

	sreg = irq_disable_save();
	tlist_for_each(e, &tx_queued, list) { /* not delsafe. Fine. */
		if (e->buffer.flags & IRQ_FLG_DROPPABLE) {
			/* Dequeue and discard it. */
			tqentry_free(e);
			dropped = 1;
			break;
		}
	}
	irq_restore(sreg);

	return dropped;
}

void send_interrupt_count(const struct control_interrupt *irq,
			  uint8_t size, uint8_t count)
{
	bool ok, dropped;
	uint8_t i;

	while (1) {
		for (i = 0; i < 5; i++) {
			ok = interface_queue_interrupt(irq, size, count);
			if (likely(ok))
				return;

			if (irqs_disabled())
				break; /* Out of luck. */
			_delay_ms(5);
		}
		debug_printf("Control IRQ queue overflow\n");

		/* Try to drop IRQs, if this is a higher priority IRQ. */
		if (!(irq->flags & IRQ_FLG_PRIO))
			break;
		dropped = interface_drop_one_droppable_irq();
		if (!dropped)
			break;
		debug_printf("Dropped one droppable IRQ\n");
	}
}

void send_interrupt_discard_old(const struct control_interrupt *irq,
				uint8_t size)
{
	interface_discard_irqs_by_id(irq->id);
	send_interrupt(irq, size);
}
bues.ch cgit interface