c039147c9906d1ca002dd4d3703324c730fd4bad
[libam7xxx.git] / src / am7xxx.c
1 /* am7xxx - communication with AM7xxx based USB Pico Projectors and DPFs
2  *
3  * Copyright (C) 2012  Antonio Ospite <ospite@studenti.unina.it>
4  *
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.
9  *
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.
14  *
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/>.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <stdarg.h>
23 #include <errno.h>
24 #include <libusb.h>
25 #include <math.h>
26
27 #include "am7xxx.h"
28 #include "serialize.h"
29
30 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
31
32 /* If we're not using GNU C, elide __attribute__
33  * taken from: http://unixwiz.net/techtips/gnu-c-attributes.html)
34  */
35 #ifndef __GNUC__
36 #  define  __attribute__(x)  /*NOTHING*/
37 #endif
38
39 /* Control shared library symbols visibility */
40 #if defined _WIN32 || defined __CYGWIN__
41         #define AM7XXX_PUBLIC __declspec(dllexport)
42         #define AM7XXX_LOCAL
43 #else
44         #if __GNUC__ >= 4
45                 #define AM7XXX_PUBLIC __attribute__ ((visibility ("default")))
46                 #define AM7XXX_LOCAL  __attribute__ ((visibility ("hidden")))
47         #else
48                 #define AM7XXX_PUBLIC
49                 #define AM7XXX_LOCAL
50         #endif
51 #endif
52
53 static void log_message(am7xxx_context *ctx,
54                         int level,
55                         const char *function,
56                         int line,
57                         const char *fmt,
58                         ...) __attribute__ ((format (printf, 5, 6)));
59
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__)
66
67 struct am7xxx_usb_device_descriptor {
68         const char *name;
69         uint16_t vendor_id;
70         uint16_t product_id;
71 };
72
73 static struct am7xxx_usb_device_descriptor supported_devices[] = {
74         {
75                 .name       = "Acer C110",
76                 .vendor_id  = 0x1de1,
77                 .product_id = 0xc101,
78         },
79         {
80                 .name       = "Acer C112",
81                 .vendor_id  = 0x1de1,
82                 .product_id = 0x5501,
83         },
84         {
85                 .name       ="Aiptek PocketCinema T25",
86                 .vendor_id  = 0x08ca,
87                 .product_id = 0x2144,
88         },
89         {
90                 .name       = "Philips/Sagemcom PicoPix 1020",
91                 .vendor_id  = 0x21e7,
92                 .product_id = 0x000e,
93         },
94         {
95                 .name       = "Philips/Sagemcom PicoPix 2055",
96                 .vendor_id  = 0x21e7,
97                 .product_id = 0x0016,
98         },
99 };
100
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
104  */
105 #define AM7XXX_HEADER_WIRE_SIZE 24
106
107 struct _am7xxx_device {
108         libusb_device_handle *usb_device;
109         uint8_t buffer[AM7XXX_HEADER_WIRE_SIZE];
110         am7xxx_context *ctx;
111         am7xxx_device *next;
112 };
113
114 struct _am7xxx_context {
115         libusb_context *usb_context;
116         int log_level;
117         am7xxx_device *devices_list;
118 };
119
120 typedef enum {
121         AM7XXX_PACKET_TYPE_DEVINFO = 0x01,
122         AM7XXX_PACKET_TYPE_IMAGE   = 0x02,
123         AM7XXX_PACKET_TYPE_POWER   = 0x04,
124         AM7XXX_PACKET_TYPE_ZOOM    = 0x05,
125 } am7xxx_packet_type;
126
127 struct am7xxx_generic_header {
128         uint32_t field0;
129         uint32_t field1;
130         uint32_t field2;
131         uint32_t field3;
132 };
133
134 struct am7xxx_devinfo_header {
135         uint32_t native_width;
136         uint32_t native_height;
137         uint32_t unknown0;
138         uint32_t unknown1;
139 };
140
141 struct am7xxx_image_header {
142         uint32_t format;
143         uint32_t width;
144         uint32_t height;
145         uint32_t image_size;
146 };
147
148 struct am7xxx_power_header {
149         uint32_t bit2;
150         uint32_t bit1;
151         uint32_t bit0;
152 };
153
154 struct am7xxx_zoom_header {
155         uint32_t bit1;
156         uint32_t bit0;
157 };
158
159 /*
160  * Examples of packet headers:
161  *
162  * Image header:
163  * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
164  *
165  * Power header:
166  * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
167  */
168
169 /* Direction of the communication from the host point of view */
170 #define AM7XXX_DIRECTION_OUT 0 /* host -> device */
171 #define AM7XXX_DIRECTION_IN  1 /* host <- device */
172
173 struct am7xxx_header {
174         uint32_t packet_type;
175         uint8_t direction;
176         uint8_t header_data_len;
177         uint8_t unknown2;
178         uint8_t unknown3;
179         union {
180                 struct am7xxx_generic_header data;
181                 struct am7xxx_devinfo_header devinfo;
182                 struct am7xxx_image_header image;
183                 struct am7xxx_power_header power;
184                 struct am7xxx_zoom_header zoom;
185         } header_data;
186 };
187
188
189 #ifdef DEBUG
190 static void debug_dump_devinfo_header(am7xxx_context *ctx, struct am7xxx_devinfo_header *d)
191 {
192         if (ctx == NULL || d == NULL)
193                 return;
194
195         debug(ctx, "Info header:\n");
196         debug(ctx, "\tnative_width:  0x%08x (%u)\n", d->native_width, d->native_width);
197         debug(ctx, "\tnative_height: 0x%08x (%u)\n", d->native_height, d->native_height);
198         debug(ctx, "\tunknown0:      0x%08x (%u)\n", d->unknown0, d->unknown0);
199         debug(ctx, "\tunknown1:      0x%08x (%u)\n", d->unknown1, d->unknown1);
200 }
201
202 static void debug_dump_image_header(am7xxx_context *ctx, struct am7xxx_image_header *i)
203 {
204         if (ctx == NULL || i == NULL)
205                 return;
206
207         debug(ctx, "Image header:\n");
208         debug(ctx, "\tformat:     0x%08x (%u)\n", i->format, i->format);
209         debug(ctx, "\twidth:      0x%08x (%u)\n", i->width, i->width);
210         debug(ctx, "\theight:     0x%08x (%u)\n", i->height, i->height);
211         debug(ctx, "\timage size: 0x%08x (%u)\n", i->image_size, i->image_size);
212 }
213
214 static void debug_dump_power_header(am7xxx_context *ctx, struct am7xxx_power_header *p)
215 {
216         if (ctx == NULL || p == NULL)
217                 return;
218
219         debug(ctx, "Power header:\n");
220         debug(ctx, "\tbit2: 0x%08x (%u)\n", p->bit2, p->bit2);
221         debug(ctx, "\tbit1: 0x%08x (%u)\n", p->bit1, p->bit1);
222         debug(ctx, "\tbit0: 0x%08x (%u)\n", p->bit0, p->bit0);
223 }
224
225 static void debug_dump_zoom_header(am7xxx_context *ctx, struct am7xxx_zoom_header *z)
226 {
227         if (ctx == NULL || z == NULL)
228                 return;
229
230         debug(ctx, "Zoom header:\n");
231         debug(ctx, "\tbit1: 0x%08x (%u)\n", z->bit1, z->bit1);
232         debug(ctx, "\tbit0: 0x%08x (%u)\n", z->bit0, z->bit0);
233 }
234
235 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
236 {
237         if (ctx == NULL || h == NULL)
238                 return;
239
240         debug(ctx, "BEGIN\n");
241         debug(ctx, "packet_type:     0x%08x (%u)\n", h->packet_type, h->packet_type);
242         debug(ctx, "direction:       0x%02hhx (%hhu) (%s)\n", h->direction, h->direction,
243               h->direction == AM7XXX_DIRECTION_IN ? "IN" :
244               h->direction == AM7XXX_DIRECTION_OUT ? "OUT" :
245               "UNKNOWN");
246         debug(ctx, "header_data_len: 0x%02hhx (%hhu)\n", h->header_data_len, h->header_data_len);
247         debug(ctx, "unknown2:        0x%02hhx (%hhu)\n", h->unknown2, h->unknown2);
248         debug(ctx, "unknown3:        0x%02hhx (%hhu)\n", h->unknown3, h->unknown3);
249
250         switch(h->packet_type) {
251         case AM7XXX_PACKET_TYPE_DEVINFO:
252                 debug_dump_devinfo_header(ctx, &(h->header_data.devinfo));
253                 break;
254
255         case AM7XXX_PACKET_TYPE_IMAGE:
256                 debug_dump_image_header(ctx, &(h->header_data.image));
257                 break;
258
259         case AM7XXX_PACKET_TYPE_POWER:
260                 debug_dump_power_header(ctx, &(h->header_data.power));
261                 break;
262
263         case AM7XXX_PACKET_TYPE_ZOOM:
264                 debug_dump_zoom_header(ctx, &(h->header_data.zoom));
265                 break;
266
267         default:
268                 debug(ctx, "Packet type not supported!\n");
269                 break;
270         }
271         debug(ctx, "END\n\n");
272 }
273
274 static inline unsigned int in_80chars(unsigned int i)
275 {
276         /* The 3 below is the length of "xx " where xx is the hex string
277          * representation of a byte */
278         return ((i+1) % (80/3));
279 }
280
281 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
282                               uint8_t *buffer, unsigned int len)
283 {
284         unsigned int i;
285
286         if (ctx == NULL || buffer == NULL || len == 0)
287                 return;
288
289         trace(ctx, "\n");
290         if (message)
291                 trace(ctx, "%s\n", message);
292
293         for (i = 0; i < len; i++) {
294                 trace(ctx, "%02hhX%c", buffer[i], (in_80chars(i) && (i < len - 1)) ? ' ' : '\n');
295         }
296         trace(ctx, "\n");
297 }
298 #else
299 static void debug_dump_header(am7xxx_context *ctx, struct am7xxx_header *h)
300 {
301         (void)ctx;
302         (void)h;
303 }
304
305 static void trace_dump_buffer(am7xxx_context *ctx, const char *message,
306                               uint8_t *buffer, unsigned int len)
307 {
308         (void)ctx;
309         (void)message;
310         (void)buffer;
311         (void)len;
312 }
313 #endif /* DEBUG */
314
315 static int read_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
316 {
317         int ret;
318         int transferred = 0;
319
320         ret = libusb_bulk_transfer(dev->usb_device, 0x81, buffer, len, &transferred, 0);
321         if (ret != 0 || (unsigned int)transferred != len) {
322                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
323                       ret, transferred, len);
324                 return ret;
325         }
326
327         trace_dump_buffer(dev->ctx, "<-- received", buffer, len);
328
329         return 0;
330 }
331
332 static int send_data(am7xxx_device *dev, uint8_t *buffer, unsigned int len)
333 {
334         int ret;
335         int transferred = 0;
336
337         trace_dump_buffer(dev->ctx, "sending -->", buffer, len);
338
339         ret = libusb_bulk_transfer(dev->usb_device, 0x1, buffer, len, &transferred, 0);
340         if (ret != 0 || (unsigned int)transferred != len) {
341                 error(dev->ctx, "ret: %d\ttransferred: %d (expected %u)\n",
342                       ret, transferred, len);
343                 return ret;
344         }
345
346         return 0;
347 }
348
349 static void serialize_header(struct am7xxx_header *h, uint8_t *buffer)
350 {
351         uint8_t **buffer_iterator = &buffer;
352
353         put_le32(h->packet_type, buffer_iterator);
354         put_8(h->direction, buffer_iterator);
355         put_8(h->header_data_len, buffer_iterator);
356         put_8(h->unknown2, buffer_iterator);
357         put_8(h->unknown3, buffer_iterator);
358         put_le32(h->header_data.data.field0, buffer_iterator);
359         put_le32(h->header_data.data.field1, buffer_iterator);
360         put_le32(h->header_data.data.field2, buffer_iterator);
361         put_le32(h->header_data.data.field3, buffer_iterator);
362 }
363
364 static void unserialize_header(uint8_t *buffer, struct am7xxx_header *h)
365 {
366         uint8_t **buffer_iterator = &buffer;
367
368         h->packet_type = get_le32(buffer_iterator);
369         h->direction = get_8(buffer_iterator);
370         h->header_data_len = get_8(buffer_iterator);
371         h->unknown2 = get_8(buffer_iterator);
372         h->unknown3 = get_8(buffer_iterator);
373         h->header_data.data.field0 = get_le32(buffer_iterator);
374         h->header_data.data.field1 = get_le32(buffer_iterator);
375         h->header_data.data.field2 = get_le32(buffer_iterator);
376         h->header_data.data.field3 = get_le32(buffer_iterator);
377 }
378
379 static int read_header(am7xxx_device *dev, struct am7xxx_header *h)
380 {
381         int ret;
382
383         ret = read_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
384         if (ret < 0)
385                 goto out;
386
387         unserialize_header(dev->buffer, h);
388
389         if (h->direction == AM7XXX_DIRECTION_IN) {
390                 ret = 0;
391         } else {
392                 error(dev->ctx,
393                       "Received a packet with direction AM7XXX_DIRECTION_OUT, weird!\n");
394                 ret = -EINVAL;
395         }
396
397         debug_dump_header(dev->ctx, h);
398
399 out:
400         return ret;
401 }
402
403 static int send_header(am7xxx_device *dev, struct am7xxx_header *h)
404 {
405         int ret;
406
407         debug_dump_header(dev->ctx, h);
408
409         /* For symmetry with read_header() we should check here for
410          * h->direction == AM7XXX_DIRECTION_OUT but we just ensure that in all
411          * the callers and save some cycles here.
412          */
413
414         serialize_header(h, dev->buffer);
415
416         ret = send_data(dev, dev->buffer, AM7XXX_HEADER_WIRE_SIZE);
417         if (ret < 0)
418                 error(dev->ctx, "failed to send data\n");
419
420         return ret;
421 }
422
423 /* When level == AM7XXX_LOG_FATAL do not check the log_level from the context
424  * and print the message unconditionally, this makes it possible to print
425  * fatal messages even early on initialization, before the context has been
426  * set up */
427 static void log_message(am7xxx_context *ctx,
428                         int level,
429                         const char *function,
430                         int line,
431                         const char *fmt,
432                         ...)
433 {
434         va_list ap;
435
436         if (level == AM7XXX_LOG_FATAL || (ctx && level <= ctx->log_level)) {
437                 if (function) {
438                         fprintf(stderr, "%s", function);
439                         if (line)
440                                 fprintf(stderr, "[%d]", line);
441                         fprintf(stderr, ": ");
442                 }
443
444                 va_start(ap, fmt);
445                 vfprintf(stderr, fmt, ap);
446                 va_end(ap);
447         }
448
449         return;
450 }
451
452 static am7xxx_device *add_new_device(am7xxx_context *ctx)
453 {
454         am7xxx_device **devices_list;
455         am7xxx_device *new_device;
456
457         if (ctx == NULL) {
458                 fatal("context must not be NULL!\n");
459                 return NULL;
460         }
461
462         new_device = malloc(sizeof(*new_device));
463         if (new_device == NULL) {
464                 fatal("cannot allocate a new device (%s)\n", strerror(errno));
465                 return NULL;
466         }
467         memset(new_device, 0, sizeof(*new_device));
468
469         new_device->ctx = ctx;
470
471         devices_list = &(ctx->devices_list);
472
473         if (*devices_list == NULL) {
474                 *devices_list = new_device;
475         } else {
476                 am7xxx_device *prev = *devices_list;
477                 while (prev->next)
478                         prev = prev->next;
479                 prev->next = new_device;
480         }
481         return new_device;
482 }
483
484 static am7xxx_device *find_device(am7xxx_context *ctx,
485                                   unsigned int device_index)
486 {
487         unsigned int i = 0;
488         am7xxx_device *current;
489
490         if (ctx == NULL) {
491                 fatal("context must not be NULL!\n");
492                 return NULL;
493         }
494
495         current = ctx->devices_list;
496         while (current && i++ < device_index)
497                 current = current->next;
498
499         return current;
500 }
501
502 typedef enum {
503         SCAN_OP_BUILD_DEVLIST,
504         SCAN_OP_OPEN_DEVICE,
505 } scan_op;
506
507 /**
508  * This is where the central logic of multi-device support is.
509  *
510  * When 'op' == SCAN_OP_BUILD_DEVLIST the parameters 'open_device_index' and
511  * 'dev' are ignored; the function returns 0 on success and a negative value
512  * on error.
513  *
514  * When 'op' == SCAN_OP_OPEN_DEVICE the function opens the supported USB
515  * device with index 'open_device_index' and returns the correspondent
516  * am7xxx_device in the 'dev' parameter; the function returns 0 on success,
517  * 1 if the device was already open and a negative value on error.
518  *
519  * NOTES:
520  * if scan_devices() fails when called with 'op' == SCAN_OP_BUILD_DEVLIST,
521  * the caller might want to call am7xxx_shutdown() in order to remove
522  * devices possibly added before the failure.
523  */
524 static int scan_devices(am7xxx_context *ctx, scan_op op,
525                         unsigned int open_device_index, am7xxx_device **dev)
526 {
527         int num_devices;
528         libusb_device** list;
529         unsigned int current_index;
530         int i;
531         int ret;
532
533         if (ctx == NULL) {
534                 fatal("context must not be NULL!\n");
535                 return -EINVAL;
536         }
537         if (op == SCAN_OP_BUILD_DEVLIST && ctx->devices_list != NULL) {
538                 error(ctx, "device scan done already? Abort!\n");
539                 return -EINVAL;
540         }
541
542         num_devices = libusb_get_device_list(ctx->usb_context, &list);
543         if (num_devices < 0) {
544                 ret = -ENODEV;
545                 goto out;
546         }
547
548         current_index = 0;
549         for (i = 0; i < num_devices; i++) {
550                 struct libusb_device_descriptor desc;
551                 unsigned int j;
552
553                 ret = libusb_get_device_descriptor(list[i], &desc);
554                 if (ret < 0)
555                         continue;
556
557                 for (j = 0; j < ARRAY_SIZE(supported_devices); j++) {
558                         if (desc.idVendor == supported_devices[j].vendor_id
559                             && desc.idProduct == supported_devices[j].product_id) {
560
561                                 if (op == SCAN_OP_BUILD_DEVLIST) {
562                                         am7xxx_device *new_device;
563                                         info(ctx, "am7xxx device found, index: %d, name: %s\n",
564                                              current_index,
565                                              supported_devices[j].name);
566                                         new_device = add_new_device(ctx);
567                                         if (new_device == NULL) {
568                                                 /* XXX, the caller may want
569                                                  * to call am7xxx_shutdown() if
570                                                  * we fail here, as we may have
571                                                  * added some devices already
572                                                  */
573                                                 debug(ctx, "Cannot create a new device\n");
574                                                 ret = -ENODEV;
575                                                 goto out;
576                                         }
577                                 } else if (op == SCAN_OP_OPEN_DEVICE &&
578                                            current_index == open_device_index) {
579
580                                         *dev = find_device(ctx, open_device_index);
581                                         if (*dev == NULL) {
582                                                 ret = -ENODEV;
583                                                 goto out;
584                                         }
585
586                                         /* the usb device has already been opened */
587                                         if ((*dev)->usb_device) {
588                                                 debug(ctx, "(*dev)->usb_device already set\n");
589                                                 ret = 1;
590                                                 goto out;
591                                         }
592
593                                         ret = libusb_open(list[i], &((*dev)->usb_device));
594                                         if (ret < 0) {
595                                                 debug(ctx, "libusb_open failed\n");
596                                                 goto out;
597                                         }
598
599                                         libusb_set_configuration((*dev)->usb_device, 2);
600                                         libusb_claim_interface((*dev)->usb_device, 0);
601                                         goto out;
602                                 }
603                                 current_index++;
604                         }
605                 }
606         }
607
608         /* if we made it up to here we didn't find any device to open */
609         if (op == SCAN_OP_OPEN_DEVICE) {
610                 error(ctx, "Cannot find any device to open\n");
611                 ret = -ENODEV;
612                 goto out;
613         }
614
615         /* everything went fine when building the device list */
616         ret = 0;
617 out:
618         libusb_free_device_list(list, 1);
619         return ret;
620 }
621
622 /* Public API */
623
624 AM7XXX_PUBLIC int am7xxx_init(am7xxx_context **ctx)
625 {
626         int ret = 0;
627
628         *ctx = malloc(sizeof(**ctx));
629         if (*ctx == NULL) {
630                 fatal("cannot allocate the context (%s)\n", strerror(errno));
631                 ret = -ENOMEM;
632                 goto out;
633         }
634         memset(*ctx, 0, sizeof(**ctx));
635
636         /* Set the highest log level during initialization */
637         (*ctx)->log_level = AM7XXX_LOG_TRACE;
638
639         ret = libusb_init(&((*ctx)->usb_context));
640         if (ret < 0)
641                 goto out_free_context;
642
643         libusb_set_debug((*ctx)->usb_context, 3);
644
645         ret = scan_devices(*ctx, SCAN_OP_BUILD_DEVLIST , 0, NULL);
646         if (ret < 0) {
647                 error(*ctx, "scan_devices() failed\n");
648                 am7xxx_shutdown(*ctx);
649                 goto out;
650         }
651
652         /* Set a quieter log level as default for normal operation */
653         (*ctx)->log_level = AM7XXX_LOG_ERROR;
654         return 0;
655
656 out_free_context:
657         free(*ctx);
658         *ctx = NULL;
659 out:
660         return ret;
661 }
662
663 AM7XXX_PUBLIC void am7xxx_shutdown(am7xxx_context *ctx)
664 {
665         am7xxx_device *current;
666
667         if (ctx == NULL) {
668                 fatal("context must not be NULL!\n");
669                 return;
670         }
671
672         current = ctx->devices_list;
673         while (current) {
674                 am7xxx_device *next = current->next;
675                 am7xxx_close_device(current);
676                 free(current);
677                 current = next;
678         }
679
680         libusb_exit(ctx->usb_context);
681         free(ctx);
682         ctx = NULL;
683 }
684
685 AM7XXX_PUBLIC void am7xxx_set_log_level(am7xxx_context *ctx, am7xxx_log_level log_level)
686 {
687         ctx->log_level = log_level;
688 }
689
690 AM7XXX_PUBLIC int am7xxx_open_device(am7xxx_context *ctx, am7xxx_device **dev,
691                        unsigned int device_index)
692 {
693         int ret;
694
695         if (ctx == NULL) {
696                 fatal("context must not be NULL!\n");
697                 return -EINVAL;
698         }
699
700         ret = scan_devices(ctx, SCAN_OP_OPEN_DEVICE, device_index, dev);
701         if (ret < 0) {
702                 errno = ENODEV;
703         } else if (ret > 0) {
704                 warning(ctx, "device %d already open\n", device_index);
705                 errno = EBUSY;
706                 ret = -EBUSY;
707         }
708
709         return ret;
710 }
711
712 AM7XXX_PUBLIC int am7xxx_close_device(am7xxx_device *dev)
713 {
714         if (dev == NULL) {
715                 fatal("dev must not be NULL!\n");
716                 return -EINVAL;
717         }
718         if (dev->usb_device) {
719                 libusb_release_interface(dev->usb_device, 0);
720                 libusb_close(dev->usb_device);
721                 dev->usb_device = NULL;
722         }
723         return 0;
724 }
725
726 AM7XXX_PUBLIC int am7xxx_get_device_info(am7xxx_device *dev,
727                            am7xxx_device_info *device_info)
728 {
729         int ret;
730         struct am7xxx_header h = {
731                 .packet_type     = AM7XXX_PACKET_TYPE_DEVINFO,
732                 .direction       = AM7XXX_DIRECTION_OUT,
733                 .header_data_len = 0x00,
734                 .unknown2        = 0x3e,
735                 .unknown3        = 0x10,
736                 .header_data = {
737                         .devinfo = {
738                                 .native_width  = 0,
739                                 .native_height = 0,
740                                 .unknown0      = 0,
741                                 .unknown1      = 0,
742                         },
743                 },
744         };
745
746         ret = send_header(dev, &h);
747         if (ret < 0)
748                 return ret;
749
750         ret = read_header(dev, &h);
751         if (ret < 0)
752                 return ret;
753
754         device_info->native_width = h.header_data.devinfo.native_width;
755         device_info->native_height = h.header_data.devinfo.native_height;
756 #if 0
757         /* No reason to expose these in the public API until we know what they mean */
758         device_info->unknown0 = h.header_data.devinfo.unknown0;
759         device_info->unknown1 = h.header_data.devinfo.unknown1;
760 #endif
761
762         return 0;
763 }
764
765 AM7XXX_PUBLIC int am7xxx_calc_scaled_image_dimensions(am7xxx_device *dev,
766                                         unsigned int upscale,
767                                         unsigned int original_width,
768                                         unsigned int original_height,
769                                         unsigned int *scaled_width,
770                                         unsigned int *scaled_height)
771 {
772
773         am7xxx_device_info device_info;
774         float width_ratio;
775         float height_ratio;
776         int ret;
777
778         ret = am7xxx_get_device_info(dev, &device_info);
779         if (ret < 0) {
780                 error(dev->ctx, "cannot get device info\n");
781                 return ret;
782         }
783
784         /*
785          * Check if we need to rescale; if the input image fits the native
786          * dimensions there is no need to, unless we want to upscale.
787          */
788         if (!upscale &&
789             original_width <= device_info.native_width &&
790             original_height <= device_info.native_height ) {
791                 debug(dev->ctx, "CASE 0, no rescaling, the original image fits already\n");
792                 *scaled_width = original_width;
793                 *scaled_height = original_height;
794                 return 0;
795         }
796
797         /* Input dimensions relative to the device native dimensions */
798         width_ratio =  (float)original_width / device_info.native_width;
799         height_ratio = (float)original_height / device_info.native_height;
800
801         if (width_ratio > height_ratio) {
802                 /*
803                  * The input is proportionally "wider" than the device viewport
804                  * so its height needs to be adjusted
805                  */
806                 debug(dev->ctx, "CASE 1, original image wider, adjust the scaled height\n");
807                 *scaled_width = device_info.native_width;
808                 *scaled_height = (unsigned int)lroundf(original_height / width_ratio);
809         } else if (width_ratio < height_ratio) {
810                 /*
811                  * The input is proportionally "taller" than the device viewport
812                  * so its width needs to be adjusted
813                  */
814                 debug(dev->ctx, "CASE 2 original image taller, adjust the scaled width\n");
815                 *scaled_width = (unsigned int)lroundf(original_width / height_ratio);
816                 *scaled_height = device_info.native_height;
817         } else {
818                 debug(dev->ctx, "CASE 3, just rescale, same aspect ratio already\n");
819                 *scaled_width = device_info.native_width;
820                 *scaled_height = device_info.native_height;
821         }
822         debug(dev->ctx, "scaled dimensions: %dx%d\n", *scaled_width, *scaled_height);
823
824         return 0;
825 }
826
827 AM7XXX_PUBLIC int am7xxx_send_image(am7xxx_device *dev,
828                       am7xxx_image_format format,
829                       unsigned int width,
830                       unsigned int height,
831                       uint8_t *image,
832                       unsigned int image_size)
833 {
834         int ret;
835         struct am7xxx_header h = {
836                 .packet_type     = AM7XXX_PACKET_TYPE_IMAGE,
837                 .direction       = AM7XXX_DIRECTION_OUT,
838                 .header_data_len = sizeof(struct am7xxx_image_header),
839                 .unknown2        = 0x3e,
840                 .unknown3        = 0x10,
841                 .header_data = {
842                         .image = {
843                                 .format     = format,
844                                 .width      = width,
845                                 .height     = height,
846                                 .image_size = image_size,
847                         },
848                 },
849         };
850
851         ret = send_header(dev, &h);
852         if (ret < 0)
853                 return ret;
854
855         if (image == NULL || image_size == 0) {
856                 warning(dev->ctx, "Not sending any data, check the 'image' or 'image_size' parameters\n");
857                 return 0;
858         }
859
860         return send_data(dev, image, image_size);
861 }
862
863 AM7XXX_PUBLIC int am7xxx_set_power_mode(am7xxx_device *dev, am7xxx_power_mode power)
864 {
865         int ret;
866         struct am7xxx_header h = {
867                 .packet_type     = AM7XXX_PACKET_TYPE_POWER,
868                 .direction       = AM7XXX_DIRECTION_OUT,
869                 .header_data_len = sizeof(struct am7xxx_power_header),
870                 .unknown2        = 0x3e,
871                 .unknown3        = 0x10,
872         };
873
874         switch(power) {
875         case AM7XXX_POWER_OFF:
876                 h.header_data.power.bit2 = 0;
877                 h.header_data.power.bit1 = 0;
878                 h.header_data.power.bit0 = 0;
879                 break;
880
881         case AM7XXX_POWER_LOW:
882                 h.header_data.power.bit2 = 0;
883                 h.header_data.power.bit1 = 0;
884                 h.header_data.power.bit0 = 1;
885                 break;
886
887         case AM7XXX_POWER_MIDDLE:
888                 h.header_data.power.bit2 = 0;
889                 h.header_data.power.bit1 = 1;
890                 h.header_data.power.bit0 = 0;
891                 break;
892
893         case AM7XXX_POWER_HIGH:
894                 h.header_data.power.bit2 = 0;
895                 h.header_data.power.bit1 = 1;
896                 h.header_data.power.bit0 = 1;
897                 break;
898
899         case AM7XXX_POWER_TURBO:
900                 h.header_data.power.bit2 = 1;
901                 h.header_data.power.bit1 = 0;
902                 h.header_data.power.bit0 = 0;
903                 break;
904
905         default:
906                 error(dev->ctx, "Unsupported power mode.\n");
907                 return -EINVAL;
908         };
909
910         ret = send_header(dev, &h);
911         if (ret < 0)
912                 return ret;
913
914         return 0;
915 }
916
917 AM7XXX_PUBLIC int am7xxx_set_zoom_mode(am7xxx_device *dev, am7xxx_zoom_mode zoom)
918 {
919         int ret;
920         struct am7xxx_header h = {
921                 .packet_type     = AM7XXX_PACKET_TYPE_ZOOM,
922                 .direction       = AM7XXX_DIRECTION_OUT,
923                 .header_data_len = sizeof(struct am7xxx_zoom_header),
924                 .unknown2        = 0x3e,
925                 .unknown3        = 0x10,
926         };
927
928         switch(zoom) {
929         case AM7XXX_ZOOM_ORIGINAL:
930                 h.header_data.zoom.bit1 = 0;
931                 h.header_data.zoom.bit0 = 0;
932                 break;
933
934         case AM7XXX_ZOOM_H:
935                 h.header_data.zoom.bit1 = 0;
936                 h.header_data.zoom.bit0 = 1;
937                 break;
938
939         case AM7XXX_ZOOM_H_V:
940                 h.header_data.zoom.bit1 = 1;
941                 h.header_data.zoom.bit0 = 0;
942                 break;
943
944         case AM7XXX_ZOOM_TEST:
945                 h.header_data.zoom.bit1 = 1;
946                 h.header_data.zoom.bit0 = 1;
947                 break;
948
949         default:
950                 error(dev->ctx, "Unsupported zoom mode.\n");
951                 return -EINVAL;
952         };
953
954         ret = send_header(dev, &h);
955         if (ret < 0)
956                 return ret;
957
958         return 0;
959 }