Always set the type name.
[xorg/acecad] / src / acecad.c
1 /*
2  * Copyright (c) 2001 Edouard TISSERANT <tissered@esstin.u-nancy.fr>
3  * Parts inspired from Shane Watts <shane@bofh.asn.au> XFree86 3 Acecad Driver
4  * Thanks to Emily, from AceCad, For giving me documents.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
21  * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  *
24  *
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <xorg-server.h>
32 #include <xorgVersion.h>
33 #define XORG_VERSION_BOTCHED XORG_VERSION_NUMERIC(1,4,0,0,0)
34 #if XORG_VERSION_CURRENT >= XORG_VERSION_BOTCHED
35 #define XORG_BOTCHED_INPUT 1
36 #else
37 #define XORG_BOTCHED_INPUT 0
38 #endif
39
40 /*****************************************************************************
41  *      Standard Headers
42  ****************************************************************************/
43
44 #ifdef HAVE_LINUX_INPUT_H
45 #include <asm/types.h>
46 #include <linux/input.h>
47 #ifndef EV_SYN
48 #define EV_SYN EV_RST
49 #define SYN_REPORT 0
50 #endif
51 #ifdef BUS_PCI
52 #undef BUS_PCI
53 #endif
54 #ifdef BUS_ISA
55 #undef BUS_ISA
56 #endif
57 #endif
58
59 #include <misc.h>
60 #include <xf86.h>
61 #ifndef NEED_XF86_TYPES
62 #define NEED_XF86_TYPES
63 #endif
64 #include <xf86_OSproc.h>
65 #include <xisb.h>
66 #include <xf86Xinput.h>
67 #include <exevents.h>
68 #include <xf86Module.h>
69
70 #include <string.h>
71 #include <stdio.h>
72
73 #include <errno.h>
74 #ifdef HAVE_LINUX_INPUT_H
75 #include <fcntl.h>
76 #ifdef HAVE_SYSFS_LIBSYSFS_H
77 #include <sysfs/libsysfs.h>
78 #include <dlfcn.h>
79 #endif
80 #endif
81
82 #include <X11/Xatom.h>
83 #include <xserver-properties.h>
84
85 /* Previously found in xf86Xinput.h */
86 #ifdef DBG
87 #undef DBG
88 #endif
89 #define DBG(lvl, f) {if ((lvl) <= xf86GetVerbosity()) f;}
90
91 #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 12
92 #error "XINPUT ABI 12 required."
93 #endif
94
95 /*****************************************************************************
96  *      Local Headers
97  ****************************************************************************/
98 #include "acecad.h"
99
100 /*****************************************************************************
101  *      Variables without includable headers
102  ****************************************************************************/
103
104 /*****************************************************************************
105  *      Local Variables
106  ****************************************************************************/
107
108 /* max number of input events to read in one read call */
109 #define MAX_EVENTS 50
110
111 static char *default_options[] =
112 {
113         "BaudRate", "9600",
114         "StopBits", "1",
115         "DataBits", "8",
116         "Parity", "Odd",
117         "Vmin", "1",
118         "Vtime", "10",
119         "FlowControl", "Xoff",
120         NULL
121 };
122
123 _X_EXPORT InputDriverRec ACECAD =
124 {
125         1,
126         "acecad",
127         NULL,
128         AceCadPreInit,
129         NULL,
130         NULL,
131         default_options
132 };
133
134 static XF86ModuleVersionInfo VersionRec =
135 {
136         "acecad",
137         MODULEVENDORSTRING,
138         MODINFOSTRING1,
139         MODINFOSTRING2,
140         XORG_VERSION_CURRENT,
141         PACKAGE_VERSION_MAJOR, PACKAGE_VERSION_MINOR, PACKAGE_VERSION_PATCHLEVEL,
142         ABI_CLASS_XINPUT,
143         ABI_XINPUT_VERSION,
144         MOD_CLASS_XINPUT,
145         {0, 0, 0, 0}
146 };
147
148
149 _X_EXPORT XF86ModuleData acecadModuleData = {
150         &VersionRec,
151         SetupProc,
152         TearDownProc
153 };
154
155 /*****************************************************************************
156  *      Function Definitions
157  ****************************************************************************/
158
159 static pointer
160 SetupProc(      pointer module,
161                 pointer options,
162                 int *errmaj,
163                 int *errmin )
164 {
165         xf86AddInputDriver(&ACECAD, module, 0);
166         return module;
167 }
168
169 static void
170 TearDownProc( pointer p )
171 {
172 }
173
174 #ifdef HAVE_LINUX_INPUT_H
175 static int
176 IsUSBLine(int fd)
177 {
178     int version;
179     int err;
180
181     SYSCALL(err = ioctl(fd, EVIOCGVERSION, &version));
182
183     if (!err) {
184         xf86MsgVerb(X_PROBED, 4, "Kernel Input driver version is %d.%d.%d\n",
185                 version >> 16, (version >> 8) & 0xff, version & 0xff);
186         return 1;
187     } else {
188         xf86MsgVerb(X_PROBED, 4, "No Kernel Input driver found\n");
189         return 0;
190     }
191 }
192
193 /* Heavily inspired by synaptics/eventcomm.c */
194
195 #define DEV_INPUT_EVENT "/dev/input/event"
196 #define EV_DEV_NAME_MAXLEN 64
197 #define SET_EVENT_NUM(str, num) \
198     snprintf(str, EV_DEV_NAME_MAXLEN, "%s%d", DEV_INPUT_EVENT, num)
199
200 static Bool
201 fd_query_acecad(int fd, char *ace_name) {
202     char name[256] = "Unknown";
203     int cmp_at = strlen(ace_name);
204     if (cmp_at > 255)
205         cmp_at = 255;
206     ioctl(fd, EVIOCGNAME(sizeof(name)), name);
207     name[cmp_at] = '\0';
208     if (xf86NameCmp(name, ace_name) == 0)
209         return TRUE;
210     return FALSE;
211 }
212
213 static char ace_name_default[7] = "acecad";
214
215 #ifdef HAVE_SYSFS_LIBSYSFS_H
216 static char usb_bus_name[4] = "usb";
217 static char acecad_driver_name[11] = "usb_acecad";
218 #endif
219
220 static Bool
221 AceCadAutoDevProbe(InputInfoPtr local, int verb)
222 {
223     /* We are trying to find the right eventX device */
224     int i = 0;
225     Bool have_evdev = FALSE;
226     int noent_cnt = 0;
227     const int max_skip = 10;
228     char *ace_name = xf86FindOptionValue(local->options, "Name");
229     char fname[EV_DEV_NAME_MAXLEN];
230     int np;
231
232 #ifdef HAVE_SYSFS_LIBSYSFS_H
233     struct sysfs_bus *usb_bus = NULL;
234     struct sysfs_driver *acecad_driver = NULL;
235     struct sysfs_device *candidate = NULL;
236     char *link = NULL;
237     struct dlist *devs = NULL;
238     struct dlist *links = NULL;
239
240     xf86MsgVerb(X_INFO, verb, "%s: querying sysfs for Acecad tablets\n", local->name);
241     usb_bus = sysfs_open_bus(usb_bus_name);
242     if (usb_bus) {
243         xf86MsgVerb(X_PROBED, 4, "%s: usb bus opened\n", local->name);
244         acecad_driver = sysfs_get_bus_driver(usb_bus, acecad_driver_name);
245         if (acecad_driver) {
246             xf86MsgVerb(X_PROBED, 4, "%s: usb_acecad driver opened\n", local->name);
247             devs = sysfs_get_driver_devices(acecad_driver);
248             if (devs) {
249                 xf86MsgVerb(X_PROBED, 4, "%s: usb_acecad devices retrieved\n", local->name);
250                 dlist_for_each_data(devs, candidate, struct sysfs_device) {
251                     xf86MsgVerb(X_PROBED, 4, "%s: device %s at %s\n", local->name, candidate->name, candidate->path);
252                     links = sysfs_open_link_list(candidate->path);
253                     dlist_for_each_data(links, link, char) {
254                         if (sscanf(link, "input:event%d", &i) == 1) {
255                             xf86MsgVerb(X_PROBED, 4, "%s: device %s at %s: %s\n", local->name, candidate->name, candidate->path, link);
256                             break;
257                         }
258                     }
259                     sysfs_close_list(links);
260                     if (i > 0) /* We found something */
261                         break;
262                 }
263             } else
264                 xf86MsgVerb(X_WARNING, 4, "%s: no usb_acecad devices found\n", local->name);
265         } else
266             xf86MsgVerb(X_WARNING, 4, "%s: usb_acecad driver not found\n", local->name);
267     } else
268         xf86MsgVerb(X_WARNING, 4, "%s: usb bus not found\n", local->name);
269     sysfs_close_bus(usb_bus);
270
271     if (i > 0) {
272         /* We found something */
273         np = SET_EVENT_NUM(fname, i);
274         if (np < 0 || np >= EV_DEV_NAME_MAXLEN) {
275             xf86MsgVerb(X_WARNING, verb, "%s: unable to manage event device %d\n", local->name, i);
276         } else {
277             goto ProbeFound;
278         }
279     } else
280         xf86MsgVerb(X_WARNING, verb, "%s: no Acecad devices found via sysfs\n", local->name);
281
282 #endif
283
284     if (!ace_name)
285         ace_name = ace_name_default;
286
287     xf86MsgVerb(X_INFO, verb, "%s: probing event devices for Acecad tablets\n", local->name);
288     for (i = 0; ; i++) {
289         int fd = -1;
290         Bool is_acecad;
291
292         np = SET_EVENT_NUM(fname, i);
293         if (np < 0 || np >= EV_DEV_NAME_MAXLEN) {
294             xf86MsgVerb(X_WARNING, verb, "%s: too many devices, giving up %d\n", local->name, i);
295             break;
296         }
297         SYSCALL(fd = open(fname, O_RDONLY));
298         if (fd < 0) {
299             if (errno == ENOENT) {
300                 if (++noent_cnt >= max_skip)
301                     break;
302                 else
303                     continue;
304             } else {
305                 continue;
306             }
307         }
308         noent_cnt = 0;
309         have_evdev = TRUE;
310         is_acecad = fd_query_acecad(fd, ace_name);
311         SYSCALL(close(fd));
312         if (is_acecad) {
313             goto ProbeFound;
314         }
315     }
316     xf86MsgVerb(X_WARNING, verb, "%s: no Acecad event device found (checked %d nodes, no device name started with '%s')\n",
317             local->name, i + 1, ace_name);
318     if (i <= max_skip)
319         xf86MsgVerb(X_WARNING, verb, "%s: The /dev/input/event* device nodes seem to be missing\n",
320                 local->name);
321     if (i > max_skip && !have_evdev)
322         xf86MsgVerb(X_WARNING, verb, "%s: The evdev kernel module seems to be missing\n", local->name);
323     return FALSE;
324
325 ProbeFound:
326     xf86Msg(X_PROBED, "%s auto-dev sets device to %s\n",
327             local->name, fname);
328     xf86ReplaceStrOption(local->options, "Device", fname);
329     return TRUE;
330 }
331
332 #endif
333
334 static int
335 AceCadPreInit(InputDriverPtr drv, InputInfoPtr local, int flags)
336 {
337     AceCadPrivatePtr priv = calloc (1, sizeof(AceCadPrivateRec));
338     int speed;
339     int msgtype;
340     char *s;
341
342     if (!priv)
343         return BadAlloc;
344
345     memset(priv, 0, sizeof(AceCadPrivateRec));
346     local->private = priv;
347
348     local->device_control = DeviceControl;
349     local->type_name = XI_TABLET;
350
351     priv->acecadInc = xf86SetIntOption(local->options, "Increment", 0 );
352
353     s = xf86FindOptionValue(local->options, "Device");
354     if (!s || (s && (xf86NameCmp(s, "auto-dev") == 0))) {
355 #ifdef HAVE_LINUX_INPUT_H
356         priv->flags |= AUTODEV_FLAG;
357         if (!AceCadAutoDevProbe(local, 0))
358         {
359             xf86Msg(X_ERROR, "%s: unable to find device\n", local->name);
360             goto SetupProc_fail;
361         }
362 #else
363         xf86Msg(X_NOT_IMPLEMENTED, "%s: device autodetection not implemented, sorry\n", local->name);
364         goto SetupProc_fail;
365 #endif
366     }
367
368     local->fd = xf86OpenSerial (local->options);
369     if (local->fd == -1)
370     {
371         xf86Msg(X_ERROR, "%s: unable to open device\n", local->name);
372         goto SetupProc_fail;
373     }
374     xf86ErrorFVerb( 6, "tty port opened successfully\n" );
375
376 #ifdef HAVE_LINUX_INPUT_H
377     if (IsUSBLine(local->fd)) {
378         priv->flags |= USB_FLAG;
379
380         local->read_input = USBReadInput;
381
382         if (USBQueryHardware(local) != Success)
383         {
384             xf86Msg(X_ERROR, "%s: unable to query/initialize hardware (not an %s?).\n", local->name, local->type_name);
385             goto SetupProc_fail;
386         }
387     } else
388 #endif
389     {
390         local->read_input = ReadInput;
391
392         msgtype = X_DEFAULT;
393         if (xf86FindOptionValue(local->options, "ReportSpeed")) {
394             msgtype = X_CONFIG;
395             speed = xf86SetIntOption(local->options, "ReportSpeed", 85 );
396         } else {
397             speed = 85;
398         }
399
400         switch (speed)
401         {
402             case 120:
403                 priv->acecadReportSpeed = 'Q';
404                 break;
405             case 85:
406                 priv->acecadReportSpeed = 'R';
407                 break;
408             case 10:
409                 priv->acecadReportSpeed = 'S';
410                 break;
411             case 2:
412                 priv->acecadReportSpeed = 'T';
413                 break;
414             default:
415                 priv->acecadReportSpeed = 'R';
416                 speed = 85;
417                 xf86Msg(X_ERROR, "%s: ReportSpeed value %d invalid. Possible values: 120, 85, 10, 2. Defaulting to 85\n", local->name, speed);
418                 msgtype = X_DEFAULT;
419         }
420
421         xf86Msg(msgtype, "%s report %d points/s\n", local->name, speed);
422
423         priv->buffer = XisbNew (local->fd, 200);
424
425         /*
426          * Verify that hardware is attached and fuctional
427          */
428         if (QueryHardware(priv) != Success)
429         {
430             xf86Msg(X_ERROR, "%s: unable to query/initialize hardware (not an %s?).\n", local->name, local->type_name);
431             goto SetupProc_fail;
432         }
433     }
434
435     s = xf86FindOptionValue(local->options, "Mode");
436     msgtype = s ? X_CONFIG : X_DEFAULT;
437     if (!(s && (xf86NameCmp(s, "relative") == 0)))
438     {
439         priv->flags |= ABSOLUTE_FLAG;
440     }
441
442     xf86Msg(msgtype, "%s is in %s mode\n", local->name, (priv->flags & ABSOLUTE_FLAG) ? "absolute" : "relative");
443     DBG (9, XisbTrace (priv->buffer, 1));
444
445     xf86ProcessCommonOptions(local, local->options);
446
447     if (local->fd != -1)
448     {
449         RemoveEnabledDevice (local->fd);
450         if (priv->buffer)
451         {
452             XisbFree(priv->buffer);
453             priv->buffer = NULL;
454         }
455         xf86CloseSerial(local->fd);
456     }
457     RemoveEnabledDevice (local->fd);
458     local->fd = -1;
459     return Success;
460
461     /*
462      * If something went wrong, cleanup and return NULL
463      */
464 SetupProc_fail:
465     if ((local) && (local->fd))
466         xf86CloseSerial (local->fd);
467     if ((priv) && (priv->buffer))
468         XisbFree (priv->buffer);
469     if (priv) {
470         free (priv);
471         if (local)
472                 local->private = NULL;
473     }
474     xf86DeleteInput(local, 0);
475     return BadAlloc;
476 }
477
478 static Bool
479 DeviceControl (DeviceIntPtr dev, int mode)
480 {
481     Bool RetValue;
482
483     switch (mode)
484     {
485         case DEVICE_INIT:
486             DeviceInit(dev);
487             RetValue = Success;
488             break;
489         case DEVICE_ON:
490             RetValue = DeviceOn(dev);
491             break;
492         case DEVICE_OFF:
493             RetValue = DeviceOff(dev);
494             break;
495         case DEVICE_CLOSE:
496             RetValue = DeviceClose(dev);
497             break;
498         default:
499             RetValue = BadValue;
500     }
501
502     return RetValue;
503 }
504
505 static Bool
506 DeviceOn (DeviceIntPtr dev)
507 {
508     char buffer[256];
509     InputInfoPtr local = (InputInfoPtr) dev->public.devicePrivate;
510     AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private);
511
512     xf86MsgVerb(X_INFO, 4, "%s Device On\n", local->name);
513
514     local->fd = xf86OpenSerial(local->options);
515     if (local->fd == -1)
516     {
517         xf86Msg(X_WARNING, "%s: cannot open input device %s: %s\n", local->name, xf86FindOptionValue(local->options, "Device"), strerror(errno));
518         priv->flags &= ~AVAIL_FLAG;
519 #ifdef HAVE_LINUX_INPUT_H
520         if ((priv->flags & AUTODEV_FLAG) && AceCadAutoDevProbe(local, 4))
521             local->fd = xf86OpenSerial(local->options);
522         if (local->fd == -1)
523 #endif
524             return !Success;
525     }
526     priv->flags |= AVAIL_FLAG;
527
528
529     if (!(priv->flags & USB_FLAG)) {
530         priv->buffer = XisbNew(local->fd, 200);
531         if (!priv->buffer)
532         {
533             xf86CloseSerial(local->fd);
534             local->fd = -1;
535             return !Success;
536         }
537
538         /* Rets qu'a l'envoyer a la tablette */
539         sprintf(buffer, "%s%c%c%c%c", acecad_initstr, priv->acecadReportSpeed, ACECAD_INCREMENT, 32 + priv->acecadInc, (priv->flags & ABSOLUTE_FLAG)? ACECAD_ABSOLUTE: ACECAD_RELATIVE);
540         XisbWrite (priv->buffer, (unsigned char *)buffer, strlen(buffer));
541     }
542
543     xf86FlushInput(local->fd);
544     xf86AddEnabledDevice (local);
545     dev->public.on = TRUE;
546     return Success;
547 }
548
549 static Bool
550 DeviceOff (DeviceIntPtr dev)
551 {
552     InputInfoPtr local = (InputInfoPtr) dev->public.devicePrivate;
553     AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private);
554
555     xf86MsgVerb(X_INFO, 4, "%s Device Off\n", local->name);
556
557     if (local->fd != -1)
558     {
559         RemoveEnabledDevice (local->fd);
560         if (priv->buffer)
561         {
562             XisbFree(priv->buffer);
563             priv->buffer = NULL;
564         }
565         xf86CloseSerial(local->fd);
566     }
567
568
569     xf86RemoveEnabledDevice (local);
570     dev->public.on = FALSE;
571     return Success;
572 }
573
574 static Bool
575 DeviceClose (DeviceIntPtr dev)
576 {
577     InputInfoPtr local = (InputInfoPtr) dev->public.devicePrivate;
578
579     xf86MsgVerb(X_INFO, 4, "%s Device Close\n", local->name);
580
581     return Success;
582 }
583
584 static void
585 ControlProc(DeviceIntPtr dev, PtrCtrl *ctrl)
586 {
587     InputInfoPtr local = (InputInfoPtr) dev->public.devicePrivate;
588
589     xf86MsgVerb(X_INFO, 4, "%s Control Proc\n", local->name);
590 }
591
592 static Bool
593 DeviceInit (DeviceIntPtr dev)
594 {
595     int rx, ry;
596     InputInfoPtr local = (InputInfoPtr) dev->public.devicePrivate;
597     AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private);
598     unsigned char map[] = {0, 1, 2, 3};
599     int history_size;
600     Atom btn_labels[3];
601     Atom axes_labels[3];
602
603     btn_labels[0] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_LEFT);
604     btn_labels[1] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_MIDDLE);
605     btn_labels[2] = XIGetKnownProperty(BTN_LABEL_PROP_BTN_RIGHT);
606
607     if ((priv->flags & ABSOLUTE_FLAG))
608     {
609         axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X);
610         axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y);
611         axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE);
612     } else
613     {
614         axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_X);
615         axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Y);
616         axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_REL_Z);
617     }
618
619     xf86MsgVerb(X_INFO, 4, "%s Init\n", local->name);
620
621     /* 3 boutons */
622     if (InitButtonClassDeviceStruct (dev, 3,
623                 btn_labels,
624                 map) == FALSE)
625     {
626         xf86Msg(X_ERROR, "%s: unable to allocate ButtonClassDeviceStruct\n", local->name);
627         return !Success;
628     }
629
630     if (InitFocusClassDeviceStruct (dev) == FALSE)
631     {
632         xf86Msg(X_ERROR, "%s: unable to allocate FocusClassDeviceStruct\n", local->name);
633         return !Success;
634     }
635
636     if (InitPtrFeedbackClassDeviceStruct(dev, ControlProc) == FALSE) {
637         xf86Msg(X_ERROR, "%s: unable to init ptr feedback\n", local->name);
638         return !Success;
639     }
640
641     history_size = xf86SetIntOption(local->options , "HistorySize", 0);
642
643     /* 3 axes */
644     if (InitValuatorClassDeviceStruct (dev, 3,
645                 axes_labels,
646                 history_size,
647                 ((priv->flags & ABSOLUTE_FLAG)? Absolute: Relative)|OutOfProximity)
648             == FALSE)
649     {
650         xf86Msg(X_ERROR, "%s: unable to allocate ValuatorClassDeviceStruct\n", local->name);
651         return !Success;
652     }
653     else
654     {
655
656         InitValuatorAxisStruct(dev,
657                 0,
658                 axes_labels[0],
659                 0,                      /* min val */
660 #if XORG_BOTCHED_INPUT
661                 screenInfo.screens[0]->width,
662 #else
663                 priv->acecadMaxX,       /* max val */
664 #endif
665                 1000,                   /* resolution */
666                 0,                      /* min_res */
667                 1000                    /* max_res */
668                 , Absolute
669                 );
670         InitValuatorAxisStruct(dev,
671                 1,
672                 axes_labels[1],
673                 0,                      /* min val */
674 #if XORG_BOTCHED_INPUT
675                 screenInfo.screens[0]->height,
676 #else
677                 priv->acecadMaxY,       /* max val */
678 #endif
679                 1000,                   /* resolution */
680                 0,                      /* min_res */
681                 1000                    /* max_res */
682                 , Absolute
683                 );
684         InitValuatorAxisStruct(dev,
685                 2,
686                 axes_labels[2],
687                 0,                      /* min val */
688                 priv->acecadMaxZ,       /* max val */
689                 1000,                   /* resolution */
690                 0,                      /* min_res */
691                 1000            /* max_res */
692                 , Absolute
693                 );
694
695     }
696
697     if (InitProximityClassDeviceStruct (dev) == FALSE)
698     {
699         xf86Msg(X_ERROR, "%s: unable to allocate ProximityClassDeviceStruct\n", local->name);
700         return !Success;
701     }
702
703     xf86MotionHistoryAllocate (local);
704
705
706     /* On ne peut pas calculer l'increment avant, faute d'ecran pour
707        connaitre la taille... */
708
709     if (priv->acecadInc > 95)
710         priv->acecadInc = 95;
711     if (priv->acecadInc < 1)
712     {
713         /* guess the best increment value given video mode */
714         rx = priv->acecadMaxX / screenInfo.screens[0]->width;
715         ry = priv->acecadMaxY / screenInfo.screens[0]->height;
716         if (rx < ry)
717             priv->acecadInc = rx;
718         else
719             priv->acecadInc = ry;
720         if (priv->acecadInc < 1)
721             priv->acecadInc = 1;
722     }
723
724     xf86Msg(X_INFO, "%s Increment: %d\n", local->name, priv->acecadInc);
725
726     return Success;
727 }
728
729 static void
730 ReadInput (InputInfoPtr local)
731 {
732     int x, y, z;
733     int prox, buttons;
734     int is_absolute;
735     AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private);
736
737     /*xf86Msg(X_INFO, "ACECAD Tablet Read Input\n");*/
738
739     is_absolute = (priv->flags & ABSOLUTE_FLAG);
740
741     /*
742      * set blocking to -1 on the first call because we know there is data to
743      * read. Xisb automatically clears it after one successful read so that
744      * succeeding reads are preceeded buy a select with a 0 timeout to prevent
745      * read from blocking indefinately.
746      */
747     XisbBlockDuration (priv->buffer, -1);
748
749     while (AceCadGetPacket (priv) == Success)
750     {
751         x = (int)priv->packet[1] | ((int)priv->packet[2] << 7);
752         y = (int)priv->packet[3] | ((int)priv->packet[4] << 7);
753
754         if (!(priv->flags & ABSOLUTE_FLAG))
755         {
756             x = priv->packet[0] & XSIGN_BIT? x:-x;
757             y = priv->packet[0] & YSIGN_BIT? y:-y;
758         }
759         else
760         {
761             y = priv->acecadMaxY - y ;
762         }
763
764
765         z = ((int)priv->packet[5] << 2) |
766             (((int)priv->packet[6] & 0x01) << 1) |
767             (((int)priv->packet[6] & 0x10) >> 4);
768
769         buttons = ((int)priv->packet[0] & 0x07) |
770             ((int)priv->packet[6] & 0x02 << 2);
771
772         prox = (priv->packet[0] & PROXIMITY_BIT)? 0: 1;
773
774         if (prox)
775         {
776             if (!(priv->acecadOldProximity))
777             {
778                 /*xf86Msg(X_INFO, "ACECAD Tablet ProxIN %d %d %d\n",x, y, z);*/
779                 xf86PostProximityEvent(local->dev, 1, 0, 3 , x, y, z);
780             }
781
782             if ((is_absolute && ((priv->acecadOldX != x) || (priv->acecadOldY != y) || (priv->acecadOldZ != z)))
783                     || (!is_absolute && (x || y)))
784             {
785                 if (is_absolute || priv->acecadOldProximity)
786                 {
787                     /*xf86Msg(X_INFO, "ACECAD Tablet Motion %d %d %d\n", x, y, z);*/
788                     xf86PostMotionEvent(local->dev, is_absolute, 0, 3, x, y, z);
789                 }
790             }
791
792             if (priv->acecadOldButtons != buttons)
793             {
794                 int delta = buttons ^ priv->acecadOldButtons;
795                 while (delta)
796                 {
797                     int id = ffs(delta);
798                     delta &= ~(1 << (id-1));
799
800                     /*xf86Msg(X_INFO, "ACECAD Tablet Button %d 0x%x\n",id,(buttons&(1<<(id-1))));*/
801                     xf86PostButtonEvent(local->dev, is_absolute, id, (buttons&(1<<(id-1))), 0, 3, x, y,z);
802                 }
803             }
804
805             priv->acecadOldButtons = buttons;
806             priv->acecadOldX = x;
807             priv->acecadOldY = y;
808             priv->acecadOldZ = z;
809             priv->acecadOldProximity = prox;
810         }
811         else
812         {
813             if (priv->acecadOldProximity)
814             {
815                 /*xf86Msg(X_INFO, "ACECAD Tablet ProxOUT %d %d %d\n",x, y, z);*/
816                 xf86PostProximityEvent(local->dev, 0, 0, 3, x,y,z);
817             }
818             priv->acecadOldProximity = 0;
819         }
820     }
821     /*xf86Msg(X_INFO, "ACECAD Tablet Sortie Read Input\n");*/
822 }
823
824 #ifdef HAVE_LINUX_INPUT_H
825 #define set_bit(byte,nb,bit)    (bit ? byte | (1<<nb) : byte & (~(1<<nb)))
826 static void
827 USBReadInput (InputInfoPtr local)
828 {
829     int len;
830     struct input_event * event;
831     char eventbuf[sizeof(struct input_event) * MAX_EVENTS];
832     AceCadPrivatePtr priv = (AceCadPrivatePtr) (local->private);
833     int x = priv->acecadOldX;
834     int y = priv->acecadOldY;
835     int z = priv->acecadOldZ;
836     int report_x = 0, report_y = 0;
837     int prox = priv->acecadOldProximity;
838     int buttons = priv->acecadOldButtons;
839     /* Is autodev active? */
840     int autodev = priv->flags & AUTODEV_FLAG;
841     /* Was the device available last time we checked? */
842     int avail = priv->flags & AVAIL_FLAG;
843
844     SYSCALL(len = xf86ReadSerial(local->fd, eventbuf, sizeof(eventbuf)));
845
846     if (len <= 0) {
847         if (avail) {
848             xf86Msg(X_ERROR, "%s: error reading device %s: %s\n", local->name, xf86FindOptionValue(local->options, "Device"), strerror(errno));
849         }
850         if (NOTAVAIL) {
851             priv->flags &= ~AVAIL_FLAG;
852             if(autodev) {
853                 if (AceCadAutoDevProbe(local, 4)) {
854                     DeviceOff(local->dev);
855                     DeviceOn(local->dev);
856                 }
857             }
858         }
859         return;
860     } else {
861         if (!avail) {
862             /* If the device wasn't available last time we checked */
863             xf86Msg(X_INFO, "%s: device %s is available again\n", local->name, xf86FindOptionValue(local->options, "Device"));
864             priv->flags |= AVAIL_FLAG;
865         }
866     }
867
868     for (event = (struct input_event *)eventbuf;
869             event < (struct input_event *)(eventbuf+len); event++) {
870
871         switch (event->type) {
872             case EV_SYN: /* 2.6.x */
873                 if (event->code != SYN_REPORT)
874                     xf86Msg(X_ERROR, "%s: unknown EV_SYN code %d\n", local->name, event->code);
875                 break;
876             case EV_ABS:
877                 switch (event->code) {
878                     case ABS_X:
879                         x = event->value;
880                         break;
881
882                     case ABS_Y:
883                         y = event->value;
884                         break;
885
886                     case ABS_PRESSURE:
887                         z = event->value;
888                         break;
889
890                     case ABS_MISC:
891                         break;
892
893                 }
894                 break; /* EV_ABS */
895
896             case EV_KEY:
897                 switch (event->code) {
898                     case BTN_TOOL_PEN:
899                         prox = event->value;
900                         break;
901
902                     case BTN_TOUCH:
903                         buttons = set_bit(buttons,0,event->value);
904                         break;
905
906                     case BTN_STYLUS:
907                         buttons = set_bit(buttons,1,event->value);
908                         break;
909
910                     case BTN_STYLUS2:
911                         buttons = set_bit(buttons,2,event->value);
912                         break;
913                 }
914                 break; /* EV_KEY */
915             default:
916                 xf86Msg(X_ERROR, "%s: unknown event type/code %d/%d\n", local->name, event->type, event->code);
917         } /* switch event->type */
918
919         /* Linux Kernel 2.6.x sends EV_SYN/SYN_REPORT as an event terminator,
920          * whereas 2.4.x sends EV_ABS/ABS_MISC. We have to support both.
921          */
922         if (!(  (event->type == EV_SYN && event->code == SYN_REPORT) ||
923                     (event->type == EV_ABS && event->code == ABS_MISC)
924              )) {
925             continue;
926         }
927
928         if (prox)
929         {
930 #if XORG_BOTCHED_INPUT
931             ConvertProc(local, 0, 3, x, y, 0, 0, 0, 0, &report_x, &report_y);
932 #else
933             report_x = x;
934             report_y = y;
935 #endif
936             if (!(priv->acecadOldProximity))
937             {
938                 xf86PostProximityEvent(local->dev, 1, 0, 3 , report_x, report_y, z);
939             }
940
941
942             xf86PostMotionEvent(local->dev, 1, 0, 3, report_x, report_y, z);
943
944             if (priv->acecadOldButtons != buttons)
945             {
946                 int delta = buttons ^ priv->acecadOldButtons;
947                 while (delta)
948                 {
949                     int id = ffs(delta);
950                     delta &= ~(1 << (id-1));
951
952                     xf86PostButtonEvent(local->dev, 1, id, (buttons&(1<<(id-1))), 0, 3, report_x, report_y, z);
953                 }
954             }
955         }
956         else
957         {
958             if (priv->acecadOldProximity)
959             {
960                 xf86PostProximityEvent(local->dev, 0, 0, 3, report_x, report_y, z);
961             }
962             priv->acecadOldProximity = 0;
963         }
964
965         priv->acecadOldButtons = buttons;
966         priv->acecadOldX = x;
967         priv->acecadOldY = y;
968         priv->acecadOldZ = z;
969         priv->acecadOldProximity = prox;
970     }
971     /*xf86Msg(X_INFO, "ACECAD Tablet Sortie Read Input\n");*/
972 }
973 #endif
974
975 /*
976  * The ConvertProc function may need to be tailored for your device.
977  * This function converts the device's valuator outputs to x and y coordinates
978  * to simulate mouse events.
979  */
980 static Bool
981 ConvertProc (InputInfoPtr local, int first, int num,
982         int v0, int v1, int v2, int v3, int v4, int v5,
983         int *x, int *y)
984 {
985     AceCadPrivatePtr priv = (AceCadPrivatePtr)(local->private);
986
987     /* TODO: should have a structure to hold which screen the
988      * pointer is attached to? */
989     // xf86Msg(X_INFO, "%s: coordinate conversion in : %d, %d\n", local->name, v0, v1);
990     *x = v0 * screenInfo.screens[0]->width / priv->acecadMaxX;
991     *y = v1 * screenInfo.screens[0]->height / priv->acecadMaxY;
992     // xf86Msg(X_INFO, "%s: coordinate conversion out: %d, %d\n", local->name, *x, *y);
993     return TRUE;
994 }
995
996
997 #define WriteString(str)\
998     XisbWrite (priv->buffer, (unsigned char *)(str), strlen(str))
999
1000
1001 static Bool
1002 QueryHardware (AceCadPrivatePtr priv)
1003 {
1004
1005     /* Reset */
1006     WriteString("z0");
1007
1008     /* Wait */
1009     milisleep (250);
1010
1011     /* Prompt Mode in order to not be disturbed */
1012     WriteString(ACECAD_PROMPT_MODE);
1013
1014     /* Flush */
1015     while (XisbRead(priv->buffer) >= 0);
1016
1017     /* Ask for Config packet*/
1018     WriteString(ACECAD_CONFIG);
1019
1020     /* Read the packet */
1021     XisbBlockDuration (priv->buffer, 1000000);
1022     NewPacket (priv);
1023
1024     /*xf86Msg(X_CONFIG, "ACECAD Tablet init envoyé \n");*/
1025
1026     if ((AceCadGetPacket (priv) == Success))
1027     {
1028         priv->acecadMaxX = (int)priv->packet[1] + ((int)priv->packet[2] << 7);
1029         priv->acecadMaxY = (int)priv->packet[3] + ((int)priv->packet[4] << 7);
1030         priv->acecadMaxZ = 512;
1031         xf86Msg(X_PROBED, "ACECAD Tablet MaxX:%d MaxY:%d\n", priv->acecadMaxX, priv->acecadMaxY);
1032     }
1033     else
1034         return !Success;
1035
1036     /*xf86Msg(X_INFO, "ACECAD Tablet query hardware fini \n");*/
1037     return Success;
1038 }
1039
1040 #define BITS_PER_LONG (sizeof(long) * 8)
1041 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
1042 #define test_bit(bit, array)    ((array[LONG(bit)] >> OFF(bit)) & 1)
1043 #define OFF(x)  ((x)%BITS_PER_LONG)
1044 #define LONG(x) ((x)/BITS_PER_LONG)
1045
1046 #ifdef HAVE_LINUX_INPUT_H
1047 static Bool
1048 USBQueryHardware (InputInfoPtr local)
1049 {
1050     AceCadPrivatePtr    priv = (AceCadPrivatePtr) local->private;
1051     unsigned long       bit[EV_MAX][NBITS(KEY_MAX)];
1052     int                 i, j;
1053     int                 abs[5];
1054     char                name[256] = "Unknown";
1055
1056     ioctl(local->fd, EVIOCGNAME(sizeof(name)), name);
1057     xf86MsgVerb(X_PROBED, 4, "Kernel Input device name: \"%s\"\n", name);
1058
1059     memset(bit, 0, sizeof(bit));
1060     ioctl(local->fd, EVIOCGBIT(0, EV_MAX), bit[0]);
1061
1062     for (i = 0; i < EV_MAX; i++)
1063         if (test_bit(i, bit[0])) {
1064             ioctl(local->fd, EVIOCGBIT(i, KEY_MAX), bit[i]);
1065             for (j = 0; j < KEY_MAX; j++)
1066                 if (test_bit(j, bit[i])) {
1067                     if (i == EV_ABS) {
1068                         ioctl(local->fd, EVIOCGABS(j), abs);
1069                         switch (j) {
1070                             case ABS_X:
1071                                 priv->acecadMaxX = abs[2];
1072                                 break;
1073
1074                             case ABS_Y:
1075                                 priv->acecadMaxY = abs[2];
1076                                 break;
1077
1078                             case ABS_PRESSURE:
1079                                 priv->acecadMaxZ = abs[2];
1080                                 break;
1081                         }
1082                     }
1083                 }
1084         }
1085
1086     xf86Msg(X_PROBED, "ACECAD Tablet MaxX:%d MaxY:%d MaxZ:%d\n", priv->acecadMaxX, priv->acecadMaxY, priv->acecadMaxZ);
1087     return Success;
1088 }
1089 #endif
1090
1091 static void
1092 NewPacket (AceCadPrivatePtr priv)
1093 {
1094     priv->packeti = 0;
1095 }
1096
1097 static Bool
1098 AceCadGetPacket (AceCadPrivatePtr priv)
1099 {
1100     int count = 0;
1101     int c = 0;
1102
1103     while((c = XisbRead(priv->buffer)) >= 0 )
1104     {
1105
1106         /*
1107          * fail after 500 bytes so the server doesn't hang forever if a
1108          * device sends bad data.
1109          */
1110         if (count++ > 500)
1111         {
1112             NewPacket (priv);
1113             return !Success;
1114         }
1115
1116         if (c & PHASING_BIT)
1117         {
1118             NewPacket(priv);
1119
1120             /*xf86Msg(X_CONFIG, "Push %2.2x\n",(char) c);*/
1121             XisbBlockDuration (priv->buffer, 10000);
1122             priv->packet[priv->packeti++] = c;
1123             count = ACECAD_PACKET_SIZE - 1;
1124             while (count-- && (c = XisbRead(priv->buffer)) >= 0)
1125             {
1126                 /*xf86Msg(X_INFO, "Push %2.2x\n",(char) c);*/
1127                 priv->packet[priv->packeti++] = c;
1128             }
1129             XisbBlockDuration (priv->buffer, 0);
1130             if(c > 0)
1131                 return Success;
1132         }
1133     }
1134     return !Success;
1135 }