Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005-2007 Takahiro Hirofuchi |
| 3 | */ |
| 4 | |
matt mooney | 099f79f | 2011-06-19 22:44:37 -0700 | [diff] [blame] | 5 | #ifndef __VHCI_DRIVER_H |
| 6 | #define __VHCI_DRIVER_H |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 7 | |
Valentina Manea | a744b7c | 2014-03-08 14:53:28 +0200 | [diff] [blame] | 8 | #include <libudev.h> |
matt mooney | 099f79f | 2011-06-19 22:44:37 -0700 | [diff] [blame] | 9 | #include <stdint.h> |
| 10 | |
| 11 | #include "usbip_common.h" |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 12 | |
matt mooney | 5805842 | 2011-05-26 06:17:10 -0700 | [diff] [blame] | 13 | #define USBIP_VHCI_BUS_TYPE "platform" |
Yuyang Du | dff3565 | 2017-06-08 13:04:08 +0800 | [diff] [blame] | 14 | #define USBIP_VHCI_DEVICE_NAME "vhci_hcd.0" |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 15 | #define MAXNPORT 128 |
| 16 | |
Yuyang Du | 1c9de5b | 2017-06-08 13:04:10 +0800 | [diff] [blame] | 17 | enum hub_speed { |
| 18 | HUB_SPEED_HIGH = 0, |
| 19 | HUB_SPEED_SUPER, |
| 20 | }; |
| 21 | |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 22 | struct usbip_imported_device { |
Yuyang Du | 1c9de5b | 2017-06-08 13:04:10 +0800 | [diff] [blame] | 23 | enum hub_speed hub; |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 24 | uint8_t port; |
| 25 | uint32_t status; |
| 26 | |
| 27 | uint32_t devid; |
| 28 | |
| 29 | uint8_t busnum; |
| 30 | uint8_t devnum; |
| 31 | |
matt mooney | 7e485ee | 2011-05-26 06:17:09 -0700 | [diff] [blame] | 32 | /* usbip_class_device list */ |
matt mooney | 35dd0c2 | 2011-05-27 01:44:14 -0700 | [diff] [blame] | 33 | struct usbip_usb_device udev; |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | struct usbip_vhci_driver { |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 37 | |
matt mooney | 7e485ee | 2011-05-26 06:17:09 -0700 | [diff] [blame] | 38 | /* /sys/devices/platform/vhci_hcd */ |
Valentina Manea | a744b7c | 2014-03-08 14:53:28 +0200 | [diff] [blame] | 39 | struct udev_device *hc_device; |
matt mooney | 7e485ee | 2011-05-26 06:17:09 -0700 | [diff] [blame] | 40 | |
Yuyang Du | aa3ecb9 | 2017-05-22 18:20:16 +0800 | [diff] [blame] | 41 | int ncontrollers; |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 42 | int nports; |
| 43 | struct usbip_imported_device idev[MAXNPORT]; |
| 44 | }; |
| 45 | |
| 46 | |
| 47 | extern struct usbip_vhci_driver *vhci_driver; |
| 48 | |
| 49 | int usbip_vhci_driver_open(void); |
| 50 | void usbip_vhci_driver_close(void); |
| 51 | |
| 52 | int usbip_vhci_refresh_device_list(void); |
| 53 | |
| 54 | |
Yuyang Du | 1c9de5b | 2017-06-08 13:04:10 +0800 | [diff] [blame] | 55 | int usbip_vhci_get_free_port(uint32_t speed); |
Takahiro Hirofuchi | 0945b4f | 2011-05-14 03:55:07 -0700 | [diff] [blame] | 56 | int usbip_vhci_attach_device2(uint8_t port, int sockfd, uint32_t devid, |
| 57 | uint32_t speed); |
| 58 | |
| 59 | /* will be removed */ |
| 60 | int usbip_vhci_attach_device(uint8_t port, int sockfd, uint8_t busnum, |
| 61 | uint8_t devnum, uint32_t speed); |
| 62 | |
| 63 | int usbip_vhci_detach_device(uint8_t port); |
matt mooney | 099f79f | 2011-06-19 22:44:37 -0700 | [diff] [blame] | 64 | |
Valentina Manea | ec2ff62 | 2014-01-07 21:05:56 +0200 | [diff] [blame] | 65 | int usbip_vhci_imported_device_dump(struct usbip_imported_device *idev); |
| 66 | |
matt mooney | 099f79f | 2011-06-19 22:44:37 -0700 | [diff] [blame] | 67 | #endif /* __VHCI_DRIVER_H */ |