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/>.
28 #include "serialize.h"
30 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
32 /* If we're not using GNU C, elide __attribute__
33 * taken from: http://unixwiz.net/techtips/gnu-c-attributes.html)
36 # define __attribute__(x) /*NOTHING*/
39 /* Control shared library symbols visibility */
40 #if defined _WIN32 || defined __CYGWIN__
41 #define AM7XXX_PUBLIC __declspec(dllexport)
45 #define AM7XXX_PUBLIC __attribute__ ((visibility ("default")))
46 #define AM7XXX_LOCAL __attribute__ ((visibility ("hidden")))
53 static void log_message(am7xxx_context *ctx,
58 ...) __attribute__ ((format (printf, 5, 6)));
60 #define fatal(...) log_message(NULL, AM7XXX_LOG_FATAL, __func__, __LINE__, __VA_ARGS__)
61 #define error(ctx, ...) log_message(ctx, AM7XXX_LOG_ERROR, __func__, __LINE__, __VA_ARGS__)
62 #define warning(ctx, ...) log_message(ctx, AM7XXX_LOG_WARNING, __func__, 0, __VA_ARGS__)
63 #define info(ctx, ...) log_message(ctx, AM7XXX_LOG_INFO, __func__, 0, __VA_ARGS__)
64 #define debug(ctx, ...) log_message(ctx, AM7XXX_LOG_DEBUG, __func__, 0, __VA_ARGS__)
65 #define trace(ctx, ...) log_message(ctx, AM7XXX_LOG_TRACE, NULL, 0, __VA_ARGS__)
68 int (*set_power_mode)(am7xxx_device *dev, am7xxx_power_mode power);
69 int (*set_zoom_mode)(am7xxx_device *dev, am7xxx_zoom_mode zoom);
72 struct am7xxx_usb_device_descriptor {
76 uint8_t configuration; /* The bConfigurationValue of the device */
77 uint8_t interface_number; /* The bInterfaceNumber of the device */
78 struct am7xxx_ops ops;
81 static int default_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power);
82 static int default_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom);
84 #define DEFAULT_OPS { \
85 .set_power_mode = default_set_power_mode, \
86 .set_zoom_mode = default_set_zoom_mode, \
89 static const struct am7xxx_usb_device_descriptor supported_devices[] = {
95 .interface_number = 0,
101 .product_id = 0x5501,
103 .interface_number = 0,
107 .name ="Aiptek PocketCinema T25",
109 .product_id = 0x2144,
111 .interface_number = 0,
115 .name = "Philips/Sagemcom PicoPix 1020",
117 .product_id = 0x000e,
119 .interface_number = 0,
123 .name = "Philips/Sagemcom PicoPix 2055",
125 .product_id = 0x0016,
127 .interface_number = 0,
130 .name = "Philips/Sagemcom PicoPix 2330",
132 .product_id = 0x0019,
134 .interface_number = 0,
138 /* The header size on the wire is known to be always 24 bytes, regardless of
139 * the memory configuration enforced by different architectures or compilers
140 * for struct am7xxx_header
142 #define AM7XXX_HEADER_WIRE_SIZE 24
144 struct _am7xxx_device {
145 libusb_device_handle *usb_device;
146 struct libusb_transfer *transfer;
147 int transfer_completed;
148 uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
149 am7xxx_device_info *device_info;
151 const struct am7xxx_usb_device_descriptor *desc;
155 struct _am7xxx_context {
156 libusb_context *usb_context;
158 am7xxx_device *devices_list;
162 AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
163 AM7XXX_PACKET_TYPE_IMAGE = 0x02,
164 AM7XXX_PACKET_TYPE_POWER = 0x04,
165 AM7XXX_PACKET_TYPE_ZOOM = 0x05,
166 } am7xxx_packet_type;
168 struct am7xxx_generic_header {
175 struct am7xxx_devinfo_header {
176 uint32_t native_width;
177 uint32_t native_height;
182 struct am7xxx_image_header {
189 struct am7xxx_power_header {
195 struct am7xxx_zoom_header {
201 * Examples of packet headers:
204 * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
207 * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
210 /* Direction of the communication from the host point of view */
211 #define AM7XXX_DIRECTION_OUT 0 /* host -> device */
212 #define AM7XXX_DIRECTION_IN 1 /* host <- device */
214 struct am7xxx_header {
215 uint32_t packet_type;
217 uint8_t header_data_len;
221 struct am7xxx_generic_header data;
222 struct am7xxx_devinfo_header devinfo;
223 struct am7xxx_image_header image;
224 struct am7xxx_power_header power;
225 struct am7xxx_zoom_header zoom;
231 static void debug_dump_generic_header(am7xxx_context *ctx, struct am7xxx_generic_header *g)
233 if (ctx == NULL || g == NULL)
236 debug(ctx, "Generic header:\n");
237 debug(ctx, "\tfield0: 0x%08x (%u)\n", g->field0, g->field0);
238 debug(ctx, "\tfield1: 0x%08x (%u)\n", g->field1, g->field1);
239 debug(ctx, "\tfield2: 0x%08x (%u)\n", g->field2, g->field2);
240 debug(ctx, "\tfield3: 0x%08x (%u)\n", g->field3, g->field3);
243 static void debug_dump_devinfo_header(am7xxx_context *ctx, struct am7xxx_devinfo_header *d)
245 if (ctx == NULL || d == NULL)
248 debug(ctx, "Info header:\n");
249 debug(ctx, "\tnative_width: 0x%08x (%u)\n", d->native_width, d->native_width);
250 debug(ctx, "\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
251 debug(ctx, "\tunknown0: 0x%08x (%u)\n", d->unknown0, d->unknown0);
252 debug(ctx, "\tunknown1: 0x%08x (%u)\n", d->unknown1, d->unknown1);
255 static void debug_dump_image_header(am7xxx_context *ctx, struct am7xxx_image_header *i)
257 if (ctx == NULL || i == NULL)
260 debug(ctx, "Image header:\n");
261 debug(ctx, "\tformat: 0x%08x (%u)\n", i->format, i->format);
262 debug(ctx, "\twidth: 0x%08x (%u)\n", i->width, i->width);
263 debug(ctx, "\theight: 0x%08x (%u)\n", i->height, i->height);
264 debug(ctx, "\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
267 static void debug_dump_power_header(am7xxx_context *ctx, struct am7xxx_power_header *p)
269 if (ctx == NULL || p == NULL)
272 debug(ctx, "Power header:\n");
273 debug(ctx, "\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
274 debug(ctx, "\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
275 debug(ctx, "\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
278 static void debug_dump_zoom_header(am7xxx_context *ctx, struct am7xxx_zoom_header *z)
280 if (ctx == NULL || z == NULL)
283 debug(ctx, "Zoom header:\n");
284 debug(ctx, "\tbit1: 0x%08x (%u)\n", z->bit1, z->bit1);
285 debug(ctx, "\tbit0: 0x%08x (%u)\n", z->bit0, z->bit0);
288 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
290 if (ctx == NULL || h == NULL)
293 debug(ctx, "BEGIN\n");
294 debug(ctx, "packet_type: 0x%08x (%u)\n", h->packet_type, h->packet_type);
295 debug(ctx, "direction: 0x%02hhx (%hhu) (%s)\n", h->direction, h->direction,
296 h->direction == AM7XXX_DIRECTION_IN ? "IN" :
297 h->direction == AM7XXX_DIRECTION_OUT ? "OUT" :
299 debug(ctx, "header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
300 debug(ctx, "unknown2: 0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
301 debug(ctx, "unknown3: 0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
303 switch(h->packet_type) {
304 case AM7XXX_PACKET_TYPE_DEVINFO:
305 debug_dump_devinfo_header(ctx, &(h->header_data.devinfo));
308 case AM7XXX_PACKET_TYPE_IMAGE:
309 debug_dump_image_header(ctx, &(h->header_data.image));
312 case AM7XXX_PACKET_TYPE_POWER:
313 debug_dump_power_header(ctx, &(h->header_data.power));
316 case AM7XXX_PACKET_TYPE_ZOOM:
317 debug_dump_zoom_header(ctx, &(h->header_data.zoom));
321 debug(ctx, "Parsing data not supported for this packet type!\n");
322 debug_dump_generic_header(ctx, &(h->header_data.data));
325 debug(ctx, "END\n\n");
328 static inline unsigned int in_80chars(unsigned int i)
330 /* The 3 below is the length of "xx " where xx is the hex string
331 * representation of a byte */
332 return ((i+1) % (80/3));
335 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
336 uint8_t *buffer, unsigned int len)
340 if (ctx == NULL || buffer == NULL || len == 0)
345 trace(ctx, "%s\n", message);
347 for (i = 0; i < len; i++) {
348 trace(ctx, "%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
353 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
359 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
360 uint8_t *buffer, unsigned int len)
369 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
374 ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
375 if (ret != 0 || (unsigned int)transferred != len) {
376 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
377 ret, transferred, len);
381 trace_dump_buffer(dev->ctx, "<-- received", buffer, len);
386 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
391 trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
393 ret = libusb_bulk_transfer(dev->usb_device, 0x1, buffer, len, &transferred, 0);
394 if (ret != 0 || (unsigned int)transferred != len) {
395 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
396 ret, transferred, len);
403 static void send_data_async_complete_cb(struct libusb_transfer *transfer)
405 am7xxx_device *dev = (am7xxx_device *)(transfer->user_data);
406 int *completed = &(dev->transfer_completed);
407 int transferred = transfer->actual_length;
410 if (transferred != transfer->length) {
411 error(dev->ctx, "transferred: %d (expected %u)\n",
412 transferred, transfer->length);
415 switch (transfer->status) {
416 case LIBUSB_TRANSFER_COMPLETED:
419 case LIBUSB_TRANSFER_TIMED_OUT:
420 ret = LIBUSB_ERROR_TIMEOUT;
422 case LIBUSB_TRANSFER_STALL:
423 ret = LIBUSB_ERROR_PIPE;
425 case LIBUSB_TRANSFER_OVERFLOW:
426 ret = LIBUSB_ERROR_OVERFLOW;
428 case LIBUSB_TRANSFER_NO_DEVICE:
429 ret = LIBUSB_ERROR_NO_DEVICE;
431 case LIBUSB_TRANSFER_ERROR:
432 case LIBUSB_TRANSFER_CANCELLED:
433 ret = LIBUSB_ERROR_IO;
436 error(dev->ctx, "unrecognised status code %d", transfer->status);
437 ret = LIBUSB_ERROR_OTHER;
441 error(dev->ctx, "libusb transfer failed: %s",
442 libusb_error_name(ret));
444 libusb_free_transfer(transfer);
450 static inline void wait_for_trasfer_completed(am7xxx_device *dev)
452 while (!dev->transfer_completed) {
453 int ret = libusb_handle_events_completed(dev->ctx->usb_context,
454 &(dev->transfer_completed));
456 if (ret == LIBUSB_ERROR_INTERRUPTED)
458 error(dev->ctx, "libusb_handle_events failed: %s, cancelling transfer and retrying",
459 libusb_error_name(ret));
460 libusb_cancel_transfer(dev->transfer);
466 static int send_data_async(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
469 uint8_t *transfer_buffer;
471 dev->transfer = libusb_alloc_transfer(0);
472 if (dev->transfer == NULL) {
473 error(dev->ctx, "cannot allocate transfer (%s)\n",
478 /* Make a copy of the buffer so the caller can safely reuse it just
479 * after libusb_submit_transfer() has returned. This technique
480 * requires more allocations than a proper double-buffering approach
481 * but it takes a lot less code. */
482 transfer_buffer = malloc(len);
483 if (transfer_buffer == NULL) {
484 error(dev->ctx, "cannot allocate transfer buffer (%s)\n",
489 memcpy(transfer_buffer, buffer, len);
491 dev->transfer->flags |= LIBUSB_TRANSFER_FREE_BUFFER;
492 libusb_fill_bulk_transfer(dev->transfer, dev->usb_device, 0x1,
493 transfer_buffer, len,
494 send_data_async_complete_cb, dev, 0);
496 /* wait for the previous transfer to complete */
497 wait_for_trasfer_completed(dev);
499 trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
501 dev->transfer_completed = 0;
502 ret = libusb_submit_transfer(dev->transfer);
509 libusb_free_transfer(dev->transfer);
510 dev->transfer = NULL;
514 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
516 uint8_t **buffer_iterator = &buffer;
518 put_le32(h->packet_type, buffer_iterator);
519 put_8(h->direction, buffer_iterator);
520 put_8(h->header_data_len, buffer_iterator);
521 put_8(h->unknown2, buffer_iterator);
522 put_8(h->unknown3, buffer_iterator);
523 put_le32(h->header_data.data.field0, buffer_iterator);
524 put_le32(h->header_data.data.field1, buffer_iterator);
525 put_le32(h->header_data.data.field2, buffer_iterator);
526 put_le32(h->header_data.data.field3, buffer_iterator);
529 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
531 uint8_t **buffer_iterator = &buffer;
533 h->packet_type = get_le32(buffer_iterator);
534 h->direction = get_8(buffer_iterator);
535 h->header_data_len = get_8(buffer_iterator);
536 h->unknown2 = get_8(buffer_iterator);
537 h->unknown3 = get_8(buffer_iterator);
538 h->header_data.data.field0 = get_le32(buffer_iterator);
539 h->header_data.data.field1 = get_le32(buffer_iterator);
540 h->header_data.data.field2 = get_le32(buffer_iterator);
541 h->header_data.data.field3 = get_le32(buffer_iterator);
544 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
548 ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
552 unserialize_header(dev->buffer, h);
554 if (h->direction == AM7XXX_DIRECTION_IN) {
558 "Expected an AM7XXX_DIRECTION_IN packet, got one with direction = %d. Weird!\n",
563 debug_dump_header(dev->ctx, h);
569 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
573 debug_dump_header(dev->ctx, h);
575 /* For symmetry with read_header() we should check here for
576 * h->direction == AM7XXX_DIRECTION_OUT but we just ensure that in all
577 * the callers and save some cycles here.
580 serialize_header(h, dev->buffer);
582 ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
584 error(dev->ctx, "failed to send data\n");
589 static int send_command(am7xxx_device *dev, am7xxx_packet_type type)
591 struct am7xxx_header h = {
593 .direction = AM7XXX_DIRECTION_OUT,
594 .header_data_len = 0x00,
607 return send_header(dev, &h);
611 /* When level == AM7XXX_LOG_FATAL do not check the log_level from the context
612 * and print the message unconditionally, this makes it possible to print
613 * fatal messages even early on initialization, before the context has been
615 static void log_message(am7xxx_context *ctx,
617 const char *function,
624 if (level == AM7XXX_LOG_FATAL || (ctx && level <= ctx->log_level)) {
626 fprintf(stderr, "%s", function);
628 fprintf(stderr, "[%d]", line);
629 fprintf(stderr, ": ");
633 vfprintf(stderr, fmt, ap);
640 static am7xxx_device *add_new_device(am7xxx_context *ctx,
641 const struct am7xxx_usb_device_descriptor *desc)
643 am7xxx_device **devices_list;
644 am7xxx_device *new_device;
647 fatal("context must not be NULL!\n");
651 new_device = malloc(sizeof(*new_device));
652 if (new_device == NULL) {
653 fatal("cannot allocate a new device (%s)\n", strerror(errno));
656 memset(new_device, 0, sizeof(*new_device));
658 new_device->ctx = ctx;
659 new_device->desc = desc;
660 new_device->transfer_completed = 1;
662 devices_list = &(ctx->devices_list);
664 if (*devices_list == NULL) {
665 *devices_list = new_device;
667 am7xxx_device *prev = *devices_list;
670 prev->next = new_device;
675 static am7xxx_device *find_device(am7xxx_context *ctx,
676 unsigned int device_index)
679 am7xxx_device *current;
682 fatal("context must not be NULL!\n");
686 current = ctx->devices_list;
687 while (current && i++ < device_index)
688 current = current->next;
694 SCAN_OP_BUILD_DEVLIST,
699 * This is where the central logic of multi-device support is.
701 * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
702 * 'dev' are ignored; the function returns 0 on success and a negative value
705 * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
706 * device with index 'open_device_index' and returns the correspondent
707 * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
708 * 1 if the device was already open and a negative value on error.
711 * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
712 * the caller might want to call am7xxx_shutdown() in order to remove
713 * devices possibly added before the failure.
715 static int scan_devices(am7xxx_context *ctx, scan_op op,
716 unsigned int open_device_index, am7xxx_device **dev)
719 libusb_device** list;
720 unsigned int current_index;
725 fatal("context must not be NULL!\n");
728 if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
729 error(ctx, "device scan done already? Abort!\n");
733 num_devices = libusb_get_device_list(ctx->usb_context, &list);
734 if (num_devices < 0) {
740 for (i = 0; i < num_devices; i++) {
741 struct libusb_device_descriptor desc;
744 ret = libusb_get_device_descriptor(list[i], &desc);
748 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
749 if (desc.idVendor == supported_devices[j].vendor_id &&
750 desc.idProduct == supported_devices[j].product_id) {
752 if (op == SCAN_OP_BUILD_DEVLIST) {
753 am7xxx_device *new_device;
754 info(ctx, "am7xxx device found, index: %d, name: %s\n",
756 supported_devices[j].name);
757 new_device = add_new_device(ctx, &supported_devices[j]);
758 if (new_device == NULL) {
759 /* XXX, the caller may want
760 * to call am7xxx_shutdown() if
761 * we fail here, as we may have
762 * added some devices already
764 debug(ctx, "Cannot create a new device\n");
768 } else if (op == SCAN_OP_OPEN_DEVICE &&
769 current_index == open_device_index) {
771 *dev = find_device(ctx, open_device_index);
777 /* the usb device has already been opened */
778 if ((*dev)->usb_device) {
779 debug(ctx, "(*dev)->usb_device already set\n");
784 ret = libusb_open(list[i], &((*dev)->usb_device));
786 debug(ctx, "libusb_open failed\n");
790 /* XXX, the device is now open, if any
791 * of the calls below fail we need to
792 * close it again before bailing out.
795 ret = libusb_set_configuration((*dev)->usb_device,
796 (*dev)->desc->configuration);
798 debug(ctx, "libusb_set_configuration failed\n");
799 debug(ctx, "Cannot set configuration %hhu\n",
800 (*dev)->desc->configuration);
801 goto out_libusb_close;
804 ret = libusb_claim_interface((*dev)->usb_device,
805 (*dev)->desc->interface_number);
807 debug(ctx, "libusb_claim_interface failed\n");
808 debug(ctx, "Cannot claim interface %hhu\n",
809 (*dev)->desc->interface_number);
811 libusb_close((*dev)->usb_device);
812 (*dev)->usb_device = NULL;
823 /* if we made it up to here we didn't find any device to open */
824 if (op == SCAN_OP_OPEN_DEVICE) {
825 error(ctx, "Cannot find any device to open\n");
830 /* everything went fine when building the device list */
833 libusb_free_device_list(list, 1);
837 /* Device specific operations */
839 static int default_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
842 struct am7xxx_header h = {
843 .packet_type = AM7XXX_PACKET_TYPE_POWER,
844 .direction = AM7XXX_DIRECTION_OUT,
845 .header_data_len = sizeof(struct am7xxx_power_header),
851 case AM7XXX_POWER_OFF:
852 h.header_data.power.bit2 = 0;
853 h.header_data.power.bit1 = 0;
854 h.header_data.power.bit0 = 0;
857 case AM7XXX_POWER_LOW:
858 h.header_data.power.bit2 = 0;
859 h.header_data.power.bit1 = 0;
860 h.header_data.power.bit0 = 1;
863 case AM7XXX_POWER_MIDDLE:
864 h.header_data.power.bit2 = 0;
865 h.header_data.power.bit1 = 1;
866 h.header_data.power.bit0 = 0;
869 case AM7XXX_POWER_HIGH:
870 h.header_data.power.bit2 = 0;
871 h.header_data.power.bit1 = 1;
872 h.header_data.power.bit0 = 1;
875 case AM7XXX_POWER_TURBO:
876 h.header_data.power.bit2 = 1;
877 h.header_data.power.bit1 = 0;
878 h.header_data.power.bit0 = 0;
882 error(dev->ctx, "Unsupported power mode.\n");
886 ret = send_header(dev, &h);
893 static int default_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
896 struct am7xxx_header h = {
897 .packet_type = AM7XXX_PACKET_TYPE_ZOOM,
898 .direction = AM7XXX_DIRECTION_OUT,
899 .header_data_len = sizeof(struct am7xxx_zoom_header),
905 case AM7XXX_ZOOM_ORIGINAL:
906 h.header_data.zoom.bit1 = 0;
907 h.header_data.zoom.bit0 = 0;
911 h.header_data.zoom.bit1 = 0;
912 h.header_data.zoom.bit0 = 1;
915 case AM7XXX_ZOOM_H_V:
916 h.header_data.zoom.bit1 = 1;
917 h.header_data.zoom.bit0 = 0;
920 case AM7XXX_ZOOM_TEST:
921 h.header_data.zoom.bit1 = 1;
922 h.header_data.zoom.bit0 = 1;
926 error(dev->ctx, "Unsupported zoom mode.\n");
930 ret = send_header(dev, &h);
939 AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
943 *ctx = malloc(sizeof(**ctx));
945 fatal("cannot allocate the context (%s)\n", strerror(errno));
949 memset(*ctx, 0, sizeof(**ctx));
951 /* Set the highest log level during initialization */
952 (*ctx)->log_level = AM7XXX_LOG_TRACE;
954 ret = libusb_init(&((*ctx)->usb_context));
956 goto out_free_context;
958 libusb_set_debug((*ctx)->usb_context, LIBUSB_LOG_LEVEL_INFO);
960 ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
962 error(*ctx, "scan_devices() failed\n");
963 am7xxx_shutdown(*ctx);
967 /* Set a quieter log level as default for normal operation */
968 (*ctx)->log_level = AM7XXX_LOG_ERROR;
978 AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
980 am7xxx_device *current;
983 fatal("context must not be NULL!\n");
987 current = ctx->devices_list;
989 am7xxx_device *next = current->next;
990 am7xxx_close_device(current);
991 free(current->device_info);
996 libusb_exit(ctx->usb_context);
1001 AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
1003 ctx->log_level = log_level;
1006 AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
1007 unsigned int device_index)
1012 fatal("context must not be NULL!\n");
1016 ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
1020 } else if (ret > 0) {
1021 warning(ctx, "device %d already open\n", device_index);
1027 /* Philips/Sagemcom PicoPix projectors require that the DEVINFO packet
1028 * is the first one to be sent to the device in order for it to
1029 * successfully return the correct device information.
1031 * So, if there is not a cached version of it (from a previous open),
1032 * we ask for device info at open time,
1034 if ((*dev)->device_info == NULL) {
1035 ret = am7xxx_get_device_info(*dev, NULL);
1037 error(ctx, "cannot get device info\n");
1044 AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
1047 fatal("dev must not be NULL!\n");
1050 if (dev->usb_device) {
1051 wait_for_trasfer_completed(dev);
1052 libusb_release_interface(dev->usb_device, dev->desc->interface_number);
1053 libusb_close(dev->usb_device);
1054 dev->usb_device = NULL;
1059 AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
1060 am7xxx_device_info *device_info)
1063 struct am7xxx_header h = { 0 };
1065 if (dev->device_info) {
1066 memcpy(device_info, dev->device_info, sizeof(*device_info));
1070 ret = send_command(dev, AM7XXX_PACKET_TYPE_DEVINFO);
1074 ret = read_header(dev, &h);
1078 if (h.packet_type != AM7XXX_PACKET_TYPE_DEVINFO) {
1079 error(dev->ctx, "expected packet type: %d, got %d instead!\n",
1080 AM7XXX_PACKET_TYPE_DEVINFO, h.packet_type);
1085 dev->device_info = malloc(sizeof(*dev->device_info));
1086 if (dev->device_info == NULL) {
1087 error(dev->ctx, "cannot allocate a device info (%s)\n",
1091 memset(dev->device_info, 0, sizeof(*dev->device_info));
1093 dev->device_info->native_width = h.header_data.devinfo.native_width;
1094 dev->device_info->native_height = h.header_data.devinfo.native_height;
1096 /* No reason to expose these in the public API until we know what they mean */
1097 dev->device_info->unknown0 = h.header_data.devinfo.unknown0;
1098 dev->device_info->unknown1 = h.header_data.devinfo.unknown1;
1104 AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
1105 unsigned int upscale,
1106 unsigned int original_width,
1107 unsigned int original_height,
1108 unsigned int *scaled_width,
1109 unsigned int *scaled_height)
1112 am7xxx_device_info device_info;
1117 ret = am7xxx_get_device_info(dev, &device_info);
1119 error(dev->ctx, "cannot get device info\n");
1124 * Check if we need to rescale; if the input image fits the native
1125 * dimensions there is no need to, unless we want to upscale.
1128 original_width <= device_info.native_width &&
1129 original_height <= device_info.native_height ) {
1130 debug(dev->ctx, "CASE 0, no rescaling, the original image fits already\n");
1131 *scaled_width = original_width;
1132 *scaled_height = original_height;
1136 /* Input dimensions relative to the device native dimensions */
1137 width_ratio = (float)original_width / device_info.native_width;
1138 height_ratio = (float)original_height / device_info.native_height;
1140 if (width_ratio > height_ratio) {
1142 * The input is proportionally "wider" than the device viewport
1143 * so its height needs to be adjusted
1145 debug(dev->ctx, "CASE 1, original image wider, adjust the scaled height\n");
1146 *scaled_width = device_info.native_width;
1147 *scaled_height = (unsigned int)lroundf(original_height / width_ratio);
1148 } else if (width_ratio < height_ratio) {
1150 * The input is proportionally "taller" than the device viewport
1151 * so its width needs to be adjusted
1153 debug(dev->ctx, "CASE 2 original image taller, adjust the scaled width\n");
1154 *scaled_width = (unsigned int)lroundf(original_width / height_ratio);
1155 *scaled_height = device_info.native_height;
1157 debug(dev->ctx, "CASE 3, just rescale, same aspect ratio already\n");
1158 *scaled_width = device_info.native_width;
1159 *scaled_height = device_info.native_height;
1161 debug(dev->ctx, "scaled dimensions: %dx%d\n", *scaled_width, *scaled_height);
1166 AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
1167 am7xxx_image_format format,
1169 unsigned int height,
1171 unsigned int image_size)
1174 struct am7xxx_header h = {
1175 .packet_type = AM7XXX_PACKET_TYPE_IMAGE,
1176 .direction = AM7XXX_DIRECTION_OUT,
1177 .header_data_len = sizeof(struct am7xxx_image_header),
1185 .image_size = image_size,
1190 ret = send_header(dev, &h);
1194 if (image == NULL || image_size == 0) {
1195 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
1199 return send_data(dev, image, image_size);
1202 AM7XXX_PUBLIC int am7xxx_send_image_async(am7xxx_device *dev,
1203 am7xxx_image_format format,
1205 unsigned int height,
1207 unsigned int image_size)
1210 struct am7xxx_header h = {
1211 .packet_type = AM7XXX_PACKET_TYPE_IMAGE,
1212 .direction = AM7XXX_DIRECTION_OUT,
1213 .header_data_len = sizeof(struct am7xxx_image_header),
1221 .image_size = image_size,
1226 ret = send_header(dev, &h);
1230 if (image == NULL || image_size == 0) {
1231 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
1235 return send_data_async(dev, image, image_size);
1238 AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
1240 if (dev->desc->ops.set_power_mode == NULL) {
1242 "setting power mode is unsupported on this device\n");
1246 return dev->desc->ops.set_power_mode(dev, power);
1249 AM7XXX_PUBLIC int am7xxx_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
1251 if (dev->desc->ops.set_zoom_mode == NULL) {
1253 "setting zoom mode is unsupported on this device\n");
1257 return dev->desc->ops.set_zoom_mode(dev, zoom);