|
@@ -106,18 +106,18 @@ static void hid_reset(struct work_struct *work)
|
|
|
|
|
|
if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
|
|
if (test_bit(HID_CLEAR_HALT, &usbhid->iofl)) {
|
|
dev_dbg(&usbhid->intf->dev, "clear halt\n");
|
|
dev_dbg(&usbhid->intf->dev, "clear halt\n");
|
|
- rc = usb_clear_halt(to_usb_device(hid->dev), usbhid->urbin->pipe);
|
|
|
|
|
|
+ rc = usb_clear_halt(hid_to_usb_dev(hid), usbhid->urbin->pipe);
|
|
clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
|
|
clear_bit(HID_CLEAR_HALT, &usbhid->iofl);
|
|
hid_start_in(hid);
|
|
hid_start_in(hid);
|
|
}
|
|
}
|
|
|
|
|
|
else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
|
|
else if (test_bit(HID_RESET_PENDING, &usbhid->iofl)) {
|
|
dev_dbg(&usbhid->intf->dev, "resetting device\n");
|
|
dev_dbg(&usbhid->intf->dev, "resetting device\n");
|
|
- rc = rc_lock = usb_lock_device_for_reset(to_usb_device(hid->dev), usbhid->intf);
|
|
|
|
|
|
+ rc = rc_lock = usb_lock_device_for_reset(hid_to_usb_dev(hid), usbhid->intf);
|
|
if (rc_lock >= 0) {
|
|
if (rc_lock >= 0) {
|
|
- rc = usb_reset_composite_device(to_usb_device(hid->dev), usbhid->intf);
|
|
|
|
|
|
+ rc = usb_reset_composite_device(hid_to_usb_dev(hid), usbhid->intf);
|
|
if (rc_lock)
|
|
if (rc_lock)
|
|
- usb_unlock_device(to_usb_device(hid->dev));
|
|
|
|
|
|
+ usb_unlock_device(hid_to_usb_dev(hid));
|
|
}
|
|
}
|
|
clear_bit(HID_RESET_PENDING, &usbhid->iofl);
|
|
clear_bit(HID_RESET_PENDING, &usbhid->iofl);
|
|
}
|
|
}
|
|
@@ -129,8 +129,8 @@ static void hid_reset(struct work_struct *work)
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
err("can't reset device, %s-%s/input%d, status %d",
|
|
err("can't reset device, %s-%s/input%d, status %d",
|
|
- to_usb_device(hid->dev)->bus->bus_name,
|
|
|
|
- to_usb_device(hid->dev)->devpath,
|
|
|
|
|
|
+ hid_to_usb_dev(hid)->bus->bus_name,
|
|
|
|
+ hid_to_usb_dev(hid)->devpath,
|
|
usbhid->ifnum, rc);
|
|
usbhid->ifnum, rc);
|
|
/* FALLTHROUGH */
|
|
/* FALLTHROUGH */
|
|
case -EHOSTUNREACH:
|
|
case -EHOSTUNREACH:
|
|
@@ -217,8 +217,8 @@ static void hid_irq_in(struct urb *urb)
|
|
clear_bit(HID_IN_RUNNING, &usbhid->iofl);
|
|
clear_bit(HID_IN_RUNNING, &usbhid->iofl);
|
|
if (status != -EPERM) {
|
|
if (status != -EPERM) {
|
|
err("can't resubmit intr, %s-%s/input%d, status %d",
|
|
err("can't resubmit intr, %s-%s/input%d, status %d",
|
|
- to_usb_device(hid->dev)->bus->bus_name,
|
|
|
|
- to_usb_device(hid->dev)->devpath,
|
|
|
|
|
|
+ hid_to_usb_dev(hid)->bus->bus_name,
|
|
|
|
+ hid_to_usb_dev(hid)->devpath,
|
|
usbhid->ifnum, status);
|
|
usbhid->ifnum, status);
|
|
hid_io_error(hid);
|
|
hid_io_error(hid);
|
|
}
|
|
}
|
|
@@ -251,7 +251,7 @@ static int hid_submit_out(struct hid_device *hid)
|
|
|
|
|
|
hid_output_report(report, usbhid->outbuf);
|
|
hid_output_report(report, usbhid->outbuf);
|
|
usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
|
|
usbhid->urbout->transfer_buffer_length = ((report->size - 1) >> 3) + 1 + (report->id > 0);
|
|
- usbhid->urbout->dev = to_usb_device(hid->dev);
|
|
|
|
|
|
+ usbhid->urbout->dev = hid_to_usb_dev(hid);
|
|
|
|
|
|
dbg("submitting out urb");
|
|
dbg("submitting out urb");
|
|
|
|
|
|
@@ -276,13 +276,13 @@ static int hid_submit_ctrl(struct hid_device *hid)
|
|
len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
|
|
len = ((report->size - 1) >> 3) + 1 + (report->id > 0);
|
|
if (dir == USB_DIR_OUT) {
|
|
if (dir == USB_DIR_OUT) {
|
|
hid_output_report(report, usbhid->ctrlbuf);
|
|
hid_output_report(report, usbhid->ctrlbuf);
|
|
- usbhid->urbctrl->pipe = usb_sndctrlpipe(to_usb_device(hid->dev), 0);
|
|
|
|
|
|
+ usbhid->urbctrl->pipe = usb_sndctrlpipe(hid_to_usb_dev(hid), 0);
|
|
usbhid->urbctrl->transfer_buffer_length = len;
|
|
usbhid->urbctrl->transfer_buffer_length = len;
|
|
} else {
|
|
} else {
|
|
int maxpacket, padlen;
|
|
int maxpacket, padlen;
|
|
|
|
|
|
- usbhid->urbctrl->pipe = usb_rcvctrlpipe(to_usb_device(hid->dev), 0);
|
|
|
|
- maxpacket = usb_maxpacket(to_usb_device(hid->dev), usbhid->urbctrl->pipe, 0);
|
|
|
|
|
|
+ usbhid->urbctrl->pipe = usb_rcvctrlpipe(hid_to_usb_dev(hid), 0);
|
|
|
|
+ maxpacket = usb_maxpacket(hid_to_usb_dev(hid), usbhid->urbctrl->pipe, 0);
|
|
if (maxpacket > 0) {
|
|
if (maxpacket > 0) {
|
|
padlen = (len + maxpacket - 1) / maxpacket;
|
|
padlen = (len + maxpacket - 1) / maxpacket;
|
|
padlen *= maxpacket;
|
|
padlen *= maxpacket;
|
|
@@ -292,7 +292,7 @@ static int hid_submit_ctrl(struct hid_device *hid)
|
|
padlen = 0;
|
|
padlen = 0;
|
|
usbhid->urbctrl->transfer_buffer_length = padlen;
|
|
usbhid->urbctrl->transfer_buffer_length = padlen;
|
|
}
|
|
}
|
|
- usbhid->urbctrl->dev = to_usb_device(hid->dev);
|
|
|
|
|
|
+ usbhid->urbctrl->dev = hid_to_usb_dev(hid);
|
|
|
|
|
|
usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
|
|
usbhid->cr->bRequestType = USB_TYPE_CLASS | USB_RECIP_INTERFACE | dir;
|
|
usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT;
|
|
usbhid->cr->bRequest = (dir == USB_DIR_OUT) ? HID_REQ_SET_REPORT : HID_REQ_GET_REPORT;
|
|
@@ -582,6 +582,8 @@ void usbhid_init_reports(struct hid_device *hid)
|
|
}
|
|
}
|
|
|
|
|
|
#define USB_VENDOR_ID_GTCO 0x078c
|
|
#define USB_VENDOR_ID_GTCO 0x078c
|
|
|
|
+#define USB_VENDOR_ID_GTCO_IPANEL_1 0x08ca
|
|
|
|
+#define USB_VENDOR_ID_GTCO_IPANEL_2 0x5543
|
|
#define USB_DEVICE_ID_GTCO_90 0x0090
|
|
#define USB_DEVICE_ID_GTCO_90 0x0090
|
|
#define USB_DEVICE_ID_GTCO_100 0x0100
|
|
#define USB_DEVICE_ID_GTCO_100 0x0100
|
|
#define USB_DEVICE_ID_GTCO_101 0x0101
|
|
#define USB_DEVICE_ID_GTCO_101 0x0101
|
|
@@ -627,6 +629,9 @@ void usbhid_init_reports(struct hid_device *hid)
|
|
#define USB_DEVICE_ID_GTCO_1004 0x1004
|
|
#define USB_DEVICE_ID_GTCO_1004 0x1004
|
|
#define USB_DEVICE_ID_GTCO_1005 0x1005
|
|
#define USB_DEVICE_ID_GTCO_1005 0x1005
|
|
#define USB_DEVICE_ID_GTCO_1006 0x1006
|
|
#define USB_DEVICE_ID_GTCO_1006 0x1006
|
|
|
|
+#define USB_DEVICE_ID_GTCO_10 0x0010
|
|
|
|
+#define USB_DEVICE_ID_GTCO_8 0x0008
|
|
|
|
+#define USB_DEVICE_ID_GTCO_d 0x000d
|
|
|
|
|
|
#define USB_VENDOR_ID_WACOM 0x056a
|
|
#define USB_VENDOR_ID_WACOM 0x056a
|
|
|
|
|
|
@@ -875,6 +880,9 @@ static const struct hid_blacklist {
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE },
|
|
|
|
+ { USB_VENDOR_ID_GTCO_IPANEL_1, USB_DEVICE_ID_GTCO_10, HID_QUIRK_IGNORE },
|
|
|
|
+ { USB_VENDOR_ID_GTCO_IPANEL_2, USB_DEVICE_ID_GTCO_8, HID_QUIRK_IGNORE },
|
|
|
|
+ { USB_VENDOR_ID_GTCO_IPANEL_2, USB_DEVICE_ID_GTCO_d, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY, HID_QUIRK_IGNORE },
|
|
{ USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY, HID_QUIRK_IGNORE },
|
|
@@ -951,7 +959,7 @@ static const struct hid_blacklist {
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_POWERBOOK_ISO_KEYBOARD},
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_POWERBOOK_ISO_KEYBOARD},
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
- { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
|
|
|
|
+ { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO, HID_QUIRK_POWERBOOK_HAS_FN | HID_QUIRK_POWERBOOK_ISO_KEYBOARD},
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_POWERBOOK_HAS_FN },
|
|
@@ -1187,7 +1195,7 @@ static struct hid_device *usb_hid_configure(struct usb_interface *intf)
|
|
|
|
|
|
hid->version = le16_to_cpu(hdesc->bcdHID);
|
|
hid->version = le16_to_cpu(hdesc->bcdHID);
|
|
hid->country = hdesc->bCountryCode;
|
|
hid->country = hdesc->bCountryCode;
|
|
- hid->dev = &dev->dev;
|
|
|
|
|
|
+ hid->dev = &intf->dev;
|
|
usbhid->intf = intf;
|
|
usbhid->intf = intf;
|
|
usbhid->ifnum = interface->desc.bInterfaceNumber;
|
|
usbhid->ifnum = interface->desc.bInterfaceNumber;
|
|
|
|
|
|
@@ -1282,7 +1290,7 @@ static void hid_disconnect(struct usb_interface *intf)
|
|
usb_free_urb(usbhid->urbctrl);
|
|
usb_free_urb(usbhid->urbctrl);
|
|
usb_free_urb(usbhid->urbout);
|
|
usb_free_urb(usbhid->urbout);
|
|
|
|
|
|
- hid_free_buffers(to_usb_device(hid->dev), hid);
|
|
|
|
|
|
+ hid_free_buffers(hid_to_usb_dev(hid), hid);
|
|
hid_free_device(hid);
|
|
hid_free_device(hid);
|
|
}
|
|
}
|
|
|
|
|