blob: c505b767cee108e7af7af7f2fb0220e75d54c0d5 [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>
14#include <linux/idr.h>
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070015#include <linux/usb.h>
16#include "usb.h"
17
Sarah Bailey7e277802006-11-18 22:30:16 -080018#define MAX_ENDPOINT_MINORS (64*128*32)
19static int usb_endpoint_major;
20static DEFINE_IDR(endpoint_idr);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070021
22struct ep_device {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070023 struct usb_endpoint_descriptor *desc;
24 struct usb_device *udev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070025 struct device dev;
Sarah Bailey7e277802006-11-18 22:30:16 -080026 int minor;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070027};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070028#define to_ep_device(_dev) \
29 container_of(_dev, struct ep_device, dev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070030
31struct 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
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070069 switch (ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
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
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070097 switch (ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070098 case USB_ENDPOINT_XFER_CONTROL:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070099 if (ep->udev->speed == USB_SPEED_HIGH) /* uframes per NAK */
100 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700101 break;
102 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700103 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700104 break;
105 case USB_ENDPOINT_XFER_BULK:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700106 if (ep->udev->speed == USB_SPEED_HIGH && !in) /* uframes per NAK */
107 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700108 break;
109 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700110 if (ep->udev->speed == USB_SPEED_HIGH)
111 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700112 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700113 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700114 break;
115 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700116 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700117 if (interval % 1000)
118 unit = 'u';
119 else {
120 unit = 'm';
121 interval /= 1000;
122 }
123
124 return sprintf(buf, "%d%cs\n", interval, unit);
125}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700126static DEVICE_ATTR(interval, S_IRUGO, show_ep_interval, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700127
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700128static ssize_t show_ep_direction(struct device *dev,
129 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700130{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700131 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700132 char *direction;
133
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700134 if ((ep->desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700135 USB_ENDPOINT_XFER_CONTROL)
136 direction = "both";
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700137 else if (ep->desc->bEndpointAddress & USB_DIR_IN)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700138 direction = "in";
139 else
140 direction = "out";
141 return sprintf(buf, "%s\n", direction);
142}
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700143static DEVICE_ATTR(direction, S_IRUGO, show_ep_direction, NULL);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700144
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700145static struct attribute *ep_dev_attrs[] = {
146 &dev_attr_bLength.attr,
147 &dev_attr_bEndpointAddress.attr,
148 &dev_attr_bmAttributes.attr,
149 &dev_attr_bInterval.attr,
150 &dev_attr_wMaxPacketSize.attr,
151 &dev_attr_interval.attr,
152 &dev_attr_type.attr,
153 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700154 NULL,
155};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700156static struct attribute_group ep_dev_attr_grp = {
157 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700158};
159
Sarah Bailey7e277802006-11-18 22:30:16 -0800160static int usb_endpoint_major_init(void)
161{
162 dev_t dev;
163 int error;
164
165 error = alloc_chrdev_region(&dev, 0, MAX_ENDPOINT_MINORS,
166 "usb_endpoint");
167 if (error) {
168 err("unable to get a dynamic major for usb endpoints");
169 return error;
170 }
171 usb_endpoint_major = MAJOR(dev);
172
173 return error;
174}
175
176static void usb_endpoint_major_cleanup(void)
177{
178 unregister_chrdev_region(MKDEV(usb_endpoint_major, 0),
179 MAX_ENDPOINT_MINORS);
180}
181
182static int endpoint_get_minor(struct ep_device *ep_dev)
183{
184 static DEFINE_MUTEX(minor_lock);
185 int retval = -ENOMEM;
186 int id;
187
188 mutex_lock(&minor_lock);
189 if (idr_pre_get(&endpoint_idr, GFP_KERNEL) == 0)
190 goto exit;
191
192 retval = idr_get_new(&endpoint_idr, ep_dev, &id);
193 if (retval < 0) {
194 if (retval == -EAGAIN)
195 retval = -ENOMEM;
196 goto exit;
197 }
198 ep_dev->minor = id & MAX_ID_MASK;
199exit:
200 mutex_unlock(&minor_lock);
201 return retval;
202}
203
204static void endpoint_free_minor(struct ep_device *ep_dev)
205{
206 idr_remove(&endpoint_idr, ep_dev->minor);
207}
208
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700209static struct endpoint_class {
210 struct kref kref;
211 struct class *class;
212} *ep_class;
213
214static int init_endpoint_class(void)
215{
216 int result = 0;
217
218 if (ep_class != NULL) {
219 kref_get(&ep_class->kref);
220 goto exit;
221 }
222
223 ep_class = kmalloc(sizeof(*ep_class), GFP_KERNEL);
224 if (!ep_class) {
225 result = -ENOMEM;
226 goto exit;
227 }
228
229 kref_init(&ep_class->kref);
230 ep_class->class = class_create(THIS_MODULE, "usb_endpoint");
231 if (IS_ERR(ep_class->class)) {
232 result = IS_ERR(ep_class->class);
Sarah Bailey7e277802006-11-18 22:30:16 -0800233 goto class_create_error;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700234 }
235
Sarah Bailey7e277802006-11-18 22:30:16 -0800236 result = usb_endpoint_major_init();
237 if (result)
238 goto endpoint_major_error;
239
240 goto exit;
241
242endpoint_major_error:
243 class_destroy(ep_class->class);
244class_create_error:
245 kfree(ep_class);
246 ep_class = NULL;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700247exit:
248 return result;
249}
250
251static void release_endpoint_class(struct kref *kref)
252{
253 /* Ok, we cheat as we know we only have one ep_class */
254 class_destroy(ep_class->class);
255 kfree(ep_class);
256 ep_class = NULL;
Sarah Bailey7e277802006-11-18 22:30:16 -0800257 usb_endpoint_major_cleanup();
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700258}
259
260static void destroy_endpoint_class(void)
261{
262 if (ep_class)
263 kref_put(&ep_class->kref, release_endpoint_class);
264}
265
266static void ep_device_release(struct device *dev)
267{
268 struct ep_device *ep_dev = to_ep_device(dev);
269
270 dev_dbg(dev, "%s called for %s\n", __FUNCTION__, dev->bus_id);
271 kfree(ep_dev);
272}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700273
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700274int usb_create_ep_files(struct device *parent,
275 struct usb_host_endpoint *endpoint,
276 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700277{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700278 char name[8];
279 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700280 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700281
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700282 retval = init_endpoint_class();
283 if (retval)
284 goto exit;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700285
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700286 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
287 if (!ep_dev) {
288 retval = -ENOMEM;
Alan Sternd5477c12006-10-10 11:56:26 -0400289 goto error_alloc;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700290 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700291
Sarah Bailey7e277802006-11-18 22:30:16 -0800292 retval = endpoint_get_minor(ep_dev);
293 if (retval) {
294 dev_err(parent, "can not allocate minor number for %s",
295 ep_dev->dev.bus_id);
296 goto error_register;
297 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700298
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700299 ep_dev->desc = &endpoint->desc;
300 ep_dev->udev = udev;
Sarah Bailey7e277802006-11-18 22:30:16 -0800301 ep_dev->dev.devt = MKDEV(usb_endpoint_major, ep_dev->minor);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700302 ep_dev->dev.class = ep_class->class;
303 ep_dev->dev.parent = parent;
304 ep_dev->dev.release = ep_device_release;
305 snprintf(ep_dev->dev.bus_id, BUS_ID_SIZE, "usbdev%d.%d_ep%02x",
306 udev->bus->busnum, udev->devnum,
307 endpoint->desc.bEndpointAddress);
308
309 retval = device_register(&ep_dev->dev);
310 if (retval)
Sarah Bailey7e277802006-11-18 22:30:16 -0800311 goto error_chrdev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700312 retval = sysfs_create_group(&ep_dev->dev.kobj, &ep_dev_attr_grp);
313 if (retval)
314 goto error_group;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700315
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700316 /* create the symlink to the old-style "ep_XX" directory */
317 sprintf(name, "ep_%02x", endpoint->desc.bEndpointAddress);
Alan Sternd5477c12006-10-10 11:56:26 -0400318 retval = sysfs_create_link(&parent->kobj, &ep_dev->dev.kobj, name);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700319 if (retval)
320 goto error_link;
Alan Sternd5477c12006-10-10 11:56:26 -0400321 endpoint->ep_dev = ep_dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700322 return retval;
323
324error_link:
325 sysfs_remove_group(&ep_dev->dev.kobj, &ep_dev_attr_grp);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700326error_group:
327 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700328 destroy_endpoint_class();
329 return retval;
Alan Sternd5477c12006-10-10 11:56:26 -0400330
Sarah Bailey7e277802006-11-18 22:30:16 -0800331error_chrdev:
332 endpoint_free_minor(ep_dev);
333
Alan Sternd5477c12006-10-10 11:56:26 -0400334error_register:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700335 kfree(ep_dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400336error_alloc:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700337 destroy_endpoint_class();
Alan Sternd5477c12006-10-10 11:56:26 -0400338exit:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700339 return retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700340}
341
342void usb_remove_ep_files(struct usb_host_endpoint *endpoint)
343{
Sarah Bailey7e277802006-11-18 22:30:16 -0800344 struct ep_device *ep_dev = endpoint->ep_dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700345
Sarah Bailey7e277802006-11-18 22:30:16 -0800346 if (ep_dev) {
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700347 char name[8];
348
349 sprintf(name, "ep_%02x", endpoint->desc.bEndpointAddress);
Sarah Bailey7e277802006-11-18 22:30:16 -0800350 sysfs_remove_link(&ep_dev->dev.parent->kobj, name);
351 sysfs_remove_group(&ep_dev->dev.kobj, &ep_dev_attr_grp);
352 endpoint_free_minor(ep_dev);
353 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700354 endpoint->ep_dev = NULL;
Alan Sternc40fd5e2006-10-10 11:55:47 -0400355 destroy_endpoint_class();
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700356 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700357}