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 {
71 uint8_t configuration; /* The bConfigurationValue of the device */
72 uint8_t interface_number; /* The bInterfaceNumber of the device */
75 static struct am7xxx_usb_device_descriptor supported_devices[] = {
81 .interface_number = 0,
88 .interface_number = 0,
91 .name ="Aiptek PocketCinema T25",
95 .interface_number = 0,
98 .name = "Philips/Sagemcom PicoPix 1020",
100 .product_id = 0x000e,
102 .interface_number = 0,
105 .name = "Philips/Sagemcom PicoPix 2055",
107 .product_id = 0x0016,
109 .interface_number = 0,
113 /* The header size on the wire is known to be always 24 bytes, regardless of
114 * the memory configuration enforced by different architectures or compilers
115 * for struct am7xxx_header
117 #define AM7XXX_HEADER_WIRE_SIZE 24
119 struct _am7xxx_device {
120 libusb_device_handle *usb_device;
121 uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
122 am7xxx_device_info *device_info;
124 const struct am7xxx_usb_device_descriptor *desc;
128 struct _am7xxx_context {
129 libusb_context *usb_context;
131 am7xxx_device *devices_list;
135 AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
136 AM7XXX_PACKET_TYPE_IMAGE = 0x02,
137 AM7XXX_PACKET_TYPE_POWER = 0x04,
138 AM7XXX_PACKET_TYPE_ZOOM = 0x05,
139 } am7xxx_packet_type;
141 struct am7xxx_generic_header {
148 struct am7xxx_devinfo_header {
149 uint32_t native_width;
150 uint32_t native_height;
155 struct am7xxx_image_header {
162 struct am7xxx_power_header {
168 struct am7xxx_zoom_header {
174 * Examples of packet headers:
177 * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
180 * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
183 /* Direction of the communication from the host point of view */
184 #define AM7XXX_DIRECTION_OUT 0 /* host -> device */
185 #define AM7XXX_DIRECTION_IN 1 /* host <- device */
187 struct am7xxx_header {
188 uint32_t packet_type;
190 uint8_t header_data_len;
194 struct am7xxx_generic_header data;
195 struct am7xxx_devinfo_header devinfo;
196 struct am7xxx_image_header image;
197 struct am7xxx_power_header power;
198 struct am7xxx_zoom_header zoom;
204 static void debug_dump_devinfo_header(am7xxx_context *ctx, struct am7xxx_devinfo_header *d)
206 if (ctx == NULL || d == NULL)
209 debug(ctx, "Info header:\n");
210 debug(ctx, "\tnative_width: 0x%08x (%u)\n", d->native_width, d->native_width);
211 debug(ctx, "\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
212 debug(ctx, "\tunknown0: 0x%08x (%u)\n", d->unknown0, d->unknown0);
213 debug(ctx, "\tunknown1: 0x%08x (%u)\n", d->unknown1, d->unknown1);
216 static void debug_dump_image_header(am7xxx_context *ctx, struct am7xxx_image_header *i)
218 if (ctx == NULL || i == NULL)
221 debug(ctx, "Image header:\n");
222 debug(ctx, "\tformat: 0x%08x (%u)\n", i->format, i->format);
223 debug(ctx, "\twidth: 0x%08x (%u)\n", i->width, i->width);
224 debug(ctx, "\theight: 0x%08x (%u)\n", i->height, i->height);
225 debug(ctx, "\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
228 static void debug_dump_power_header(am7xxx_context *ctx, struct am7xxx_power_header *p)
230 if (ctx == NULL || p == NULL)
233 debug(ctx, "Power header:\n");
234 debug(ctx, "\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
235 debug(ctx, "\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
236 debug(ctx, "\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
239 static void debug_dump_zoom_header(am7xxx_context *ctx, struct am7xxx_zoom_header *z)
241 if (ctx == NULL || z == NULL)
244 debug(ctx, "Zoom header:\n");
245 debug(ctx, "\tbit1: 0x%08x (%u)\n", z->bit1, z->bit1);
246 debug(ctx, "\tbit0: 0x%08x (%u)\n", z->bit0, z->bit0);
249 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
251 if (ctx == NULL || h == NULL)
254 debug(ctx, "BEGIN\n");
255 debug(ctx, "packet_type: 0x%08x (%u)\n", h->packet_type, h->packet_type);
256 debug(ctx, "direction: 0x%02hhx (%hhu) (%s)\n", h->direction, h->direction,
257 h->direction == AM7XXX_DIRECTION_IN ? "IN" :
258 h->direction == AM7XXX_DIRECTION_OUT ? "OUT" :
260 debug(ctx, "header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
261 debug(ctx, "unknown2: 0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
262 debug(ctx, "unknown3: 0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
264 switch(h->packet_type) {
265 case AM7XXX_PACKET_TYPE_DEVINFO:
266 debug_dump_devinfo_header(ctx, &(h->header_data.devinfo));
269 case AM7XXX_PACKET_TYPE_IMAGE:
270 debug_dump_image_header(ctx, &(h->header_data.image));
273 case AM7XXX_PACKET_TYPE_POWER:
274 debug_dump_power_header(ctx, &(h->header_data.power));
277 case AM7XXX_PACKET_TYPE_ZOOM:
278 debug_dump_zoom_header(ctx, &(h->header_data.zoom));
282 debug(ctx, "Packet type not supported!\n");
285 debug(ctx, "END\n\n");
288 static inline unsigned int in_80chars(unsigned int i)
290 /* The 3 below is the length of "xx " where xx is the hex string
291 * representation of a byte */
292 return ((i+1) % (80/3));
295 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
296 uint8_t *buffer, unsigned int len)
300 if (ctx == NULL || buffer == NULL || len == 0)
305 trace(ctx, "%s\n", message);
307 for (i = 0; i < len; i++) {
308 trace(ctx, "%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
313 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
319 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
320 uint8_t *buffer, unsigned int len)
329 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
334 ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
335 if (ret != 0 || (unsigned int)transferred != len) {
336 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
337 ret, transferred, len);
341 trace_dump_buffer(dev->ctx, "<-- received", buffer, len);
346 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
351 trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
353 ret = libusb_bulk_transfer(dev->usb_device, 0x1, buffer, len, &transferred, 0);
354 if (ret != 0 || (unsigned int)transferred != len) {
355 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
356 ret, transferred, len);
363 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
365 uint8_t **buffer_iterator = &buffer;
367 put_le32(h->packet_type, buffer_iterator);
368 put_8(h->direction, buffer_iterator);
369 put_8(h->header_data_len, buffer_iterator);
370 put_8(h->unknown2, buffer_iterator);
371 put_8(h->unknown3, buffer_iterator);
372 put_le32(h->header_data.data.field0, buffer_iterator);
373 put_le32(h->header_data.data.field1, buffer_iterator);
374 put_le32(h->header_data.data.field2, buffer_iterator);
375 put_le32(h->header_data.data.field3, buffer_iterator);
378 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
380 uint8_t **buffer_iterator = &buffer;
382 h->packet_type = get_le32(buffer_iterator);
383 h->direction = get_8(buffer_iterator);
384 h->header_data_len = get_8(buffer_iterator);
385 h->unknown2 = get_8(buffer_iterator);
386 h->unknown3 = get_8(buffer_iterator);
387 h->header_data.data.field0 = get_le32(buffer_iterator);
388 h->header_data.data.field1 = get_le32(buffer_iterator);
389 h->header_data.data.field2 = get_le32(buffer_iterator);
390 h->header_data.data.field3 = get_le32(buffer_iterator);
393 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
397 ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
401 unserialize_header(dev->buffer, h);
403 if (h->direction == AM7XXX_DIRECTION_IN) {
407 "Expected an AM7XXX_DIRECTION_IN packet, got one with direction = %d. Weird!\n",
412 debug_dump_header(dev->ctx, h);
418 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
422 debug_dump_header(dev->ctx, h);
424 /* For symmetry with read_header() we should check here for
425 * h->direction == AM7XXX_DIRECTION_OUT but we just ensure that in all
426 * the callers and save some cycles here.
429 serialize_header(h, dev->buffer);
431 ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
433 error(dev->ctx, "failed to send data\n");
438 /* When level == AM7XXX_LOG_FATAL do not check the log_level from the context
439 * and print the message unconditionally, this makes it possible to print
440 * fatal messages even early on initialization, before the context has been
442 static void log_message(am7xxx_context *ctx,
444 const char *function,
451 if (level == AM7XXX_LOG_FATAL || (ctx && level <= ctx->log_level)) {
453 fprintf(stderr, "%s", function);
455 fprintf(stderr, "[%d]", line);
456 fprintf(stderr, ": ");
460 vfprintf(stderr, fmt, ap);
467 static am7xxx_device *add_new_device(am7xxx_context *ctx,
468 const struct am7xxx_usb_device_descriptor *desc)
470 am7xxx_device **devices_list;
471 am7xxx_device *new_device;
474 fatal("context must not be NULL!\n");
478 new_device = malloc(sizeof(*new_device));
479 if (new_device == NULL) {
480 fatal("cannot allocate a new device (%s)\n", strerror(errno));
483 memset(new_device, 0, sizeof(*new_device));
485 new_device->ctx = ctx;
486 new_device->desc = desc;
488 devices_list = &(ctx->devices_list);
490 if (*devices_list == NULL) {
491 *devices_list = new_device;
493 am7xxx_device *prev = *devices_list;
496 prev->next = new_device;
501 static am7xxx_device *find_device(am7xxx_context *ctx,
502 unsigned int device_index)
505 am7xxx_device *current;
508 fatal("context must not be NULL!\n");
512 current = ctx->devices_list;
513 while (current && i++ < device_index)
514 current = current->next;
520 SCAN_OP_BUILD_DEVLIST,
525 * This is where the central logic of multi-device support is.
527 * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
528 * 'dev' are ignored; the function returns 0 on success and a negative value
531 * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
532 * device with index 'open_device_index' and returns the correspondent
533 * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
534 * 1 if the device was already open and a negative value on error.
537 * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
538 * the caller might want to call am7xxx_shutdown() in order to remove
539 * devices possibly added before the failure.
541 static int scan_devices(am7xxx_context *ctx, scan_op op,
542 unsigned int open_device_index, am7xxx_device **dev)
545 libusb_device** list;
546 unsigned int current_index;
551 fatal("context must not be NULL!\n");
554 if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
555 error(ctx, "device scan done already? Abort!\n");
559 num_devices = libusb_get_device_list(ctx->usb_context, &list);
560 if (num_devices < 0) {
566 for (i = 0; i < num_devices; i++) {
567 struct libusb_device_descriptor desc;
570 ret = libusb_get_device_descriptor(list[i], &desc);
574 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
575 if (desc.idVendor == supported_devices[j].vendor_id &&
576 desc.idProduct == supported_devices[j].product_id) {
578 if (op == SCAN_OP_BUILD_DEVLIST) {
579 am7xxx_device *new_device;
580 info(ctx, "am7xxx device found, index: %d, name: %s\n",
582 supported_devices[j].name);
583 new_device = add_new_device(ctx, &supported_devices[j]);
584 if (new_device == NULL) {
585 /* XXX, the caller may want
586 * to call am7xxx_shutdown() if
587 * we fail here, as we may have
588 * added some devices already
590 debug(ctx, "Cannot create a new device\n");
594 } else if (op == SCAN_OP_OPEN_DEVICE &&
595 current_index == open_device_index) {
597 *dev = find_device(ctx, open_device_index);
603 /* the usb device has already been opened */
604 if ((*dev)->usb_device) {
605 debug(ctx, "(*dev)->usb_device already set\n");
610 ret = libusb_open(list[i], &((*dev)->usb_device));
612 debug(ctx, "libusb_open failed\n");
616 /* XXX, the device is now open, if any
617 * of the calls below fail we need to
618 * close it again before bailing out.
621 ret = libusb_set_configuration((*dev)->usb_device,
622 (*dev)->desc->configuration);
624 debug(ctx, "libusb_set_configuration failed\n");
625 debug(ctx, "Cannot set configuration %hhu\n",
626 (*dev)->desc->configuration);
627 goto out_libusb_close;
630 ret = libusb_claim_interface((*dev)->usb_device,
631 (*dev)->desc->interface_number);
633 debug(ctx, "libusb_claim_interface failed\n");
634 debug(ctx, "Cannot claim interface %hhu\n",
635 (*dev)->desc->interface_number);
637 libusb_close((*dev)->usb_device);
638 (*dev)->usb_device = NULL;
649 /* if we made it up to here we didn't find any device to open */
650 if (op == SCAN_OP_OPEN_DEVICE) {
651 error(ctx, "Cannot find any device to open\n");
656 /* everything went fine when building the device list */
659 libusb_free_device_list(list, 1);
665 AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
669 *ctx = malloc(sizeof(**ctx));
671 fatal("cannot allocate the context (%s)\n", strerror(errno));
675 memset(*ctx, 0, sizeof(**ctx));
677 /* Set the highest log level during initialization */
678 (*ctx)->log_level = AM7XXX_LOG_TRACE;
680 ret = libusb_init(&((*ctx)->usb_context));
682 goto out_free_context;
684 libusb_set_debug((*ctx)->usb_context, 3);
686 ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
688 error(*ctx, "scan_devices() failed\n");
689 am7xxx_shutdown(*ctx);
693 /* Set a quieter log level as default for normal operation */
694 (*ctx)->log_level = AM7XXX_LOG_ERROR;
704 AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
706 am7xxx_device *current;
709 fatal("context must not be NULL!\n");
713 current = ctx->devices_list;
715 am7xxx_device *next = current->next;
716 am7xxx_close_device(current);
717 free(current->device_info);
722 libusb_exit(ctx->usb_context);
727 AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
729 ctx->log_level = log_level;
732 AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
733 unsigned int device_index)
738 fatal("context must not be NULL!\n");
742 ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
746 } else if (ret > 0) {
747 warning(ctx, "device %d already open\n", device_index);
753 /* Philips/Sagemcom PicoPix projectors require that the DEVINFO packet
754 * is the first one to be sent to the device in order for it to
755 * successfully return the correct device information.
757 * So, if there is not a cached version of it (from a previous open),
758 * we ask for device info at open time,
760 if ((*dev)->device_info == NULL) {
761 ret = am7xxx_get_device_info(*dev, NULL);
763 error(ctx, "cannot get device info\n");
770 AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
773 fatal("dev must not be NULL!\n");
776 if (dev->usb_device) {
777 libusb_release_interface(dev->usb_device, dev->desc->interface_number);
778 libusb_close(dev->usb_device);
779 dev->usb_device = NULL;
784 AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
785 am7xxx_device_info *device_info)
788 struct am7xxx_header h = {
789 .packet_type = AM7XXX_PACKET_TYPE_DEVINFO,
790 .direction = AM7XXX_DIRECTION_OUT,
791 .header_data_len = 0x00,
804 if (dev->device_info) {
805 memcpy(device_info, dev->device_info, sizeof(*device_info));
809 ret = send_header(dev, &h);
813 ret = read_header(dev, &h);
817 if (h.packet_type != AM7XXX_PACKET_TYPE_DEVINFO) {
818 error(dev->ctx, "expected packet type: %d, got %d instead!\n",
819 AM7XXX_PACKET_TYPE_DEVINFO, h.packet_type);
824 dev->device_info = malloc(sizeof(*dev->device_info));
825 if (dev->device_info == NULL) {
826 error(dev->ctx, "cannot allocate a device info (%s)\n",
830 memset(dev->device_info, 0, sizeof(*dev->device_info));
832 dev->device_info->native_width = h.header_data.devinfo.native_width;
833 dev->device_info->native_height = h.header_data.devinfo.native_height;
835 /* No reason to expose these in the public API until we know what they mean */
836 dev->device_info->unknown0 = h.header_data.devinfo.unknown0;
837 dev->device_info->unknown1 = h.header_data.devinfo.unknown1;
843 AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
844 unsigned int upscale,
845 unsigned int original_width,
846 unsigned int original_height,
847 unsigned int *scaled_width,
848 unsigned int *scaled_height)
851 am7xxx_device_info device_info;
856 ret = am7xxx_get_device_info(dev, &device_info);
858 error(dev->ctx, "cannot get device info\n");
863 * Check if we need to rescale; if the input image fits the native
864 * dimensions there is no need to, unless we want to upscale.
867 original_width <= device_info.native_width &&
868 original_height <= device_info.native_height ) {
869 debug(dev->ctx, "CASE 0, no rescaling, the original image fits already\n");
870 *scaled_width = original_width;
871 *scaled_height = original_height;
875 /* Input dimensions relative to the device native dimensions */
876 width_ratio = (float)original_width / device_info.native_width;
877 height_ratio = (float)original_height / device_info.native_height;
879 if (width_ratio > height_ratio) {
881 * The input is proportionally "wider" than the device viewport
882 * so its height needs to be adjusted
884 debug(dev->ctx, "CASE 1, original image wider, adjust the scaled height\n");
885 *scaled_width = device_info.native_width;
886 *scaled_height = (unsigned int)lroundf(original_height / width_ratio);
887 } else if (width_ratio < height_ratio) {
889 * The input is proportionally "taller" than the device viewport
890 * so its width needs to be adjusted
892 debug(dev->ctx, "CASE 2 original image taller, adjust the scaled width\n");
893 *scaled_width = (unsigned int)lroundf(original_width / height_ratio);
894 *scaled_height = device_info.native_height;
896 debug(dev->ctx, "CASE 3, just rescale, same aspect ratio already\n");
897 *scaled_width = device_info.native_width;
898 *scaled_height = device_info.native_height;
900 debug(dev->ctx, "scaled dimensions: %dx%d\n", *scaled_width, *scaled_height);
905 AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
906 am7xxx_image_format format,
910 unsigned int image_size)
913 struct am7xxx_header h = {
914 .packet_type = AM7XXX_PACKET_TYPE_IMAGE,
915 .direction = AM7XXX_DIRECTION_OUT,
916 .header_data_len = sizeof(struct am7xxx_image_header),
924 .image_size = image_size,
929 ret = send_header(dev, &h);
933 if (image == NULL || image_size == 0) {
934 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
938 return send_data(dev, image, image_size);
941 AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
944 struct am7xxx_header h = {
945 .packet_type = AM7XXX_PACKET_TYPE_POWER,
946 .direction = AM7XXX_DIRECTION_OUT,
947 .header_data_len = sizeof(struct am7xxx_power_header),
953 case AM7XXX_POWER_OFF:
954 h.header_data.power.bit2 = 0;
955 h.header_data.power.bit1 = 0;
956 h.header_data.power.bit0 = 0;
959 case AM7XXX_POWER_LOW:
960 h.header_data.power.bit2 = 0;
961 h.header_data.power.bit1 = 0;
962 h.header_data.power.bit0 = 1;
965 case AM7XXX_POWER_MIDDLE:
966 h.header_data.power.bit2 = 0;
967 h.header_data.power.bit1 = 1;
968 h.header_data.power.bit0 = 0;
971 case AM7XXX_POWER_HIGH:
972 h.header_data.power.bit2 = 0;
973 h.header_data.power.bit1 = 1;
974 h.header_data.power.bit0 = 1;
977 case AM7XXX_POWER_TURBO:
978 h.header_data.power.bit2 = 1;
979 h.header_data.power.bit1 = 0;
980 h.header_data.power.bit0 = 0;
984 error(dev->ctx, "Unsupported power mode.\n");
988 ret = send_header(dev, &h);
995 AM7XXX_PUBLIC int am7xxx_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
998 struct am7xxx_header h = {
999 .packet_type = AM7XXX_PACKET_TYPE_ZOOM,
1000 .direction = AM7XXX_DIRECTION_OUT,
1001 .header_data_len = sizeof(struct am7xxx_zoom_header),
1007 case AM7XXX_ZOOM_ORIGINAL:
1008 h.header_data.zoom.bit1 = 0;
1009 h.header_data.zoom.bit0 = 0;
1013 h.header_data.zoom.bit1 = 0;
1014 h.header_data.zoom.bit0 = 1;
1017 case AM7XXX_ZOOM_H_V:
1018 h.header_data.zoom.bit1 = 1;
1019 h.header_data.zoom.bit0 = 0;
1022 case AM7XXX_ZOOM_TEST:
1023 h.header_data.zoom.bit1 = 1;
1024 h.header_data.zoom.bit0 = 1;
1028 error(dev->ctx, "Unsupported zoom mode.\n");
1032 ret = send_header(dev, &h);