blob: a60bc830a056dbed076f4682c6a427ddd3824b7f [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);
Felipe Balbi5f9492f2016-09-28 14:17:38 +030055 return sprintf(buf, "%04x\n", usb_endpoint_maxp(ep->desc));
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070056}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070057static DEVICE_ATTR_RO(wMaxPacketSize);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070058
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070059static ssize_t type_show(struct device *dev, struct device_attribute *attr,
60 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070061{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070062 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070063 char *type = "unknown";
64
Julia Lawall2e0fe702008-12-29 11:22:14 +010065 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070066 case USB_ENDPOINT_XFER_CONTROL:
67 type = "Control";
68 break;
69 case USB_ENDPOINT_XFER_ISOC:
70 type = "Isoc";
71 break;
72 case USB_ENDPOINT_XFER_BULK:
73 type = "Bulk";
74 break;
75 case USB_ENDPOINT_XFER_INT:
76 type = "Interrupt";
77 break;
78 }
79 return sprintf(buf, "%s\n", type);
80}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070081static DEVICE_ATTR_RO(type);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070082
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -070083static ssize_t interval_show(struct device *dev, struct device_attribute *attr,
84 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070085{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070086 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070087 char unit;
88 unsigned interval = 0;
89 unsigned in;
90
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070091 in = (ep->desc->bEndpointAddress & USB_DIR_IN);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070092
Julia Lawall2e0fe702008-12-29 11:22:14 +010093 switch (usb_endpoint_type(ep->desc)) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070094 case USB_ENDPOINT_XFER_CONTROL:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050095 if (ep->udev->speed == USB_SPEED_HIGH)
96 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -070097 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070098 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -050099
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700100 case USB_ENDPOINT_XFER_ISOC:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700101 interval = 1 << (ep->desc->bInterval - 1);
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_BULK:
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500105 if (ep->udev->speed == USB_SPEED_HIGH && !in)
106 /* uframes per NAK */
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700107 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700108 break;
csanchez@neurowork.netcd62ace2010-05-25 10:53:17 -0500109
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700110 case USB_ENDPOINT_XFER_INT:
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700111 if (ep->udev->speed == USB_SPEED_HIGH)
112 interval = 1 << (ep->desc->bInterval - 1);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700113 else
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700114 interval = ep->desc->bInterval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700115 break;
116 }
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700117 interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700118 if (interval % 1000)
119 unit = 'u';
120 else {
121 unit = 'm';
122 interval /= 1000;
123 }
124
125 return sprintf(buf, "%d%cs\n", interval, unit);
126}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700127static DEVICE_ATTR_RO(interval);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700128
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700129static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
130 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700131{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700132 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700133 char *direction;
134
Julia Lawall2e0fe702008-12-29 11:22:14 +0100135 if (usb_endpoint_xfer_control(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700136 direction = "both";
Julia Lawall2e0fe702008-12-29 11:22:14 +0100137 else if (usb_endpoint_dir_in(ep->desc))
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-Hartmand03f2542013-08-23 16:05:26 -0700143static DEVICE_ATTR_RO(direction);
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};
David Brownella4dbd672009-06-24 10:06:31 -0700159static const struct attribute_group *ep_dev_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400160 &ep_dev_attr_grp,
161 NULL
162};
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700163
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700164static void ep_device_release(struct device *dev)
165{
166 struct ep_device *ep_dev = to_ep_device(dev);
167
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700168 kfree(ep_dev);
169}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700170
Lan Tianyu2d366842012-08-17 16:44:55 +0800171struct device_type usb_ep_device_type = {
172 .name = "usb_endpoint",
173 .release = ep_device_release,
174};
175
Alan Stern3b23dd62008-12-05 14:10:34 -0500176int usb_create_ep_devs(struct device *parent,
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700177 struct usb_host_endpoint *endpoint,
178 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700179{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700180 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700181 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700182
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700183 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
184 if (!ep_dev) {
185 retval = -ENOMEM;
Kay Sievers55129662009-05-04 19:48:32 +0200186 goto exit;
Sarah Bailey7e277802006-11-18 22:30:16 -0800187 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700188
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700189 ep_dev->desc = &endpoint->desc;
190 ep_dev->udev = udev;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400191 ep_dev->dev.groups = ep_dev_groups;
Kay Sievers55129662009-05-04 19:48:32 +0200192 ep_dev->dev.type = &usb_ep_device_type;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700193 ep_dev->dev.parent = parent;
Kay Sievers55129662009-05-04 19:48:32 +0200194 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700195
196 retval = device_register(&ep_dev->dev);
197 if (retval)
Kay Sievers55129662009-05-04 19:48:32 +0200198 goto error_register;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700199
Peter Chen95622712011-01-05 14:50:54 +0800200 device_enable_async_suspend(&ep_dev->dev);
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:
Rahul Ruikar7b3a7662010-10-07 09:31:12 +0530205 put_device(&ep_dev->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}