aboutsummaryrefslogtreecommitdiff
path: root/src/usb.c
blob: 847dab486876f4963c3bcfe02a87b70eae96f892 (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
/*
 * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
 *
 * 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/>.
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/types.h>
#include <libusb.h>

#include "omap-usb-boot.h"
#include "usb.h"

int usb_open(struct context *context, struct omap_description **descriptions, size_t descriptions_count)
{
	struct libusb_device **list = NULL;
	struct libusb_device_handle *handle = NULL;
	struct libusb_device_descriptor descriptor;
	int configuration;
	int speed;
	char device_name[32];
	size_t count;
	size_t i;
	size_t j;
	size_t k;
	int rc;

	if (context == NULL)
		return -1;

	rc = libusb_init(NULL);
	if (rc < 0) {
		fprintf(stderr, "Initializing USB failed\n");
		return -1;
	}

	do {
		rc = libusb_get_device_list(NULL, &list);
		if (rc < 0) {
			fprintf(stderr, "Getting USB device list failed\n");
			goto error;
		}

		count = (size_t) rc;

		for (i = 0; i < count; i++) {
			rc = libusb_get_device_descriptor(list[i], &descriptor);
			if (rc < 0) {
				fprintf(stderr, "Getting USB device descriptor failed\n");
				goto error;
			}

			for (j = 0; j < descriptions_count; j++) {
				for (k = 0; k < descriptions[j]->usb_device_ids_count; k++) {
					if (descriptions[j]->usb_device_ids[k].vendor_id == descriptor.idVendor && descriptions[j]->usb_device_ids[k].product_id == descriptor.idProduct) {
						speed = libusb_get_device_speed(list[i]);
						if (speed != LIBUSB_SPEED_HIGH) {
							fprintf(stderr, "Configuring High-Speed failed\n");
							goto error;
						}

						rc = libusb_open(list[i], &handle);
						if (rc < 0) {
							fprintf(stderr, "Opening USB device failed\n");
							fprintf(stderr, "\nYou may not have the rights to do this\n");
							goto error;
						}

						rc = libusb_get_string_descriptor_ascii(handle, descriptor.iProduct, device_name, sizeof(device_name));
						if (rc < 0) {
							fprintf(stderr, "Getting USB product string descriptor failed\n");
							goto error;
						}

						if (context->verbose)
							printf("Found and opened %s USB device: %s\n", descriptions[j]->name, device_name);

						context->description = descriptions[j];

						goto usb_configure;
					}
				}
			}
		}

		usleep(300000);
	} while (context->wait);

usb_configure:
	if (handle == NULL) {
		fprintf(stderr, "Finding USB device failed\n");
		goto error;
	}

	libusb_free_device_list(list, 1);
	list = NULL;

	rc = libusb_get_configuration(handle, &configuration);
	if (rc < 0) {
		fprintf(stderr, "Getting USB configuration failed\n");
		goto error;
	}

	if (configuration != USB_CONFIGURATION) {
		rc = libusb_set_configuration(handle, USB_CONFIGURATION);
		if (rc < 0) {
			fprintf(stderr, "Setting USB configuration failed\n");
			goto error;
		}
	}

	rc = libusb_claim_interface(handle, USB_INTERFACE);
	if (rc < 0) {
		fprintf(stderr, "Claiming USB interface failed\n");
		goto error;
	}

	context->usb_handle = handle;

	rc = 0;
	goto complete;

error:
	rc = -1;

	if (list != NULL)
		libusb_free_device_list(list, 1);

	if (handle != NULL)
		libusb_close(handle);

	libusb_exit(NULL);

complete:
	return rc;
}

void usb_close(struct context *context)
{
	if (context == NULL)
		return;

	if (context->usb_handle != NULL) {
		libusb_release_interface(context->usb_handle, USB_INTERFACE);
		libusb_close(context->usb_handle);

		context->usb_handle = NULL;

		libusb_exit(NULL);
	}
}

int usb_send(struct context *context, const void *data, size_t size)
{
	size_t count;
	size_t chunk;
	uint8_t *p;
	int transferred;
	int rc;

	if (context == NULL)
		return -1;

	count = 0;
	p = (uint8_t *) data;

	while (count < size) {
		chunk = (size - count) < USB_SEND_CHUNK ? (size - count) : USB_SEND_CHUNK;

		usleep(1000);

		rc = libusb_bulk_transfer(context->usb_handle, USB_ENDPOINT_OUT, p, chunk, &transferred, USB_TIMEOUT);
		if (rc < 0 || transferred <= 0) {
			fprintf(stderr, "Bulk USB transfer failed\n");
			return -1;
		}

		count += transferred;
		p += transferred;
	}

	return 0;
}

int usb_recv(struct context *context, void *data, size_t size)
{
	size_t count;
	size_t chunk;
	uint8_t *p;
	int transferred;
	int rc;

	if (context == NULL)
		return -1;

	count = 0;
	p = (uint8_t *) data;

	while (count < size) {
		chunk = (size - count) < USB_RECV_CHUNK ? (size - count) : USB_RECV_CHUNK;

		usleep(1000);

		rc = libusb_bulk_transfer(context->usb_handle, USB_ENDPOINT_IN, p, chunk, &transferred, USB_TIMEOUT);
		if (rc < 0 || transferred <= 0) {
			fprintf(stderr, "Bulk USB transfer failed\n");
			return -1;
		}

		count += transferred;
		p += transferred;
	}

	return 0;
}

int usb_recv_available(struct context *context, void *data, size_t size)
{
	size_t chunk;
	int transferred;
	int rc;

	if (context == NULL)
		return -1;

	chunk = size < USB_RECV_CHUNK ? size : USB_RECV_CHUNK;

	usleep(1000);

	rc = libusb_bulk_transfer(context->usb_handle, USB_ENDPOINT_IN, data, chunk, &transferred, USB_TIMEOUT);
	if (rc < 0 || transferred <= 0) {
		fprintf(stderr, "Bulk USB transfer failed\n");
		return -1;
	}

	return transferred;
}