blob: 3788e738e265058ec164368a06fbf6897305aa51 [file] [log] [blame]
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -07001/*
2 * drivers/usb/core/endpoint.c
3 *
4 * (C) Copyright 2002,2004,2006 Greg Kroah-Hartman
5 * (C) Copyright 2002,2004 IBM Corp.
6 * (C) Copyright 2006 Novell Inc.
7 *
8 * Endpoint sysfs stuff
9 *
10 */
11
12#include <linux/kernel.h>
Sarah Bailey7e277802006-11-18 22:30:16 -080013#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Sarah Bailey7e277802006-11-18 22:30:16 -080015#include <linux/idr.h>
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070016#include <linux/usb.h>
17#include "usb.h"
18
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070019struct ep_device {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070020 struct usb_endpoint_descriptor *desc;
21 struct usb_device *udev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070022 struct device dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070023};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070024#define to_ep_device(_dev) \
25 container_of(_dev, struct ep_device, dev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070026
Kay Sievers55129662009-05-04 19:48:32 +020027struct device_type usb_ep_device_type = {
28 .name = "usb_endpoint",
29};
30
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070031struct ep_attribute {
32 struct attribute attr;
33 ssize_t (*show)(struct usb_device *,
34 struct usb_endpoint_descriptor *, char *);
35};
36#define to_ep_attribute(_attr) \
37 container_of(_attr, struct ep_attribute, attr)
38
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070039#define usb_ep_attr(field, format_string) \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070040static ssize_t show_ep_##field(struct device *dev, \
41 struct device_attribute *attr, \
42 char *buf) \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070043{ \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070044 struct ep_device *ep = to_ep_device(dev); \
45 return sprintf(buf, format_string, ep->desc->field); \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070046} \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070047static DEVICE_ATTR(field, S_IRUGO, show_ep_##field, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070048
49usb_ep_attr(bLength, "%02x\n")
50usb_ep_attr(bEndpointAddress, "%02x\n")
51usb_ep_attr(bmAttributes, "%02x\n")
52usb_ep_attr(bInterval, "%02x\n")
53
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070054static ssize_t show_ep_wMaxPacketSize(struct device *dev,
55 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070056{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070057 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070058 return sprintf(buf, "%04x\n",
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070059 le16_to_cpu(ep->desc->wMaxPacketSize) & 0x07ff);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070060}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070061static DEVICE_ATTR(wMaxPacketSize, S_IRUGO, show_ep_wMaxPacketSize, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070062
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070063static ssize_t show_ep_type(struct device *dev, struct device_attribute *attr,
64 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070065{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070066 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070067 char *type = "unknown";
68
Julia Lawall2e0fe702008-12-29 11:22:14 +010069 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070070 case USB_ENDPOINT_XFER_CONTROL:
71 type = "Control";
72 break;
73 case USB_ENDPOINT_XFER_ISOC:
74 type = "Isoc";
75 break;
76 case USB_ENDPOINT_XFER_BULK:
77 type = "Bulk";
78 break;
79 case USB_ENDPOINT_XFER_INT:
80 type = "Interrupt";
81 break;
82 }
83 return sprintf(buf, "%s\n", type);
84}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070085static DEVICE_ATTR(type, S_IRUGO, show_ep_type, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070086
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070087static ssize_t show_ep_interval(struct device *dev,
88 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070089{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070090 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070091 char unit;
92 unsigned interval = 0;
93 unsigned in;
94
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070095 in = (ep->desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070096
Julia Lawall2e0fe702008-12-29 11:22:14 +010097 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070098 case USB_ENDPOINT_XFER_CONTROL:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050099 if (ep->udev->speed == USB_SPEED_HIGH)
100 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700101 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700102 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500103
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700104 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700105 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700106 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500107
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700108 case USB_ENDPOINT_XFER_BULK:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500109 if (ep->udev->speed == USB_SPEED_HIGH && !in)
110 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700111 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700112 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500113
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700114 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700115 if (ep->udev->speed == USB_SPEED_HIGH)
116 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700117 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700118 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700119 break;
120 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700121 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700122 if (interval % 1000)
123 unit = 'u';
124 else {
125 unit = 'm';
126 interval /= 1000;
127 }
128
129 return sprintf(buf, "%d%cs\n", interval, unit);
130}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700131static DEVICE_ATTR(interval, S_IRUGO, show_ep_interval, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700132
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700133static ssize_t show_ep_direction(struct device *dev,
134 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700135{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700136 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700137 char *direction;
138
Julia Lawall2e0fe702008-12-29 11:22:14 +0100139 if (usb_endpoint_xfer_control(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700140 direction = "both";
Julia Lawall2e0fe702008-12-29 11:22:14 +0100141 else if (usb_endpoint_dir_in(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700142 direction = "in";
143 else
144 direction = "out";
145 return sprintf(buf, "%s\n", direction);
146}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700147static DEVICE_ATTR(direction, S_IRUGO, show_ep_direction, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700148
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700149static struct attribute *ep_dev_attrs[] = {
150 &dev_attr_bLength.attr,
151 &dev_attr_bEndpointAddress.attr,
152 &dev_attr_bmAttributes.attr,
153 &dev_attr_bInterval.attr,
154 &dev_attr_wMaxPacketSize.attr,
155 &dev_attr_interval.attr,
156 &dev_attr_type.attr,
157 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700158 NULL,
159};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700160static struct attribute_group ep_dev_attr_grp = {
161 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700162};
David Brownella4dbd672009-06-24 10:06:31 -0700163static const struct attribute_group *ep_dev_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400164 &ep_dev_attr_grp,
165 NULL
166};
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700167
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700168static void ep_device_release(struct device *dev)
169{
170 struct ep_device *ep_dev = to_ep_device(dev);
171
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700172 kfree(ep_dev);
173}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700174
Alan Stern3b23dd62008-12-05 14:10:34 -0500175int usb_create_ep_devs(struct device *parent,
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700176 struct usb_host_endpoint *endpoint,
177 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700178{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700179 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700180 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700181
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700182 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
183 if (!ep_dev) {
184 retval = -ENOMEM;
Kay Sievers55129662009-05-04 19:48:32 +0200185 goto exit;
Sarah Bailey7e277802006-11-18 22:30:16 -0800186 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700187
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700188 ep_dev->desc = &endpoint->desc;
189 ep_dev->udev = udev;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400190 ep_dev->dev.groups = ep_dev_groups;
Kay Sievers55129662009-05-04 19:48:32 +0200191 ep_dev->dev.type = &usb_ep_device_type;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700192 ep_dev->dev.parent = parent;
193 ep_dev->dev.release = ep_device_release;
Kay Sievers55129662009-05-04 19:48:32 +0200194 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
Rafael J. Wysocki927bc912010-02-08 19:18:16 +0100195 device_enable_async_suspend(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700196
197 retval = device_register(&ep_dev->dev);
198 if (retval)
Kay Sievers55129662009-05-04 19:48:32 +0200199 goto error_register;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700200
Alan Sternd5477c12006-10-10 11:56:26 -0400201 endpoint->ep_dev = ep_dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700202 return retval;
203
Alan Sternd5477c12006-10-10 11:56:26 -0400204error_register:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700205 kfree(ep_dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400206exit:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700207 return retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700208}
209
Alan Stern3b23dd62008-12-05 14:10:34 -0500210void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700211{
Sarah Bailey7e277802006-11-18 22:30:16 -0800212 struct ep_device *ep_dev = endpoint->ep_dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700213
Sarah Bailey7e277802006-11-18 22:30:16 -0800214 if (ep_dev) {
Sarah Bailey7e277802006-11-18 22:30:16 -0800215 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700216 endpoint->ep_dev = NULL;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700217 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700218}