1 #include <linux/kernel.h>
2 #include <linux/slab.h>
3 #include <linux/module.h>
4 #include <linux/usb/input.h>
5 #include <asm/unaligned.h>
8 * Pressure-threshold modules param code from Alex Perry <alex.perry@ieee.org>
11 MODULE_AUTHOR("Josh Myer <josh@joshisanerd.com>");
12 MODULE_DESCRIPTION("USB KB Gear JamStudio Tablet driver");
13 MODULE_LICENSE("GPL");
15 #define USB_VENDOR_ID_KBGEAR 0x084e
17 static int kb_pressure_click
= 0x10;
18 module_param(kb_pressure_click
, int, 0);
19 MODULE_PARM_DESC(kb_pressure_click
, "pressure threshold for clicks");
24 struct input_dev
*dev
;
25 struct usb_interface
*intf
;
30 static void kbtab_irq(struct urb
*urb
)
32 struct kbtab
*kbtab
= urb
->context
;
33 unsigned char *data
= kbtab
->data
;
34 struct input_dev
*dev
= kbtab
->dev
;
38 switch (urb
->status
) {
45 /* this urb is terminated, clean up */
46 dev_dbg(&kbtab
->intf
->dev
,
47 "%s - urb shutting down with status: %d\n",
48 __func__
, urb
->status
);
51 dev_dbg(&kbtab
->intf
->dev
,
52 "%s - nonzero urb status received: %d\n",
53 __func__
, urb
->status
);
58 input_report_key(dev
, BTN_TOOL_PEN
, 1);
60 input_report_abs(dev
, ABS_X
, get_unaligned_le16(&data
[1]));
61 input_report_abs(dev
, ABS_Y
, get_unaligned_le16(&data
[3]));
63 /*input_report_key(dev, BTN_TOUCH , data[0] & 0x01);*/
64 input_report_key(dev
, BTN_RIGHT
, data
[0] & 0x02);
67 if (kb_pressure_click
== -1)
68 input_report_abs(dev
, ABS_PRESSURE
, pressure
);
70 input_report_key(dev
, BTN_LEFT
, pressure
> kb_pressure_click
? 1 : 0);
75 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
77 dev_err(&kbtab
->intf
->dev
,
78 "%s - usb_submit_urb failed with result %d\n",
82 static const struct usb_device_id kbtab_ids
[] = {
83 { USB_DEVICE(USB_VENDOR_ID_KBGEAR
, 0x1001), .driver_info
= 0 },
87 MODULE_DEVICE_TABLE(usb
, kbtab_ids
);
89 static int kbtab_open(struct input_dev
*dev
)
91 struct kbtab
*kbtab
= input_get_drvdata(dev
);
92 struct usb_device
*udev
= interface_to_usbdev(kbtab
->intf
);
94 kbtab
->irq
->dev
= udev
;
95 if (usb_submit_urb(kbtab
->irq
, GFP_KERNEL
))
101 static void kbtab_close(struct input_dev
*dev
)
103 struct kbtab
*kbtab
= input_get_drvdata(dev
);
105 usb_kill_urb(kbtab
->irq
);
108 static int kbtab_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
110 struct usb_device
*dev
= interface_to_usbdev(intf
);
111 struct usb_endpoint_descriptor
*endpoint
;
113 struct input_dev
*input_dev
;
116 if (intf
->cur_altsetting
->desc
.bNumEndpoints
< 1)
119 kbtab
= kzalloc(sizeof(struct kbtab
), GFP_KERNEL
);
120 input_dev
= input_allocate_device();
121 if (!kbtab
|| !input_dev
)
124 kbtab
->data
= usb_alloc_coherent(dev
, 8, GFP_KERNEL
, &kbtab
->data_dma
);
128 kbtab
->irq
= usb_alloc_urb(0, GFP_KERNEL
);
133 kbtab
->dev
= input_dev
;
135 usb_make_path(dev
, kbtab
->phys
, sizeof(kbtab
->phys
));
136 strlcat(kbtab
->phys
, "/input0", sizeof(kbtab
->phys
));
138 input_dev
->name
= "KB Gear Tablet";
139 input_dev
->phys
= kbtab
->phys
;
140 usb_to_input_id(dev
, &input_dev
->id
);
141 input_dev
->dev
.parent
= &intf
->dev
;
143 input_set_drvdata(input_dev
, kbtab
);
145 input_dev
->open
= kbtab_open
;
146 input_dev
->close
= kbtab_close
;
148 input_dev
->evbit
[0] |= BIT_MASK(EV_KEY
) | BIT_MASK(EV_ABS
);
149 input_dev
->keybit
[BIT_WORD(BTN_LEFT
)] |=
150 BIT_MASK(BTN_LEFT
) | BIT_MASK(BTN_RIGHT
);
151 input_dev
->keybit
[BIT_WORD(BTN_DIGI
)] |=
152 BIT_MASK(BTN_TOOL_PEN
) | BIT_MASK(BTN_TOUCH
);
153 input_set_abs_params(input_dev
, ABS_X
, 0, 0x2000, 4, 0);
154 input_set_abs_params(input_dev
, ABS_Y
, 0, 0x1750, 4, 0);
155 input_set_abs_params(input_dev
, ABS_PRESSURE
, 0, 0xff, 0, 0);
157 endpoint
= &intf
->cur_altsetting
->endpoint
[0].desc
;
159 usb_fill_int_urb(kbtab
->irq
, dev
,
160 usb_rcvintpipe(dev
, endpoint
->bEndpointAddress
),
162 kbtab_irq
, kbtab
, endpoint
->bInterval
);
163 kbtab
->irq
->transfer_dma
= kbtab
->data_dma
;
164 kbtab
->irq
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
166 error
= input_register_device(kbtab
->dev
);
170 usb_set_intfdata(intf
, kbtab
);
174 fail3
: usb_free_urb(kbtab
->irq
);
175 fail2
: usb_free_coherent(dev
, 8, kbtab
->data
, kbtab
->data_dma
);
176 fail1
: input_free_device(input_dev
);
181 static void kbtab_disconnect(struct usb_interface
*intf
)
183 struct kbtab
*kbtab
= usb_get_intfdata(intf
);
184 struct usb_device
*udev
= interface_to_usbdev(intf
);
186 usb_set_intfdata(intf
, NULL
);
188 input_unregister_device(kbtab
->dev
);
189 usb_free_urb(kbtab
->irq
);
190 usb_free_coherent(udev
, 8, kbtab
->data
, kbtab
->data_dma
);
194 static struct usb_driver kbtab_driver
= {
196 .probe
= kbtab_probe
,
197 .disconnect
= kbtab_disconnect
,
198 .id_table
= kbtab_ids
,
201 module_usb_driver(kbtab_driver
);