blob: b73b25bd15414e877a73eb04347efb9799540ed0 [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 *
Greg Kroah-Hartmanb65fba32016-10-28 17:16:36 -04008 * Released under the GPLv2 only.
9 * SPDX-License-Identifier: GPL-2.0
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070010 *
Greg Kroah-Hartmanb65fba32016-10-28 17:16:36 -040011 * Endpoint sysfs stuff
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070012 */
13
14#include <linux/kernel.h>
Sarah Bailey7e277802006-11-18 22:30:16 -080015#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070017#include <linux/usb.h>
18#include "usb.h"
19
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070020struct ep_device {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070021 struct usb_endpoint_descriptor *desc;
22 struct usb_device *udev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070023 struct device dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070024};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070025#define to_ep_device(_dev) \
26 container_of(_dev, struct ep_device, dev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070027
28struct ep_attribute {
29 struct attribute attr;
30 ssize_t (*show)(struct usb_device *,
31 struct usb_endpoint_descriptor *, char *);
32};
33#define to_ep_attribute(_attr) \
34 container_of(_attr, struct ep_attribute, attr)
35
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070036#define usb_ep_attr(field, format_string) \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070037static ssize_t field##_show(struct device *dev, \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070038 struct device_attribute *attr, \
39 char *buf) \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070040{ \
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070041 struct ep_device *ep = to_ep_device(dev); \
42 return sprintf(buf, format_string, ep->desc->field); \
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070043} \
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070044static DEVICE_ATTR_RO(field)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070045
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070046usb_ep_attr(bLength, "%02x\n");
47usb_ep_attr(bEndpointAddress, "%02x\n");
48usb_ep_attr(bmAttributes, "%02x\n");
49usb_ep_attr(bInterval, "%02x\n");
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070050
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070051static ssize_t wMaxPacketSize_show(struct device *dev,
52 struct device_attribute *attr, char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070053{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070054 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070055 return sprintf(buf, "%04x\n",
Kris Borer3290b1b2015-08-10 09:13:15 -040056 usb_endpoint_maxp(ep->desc) & 0x07ff);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070057}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070058static DEVICE_ATTR_RO(wMaxPacketSize);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070059
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070060static ssize_t type_show(struct device *dev, struct device_attribute *attr,
61 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070062{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070063 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070064 char *type = "unknown";
65
Julia Lawall2e0fe702008-12-29 11:22:14 +010066 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070067 case USB_ENDPOINT_XFER_CONTROL:
68 type = "Control";
69 break;
70 case USB_ENDPOINT_XFER_ISOC:
71 type = "Isoc";
72 break;
73 case USB_ENDPOINT_XFER_BULK:
74 type = "Bulk";
75 break;
76 case USB_ENDPOINT_XFER_INT:
77 type = "Interrupt";
78 break;
79 }
80 return sprintf(buf, "%s\n", type);
81}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070082static DEVICE_ATTR_RO(type);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070083
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070084static ssize_t interval_show(struct device *dev, struct device_attribute *attr,
85 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070086{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070087 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070088 char unit;
89 unsigned interval = 0;
90 unsigned in;
91
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070092 in = (ep->desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070093
Julia Lawall2e0fe702008-12-29 11:22:14 +010094 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070095 case USB_ENDPOINT_XFER_CONTROL:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050096 if (ep->udev->speed == USB_SPEED_HIGH)
97 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070098 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070099 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500100
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700101 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700102 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700103 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500104
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700105 case USB_ENDPOINT_XFER_BULK:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500106 if (ep->udev->speed == USB_SPEED_HIGH && !in)
107 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700108 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700109 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500110
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700111 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700112 if (ep->udev->speed == USB_SPEED_HIGH)
113 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700114 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700115 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700116 break;
117 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700118 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700119 if (interval % 1000)
120 unit = 'u';
121 else {
122 unit = 'm';
123 interval /= 1000;
124 }
125
126 return sprintf(buf, "%d%cs\n", interval, unit);
127}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700128static DEVICE_ATTR_RO(interval);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700129
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700130static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
131 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700132{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700133 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700134 char *direction;
135
Julia Lawall2e0fe702008-12-29 11:22:14 +0100136 if (usb_endpoint_xfer_control(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700137 direction = "both";
Julia Lawall2e0fe702008-12-29 11:22:14 +0100138 else if (usb_endpoint_dir_in(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700139 direction = "in";
140 else
141 direction = "out";
142 return sprintf(buf, "%s\n", direction);
143}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700144static DEVICE_ATTR_RO(direction);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700145
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700146static struct attribute *ep_dev_attrs[] = {
147 &dev_attr_bLength.attr,
148 &dev_attr_bEndpointAddress.attr,
149 &dev_attr_bmAttributes.attr,
150 &dev_attr_bInterval.attr,
151 &dev_attr_wMaxPacketSize.attr,
152 &dev_attr_interval.attr,
153 &dev_attr_type.attr,
154 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700155 NULL,
156};
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700157static struct attribute_group ep_dev_attr_grp = {
158 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700159};
David Brownella4dbd672009-06-24 10:06:31 -0700160static const struct attribute_group *ep_dev_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400161 &ep_dev_attr_grp,
162 NULL
163};
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700164
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700165static void ep_device_release(struct device *dev)
166{
167 struct ep_device *ep_dev = to_ep_device(dev);
168
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700169 kfree(ep_dev);
170}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700171
Lan Tianyu2d366842012-08-17 16:44:55 +0800172struct device_type usb_ep_device_type = {
173 .name = "usb_endpoint",
174 .release = ep_device_release,
175};
176
Alan Stern3b23dd62008-12-05 14:10:34 -0500177int usb_create_ep_devs(struct device *parent,
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700178 struct usb_host_endpoint *endpoint,
179 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700180{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700181 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700182 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700183
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700184 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
185 if (!ep_dev) {
186 retval = -ENOMEM;
Kay Sievers55129662009-05-04 19:48:32 +0200187 goto exit;
Sarah Bailey7e277802006-11-18 22:30:16 -0800188 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700189
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700190 ep_dev->desc = &endpoint->desc;
191 ep_dev->udev = udev;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400192 ep_dev->dev.groups = ep_dev_groups;
Kay Sievers55129662009-05-04 19:48:32 +0200193 ep_dev->dev.type = &usb_ep_device_type;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700194 ep_dev->dev.parent = parent;
Kay Sievers55129662009-05-04 19:48:32 +0200195 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
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
Peter Chen95622712011-01-05 14:50:54 +0800201 device_enable_async_suspend(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400202 endpoint->ep_dev = ep_dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700203 return retval;
204
Alan Sternd5477c12006-10-10 11:56:26 -0400205error_register:
Rahul Ruikar7b3a7662010-10-07 09:31:12 +0530206 put_device(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400207exit:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700208 return retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700209}
210
Alan Stern3b23dd62008-12-05 14:10:34 -0500211void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700212{
Sarah Bailey7e277802006-11-18 22:30:16 -0800213 struct ep_device *ep_dev = endpoint->ep_dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700214
Sarah Bailey7e277802006-11-18 22:30:16 -0800215 if (ep_dev) {
Sarah Bailey7e277802006-11-18 22:30:16 -0800216 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700217 endpoint->ep_dev = NULL;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700218 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700219}