diff options
author | Dave Airlie <airlied@gmail.com> | 2010-12-14 16:13:55 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-02-06 22:09:42 -0500 |
commit | a250b9fdc53a286d32e22f21170382a46b3a3ef5 (patch) | |
tree | 46bca176ce307f951d3e154b7a41ddd43fdee0ac /include | |
parent | 8410ea3b95d105a5be5db501656f44bbb91197c1 (diff) |
drm: add usb framework
This adds an initial framework to plug USB graphics devices
into the drm/kms subsystem.
I've started writing a displaylink driver using this interface.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drmP.h | 2 | ||||
-rw-r--r-- | include/drm/drm_usb.h | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index a99aefb9537c..52a2fd2f7789 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -925,6 +925,7 @@ struct drm_driver { | |||
925 | union { | 925 | union { |
926 | struct pci_driver *pci; | 926 | struct pci_driver *pci; |
927 | struct platform_device *platform_device; | 927 | struct platform_device *platform_device; |
928 | struct usb_driver *usb; | ||
928 | } kdriver; | 929 | } kdriver; |
929 | struct drm_bus *bus; | 930 | struct drm_bus *bus; |
930 | 931 | ||
@@ -1130,6 +1131,7 @@ struct drm_device { | |||
1130 | #endif | 1131 | #endif |
1131 | 1132 | ||
1132 | struct platform_device *platformdev; /**< Platform device struture */ | 1133 | struct platform_device *platformdev; /**< Platform device struture */ |
1134 | struct usb_device *usbdev; | ||
1133 | 1135 | ||
1134 | struct drm_sg_mem *sg; /**< Scatter gather memory */ | 1136 | struct drm_sg_mem *sg; /**< Scatter gather memory */ |
1135 | int num_crtcs; /**< Number of CRTCs on this device */ | 1137 | int num_crtcs; /**< Number of CRTCs on this device */ |
diff --git a/include/drm/drm_usb.h b/include/drm/drm_usb.h new file mode 100644 index 000000000000..33506c11da8b --- /dev/null +++ b/include/drm/drm_usb.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef DRM_USB_H | ||
2 | #define DRM_USB_H | ||
3 | |||
4 | #include <drmP.h> | ||
5 | |||
6 | #include <linux/usb.h> | ||
7 | |||
8 | extern int drm_usb_init(struct drm_driver *driver, struct usb_driver *udriver); | ||
9 | extern void drm_usb_exit(struct drm_driver *driver, struct usb_driver *udriver); | ||
10 | |||
11 | int drm_get_usb_dev(struct usb_interface *interface, | ||
12 | const struct usb_device_id *id, | ||
13 | struct drm_driver *driver); | ||
14 | |||
15 | #endif | ||