1 /* am7xxx - communication with AM7xxx based USB Pico Projectors and DPFs
3 * Copyright (C) 2012 Antonio Ospite <ospite@studenti.unina.it>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "serialize.h"
28 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
30 struct am7xxx_usb_device_descriptor {
36 static struct am7xxx_usb_device_descriptor supported_devices[] = {
43 .name = "Philips/Sagemcom PicoPix 1020",
49 /* The header size on the wire is known to be always 24 bytes, regardless of
50 * the memory configuration enforced by different architechtures or compilers
51 * for struct am7xxx_header
53 #define AM7XXX_HEADER_WIRE_SIZE 24
55 struct _am7xxx_device {
56 libusb_device_handle *usb_device;
57 uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
62 struct _am7xxx_context {
63 libusb_context *usb_context;
64 am7xxx_device *devices_list;
68 AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
69 AM7XXX_PACKET_TYPE_IMAGE = 0x02,
70 AM7XXX_PACKET_TYPE_POWER = 0x04,
71 AM7XXX_PACKET_TYPE_UNKNOWN = 0x05,
74 struct am7xxx_generic_header {
81 struct am7xxx_devinfo_header {
82 uint32_t native_width;
83 uint32_t native_height;
88 struct am7xxx_image_header {
95 struct am7xxx_power_header {
102 * Examples of packet headers:
105 * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
108 * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
111 struct am7xxx_header {
112 uint32_t packet_type;
114 uint8_t header_data_len;
118 struct am7xxx_generic_header data;
119 struct am7xxx_devinfo_header devinfo;
120 struct am7xxx_image_header image;
121 struct am7xxx_power_header power;
126 static void dump_devinfo_header(struct am7xxx_devinfo_header *d)
131 printf("Info header:\n");
132 printf("\tnative_width: 0x%08x (%u)\n", d->native_width, d->native_width);
133 printf("\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
134 printf("\tunknown0: 0x%08x (%u)\n", d->unknown0, d->unknown0);
135 printf("\tunknown1: 0x%08x (%u)\n", d->unknown1, d->unknown1);
138 static void dump_image_header(struct am7xxx_image_header *i)
143 printf("Image header:\n");
144 printf("\tformat: 0x%08x (%u)\n", i->format, i->format);
145 printf("\twidth: 0x%08x (%u)\n", i->width, i->width);
146 printf("\theight: 0x%08x (%u)\n", i->height, i->height);
147 printf("\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
150 static void dump_power_header(struct am7xxx_power_header *p)
155 printf("Power header:\n");
156 printf("\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
157 printf("\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
158 printf("\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
161 static void dump_header(struct am7xxx_header *h)
166 printf("packet_type: 0x%08x (%u)\n", h->packet_type, h->packet_type);
167 printf("unknown0: 0x%02hhx (%hhu)\n", h->unknown0, h->unknown0);
168 printf("header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
169 printf("unknown2: 0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
170 printf("unknown3: 0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
172 switch(h->packet_type) {
173 case AM7XXX_PACKET_TYPE_DEVINFO:
174 dump_devinfo_header(&(h->header_data.devinfo));
177 case AM7XXX_PACKET_TYPE_IMAGE:
178 dump_image_header(&(h->header_data.image));
181 case AM7XXX_PACKET_TYPE_POWER:
182 dump_power_header(&(h->header_data.power));
186 printf("Packet type not supported!\n");
193 static inline unsigned int in_80chars(unsigned int i)
195 /* The 3 below is the length of "xx " where xx is the hex string
196 * representation of a byte */
197 return ((i+1) % (80/3));
200 static void dump_buffer(uint8_t *buffer, unsigned int len)
204 if (buffer == NULL || len == 0)
207 for (i = 0; i < len; i++) {
208 printf("%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
213 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
218 ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
219 if (ret != 0 || (unsigned int)transferred != len) {
220 fprintf(stderr, "Error: ret: %d\ttransferred: %d (expected %u)\n",
221 ret, transferred, len);
226 printf("\n<-- received\n");
227 dump_buffer(buffer, len);
234 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
240 printf("\nsending -->\n");
241 dump_buffer(buffer, len);
245 ret = libusb_bulk_transfer(dev->usb_device, 1, buffer, len, &transferred, 0);
246 if (ret != 0 || (unsigned int)transferred != len) {
247 fprintf(stderr, "Error: ret: %d\ttransferred: %d (expected %u)\n",
248 ret, transferred, len);
255 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
257 uint8_t **buffer_iterator = &buffer;
259 put_le32(h->packet_type, buffer_iterator);
260 put_8(h->unknown0, buffer_iterator);
261 put_8(h->header_data_len, buffer_iterator);
262 put_8(h->unknown2, buffer_iterator);
263 put_8(h->unknown3, buffer_iterator);
264 put_le32(h->header_data.data.field0, buffer_iterator);
265 put_le32(h->header_data.data.field1, buffer_iterator);
266 put_le32(h->header_data.data.field2, buffer_iterator);
267 put_le32(h->header_data.data.field3, buffer_iterator);
270 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
272 uint8_t **buffer_iterator = &buffer;
274 h->packet_type = get_le32(buffer_iterator);
275 h->unknown0 = get_8(buffer_iterator);
276 h->header_data_len = get_8(buffer_iterator);
277 h->unknown2 = get_8(buffer_iterator);
278 h->unknown3 = get_8(buffer_iterator);
279 h->header_data.data.field0 = get_le32(buffer_iterator);
280 h->header_data.data.field1 = get_le32(buffer_iterator);
281 h->header_data.data.field2 = get_le32(buffer_iterator);
282 h->header_data.data.field3 = get_le32(buffer_iterator);
285 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
289 ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
293 unserialize_header(dev->buffer, h);
307 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
317 serialize_header(h, dev->buffer);
318 ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
320 fprintf(stderr, "send_header: failed to send data.\n");
325 static am7xxx_device *add_new_device(am7xxx_context *ctx)
327 am7xxx_device **devices_list;
328 am7xxx_device *new_device;
331 fprintf(stderr, "%s: context must not be NULL!\n", __func__);
335 devices_list = &(ctx->devices_list);
337 new_device = malloc(sizeof(*new_device));
338 if (new_device == NULL) {
342 memset(new_device, 0, sizeof(*new_device));
344 new_device->ctx = ctx;
346 if (*devices_list == NULL) {
347 *devices_list = new_device;
349 am7xxx_device *prev = *devices_list;
352 prev->next = new_device;
357 static am7xxx_device *find_device(am7xxx_context *ctx,
358 unsigned int device_index)
361 am7xxx_device *current;
364 fprintf(stderr, "%s: context must not be NULL!\n", __func__);
368 current = ctx->devices_list;
369 while (current && i++ < device_index)
370 current = current->next;
376 SCAN_OP_BUILD_DEVLIST,
381 * This is where the central logic of multi-device support is.
383 * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
384 * 'dev' are ignored; the function returns 0 on success and a negative value
387 * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
388 * device with index 'open_device_index' and returns the correspondent
389 * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
390 * 1 if the device was already open and a negative value on error.
393 * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
394 * the caller might want to call am7xxx_shutdown() in order to remove
395 * devices possibly added before the failure.
397 static int scan_devices(am7xxx_context *ctx, scan_op op,
398 unsigned int open_device_index, am7xxx_device **dev)
401 libusb_device** list;
402 unsigned int current_index;
407 fprintf(stderr, "%s: context must not be NULL!\n", __func__);
410 if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
411 fprintf(stderr, "%s: device scan done already? Abort!\n", __func__);
415 num_devices = libusb_get_device_list(ctx->usb_context, &list);
416 if (num_devices < 0) {
422 for (i = 0; i < num_devices; i++) {
423 struct libusb_device_descriptor desc;
426 ret = libusb_get_device_descriptor(list[i], &desc);
430 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
431 if (desc.idVendor == supported_devices[j].vendor_id
432 && desc.idProduct == supported_devices[j].product_id) {
434 if (op == SCAN_OP_BUILD_DEVLIST) {
435 am7xxx_device *new_device;
437 printf("am7xxx device found, index: %d, name: %s\n",
439 supported_devices[j].name);
440 new_device = add_new_device(ctx);
441 if (new_device == NULL) {
442 /* XXX, the caller may want
443 * to call am7xxx_shutdown() if
444 * we fail here, as we may have
445 * added some devices already
450 } else if (op == SCAN_OP_OPEN_DEVICE &&
451 current_index == open_device_index) {
453 *dev = find_device(ctx, open_device_index);
459 /* the usb device has already been opened */
460 if ((*dev)->usb_device) {
465 ret = libusb_open(list[i], &((*dev)->usb_device));
469 libusb_set_configuration((*dev)->usb_device, 1);
470 libusb_claim_interface((*dev)->usb_device, 0);
478 /* if we made it up to here we didn't find any device to open */
479 if (op == SCAN_OP_OPEN_DEVICE) {
484 /* everything went fine when building the device list */
487 libusb_free_device_list(list, 1);
491 int am7xxx_init(am7xxx_context **ctx)
495 *ctx = malloc(sizeof(**ctx));
501 memset(*ctx, 0, sizeof(**ctx));
503 ret = libusb_init(&((*ctx)->usb_context));
505 goto out_free_context;
507 libusb_set_debug((*ctx)->usb_context, 3);
509 ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
511 fprintf(stderr, "%s: scan_devices failed\n", __func__);
512 am7xxx_shutdown(*ctx);
525 void am7xxx_shutdown(am7xxx_context *ctx)
527 am7xxx_device *current;
530 fprintf(stderr, "%s: context must not be NULL!\n", __func__);
534 current = ctx->devices_list;
536 am7xxx_device *next = current->next;
537 am7xxx_close_device(current);
542 libusb_exit(ctx->usb_context);
547 int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
548 unsigned int device_index)
553 fprintf(stderr, "%s: context must not be NULL!\n", __func__);
557 ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
560 } else if (ret > 0) {
562 fprintf(stderr, "%s: device %d already open\n", __func__, device_index);
570 int am7xxx_close_device(am7xxx_device *dev)
573 fprintf(stderr, "%s: dev must not be NULL!\n", __func__);
576 if (dev->usb_device) {
577 libusb_release_interface(dev->usb_device, 0);
578 libusb_close(dev->usb_device);
579 dev->usb_device = NULL;
584 int am7xxx_get_device_info(am7xxx_device *dev,
585 unsigned int *native_width,
586 unsigned int *native_height,
587 unsigned int *unknown0,
588 unsigned int *unknown1)
591 struct am7xxx_header h = {
592 .packet_type = AM7XXX_PACKET_TYPE_DEVINFO,
594 .header_data_len = 0x00,
607 ret = send_header(dev, &h);
611 ret = read_header(dev, &h);
615 *native_width = h.header_data.devinfo.native_width;
616 *native_height = h.header_data.devinfo.native_height;
617 *unknown0 = h.header_data.devinfo.unknown0;
618 *unknown1 = h.header_data.devinfo.unknown1;
623 int am7xxx_send_image(am7xxx_device *dev,
624 am7xxx_image_format format,
631 struct am7xxx_header h = {
632 .packet_type = AM7XXX_PACKET_TYPE_IMAGE,
634 .header_data_len = sizeof(struct am7xxx_image_header),
647 ret = send_header(dev, &h);
651 if (image == NULL || size == 0)
654 return send_data(dev, image, size);
657 int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode mode)
660 struct am7xxx_header h = {
661 .packet_type = AM7XXX_PACKET_TYPE_POWER,
663 .header_data_len = sizeof(struct am7xxx_power_header),
669 case AM7XXX_POWER_OFF:
670 h.header_data.power.bit2 = 0;
671 h.header_data.power.bit1 = 0;
672 h.header_data.power.bit0 = 0;
675 case AM7XXX_POWER_LOW:
676 h.header_data.power.bit2 = 0;
677 h.header_data.power.bit1 = 0;
678 h.header_data.power.bit0 = 1;
680 case AM7XXX_POWER_MIDDLE:
681 h.header_data.power.bit2 = 0;
682 h.header_data.power.bit1 = 1;
683 h.header_data.power.bit0 = 0;
686 case AM7XXX_POWER_HIGH:
687 h.header_data.power.bit2 = 0;
688 h.header_data.power.bit1 = 1;
689 h.header_data.power.bit0 = 1;
692 case AM7XXX_POWER_TURBO:
693 h.header_data.power.bit2 = 1;
694 h.header_data.power.bit1 = 0;
695 h.header_data.power.bit0 = 0;
699 fprintf(stderr, "Unsupported power mode.\n");
703 ret = send_header(dev, &h);