| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 1 | #ifndef __USBHID_H | 
|  | 2 | #define __USBHID_H | 
|  | 3 |  | 
|  | 4 | /* | 
|  | 5 | *  Copyright (c) 1999 Andreas Gal | 
|  | 6 | *  Copyright (c) 2000-2001 Vojtech Pavlik | 
|  | 7 | *  Copyright (c) 2006 Jiri Kosina | 
|  | 8 | */ | 
|  | 9 |  | 
|  | 10 | /* | 
|  | 11 | * This program is free software; you can redistribute it and/or modify | 
|  | 12 | * it under the terms of the GNU General Public License as published by | 
|  | 13 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 14 | * (at your option) any later version. | 
|  | 15 | * | 
|  | 16 | * This program is distributed in the hope that it will be useful, | 
|  | 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 19 | * GNU General Public License for more details. | 
|  | 20 | * | 
|  | 21 | * You should have received a copy of the GNU General Public License | 
|  | 22 | * along with this program; if not, write to the Free Software | 
|  | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 
|  | 24 | * | 
|  | 25 | */ | 
|  | 26 |  | 
|  | 27 | #include <linux/types.h> | 
|  | 28 | #include <linux/slab.h> | 
|  | 29 | #include <linux/list.h> | 
| Jiri Slaby | 3d5afd3 | 2008-10-27 12:16:15 +0100 | [diff] [blame] | 30 | #include <linux/mutex.h> | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 31 | #include <linux/timer.h> | 
| Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 32 | #include <linux/wait.h> | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 33 | #include <linux/workqueue.h> | 
|  | 34 | #include <linux/input.h> | 
|  | 35 |  | 
|  | 36 | /*  API provided by hid-core.c for USB HID drivers */ | 
|  | 37 | int usbhid_wait_io(struct hid_device* hid); | 
|  | 38 | void usbhid_close(struct hid_device *hid); | 
|  | 39 | int usbhid_open(struct hid_device *hid); | 
|  | 40 | void usbhid_init_reports(struct hid_device *hid); | 
| Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 41 | void usbhid_submit_report | 
|  | 42 | (struct hid_device *hid, struct hid_report *report, unsigned char dir); | 
|  | 43 | int usbhid_get_power(struct hid_device *hid); | 
|  | 44 | void usbhid_put_power(struct hid_device *hid); | 
| Guillaume Chazarain | 8fe294c | 2010-09-12 21:32:35 +0200 | [diff] [blame] | 45 | struct usb_interface *usbhid_find_interface(int minor); | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 46 |  | 
| Jiri Slaby | 0ed94b3 | 2008-11-24 16:20:07 +0100 | [diff] [blame] | 47 | /* iofl flags */ | 
|  | 48 | #define HID_CTRL_RUNNING	1 | 
|  | 49 | #define HID_OUT_RUNNING		2 | 
|  | 50 | #define HID_IN_RUNNING		3 | 
|  | 51 | #define HID_RESET_PENDING	4 | 
|  | 52 | #define HID_SUSPENDED		5 | 
|  | 53 | #define HID_CLEAR_HALT		6 | 
|  | 54 | #define HID_DISCONNECTED	7 | 
|  | 55 | #define HID_STARTED		8 | 
| Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 56 | #define HID_REPORTED_IDLE	9 | 
|  | 57 | #define HID_KEYS_PRESSED	10 | 
|  | 58 | #define HID_LED_ON		11 | 
| Jiri Slaby | 0ed94b3 | 2008-11-24 16:20:07 +0100 | [diff] [blame] | 59 |  | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 60 | /* | 
|  | 61 | * USB-specific HID struct, to be pointed to | 
|  | 62 | * from struct hid_device->driver_data | 
|  | 63 | */ | 
|  | 64 |  | 
|  | 65 | struct usbhid_device { | 
|  | 66 | struct hid_device *hid;						/* pointer to corresponding HID dev */ | 
|  | 67 |  | 
|  | 68 | struct usb_interface *intf;                                     /* USB interface */ | 
|  | 69 | int ifnum;                                                      /* USB interface number */ | 
|  | 70 |  | 
|  | 71 | unsigned int bufsize;                                           /* URB buffer size */ | 
|  | 72 |  | 
|  | 73 | struct urb *urbin;                                              /* Input URB */ | 
|  | 74 | char *inbuf;                                                    /* Input buffer */ | 
|  | 75 | dma_addr_t inbuf_dma;                                           /* Input buffer dma */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 76 |  | 
|  | 77 | struct urb *urbctrl;                                            /* Control URB */ | 
|  | 78 | struct usb_ctrlrequest *cr;                                     /* Control request struct */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 79 | struct hid_control_fifo ctrl[HID_CONTROL_FIFO_SIZE];  		/* Control fifo */ | 
|  | 80 | unsigned char ctrlhead, ctrltail;                               /* Control fifo head & tail */ | 
|  | 81 | char *ctrlbuf;                                                  /* Control buffer */ | 
|  | 82 | dma_addr_t ctrlbuf_dma;                                         /* Control buffer dma */ | 
| Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 83 | unsigned long last_ctrl;						/* record of last output for timeouts */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 84 |  | 
|  | 85 | struct urb *urbout;                                             /* Output URB */ | 
| Anssi Hannula | f129ea6 | 2008-10-04 14:44:06 +0200 | [diff] [blame] | 86 | struct hid_output_fifo out[HID_CONTROL_FIFO_SIZE];              /* Output pipe fifo */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 87 | unsigned char outhead, outtail;                                 /* Output pipe fifo head & tail */ | 
|  | 88 | char *outbuf;                                                   /* Output buffer */ | 
|  | 89 | dma_addr_t outbuf_dma;                                          /* Output buffer dma */ | 
| Oliver Neukum | 858155f | 2010-02-12 13:02:28 +0100 | [diff] [blame] | 90 | unsigned long last_out;							/* record of last output for timeouts */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 91 |  | 
| Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 92 | spinlock_t lock;						/* fifo spinlock */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 93 | unsigned long iofl;                                             /* I/O flags (CTRL_RUNNING, OUT_RUNNING) */ | 
|  | 94 | struct timer_list io_retry;                                     /* Retry timer */ | 
|  | 95 | unsigned long stop_retry;                                       /* Time to give up, in jiffies */ | 
|  | 96 | unsigned int retry_delay;                                       /* Delay length in ms */ | 
|  | 97 | struct work_struct reset_work;                                  /* Task context for resets */ | 
| Jiri Slaby | 1d1bdd2 | 2008-03-19 21:55:04 +0100 | [diff] [blame] | 98 | wait_queue_head_t wait;						/* For sleeping */ | 
| Oliver Neukum | 0361a28 | 2008-12-17 15:38:03 +0100 | [diff] [blame] | 99 | int ledcount;							/* counting the number of active leds */ | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 100 | }; | 
|  | 101 |  | 
| Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 102 | #define	hid_to_usb_dev(hid_dev) \ | 
| Jiri Slaby | 85cdaf5 | 2008-05-16 11:49:15 +0200 | [diff] [blame] | 103 | container_of(hid_dev->dev.parent->parent, struct usb_device, dev) | 
| Anssi Hannula | be82097 | 2007-01-19 19:28:17 +0200 | [diff] [blame] | 104 |  | 
| Jiri Kosina | 4916b3a | 2006-12-08 18:41:03 +0100 | [diff] [blame] | 105 | #endif | 
|  | 106 |  |