blob: 247b5a4913a8079491f0104bfe5eaeaf972d8fd1 [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>
13#include <linux/usb.h>
14#include "usb.h"
15
16/* endpoint stuff */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070017
18struct ep_device {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070019 struct usb_endpoint_descriptor *desc;
20 struct usb_device *udev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070021 struct device dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070022};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070023#define to_ep_device(_dev) \
24 container_of(_dev, struct ep_device, dev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070025
26struct ep_attribute {
27 struct attribute attr;
28 ssize_t (*show)(struct usb_device *,
29 struct usb_endpoint_descriptor *, char *);
30};
31#define to_ep_attribute(_attr) \
32 container_of(_attr, struct ep_attribute, attr)
33
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070034#define usb_ep_attr(field, format_string) \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070035static ssize_t show_ep_##field(struct device *dev, \
36 struct device_attribute *attr, \
37 char *buf) \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070038{ \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070039 struct ep_device *ep = to_ep_device(dev); \
40 return sprintf(buf, format_string, ep->desc->field); \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070041} \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070042static DEVICE_ATTR(field, S_IRUGO, show_ep_##field, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070043
44usb_ep_attr(bLength, "%02x\n")
45usb_ep_attr(bEndpointAddress, "%02x\n")
46usb_ep_attr(bmAttributes, "%02x\n")
47usb_ep_attr(bInterval, "%02x\n")
48
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070049static ssize_t show_ep_wMaxPacketSize(struct device *dev,
50 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070051{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070052 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070053 return sprintf(buf, "%04x\n",
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070054 le16_to_cpu(ep->desc->wMaxPacketSize) & 0x07ff);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070055}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070056static DEVICE_ATTR(wMaxPacketSize, S_IRUGO, show_ep_wMaxPacketSize, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070057
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070058static ssize_t show_ep_type(struct device *dev, struct device_attribute *attr,
59 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070060{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070061 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070062 char *type = "unknown";
63
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070064 switch (ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070065 case USB_ENDPOINT_XFER_CONTROL:
66 type = "Control";
67 break;
68 case USB_ENDPOINT_XFER_ISOC:
69 type = "Isoc";
70 break;
71 case USB_ENDPOINT_XFER_BULK:
72 type = "Bulk";
73 break;
74 case USB_ENDPOINT_XFER_INT:
75 type = "Interrupt";
76 break;
77 }
78 return sprintf(buf, "%s\n", type);
79}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070080static DEVICE_ATTR(type, S_IRUGO, show_ep_type, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070081
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070082static ssize_t show_ep_interval(struct device *dev,
83 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070084{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070085 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070086 char unit;
87 unsigned interval = 0;
88 unsigned in;
89
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070090 in = (ep->desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070091
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070092 switch (ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070093 case USB_ENDPOINT_XFER_CONTROL:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070094 if (ep->udev->speed == USB_SPEED_HIGH) /* uframes per NAK */
95 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070096 break;
97 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070098 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070099 break;
100 case USB_ENDPOINT_XFER_BULK:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700101 if (ep->udev->speed == USB_SPEED_HIGH && !in) /* uframes per NAK */
102 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700103 break;
104 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700105 if (ep->udev->speed == USB_SPEED_HIGH)
106 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700107 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700108 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700109 break;
110 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700111 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700112 if (interval % 1000)
113 unit = 'u';
114 else {
115 unit = 'm';
116 interval /= 1000;
117 }
118
119 return sprintf(buf, "%d%cs\n", interval, unit);
120}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700121static DEVICE_ATTR(interval, S_IRUGO, show_ep_interval, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700122
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700123static ssize_t show_ep_direction(struct device *dev,
124 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700125{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700126 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700127 char *direction;
128
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700129 if ((ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700130 USB_ENDPOINT_XFER_CONTROL)
131 direction = "both";
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700132 else if (ep->desc->bEndpointAddress & USB_DIR_IN)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700133 direction = "in";
134 else
135 direction = "out";
136 return sprintf(buf, "%s\n", direction);
137}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700138static DEVICE_ATTR(direction, S_IRUGO, show_ep_direction, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700139
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700140static struct attribute *ep_dev_attrs[] = {
141 &dev_attr_bLength.attr,
142 &dev_attr_bEndpointAddress.attr,
143 &dev_attr_bmAttributes.attr,
144 &dev_attr_bInterval.attr,
145 &dev_attr_wMaxPacketSize.attr,
146 &dev_attr_interval.attr,
147 &dev_attr_type.attr,
148 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700149 NULL,
150};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700151static struct attribute_group ep_dev_attr_grp = {
152 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700153};
154
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700155static struct endpoint_class {
156 struct kref kref;
157 struct class *class;
158} *ep_class;
159
160static int init_endpoint_class(void)
161{
162 int result = 0;
163
164 if (ep_class != NULL) {
165 kref_get(&ep_class->kref);
166 goto exit;
167 }
168
169 ep_class = kmalloc(sizeof(*ep_class), GFP_KERNEL);
170 if (!ep_class) {
171 result = -ENOMEM;
172 goto exit;
173 }
174
175 kref_init(&ep_class->kref);
176 ep_class->class = class_create(THIS_MODULE, "usb_endpoint");
177 if (IS_ERR(ep_class->class)) {
178 result = IS_ERR(ep_class->class);
179 kfree(ep_class);
180 ep_class = NULL;
181 goto exit;
182 }
183
184exit:
185 return result;
186}
187
188static void release_endpoint_class(struct kref *kref)
189{
190 /* Ok, we cheat as we know we only have one ep_class */
191 class_destroy(ep_class->class);
192 kfree(ep_class);
193 ep_class = NULL;
194}
195
196static void destroy_endpoint_class(void)
197{
198 if (ep_class)
199 kref_put(&ep_class->kref, release_endpoint_class);
200}
201
202static void ep_device_release(struct device *dev)
203{
204 struct ep_device *ep_dev = to_ep_device(dev);
205
206 dev_dbg(dev, "%s called for %s\n", __FUNCTION__, dev->bus_id);
207 kfree(ep_dev);
208}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700209
Greg Kroah-Hartman36679ea2006-06-14 12:14:34 -0700210void usb_create_ep_files(struct device *parent,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700211 struct usb_host_endpoint *endpoint,
212 struct usb_device *udev)
213{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700214 char name[8];
215 struct ep_device *ep_dev;
216 int minor;
217 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700218
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700219 retval = init_endpoint_class();
220 if (retval)
221 goto exit;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700222
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700223 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
224 if (!ep_dev) {
225 retval = -ENOMEM;
226 goto exit;
227 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700228
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700229 /* fun calculation to determine the minor of this endpoint */
230 minor = (((udev->bus->busnum - 1) * 128) * 16) + (udev->devnum - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700231
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700232 ep_dev->desc = &endpoint->desc;
233 ep_dev->udev = udev;
234 ep_dev->dev.devt = MKDEV(442, minor); // FIXME fake number...
235 ep_dev->dev.class = ep_class->class;
236 ep_dev->dev.parent = parent;
237 ep_dev->dev.release = ep_device_release;
238 snprintf(ep_dev->dev.bus_id, BUS_ID_SIZE, "usbdev%d.%d_ep%02x",
239 udev->bus->busnum, udev->devnum,
240 endpoint->desc.bEndpointAddress);
241
242 retval = device_register(&ep_dev->dev);
243 if (retval)
244 goto error;
245 sysfs_create_group(&ep_dev->dev.kobj, &ep_dev_attr_grp);
246
247 endpoint->ep_dev = ep_dev;
248
249 /* create the symlink to the old-style "ep_XX" directory */
250 sprintf(name, "ep_%02x", endpoint->desc.bEndpointAddress);
251 sysfs_create_link(&parent->kobj, &endpoint->ep_dev->dev.kobj, name);
252
253exit:
254 return;
255error:
256 kfree(ep_dev);
257 return;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700258}
259
260void usb_remove_ep_files(struct usb_host_endpoint *endpoint)
261{
262
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700263 if (endpoint->ep_dev) {
264 char name[8];
265
266 sprintf(name, "ep_%02x", endpoint->desc.bEndpointAddress);
267 sysfs_remove_link(&endpoint->ep_dev->dev.parent->kobj, name);
268 sysfs_remove_group(&endpoint->ep_dev->dev.kobj, &ep_dev_attr_grp);
269 device_unregister(&endpoint->ep_dev->dev);
270 endpoint->ep_dev = NULL;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700271 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700272 destroy_endpoint_class();
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700273}
274
275