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__)
 
  67 struct am7xxx_usb_device_descriptor {
 
  73 static struct am7xxx_usb_device_descriptor supported_devices[] = {
 
  85                 .name       ="Aiptek PocketCinema T25",
 
  90                 .name       = "Philips/Sagemcom PicoPix 1020",
 
  95                 .name       = "Philips/Sagemcom PicoPix 2055",
 
 101 /* The header size on the wire is known to be always 24 bytes, regardless of
 
 102  * the memory configuration enforced by different architectures or compilers
 
 103  * for struct am7xxx_header
 
 105 #define AM7XXX_HEADER_WIRE_SIZE 24
 
 107 struct _am7xxx_device {
 
 108         libusb_device_handle *usb_device;
 
 109         uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
 
 110         am7xxx_device_info *device_info;
 
 115 struct _am7xxx_context {
 
 116         libusb_context *usb_context;
 
 118         am7xxx_device *devices_list;
 
 122         AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
 
 123         AM7XXX_PACKET_TYPE_IMAGE   = 0x02,
 
 124         AM7XXX_PACKET_TYPE_POWER   = 0x04,
 
 125         AM7XXX_PACKET_TYPE_ZOOM    = 0x05,
 
 126 } am7xxx_packet_type;
 
 128 struct am7xxx_generic_header {
 
 135 struct am7xxx_devinfo_header {
 
 136         uint32_t native_width;
 
 137         uint32_t native_height;
 
 142 struct am7xxx_image_header {
 
 149 struct am7xxx_power_header {
 
 155 struct am7xxx_zoom_header {
 
 161  * Examples of packet headers:
 
 164  * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
 
 167  * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 
 170 /* Direction of the communication from the host point of view */
 
 171 #define AM7XXX_DIRECTION_OUT 0 /* host -> device */
 
 172 #define AM7XXX_DIRECTION_IN  1 /* host <- device */
 
 174 struct am7xxx_header {
 
 175         uint32_t packet_type;
 
 177         uint8_t header_data_len;
 
 181                 struct am7xxx_generic_header data;
 
 182                 struct am7xxx_devinfo_header devinfo;
 
 183                 struct am7xxx_image_header image;
 
 184                 struct am7xxx_power_header power;
 
 185                 struct am7xxx_zoom_header zoom;
 
 191 static void debug_dump_devinfo_header(am7xxx_context *ctx, struct am7xxx_devinfo_header *d)
 
 193         if (ctx == NULL || d == NULL)
 
 196         debug(ctx, "Info header:\n");
 
 197         debug(ctx, "\tnative_width:  0x%08x (%u)\n", d->native_width, d->native_width);
 
 198         debug(ctx, "\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
 
 199         debug(ctx, "\tunknown0:      0x%08x (%u)\n", d->unknown0, d->unknown0);
 
 200         debug(ctx, "\tunknown1:      0x%08x (%u)\n", d->unknown1, d->unknown1);
 
 203 static void debug_dump_image_header(am7xxx_context *ctx, struct am7xxx_image_header *i)
 
 205         if (ctx == NULL || i == NULL)
 
 208         debug(ctx, "Image header:\n");
 
 209         debug(ctx, "\tformat:     0x%08x (%u)\n", i->format, i->format);
 
 210         debug(ctx, "\twidth:      0x%08x (%u)\n", i->width, i->width);
 
 211         debug(ctx, "\theight:     0x%08x (%u)\n", i->height, i->height);
 
 212         debug(ctx, "\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
 
 215 static void debug_dump_power_header(am7xxx_context *ctx, struct am7xxx_power_header *p)
 
 217         if (ctx == NULL || p == NULL)
 
 220         debug(ctx, "Power header:\n");
 
 221         debug(ctx, "\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
 
 222         debug(ctx, "\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
 
 223         debug(ctx, "\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
 
 226 static void debug_dump_zoom_header(am7xxx_context *ctx, struct am7xxx_zoom_header *z)
 
 228         if (ctx == NULL || z == NULL)
 
 231         debug(ctx, "Zoom header:\n");
 
 232         debug(ctx, "\tbit1: 0x%08x (%u)\n", z->bit1, z->bit1);
 
 233         debug(ctx, "\tbit0: 0x%08x (%u)\n", z->bit0, z->bit0);
 
 236 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
 
 238         if (ctx == NULL || h == NULL)
 
 241         debug(ctx, "BEGIN\n");
 
 242         debug(ctx, "packet_type:     0x%08x (%u)\n", h->packet_type, h->packet_type);
 
 243         debug(ctx, "direction:       0x%02hhx (%hhu) (%s)\n", h->direction, h->direction,
 
 244               h->direction == AM7XXX_DIRECTION_IN ? "IN" :
 
 245               h->direction == AM7XXX_DIRECTION_OUT ? "OUT" :
 
 247         debug(ctx, "header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
 
 248         debug(ctx, "unknown2:        0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
 
 249         debug(ctx, "unknown3:        0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
 
 251         switch(h->packet_type) {
 
 252         case AM7XXX_PACKET_TYPE_DEVINFO:
 
 253                 debug_dump_devinfo_header(ctx, &(h->header_data.devinfo));
 
 256         case AM7XXX_PACKET_TYPE_IMAGE:
 
 257                 debug_dump_image_header(ctx, &(h->header_data.image));
 
 260         case AM7XXX_PACKET_TYPE_POWER:
 
 261                 debug_dump_power_header(ctx, &(h->header_data.power));
 
 264         case AM7XXX_PACKET_TYPE_ZOOM:
 
 265                 debug_dump_zoom_header(ctx, &(h->header_data.zoom));
 
 269                 debug(ctx, "Packet type not supported!\n");
 
 272         debug(ctx, "END\n\n");
 
 275 static inline unsigned int in_80chars(unsigned int i)
 
 277         /* The 3 below is the length of "xx " where xx is the hex string
 
 278          * representation of a byte */
 
 279         return ((i+1) % (80/3));
 
 282 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
 
 283                               uint8_t *buffer, unsigned int len)
 
 287         if (ctx == NULL || buffer == NULL || len == 0)
 
 292                 trace(ctx, "%s\n", message);
 
 294         for (i = 0; i < len; i++) {
 
 295                 trace(ctx, "%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
 
 300 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
 
 306 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
 
 307                               uint8_t *buffer, unsigned int len)
 
 316 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
 
 321         ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
 
 322         if (ret != 0 || (unsigned int)transferred != len) {
 
 323                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
 
 324                       ret, transferred, len);
 
 328         trace_dump_buffer(dev->ctx, "<-- received", buffer, len);
 
 333 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
 
 338         trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
 
 340         ret = libusb_bulk_transfer(dev->usb_device, 0x1, buffer, len, &transferred, 0);
 
 341         if (ret != 0 || (unsigned int)transferred != len) {
 
 342                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
 
 343                       ret, transferred, len);
 
 350 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
 
 352         uint8_t **buffer_iterator = &buffer;
 
 354         put_le32(h->packet_type, buffer_iterator);
 
 355         put_8(h->direction, buffer_iterator);
 
 356         put_8(h->header_data_len, buffer_iterator);
 
 357         put_8(h->unknown2, buffer_iterator);
 
 358         put_8(h->unknown3, buffer_iterator);
 
 359         put_le32(h->header_data.data.field0, buffer_iterator);
 
 360         put_le32(h->header_data.data.field1, buffer_iterator);
 
 361         put_le32(h->header_data.data.field2, buffer_iterator);
 
 362         put_le32(h->header_data.data.field3, buffer_iterator);
 
 365 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
 
 367         uint8_t **buffer_iterator = &buffer;
 
 369         h->packet_type = get_le32(buffer_iterator);
 
 370         h->direction = get_8(buffer_iterator);
 
 371         h->header_data_len = get_8(buffer_iterator);
 
 372         h->unknown2 = get_8(buffer_iterator);
 
 373         h->unknown3 = get_8(buffer_iterator);
 
 374         h->header_data.data.field0 = get_le32(buffer_iterator);
 
 375         h->header_data.data.field1 = get_le32(buffer_iterator);
 
 376         h->header_data.data.field2 = get_le32(buffer_iterator);
 
 377         h->header_data.data.field3 = get_le32(buffer_iterator);
 
 380 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
 
 384         ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
 
 388         unserialize_header(dev->buffer, h);
 
 390         if (h->direction == AM7XXX_DIRECTION_IN) {
 
 394                       "Expected an AM7XXX_DIRECTION_IN packet, got one with direction = %d. Weird!\n",
 
 399         debug_dump_header(dev->ctx, h);
 
 405 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
 
 409         debug_dump_header(dev->ctx, h);
 
 411         /* For symmetry with read_header() we should check here for
 
 412          * h->direction == AM7XXX_DIRECTION_OUT but we just ensure that in all
 
 413          * the callers and save some cycles here.
 
 416         serialize_header(h, dev->buffer);
 
 418         ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
 
 420                 error(dev->ctx, "failed to send data\n");
 
 425 /* When level == AM7XXX_LOG_FATAL do not check the log_level from the context
 
 426  * and print the message unconditionally, this makes it possible to print
 
 427  * fatal messages even early on initialization, before the context has been
 
 429 static void log_message(am7xxx_context *ctx,
 
 431                         const char *function,
 
 438         if (level == AM7XXX_LOG_FATAL || (ctx && level <= ctx->log_level)) {
 
 440                         fprintf(stderr, "%s", function);
 
 442                                 fprintf(stderr, "[%d]", line);
 
 443                         fprintf(stderr, ": ");
 
 447                 vfprintf(stderr, fmt, ap);
 
 454 static am7xxx_device *add_new_device(am7xxx_context *ctx)
 
 456         am7xxx_device **devices_list;
 
 457         am7xxx_device *new_device;
 
 460                 fatal("context must not be NULL!\n");
 
 464         new_device = malloc(sizeof(*new_device));
 
 465         if (new_device == NULL) {
 
 466                 fatal("cannot allocate a new device (%s)\n", strerror(errno));
 
 469         memset(new_device, 0, sizeof(*new_device));
 
 471         new_device->ctx = ctx;
 
 473         devices_list = &(ctx->devices_list);
 
 475         if (*devices_list == NULL) {
 
 476                 *devices_list = new_device;
 
 478                 am7xxx_device *prev = *devices_list;
 
 481                 prev->next = new_device;
 
 486 static am7xxx_device *find_device(am7xxx_context *ctx,
 
 487                                   unsigned int device_index)
 
 490         am7xxx_device *current;
 
 493                 fatal("context must not be NULL!\n");
 
 497         current = ctx->devices_list;
 
 498         while (current && i++ < device_index)
 
 499                 current = current->next;
 
 505         SCAN_OP_BUILD_DEVLIST,
 
 510  * This is where the central logic of multi-device support is.
 
 512  * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
 
 513  * 'dev' are ignored; the function returns 0 on success and a negative value
 
 516  * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
 
 517  * device with index 'open_device_index' and returns the correspondent
 
 518  * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
 
 519  * 1 if the device was already open and a negative value on error.
 
 522  * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
 
 523  * the caller might want to call am7xxx_shutdown() in order to remove
 
 524  * devices possibly added before the failure.
 
 526 static int scan_devices(am7xxx_context *ctx, scan_op op,
 
 527                         unsigned int open_device_index, am7xxx_device **dev)
 
 530         libusb_device** list;
 
 531         unsigned int current_index;
 
 536                 fatal("context must not be NULL!\n");
 
 539         if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
 
 540                 error(ctx, "device scan done already? Abort!\n");
 
 544         num_devices = libusb_get_device_list(ctx->usb_context, &list);
 
 545         if (num_devices < 0) {
 
 551         for (i = 0; i < num_devices; i++) {
 
 552                 struct libusb_device_descriptor desc;
 
 555                 ret = libusb_get_device_descriptor(list[i], &desc);
 
 559                 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
 
 560                         if (desc.idVendor == supported_devices[j].vendor_id &&
 
 561                             desc.idProduct == supported_devices[j].product_id) {
 
 563                                 if (op == SCAN_OP_BUILD_DEVLIST) {
 
 564                                         am7xxx_device *new_device;
 
 565                                         info(ctx, "am7xxx device found, index: %d, name: %s\n",
 
 567                                              supported_devices[j].name);
 
 568                                         new_device = add_new_device(ctx);
 
 569                                         if (new_device == NULL) {
 
 570                                                 /* XXX, the caller may want
 
 571                                                  * to call am7xxx_shutdown() if
 
 572                                                  * we fail here, as we may have
 
 573                                                  * added some devices already
 
 575                                                 debug(ctx, "Cannot create a new device\n");
 
 579                                 } else if (op == SCAN_OP_OPEN_DEVICE &&
 
 580                                            current_index == open_device_index) {
 
 582                                         *dev = find_device(ctx, open_device_index);
 
 588                                         /* the usb device has already been opened */
 
 589                                         if ((*dev)->usb_device) {
 
 590                                                 debug(ctx, "(*dev)->usb_device already set\n");
 
 595                                         ret = libusb_open(list[i], &((*dev)->usb_device));
 
 597                                                 debug(ctx, "libusb_open failed\n");
 
 601                                         libusb_set_configuration((*dev)->usb_device, 2);
 
 602                                         libusb_claim_interface((*dev)->usb_device, 0);
 
 610         /* if we made it up to here we didn't find any device to open */
 
 611         if (op == SCAN_OP_OPEN_DEVICE) {
 
 612                 error(ctx, "Cannot find any device to open\n");
 
 617         /* everything went fine when building the device list */
 
 620         libusb_free_device_list(list, 1);
 
 626 AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
 
 630         *ctx = malloc(sizeof(**ctx));
 
 632                 fatal("cannot allocate the context (%s)\n", strerror(errno));
 
 636         memset(*ctx, 0, sizeof(**ctx));
 
 638         /* Set the highest log level during initialization */
 
 639         (*ctx)->log_level = AM7XXX_LOG_TRACE;
 
 641         ret = libusb_init(&((*ctx)->usb_context));
 
 643                 goto out_free_context;
 
 645         libusb_set_debug((*ctx)->usb_context, 3);
 
 647         ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
 
 649                 error(*ctx, "scan_devices() failed\n");
 
 650                 am7xxx_shutdown(*ctx);
 
 654         /* Set a quieter log level as default for normal operation */
 
 655         (*ctx)->log_level = AM7XXX_LOG_ERROR;
 
 665 AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
 
 667         am7xxx_device *current;
 
 670                 fatal("context must not be NULL!\n");
 
 674         current = ctx->devices_list;
 
 676                 am7xxx_device *next = current->next;
 
 677                 am7xxx_close_device(current);
 
 678                 free(current->device_info);
 
 683         libusb_exit(ctx->usb_context);
 
 688 AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
 
 690         ctx->log_level = log_level;
 
 693 AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
 
 694                        unsigned int device_index)
 
 699                 fatal("context must not be NULL!\n");
 
 703         ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
 
 707         } else if (ret > 0) {
 
 708                 warning(ctx, "device %d already open\n", device_index);
 
 714         /* Philips/Sagemcom PicoPix projectors require that the DEVINFO packet
 
 715          * is the first one to be sent to the device in order for it to
 
 716          * successfully return the correct device information.
 
 718          * So, if there is not a cached version of it (from a previous open),
 
 719          * we ask for device info at open time,
 
 721         if ((*dev)->device_info == NULL) {
 
 722                 ret = am7xxx_get_device_info(*dev, NULL);
 
 724                         error(ctx, "cannot get device info\n");
 
 731 AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
 
 734                 fatal("dev must not be NULL!\n");
 
 737         if (dev->usb_device) {
 
 738                 libusb_release_interface(dev->usb_device, 0);
 
 739                 libusb_close(dev->usb_device);
 
 740                 dev->usb_device = NULL;
 
 745 AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
 
 746                            am7xxx_device_info *device_info)
 
 749         struct am7xxx_header h = {
 
 750                 .packet_type     = AM7XXX_PACKET_TYPE_DEVINFO,
 
 751                 .direction       = AM7XXX_DIRECTION_OUT,
 
 752                 .header_data_len = 0x00,
 
 765         if (dev->device_info) {
 
 766                 memcpy(device_info, dev->device_info, sizeof(*device_info));
 
 770         ret = send_header(dev, &h);
 
 774         ret = read_header(dev, &h);
 
 778         if (h.packet_type != AM7XXX_PACKET_TYPE_DEVINFO) {
 
 779                 error(dev->ctx, "expected packet type: %d, got %d instead!\n",
 
 780                       AM7XXX_PACKET_TYPE_DEVINFO, h.packet_type);
 
 785         dev->device_info = malloc(sizeof(*dev->device_info));
 
 786         if (dev->device_info == NULL) {
 
 787                 error(dev->ctx, "cannot allocate a device info (%s)\n",
 
 791         memset(dev->device_info, 0, sizeof(*dev->device_info));
 
 793         dev->device_info->native_width = h.header_data.devinfo.native_width;
 
 794         dev->device_info->native_height = h.header_data.devinfo.native_height;
 
 796         /* No reason to expose these in the public API until we know what they mean */
 
 797         dev->device_info->unknown0 = h.header_data.devinfo.unknown0;
 
 798         dev->device_info->unknown1 = h.header_data.devinfo.unknown1;
 
 804 AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
 
 805                                         unsigned int upscale,
 
 806                                         unsigned int original_width,
 
 807                                         unsigned int original_height,
 
 808                                         unsigned int *scaled_width,
 
 809                                         unsigned int *scaled_height)
 
 812         am7xxx_device_info device_info;
 
 817         ret = am7xxx_get_device_info(dev, &device_info);
 
 819                 error(dev->ctx, "cannot get device info\n");
 
 824          * Check if we need to rescale; if the input image fits the native
 
 825          * dimensions there is no need to, unless we want to upscale.
 
 828             original_width <= device_info.native_width &&
 
 829             original_height <= device_info.native_height ) {
 
 830                 debug(dev->ctx, "CASE 0, no rescaling, the original image fits already\n");
 
 831                 *scaled_width = original_width;
 
 832                 *scaled_height = original_height;
 
 836         /* Input dimensions relative to the device native dimensions */
 
 837         width_ratio =  (float)original_width / device_info.native_width;
 
 838         height_ratio = (float)original_height / device_info.native_height;
 
 840         if (width_ratio > height_ratio) {
 
 842                  * The input is proportionally "wider" than the device viewport
 
 843                  * so its height needs to be adjusted
 
 845                 debug(dev->ctx, "CASE 1, original image wider, adjust the scaled height\n");
 
 846                 *scaled_width = device_info.native_width;
 
 847                 *scaled_height = (unsigned int)lroundf(original_height / width_ratio);
 
 848         } else if (width_ratio < height_ratio) {
 
 850                  * The input is proportionally "taller" than the device viewport
 
 851                  * so its width needs to be adjusted
 
 853                 debug(dev->ctx, "CASE 2 original image taller, adjust the scaled width\n");
 
 854                 *scaled_width = (unsigned int)lroundf(original_width / height_ratio);
 
 855                 *scaled_height = device_info.native_height;
 
 857                 debug(dev->ctx, "CASE 3, just rescale, same aspect ratio already\n");
 
 858                 *scaled_width = device_info.native_width;
 
 859                 *scaled_height = device_info.native_height;
 
 861         debug(dev->ctx, "scaled dimensions: %dx%d\n", *scaled_width, *scaled_height);
 
 866 AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
 
 867                       am7xxx_image_format format,
 
 871                       unsigned int image_size)
 
 874         struct am7xxx_header h = {
 
 875                 .packet_type     = AM7XXX_PACKET_TYPE_IMAGE,
 
 876                 .direction       = AM7XXX_DIRECTION_OUT,
 
 877                 .header_data_len = sizeof(struct am7xxx_image_header),
 
 885                                 .image_size = image_size,
 
 890         ret = send_header(dev, &h);
 
 894         if (image == NULL || image_size == 0) {
 
 895                 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
 
 899         return send_data(dev, image, image_size);
 
 902 AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
 
 905         struct am7xxx_header h = {
 
 906                 .packet_type     = AM7XXX_PACKET_TYPE_POWER,
 
 907                 .direction       = AM7XXX_DIRECTION_OUT,
 
 908                 .header_data_len = sizeof(struct am7xxx_power_header),
 
 914         case AM7XXX_POWER_OFF:
 
 915                 h.header_data.power.bit2 = 0;
 
 916                 h.header_data.power.bit1 = 0;
 
 917                 h.header_data.power.bit0 = 0;
 
 920         case AM7XXX_POWER_LOW:
 
 921                 h.header_data.power.bit2 = 0;
 
 922                 h.header_data.power.bit1 = 0;
 
 923                 h.header_data.power.bit0 = 1;
 
 926         case AM7XXX_POWER_MIDDLE:
 
 927                 h.header_data.power.bit2 = 0;
 
 928                 h.header_data.power.bit1 = 1;
 
 929                 h.header_data.power.bit0 = 0;
 
 932         case AM7XXX_POWER_HIGH:
 
 933                 h.header_data.power.bit2 = 0;
 
 934                 h.header_data.power.bit1 = 1;
 
 935                 h.header_data.power.bit0 = 1;
 
 938         case AM7XXX_POWER_TURBO:
 
 939                 h.header_data.power.bit2 = 1;
 
 940                 h.header_data.power.bit1 = 0;
 
 941                 h.header_data.power.bit0 = 0;
 
 945                 error(dev->ctx, "Unsupported power mode.\n");
 
 949         ret = send_header(dev, &h);
 
 956 AM7XXX_PUBLIC int am7xxx_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
 
 959         struct am7xxx_header h = {
 
 960                 .packet_type     = AM7XXX_PACKET_TYPE_ZOOM,
 
 961                 .direction       = AM7XXX_DIRECTION_OUT,
 
 962                 .header_data_len = sizeof(struct am7xxx_zoom_header),
 
 968         case AM7XXX_ZOOM_ORIGINAL:
 
 969                 h.header_data.zoom.bit1 = 0;
 
 970                 h.header_data.zoom.bit0 = 0;
 
 974                 h.header_data.zoom.bit1 = 0;
 
 975                 h.header_data.zoom.bit0 = 1;
 
 978         case AM7XXX_ZOOM_H_V:
 
 979                 h.header_data.zoom.bit1 = 1;
 
 980                 h.header_data.zoom.bit0 = 0;
 
 983         case AM7XXX_ZOOM_TEST:
 
 984                 h.header_data.zoom.bit1 = 1;
 
 985                 h.header_data.zoom.bit0 = 1;
 
 989                 error(dev->ctx, "Unsupported zoom mode.\n");
 
 993         ret = send_header(dev, &h);