summaryrefslogtreecommitdiff
path: root/firmware/src/os/usb_benchmark.c
blob: 967efbbded179e6524f5463e2f6c956383e4f925 (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
/* AT91SAM7 USB benchmark routines for OpenPCD / OpenPICC
 * (C) 2006 by Harald Welte <hwelte@hmw-consulting.de>
 *
 *  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 2 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, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#include <errno.h>
#include <string.h>
#include <lib_AT91SAM7.h>
#include <os/led.h>
#include <os/dbgu.h>
#include <os/pcd_enumerate.h>
#include <os/usb_handler.h>
#include <os/req_ctx.h>
#include "../openpcd.h"

static struct req_ctx dummy_rctx;
static struct req_ctx empty_rctx;

static void usbtest_tx_transfer(unsigned int num_pkts)
{
	unsigned int i;

#if 0
#warning please reimplement refill userspecified rctx 
	for (i = 0; i < num_pkts; i++) {
		/* send 16 packets of 64byte */
		while (udp_refill_ep(2, &dummy_rctx) < 0) 
			;
	}
	/* send one packet of 0 byte */
	while (udp_refill_ep(2, &empty_rctx) < 0) 
		;
#endif
}

static int usbtest_rx(struct req_ctx *rctx)
{
	struct openpcd_hdr *poh = (struct openpcd_hdr *) rctx->data;
	struct req_ctx *rctx_new;
	int i;

	switch (poh->cmd) {
	case OPENPCD_CMD_USBTEST_IN:
		DEBUGP("USBTEST_IN ");
		/* test bulk in pipe */
		if (poh->val > RCTX_SIZE_LARGE/AT91C_EP_OUT_SIZE)
			poh->val = RCTX_SIZE_LARGE/AT91C_EP_OUT_SIZE;
		rctx_new = req_ctx_find_get(1, RCTX_STATE_FREE,
					    RCTX_STATE_MAIN_PROCESSING);
		if (!rctx_new) {
			DEBUGP("NO RCTX ");
			return USB_ERR(0);
		}

		rctx_new->tot_len = poh->val * AT91C_EP_OUT_SIZE;
		req_ctx_set_state(rctx_new, RCTX_STATE_UDP_EP2_PENDING);
		led_toggle(2);
		break;
	case OPENPCD_CMD_USBTEST_OUT:
		DEBUGP("USBTEST_IN ");
		/* test bulk out pipe */
		return USB_ERR(USB_ERR_CMD_NOT_IMPL);
		break;
	}

	req_ctx_put(rctx);
	return 1;
}

void usbtest_init(void)
{
	dummy_rctx.tot_len = 64;
	memset(dummy_rctx.data, 0x23, 64);

	empty_rctx.tot_len = 0;

	usb_hdlr_register(&usbtest_rx, OPENPCD_CMD_CLS_USBTEST);
}
personal git repositories of Harald Welte. Your mileage may vary