1 /* am7xxx - communication with AM7xxx based USB Pico Projectors and DPFs
 
   3  * Copyright (C) 2012-2014  Antonio Ospite <ao2@ao2.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"
 
  31 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
 
  33 /* If we're not using GNU C, elide __attribute__
 
  34  * taken from: http://unixwiz.net/techtips/gnu-c-attributes.html)
 
  37 #  define  __attribute__(x)  /*NOTHING*/
 
  40 /* Control shared library symbols visibility */
 
  41 #if defined _WIN32 || defined __CYGWIN__
 
  42         #define AM7XXX_PUBLIC __declspec(dllexport)
 
  46                 #define AM7XXX_PUBLIC __attribute__ ((visibility ("default")))
 
  47                 #define AM7XXX_LOCAL  __attribute__ ((visibility ("hidden")))
 
  54 static void log_message(am7xxx_context *ctx,
 
  59                         ...) __attribute__ ((format (printf, 5, 6)));
 
  61 #define fatal(...)        log_message(NULL, AM7XXX_LOG_FATAL,   __func__, __LINE__, __VA_ARGS__)
 
  62 #define error(ctx, ...)   log_message(ctx,  AM7XXX_LOG_ERROR,   __func__, __LINE__, __VA_ARGS__)
 
  63 #define warning(ctx, ...) log_message(ctx,  AM7XXX_LOG_WARNING, __func__, 0,        __VA_ARGS__)
 
  64 #define info(ctx, ...)    log_message(ctx,  AM7XXX_LOG_INFO,    __func__, 0,        __VA_ARGS__)
 
  65 #define debug(ctx, ...)   log_message(ctx,  AM7XXX_LOG_DEBUG,   __func__, 0,        __VA_ARGS__)
 
  66 #define trace(ctx, ...)   log_message(ctx,  AM7XXX_LOG_TRACE,   NULL,     0,        __VA_ARGS__)
 
  69         int (*set_power_mode)(am7xxx_device *dev, am7xxx_power_mode power);
 
  70         int (*set_zoom_mode)(am7xxx_device *dev, am7xxx_zoom_mode zoom);
 
  73 struct am7xxx_usb_device_descriptor {
 
  77         uint8_t configuration;    /* The bConfigurationValue of the device */
 
  78         uint8_t interface_number; /* The bInterfaceNumber of the device */
 
  79         struct am7xxx_ops ops;
 
  82 static int default_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power);
 
  83 static int picopix_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power);
 
  84 static int default_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom);
 
  85 static int picopix_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom);
 
  87 #define DEFAULT_OPS { \
 
  88         .set_power_mode = default_set_power_mode, \
 
  89         .set_zoom_mode = default_set_zoom_mode, \
 
  92 static const struct am7xxx_usb_device_descriptor supported_devices[] = {
 
  98                 .interface_number = 0,
 
 104                 .product_id = 0x5501,
 
 106                 .interface_number = 0,
 
 110                 .name       ="Aiptek PocketCinema T25",
 
 112                 .product_id = 0x2144,
 
 114                 .interface_number = 0,
 
 118                 .name       = "Philips/Sagemcom PicoPix 1020",
 
 120                 .product_id = 0x000e,
 
 122                 .interface_number = 0,
 
 126                 .name       = "Philips/Sagemcom PicoPix 2055",
 
 128                 .product_id = 0x0016,
 
 130                 .interface_number = 0,
 
 132                         .set_power_mode = picopix_set_power_mode,
 
 133                         .set_zoom_mode = picopix_set_zoom_mode,
 
 137                 .name       = "Philips/Sagemcom PicoPix 2330",
 
 139                 .product_id = 0x0019,
 
 141                 .interface_number = 0,
 
 145 /* The header size on the wire is known to be always 24 bytes, regardless of
 
 146  * the memory configuration enforced by different architectures or compilers
 
 147  * for struct am7xxx_header
 
 149 #define AM7XXX_HEADER_WIRE_SIZE 24
 
 151 struct _am7xxx_device {
 
 152         libusb_device_handle *usb_device;
 
 153         struct libusb_transfer *transfer;
 
 154         int transfer_completed;
 
 155         uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
 
 156         am7xxx_device_info *device_info;
 
 158         const struct am7xxx_usb_device_descriptor *desc;
 
 162 struct _am7xxx_context {
 
 163         libusb_context *usb_context;
 
 165         am7xxx_device *devices_list;
 
 169         AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
 
 170         AM7XXX_PACKET_TYPE_IMAGE   = 0x02,
 
 171         AM7XXX_PACKET_TYPE_POWER   = 0x04,
 
 172         AM7XXX_PACKET_TYPE_ZOOM    = 0x05,
 
 173         AM7XXX_PACKET_TYPE_PICOPIX_POWER_LOW    = 0x15,
 
 174         AM7XXX_PACKET_TYPE_PICOPIX_POWER_MEDIUM = 0x16,
 
 175         AM7XXX_PACKET_TYPE_PICOPIX_POWER_HIGH   = 0x17,
 
 176         AM7XXX_PACKET_TYPE_PICOPIX_ENABLE_TI    = 0x18,
 
 177         AM7XXX_PACKET_TYPE_PICOPIX_DISABLE_TI   = 0x19,
 
 178 } am7xxx_packet_type;
 
 180 struct am7xxx_generic_header {
 
 187 struct am7xxx_devinfo_header {
 
 188         uint32_t native_width;
 
 189         uint32_t native_height;
 
 194 struct am7xxx_image_header {
 
 201 struct am7xxx_power_header {
 
 207 struct am7xxx_zoom_header {
 
 213  * Examples of packet headers:
 
 216  * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
 
 219  * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 
 222 /* Direction of the communication from the host point of view */
 
 223 #define AM7XXX_DIRECTION_OUT 0 /* host -> device */
 
 224 #define AM7XXX_DIRECTION_IN  1 /* host <- device */
 
 226 struct am7xxx_header {
 
 227         uint32_t packet_type;
 
 229         uint8_t header_data_len;
 
 233                 struct am7xxx_generic_header data;
 
 234                 struct am7xxx_devinfo_header devinfo;
 
 235                 struct am7xxx_image_header image;
 
 236                 struct am7xxx_power_header power;
 
 237                 struct am7xxx_zoom_header zoom;
 
 243 static void debug_dump_generic_header(am7xxx_context *ctx, struct am7xxx_generic_header *g)
 
 245         if (ctx == NULL || g == NULL)
 
 248         debug(ctx, "Generic header:\n");
 
 249         debug(ctx, "\tfield0:  0x%08x (%u)\n", g->field0, g->field0);
 
 250         debug(ctx, "\tfield1:  0x%08x (%u)\n", g->field1, g->field1);
 
 251         debug(ctx, "\tfield2:  0x%08x (%u)\n", g->field2, g->field2);
 
 252         debug(ctx, "\tfield3:  0x%08x (%u)\n", g->field3, g->field3);
 
 255 static void debug_dump_devinfo_header(am7xxx_context *ctx, struct am7xxx_devinfo_header *d)
 
 257         if (ctx == NULL || d == NULL)
 
 260         debug(ctx, "Info header:\n");
 
 261         debug(ctx, "\tnative_width:  0x%08x (%u)\n", d->native_width, d->native_width);
 
 262         debug(ctx, "\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
 
 263         debug(ctx, "\tunknown0:      0x%08x (%u)\n", d->unknown0, d->unknown0);
 
 264         debug(ctx, "\tunknown1:      0x%08x (%u)\n", d->unknown1, d->unknown1);
 
 267 static void debug_dump_image_header(am7xxx_context *ctx, struct am7xxx_image_header *i)
 
 269         if (ctx == NULL || i == NULL)
 
 272         debug(ctx, "Image header:\n");
 
 273         debug(ctx, "\tformat:     0x%08x (%u)\n", i->format, i->format);
 
 274         debug(ctx, "\twidth:      0x%08x (%u)\n", i->width, i->width);
 
 275         debug(ctx, "\theight:     0x%08x (%u)\n", i->height, i->height);
 
 276         debug(ctx, "\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
 
 279 static void debug_dump_power_header(am7xxx_context *ctx, struct am7xxx_power_header *p)
 
 281         if (ctx == NULL || p == NULL)
 
 284         debug(ctx, "Power header:\n");
 
 285         debug(ctx, "\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
 
 286         debug(ctx, "\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
 
 287         debug(ctx, "\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
 
 290 static void debug_dump_zoom_header(am7xxx_context *ctx, struct am7xxx_zoom_header *z)
 
 292         if (ctx == NULL || z == NULL)
 
 295         debug(ctx, "Zoom header:\n");
 
 296         debug(ctx, "\tbit1: 0x%08x (%u)\n", z->bit1, z->bit1);
 
 297         debug(ctx, "\tbit0: 0x%08x (%u)\n", z->bit0, z->bit0);
 
 300 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
 
 302         if (ctx == NULL || h == NULL)
 
 305         debug(ctx, "BEGIN\n");
 
 306         debug(ctx, "packet_type:     0x%08x (%u)\n", h->packet_type, h->packet_type);
 
 307         debug(ctx, "direction:       0x%02hhx (%hhu) (%s)\n", h->direction, h->direction,
 
 308               h->direction == AM7XXX_DIRECTION_IN ? "IN" :
 
 309               h->direction == AM7XXX_DIRECTION_OUT ? "OUT" :
 
 311         debug(ctx, "header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
 
 312         debug(ctx, "unknown2:        0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
 
 313         debug(ctx, "unknown3:        0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
 
 315         switch(h->packet_type) {
 
 316         case AM7XXX_PACKET_TYPE_DEVINFO:
 
 317                 debug_dump_devinfo_header(ctx, &(h->header_data.devinfo));
 
 320         case AM7XXX_PACKET_TYPE_IMAGE:
 
 321                 debug_dump_image_header(ctx, &(h->header_data.image));
 
 324         case AM7XXX_PACKET_TYPE_POWER:
 
 325                 debug_dump_power_header(ctx, &(h->header_data.power));
 
 328         case AM7XXX_PACKET_TYPE_ZOOM:
 
 329                 debug_dump_zoom_header(ctx, &(h->header_data.zoom));
 
 333                 debug(ctx, "Parsing data not supported for this packet type!\n");
 
 334                 debug_dump_generic_header(ctx, &(h->header_data.data));
 
 337         debug(ctx, "END\n\n");
 
 340 static inline unsigned int in_80chars(unsigned int i)
 
 342         /* The 3 below is the length of "xx " where xx is the hex string
 
 343          * representation of a byte */
 
 344         return ((i+1) % (80/3));
 
 347 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
 
 348                               uint8_t *buffer, unsigned int len)
 
 352         if (ctx == NULL || buffer == NULL || len == 0)
 
 357                 trace(ctx, "%s\n", message);
 
 359         for (i = 0; i < len; i++) {
 
 360                 trace(ctx, "%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
 
 365 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
 
 371 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
 
 372                               uint8_t *buffer, unsigned int len)
 
 381 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
 
 386         ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
 
 387         if (ret != 0 || (unsigned int)transferred != len) {
 
 388                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
 
 389                       ret, transferred, len);
 
 393         trace_dump_buffer(dev->ctx, "<-- received", buffer, len);
 
 398 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
 
 403         trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
 
 405         ret = libusb_bulk_transfer(dev->usb_device, 0x1, buffer, len, &transferred, 0);
 
 406         if (ret != 0 || (unsigned int)transferred != len) {
 
 407                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
 
 408                       ret, transferred, len);
 
 415 static void send_data_async_complete_cb(struct libusb_transfer *transfer)
 
 417         am7xxx_device *dev = (am7xxx_device *)(transfer->user_data);
 
 418         int *completed = &(dev->transfer_completed);
 
 419         int transferred = transfer->actual_length;
 
 422         if (transferred != transfer->length) {
 
 423                 error(dev->ctx, "transferred: %d (expected %u)\n",
 
 424                       transferred, transfer->length);
 
 427         switch (transfer->status) {
 
 428         case LIBUSB_TRANSFER_COMPLETED:
 
 431         case LIBUSB_TRANSFER_TIMED_OUT:
 
 432                 ret = LIBUSB_ERROR_TIMEOUT;
 
 434         case LIBUSB_TRANSFER_STALL:
 
 435                 ret = LIBUSB_ERROR_PIPE;
 
 437         case LIBUSB_TRANSFER_OVERFLOW:
 
 438                 ret = LIBUSB_ERROR_OVERFLOW;
 
 440         case LIBUSB_TRANSFER_NO_DEVICE:
 
 441                 ret = LIBUSB_ERROR_NO_DEVICE;
 
 443         case LIBUSB_TRANSFER_ERROR:
 
 444         case LIBUSB_TRANSFER_CANCELLED:
 
 445                 ret = LIBUSB_ERROR_IO;
 
 448                 error(dev->ctx, "unrecognised status code %d", transfer->status);
 
 449                 ret = LIBUSB_ERROR_OTHER;
 
 453                 error(dev->ctx, "libusb transfer failed: %s",
 
 454                       libusb_error_name(ret));
 
 456         libusb_free_transfer(transfer);
 
 462 static inline void wait_for_trasfer_completed(am7xxx_device *dev)
 
 464         while (!dev->transfer_completed) {
 
 465                 int ret = libusb_handle_events_completed(dev->ctx->usb_context,
 
 466                                                          &(dev->transfer_completed));
 
 468                         if (ret == LIBUSB_ERROR_INTERRUPTED)
 
 470                         error(dev->ctx, "libusb_handle_events failed: %s, cancelling transfer and retrying",
 
 471                               libusb_error_name(ret));
 
 472                         libusb_cancel_transfer(dev->transfer);
 
 478 static int send_data_async(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
 
 481         uint8_t *transfer_buffer;
 
 483         dev->transfer = libusb_alloc_transfer(0);
 
 484         if (dev->transfer == NULL) {
 
 485                 error(dev->ctx, "cannot allocate transfer (%s)\n",
 
 490         /* Make a copy of the buffer so the caller can safely reuse it just
 
 491          * after libusb_submit_transfer() has returned. This technique
 
 492          * requires more allocations than a proper double-buffering approach
 
 493          * but it takes a lot less code. */
 
 494         transfer_buffer = malloc(len);
 
 495         if (transfer_buffer == NULL) {
 
 496                 error(dev->ctx, "cannot allocate transfer buffer (%s)\n",
 
 501         memcpy(transfer_buffer, buffer, len);
 
 503         dev->transfer->flags |= LIBUSB_TRANSFER_FREE_BUFFER;
 
 504         libusb_fill_bulk_transfer(dev->transfer, dev->usb_device, 0x1,
 
 505                                   transfer_buffer, len,
 
 506                                   send_data_async_complete_cb, dev, 0);
 
 508         /* wait for the previous transfer to complete */
 
 509         wait_for_trasfer_completed(dev);
 
 511         trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
 
 513         dev->transfer_completed = 0;
 
 514         ret = libusb_submit_transfer(dev->transfer);
 
 521         libusb_free_transfer(dev->transfer);
 
 522         dev->transfer = NULL;
 
 526 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
 
 528         uint8_t **buffer_iterator = &buffer;
 
 530         put_le32(h->packet_type, buffer_iterator);
 
 531         put_8(h->direction, buffer_iterator);
 
 532         put_8(h->header_data_len, buffer_iterator);
 
 533         put_8(h->unknown2, buffer_iterator);
 
 534         put_8(h->unknown3, buffer_iterator);
 
 535         put_le32(h->header_data.data.field0, buffer_iterator);
 
 536         put_le32(h->header_data.data.field1, buffer_iterator);
 
 537         put_le32(h->header_data.data.field2, buffer_iterator);
 
 538         put_le32(h->header_data.data.field3, buffer_iterator);
 
 541 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
 
 543         uint8_t **buffer_iterator = &buffer;
 
 545         h->packet_type = get_le32(buffer_iterator);
 
 546         h->direction = get_8(buffer_iterator);
 
 547         h->header_data_len = get_8(buffer_iterator);
 
 548         h->unknown2 = get_8(buffer_iterator);
 
 549         h->unknown3 = get_8(buffer_iterator);
 
 550         h->header_data.data.field0 = get_le32(buffer_iterator);
 
 551         h->header_data.data.field1 = get_le32(buffer_iterator);
 
 552         h->header_data.data.field2 = get_le32(buffer_iterator);
 
 553         h->header_data.data.field3 = get_le32(buffer_iterator);
 
 556 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
 
 560         ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
 
 564         unserialize_header(dev->buffer, h);
 
 566         if (h->direction == AM7XXX_DIRECTION_IN) {
 
 570                       "Expected an AM7XXX_DIRECTION_IN packet, got one with direction = %d. Weird!\n",
 
 575         debug_dump_header(dev->ctx, h);
 
 581 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
 
 585         debug_dump_header(dev->ctx, h);
 
 587         /* For symmetry with read_header() we should check here for
 
 588          * h->direction == AM7XXX_DIRECTION_OUT but we just ensure that in all
 
 589          * the callers and save some cycles here.
 
 592         serialize_header(h, dev->buffer);
 
 594         ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
 
 596                 error(dev->ctx, "failed to send data\n");
 
 601 static int send_command(am7xxx_device *dev, am7xxx_packet_type type)
 
 603         struct am7xxx_header h = {
 
 605                 .direction       = AM7XXX_DIRECTION_OUT,
 
 606                 .header_data_len = 0x00,
 
 619         return send_header(dev, &h);
 
 623 /* When level == AM7XXX_LOG_FATAL do not check the log_level from the context
 
 624  * and print the message unconditionally, this makes it possible to print
 
 625  * fatal messages even early on initialization, before the context has been
 
 627 static void log_message(am7xxx_context *ctx,
 
 629                         const char *function,
 
 636         if (level == AM7XXX_LOG_FATAL || (ctx && level <= ctx->log_level)) {
 
 638                         fprintf(stderr, "%s", function);
 
 640                                 fprintf(stderr, "[%d]", line);
 
 641                         fprintf(stderr, ": ");
 
 645                 vfprintf(stderr, fmt, ap);
 
 652 static am7xxx_device *add_new_device(am7xxx_context *ctx,
 
 653                                      const struct am7xxx_usb_device_descriptor *desc)
 
 655         am7xxx_device **devices_list;
 
 656         am7xxx_device *new_device;
 
 659                 fatal("context must not be NULL!\n");
 
 663         new_device = malloc(sizeof(*new_device));
 
 664         if (new_device == NULL) {
 
 665                 fatal("cannot allocate a new device (%s)\n", strerror(errno));
 
 668         memset(new_device, 0, sizeof(*new_device));
 
 670         new_device->ctx = ctx;
 
 671         new_device->desc = desc;
 
 672         new_device->transfer_completed = 1;
 
 674         devices_list = &(ctx->devices_list);
 
 676         if (*devices_list == NULL) {
 
 677                 *devices_list = new_device;
 
 679                 am7xxx_device *prev = *devices_list;
 
 682                 prev->next = new_device;
 
 687 static am7xxx_device *find_device(am7xxx_context *ctx,
 
 688                                   unsigned int device_index)
 
 691         am7xxx_device *current;
 
 694                 fatal("context must not be NULL!\n");
 
 698         current = ctx->devices_list;
 
 699         while (current && i++ < device_index)
 
 700                 current = current->next;
 
 705 static int open_device(am7xxx_context *ctx,
 
 706                        unsigned int device_index,
 
 707                        libusb_device* usb_dev,
 
 712         *dev = find_device(ctx, device_index);
 
 718         /* the usb device has already been opened */
 
 719         if ((*dev)->usb_device) {
 
 720                 debug(ctx, "(*dev)->usb_device already set\n");
 
 725         ret = libusb_open(usb_dev, &((*dev)->usb_device));
 
 727                 debug(ctx, "libusb_open failed\n");
 
 731         /* XXX, the device is now open, if any of the calls below fail we need
 
 732          * to close it again before bailing out.
 
 735         ret = libusb_set_configuration((*dev)->usb_device,
 
 736                                        (*dev)->desc->configuration);
 
 738                 debug(ctx, "libusb_set_configuration failed\n");
 
 739                 debug(ctx, "Cannot set configuration %hhu\n",
 
 740                       (*dev)->desc->configuration);
 
 741                 goto out_libusb_close;
 
 744         ret = libusb_claim_interface((*dev)->usb_device,
 
 745                                      (*dev)->desc->interface_number);
 
 747                 debug(ctx, "libusb_claim_interface failed\n");
 
 748                 debug(ctx, "Cannot claim interface %hhu\n",
 
 749                       (*dev)->desc->interface_number);
 
 751                 libusb_close((*dev)->usb_device);
 
 752                 (*dev)->usb_device = NULL;
 
 759         SCAN_OP_BUILD_DEVLIST,
 
 764  * This is where the central logic of multi-device support is.
 
 766  * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
 
 767  * 'dev' are ignored; the function returns 0 on success and a negative value
 
 770  * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
 
 771  * device with index 'open_device_index' and returns the correspondent
 
 772  * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
 
 773  * 1 if the device was already open and a negative value on error.
 
 776  * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
 
 777  * the caller might want to call am7xxx_shutdown() in order to remove
 
 778  * devices possibly added before the failure.
 
 780 static int scan_devices(am7xxx_context *ctx, scan_op op,
 
 781                         unsigned int open_device_index, am7xxx_device **dev)
 
 784         libusb_device** list;
 
 785         unsigned int current_index;
 
 790                 fatal("context must not be NULL!\n");
 
 793         if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
 
 794                 error(ctx, "device scan done already? Abort!\n");
 
 798         num_devices = libusb_get_device_list(ctx->usb_context, &list);
 
 799         if (num_devices < 0) {
 
 805         for (i = 0; i < num_devices; i++) {
 
 806                 struct libusb_device_descriptor desc;
 
 809                 ret = libusb_get_device_descriptor(list[i], &desc);
 
 813                 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
 
 814                         if (desc.idVendor == supported_devices[j].vendor_id &&
 
 815                             desc.idProduct == supported_devices[j].product_id) {
 
 817                                 if (op == SCAN_OP_BUILD_DEVLIST) {
 
 818                                         am7xxx_device *new_device;
 
 819                                         info(ctx, "am7xxx device found, index: %d, name: %s\n",
 
 821                                              supported_devices[j].name);
 
 822                                         new_device = add_new_device(ctx, &supported_devices[j]);
 
 823                                         if (new_device == NULL) {
 
 824                                                 /* XXX, the caller may want
 
 825                                                  * to call am7xxx_shutdown() if
 
 826                                                  * we fail here, as we may have
 
 827                                                  * added some devices already
 
 829                                                 debug(ctx, "Cannot create a new device\n");
 
 833                                 } else if (op == SCAN_OP_OPEN_DEVICE &&
 
 834                                            current_index == open_device_index) {
 
 836                                         ret = open_device(ctx,
 
 841                                                 debug(ctx, "open_device failed\n");
 
 852         /* if we made it up to here when op == SCAN_OP_OPEN_DEVICE,
 
 853          * no devices to open had been found. */
 
 854         if (op == SCAN_OP_OPEN_DEVICE) {
 
 855                 error(ctx, "Cannot find any device to open\n");
 
 860         /* everything went fine when building the device list */
 
 863         libusb_free_device_list(list, 1);
 
 867 /* Device specific operations */
 
 869 static int default_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
 
 872         struct am7xxx_header h = {
 
 873                 .packet_type     = AM7XXX_PACKET_TYPE_POWER,
 
 874                 .direction       = AM7XXX_DIRECTION_OUT,
 
 875                 .header_data_len = sizeof(struct am7xxx_power_header),
 
 881         case AM7XXX_POWER_OFF:
 
 882                 h.header_data.power.bit2 = 0;
 
 883                 h.header_data.power.bit1 = 0;
 
 884                 h.header_data.power.bit0 = 0;
 
 887         case AM7XXX_POWER_LOW:
 
 888                 h.header_data.power.bit2 = 0;
 
 889                 h.header_data.power.bit1 = 0;
 
 890                 h.header_data.power.bit0 = 1;
 
 893         case AM7XXX_POWER_MIDDLE:
 
 894                 h.header_data.power.bit2 = 0;
 
 895                 h.header_data.power.bit1 = 1;
 
 896                 h.header_data.power.bit0 = 0;
 
 899         case AM7XXX_POWER_HIGH:
 
 900                 h.header_data.power.bit2 = 0;
 
 901                 h.header_data.power.bit1 = 1;
 
 902                 h.header_data.power.bit0 = 1;
 
 905         case AM7XXX_POWER_TURBO:
 
 906                 h.header_data.power.bit2 = 1;
 
 907                 h.header_data.power.bit1 = 0;
 
 908                 h.header_data.power.bit0 = 0;
 
 912                 error(dev->ctx, "Unsupported power mode.\n");
 
 916         ret = send_header(dev, &h);
 
 923 static int picopix_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
 
 926         case AM7XXX_POWER_LOW:
 
 927                 return send_command(dev, AM7XXX_PACKET_TYPE_PICOPIX_POWER_LOW);
 
 929         case AM7XXX_POWER_MIDDLE:
 
 930                 return send_command(dev, AM7XXX_PACKET_TYPE_PICOPIX_POWER_MEDIUM);
 
 932         case AM7XXX_POWER_HIGH:
 
 933                 return send_command(dev, AM7XXX_PACKET_TYPE_PICOPIX_POWER_HIGH);
 
 935         case AM7XXX_POWER_OFF:
 
 936         case AM7XXX_POWER_TURBO:
 
 938                 error(dev->ctx, "Unsupported power mode.\n");
 
 943 static int default_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
 
 946         struct am7xxx_header h = {
 
 947                 .packet_type     = AM7XXX_PACKET_TYPE_ZOOM,
 
 948                 .direction       = AM7XXX_DIRECTION_OUT,
 
 949                 .header_data_len = sizeof(struct am7xxx_zoom_header),
 
 955         case AM7XXX_ZOOM_ORIGINAL:
 
 956                 h.header_data.zoom.bit1 = 0;
 
 957                 h.header_data.zoom.bit0 = 0;
 
 961                 h.header_data.zoom.bit1 = 0;
 
 962                 h.header_data.zoom.bit0 = 1;
 
 965         case AM7XXX_ZOOM_H_V:
 
 966                 h.header_data.zoom.bit1 = 1;
 
 967                 h.header_data.zoom.bit0 = 0;
 
 970         case AM7XXX_ZOOM_TEST:
 
 971                 h.header_data.zoom.bit1 = 1;
 
 972                 h.header_data.zoom.bit0 = 1;
 
 975         case AM7XXX_ZOOM_TELE:
 
 977                 error(dev->ctx, "Unsupported zoom mode.\n");
 
 981         ret = send_header(dev, &h);
 
 988 static int picopix_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
 
 991         am7xxx_packet_type packet_type;
 
 994         case AM7XXX_ZOOM_ORIGINAL:
 
 995                 packet_type = AM7XXX_PACKET_TYPE_PICOPIX_DISABLE_TI;
 
 998         case AM7XXX_ZOOM_TELE:
 
 999                 packet_type = AM7XXX_PACKET_TYPE_PICOPIX_ENABLE_TI;
 
1003         case AM7XXX_ZOOM_H_V:
 
1004         case AM7XXX_ZOOM_TEST:
 
1006                 error(dev->ctx, "Unsupported zoom mode.\n");
 
1010         ret = send_command(dev, packet_type);
 
1014         /* The Windows drivers wait for 100ms and send the same command again,
 
1015          * probably to overcome a firmware deficiency */
 
1020         return send_command(dev, packet_type);
 
1025 AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
 
1029         *ctx = malloc(sizeof(**ctx));
 
1031                 fatal("cannot allocate the context (%s)\n", strerror(errno));
 
1035         memset(*ctx, 0, sizeof(**ctx));
 
1037         /* Set the highest log level during initialization */
 
1038         (*ctx)->log_level = AM7XXX_LOG_TRACE;
 
1040         ret = libusb_init(&((*ctx)->usb_context));
 
1042                 goto out_free_context;
 
1044         libusb_set_debug((*ctx)->usb_context, LIBUSB_LOG_LEVEL_INFO);
 
1046         ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
 
1048                 error(*ctx, "scan_devices() failed\n");
 
1049                 am7xxx_shutdown(*ctx);
 
1053         /* Set a quieter log level as default for normal operation */
 
1054         (*ctx)->log_level = AM7XXX_LOG_ERROR;
 
1064 AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
 
1066         am7xxx_device *current;
 
1069                 fatal("context must not be NULL!\n");
 
1073         current = ctx->devices_list;
 
1075                 am7xxx_device *next = current->next;
 
1076                 am7xxx_close_device(current);
 
1077                 free(current->device_info);
 
1082         libusb_exit(ctx->usb_context);
 
1087 AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
 
1089         ctx->log_level = log_level;
 
1092 AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
 
1093                        unsigned int device_index)
 
1098                 fatal("context must not be NULL!\n");
 
1102         ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
 
1106         } else if (ret > 0) {
 
1107                 warning(ctx, "device %d already open\n", device_index);
 
1113         /* Philips/Sagemcom PicoPix projectors require that the DEVINFO packet
 
1114          * is the first one to be sent to the device in order for it to
 
1115          * successfully return the correct device information.
 
1117          * So, if there is not a cached version of it (from a previous open),
 
1118          * we ask for device info at open time,
 
1120         if ((*dev)->device_info == NULL) {
 
1121                 ret = am7xxx_get_device_info(*dev, NULL);
 
1123                         error(ctx, "cannot get device info\n");
 
1130 AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
 
1133                 fatal("dev must not be NULL!\n");
 
1136         if (dev->usb_device) {
 
1137                 wait_for_trasfer_completed(dev);
 
1138                 libusb_release_interface(dev->usb_device, dev->desc->interface_number);
 
1139                 libusb_close(dev->usb_device);
 
1140                 dev->usb_device = NULL;
 
1145 AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
 
1146                            am7xxx_device_info *device_info)
 
1149         struct am7xxx_header h;
 
1151         if (dev->device_info) {
 
1152                 memcpy(device_info, dev->device_info, sizeof(*device_info));
 
1156         ret = send_command(dev, AM7XXX_PACKET_TYPE_DEVINFO);
 
1160         memset(&h, 0, sizeof(h));
 
1161         ret = read_header(dev, &h);
 
1165         if (h.packet_type != AM7XXX_PACKET_TYPE_DEVINFO) {
 
1166                 error(dev->ctx, "expected packet type: %d, got %d instead!\n",
 
1167                       AM7XXX_PACKET_TYPE_DEVINFO, h.packet_type);
 
1172         dev->device_info = malloc(sizeof(*dev->device_info));
 
1173         if (dev->device_info == NULL) {
 
1174                 error(dev->ctx, "cannot allocate a device info (%s)\n",
 
1178         memset(dev->device_info, 0, sizeof(*dev->device_info));
 
1180         dev->device_info->native_width = h.header_data.devinfo.native_width;
 
1181         dev->device_info->native_height = h.header_data.devinfo.native_height;
 
1183         /* No reason to expose these in the public API until we know what they mean */
 
1184         dev->device_info->unknown0 = h.header_data.devinfo.unknown0;
 
1185         dev->device_info->unknown1 = h.header_data.devinfo.unknown1;
 
1191 AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
 
1192                                         unsigned int upscale,
 
1193                                         unsigned int original_width,
 
1194                                         unsigned int original_height,
 
1195                                         unsigned int *scaled_width,
 
1196                                         unsigned int *scaled_height)
 
1199         am7xxx_device_info device_info;
 
1204         ret = am7xxx_get_device_info(dev, &device_info);
 
1206                 error(dev->ctx, "cannot get device info\n");
 
1211          * Check if we need to rescale; if the input image fits the native
 
1212          * dimensions there is no need to, unless we want to upscale.
 
1215             original_width <= device_info.native_width &&
 
1216             original_height <= device_info.native_height ) {
 
1217                 debug(dev->ctx, "CASE 0, no rescaling, the original image fits already\n");
 
1218                 *scaled_width = original_width;
 
1219                 *scaled_height = original_height;
 
1223         /* Input dimensions relative to the device native dimensions */
 
1224         width_ratio =  (float)original_width / device_info.native_width;
 
1225         height_ratio = (float)original_height / device_info.native_height;
 
1227         if (width_ratio > height_ratio) {
 
1229                  * The input is proportionally "wider" than the device viewport
 
1230                  * so its height needs to be adjusted
 
1232                 debug(dev->ctx, "CASE 1, original image wider, adjust the scaled height\n");
 
1233                 *scaled_width = device_info.native_width;
 
1234                 *scaled_height = (unsigned int)lroundf(original_height / width_ratio);
 
1235         } else if (width_ratio < height_ratio) {
 
1237                  * The input is proportionally "taller" than the device viewport
 
1238                  * so its width needs to be adjusted
 
1240                 debug(dev->ctx, "CASE 2 original image taller, adjust the scaled width\n");
 
1241                 *scaled_width = (unsigned int)lroundf(original_width / height_ratio);
 
1242                 *scaled_height = device_info.native_height;
 
1244                 debug(dev->ctx, "CASE 3, just rescale, same aspect ratio already\n");
 
1245                 *scaled_width = device_info.native_width;
 
1246                 *scaled_height = device_info.native_height;
 
1248         debug(dev->ctx, "scaled dimensions: %dx%d\n", *scaled_width, *scaled_height);
 
1253 AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
 
1254                       am7xxx_image_format format,
 
1256                       unsigned int height,
 
1258                       unsigned int image_size)
 
1261         struct am7xxx_header h = {
 
1262                 .packet_type     = AM7XXX_PACKET_TYPE_IMAGE,
 
1263                 .direction       = AM7XXX_DIRECTION_OUT,
 
1264                 .header_data_len = sizeof(struct am7xxx_image_header),
 
1272                                 .image_size = image_size,
 
1277         ret = send_header(dev, &h);
 
1281         if (image == NULL || image_size == 0) {
 
1282                 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
 
1286         return send_data(dev, image, image_size);
 
1289 AM7XXX_PUBLIC int am7xxx_send_image_async(am7xxx_device *dev,
 
1290                                           am7xxx_image_format format,
 
1292                                           unsigned int height,
 
1294                                           unsigned int image_size)
 
1297         struct am7xxx_header h = {
 
1298                 .packet_type     = AM7XXX_PACKET_TYPE_IMAGE,
 
1299                 .direction       = AM7XXX_DIRECTION_OUT,
 
1300                 .header_data_len = sizeof(struct am7xxx_image_header),
 
1308                                 .image_size = image_size,
 
1313         ret = send_header(dev, &h);
 
1317         if (image == NULL || image_size == 0) {
 
1318                 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
 
1322         return send_data_async(dev, image, image_size);
 
1325 AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
 
1327         if (dev->desc->ops.set_power_mode == NULL) {
 
1329                         "setting power mode is unsupported on this device\n");
 
1333         return dev->desc->ops.set_power_mode(dev, power);
 
1336 AM7XXX_PUBLIC int am7xxx_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
 
1338         if (dev->desc->ops.set_zoom_mode == NULL) {
 
1340                         "setting zoom mode is unsupported on this device\n");
 
1344         return dev->desc->ops.set_zoom_mode(dev, zoom);