blob: a2530811cf7ded0656556d35abcc43b302409ce8 [file] [log] [blame]
Greg Kroah-Hartmanaa1f3bb2017-11-03 09:18:41 +01001// SPDX-License-Identifier: GPL-2.0
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -07002/*
3 * drivers/usb/core/endpoint.c
4 *
5 * (C) Copyright 2002,2004,2006 Greg Kroah-Hartman
6 * (C) Copyright 2002,2004 IBM Corp.
7 * (C) Copyright 2006 Novell Inc.
8 *
Greg Kroah-Hartmanb65fba32016-10-28 17:16:36 -04009 * Released under the GPLv2 only.
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);
Chunfeng Yunfb95c7c2021-03-08 10:52:05 +080087 unsigned int interval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070088 char unit;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070089
Chunfeng Yunfb95c7c2021-03-08 10:52:05 +080090 interval = usb_decode_interval(ep->desc, ep->udev->speed);
91 if (interval % 1000) {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070092 unit = 'u';
Chunfeng Yunfb95c7c2021-03-08 10:52:05 +080093 } else {
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -070094 unit = 'm';
95 interval /= 1000;
96 }
97
98 return sprintf(buf, "%d%cs\n", interval, unit);
99}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700100static DEVICE_ATTR_RO(interval);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700101
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700102static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
103 char *buf)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700104{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700105 struct ep_device *ep = to_ep_device(dev);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700106 char *direction;
107
Julia Lawall2e0fe702008-12-29 11:22:14 +0100108 if (usb_endpoint_xfer_control(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700109 direction = "both";
Julia Lawall2e0fe702008-12-29 11:22:14 +0100110 else if (usb_endpoint_dir_in(ep->desc))
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700111 direction = "in";
112 else
113 direction = "out";
114 return sprintf(buf, "%s\n", direction);
115}
Greg Kroah-Hartmand03f2542013-08-23 16:05:26 -0700116static DEVICE_ATTR_RO(direction);
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700117
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700118static struct attribute *ep_dev_attrs[] = {
119 &dev_attr_bLength.attr,
120 &dev_attr_bEndpointAddress.attr,
121 &dev_attr_bmAttributes.attr,
122 &dev_attr_bInterval.attr,
123 &dev_attr_wMaxPacketSize.attr,
124 &dev_attr_interval.attr,
125 &dev_attr_type.attr,
126 &dev_attr_direction.attr,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700127 NULL,
128};
Rikard Falkeborn4154a4f2020-11-25 17:24:58 +0100129static const struct attribute_group ep_dev_attr_grp = {
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700130 .attrs = ep_dev_attrs,
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700131};
David Brownella4dbd672009-06-24 10:06:31 -0700132static const struct attribute_group *ep_dev_groups[] = {
Alan Stern2e5f10e2008-04-30 15:37:19 -0400133 &ep_dev_attr_grp,
134 NULL
135};
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700136
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700137static void ep_device_release(struct device *dev)
138{
139 struct ep_device *ep_dev = to_ep_device(dev);
140
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700141 kfree(ep_dev);
142}
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700143
Lan Tianyu2d366842012-08-17 16:44:55 +0800144struct device_type usb_ep_device_type = {
145 .name = "usb_endpoint",
146 .release = ep_device_release,
147};
148
Alan Stern3b23dd62008-12-05 14:10:34 -0500149int usb_create_ep_devs(struct device *parent,
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700150 struct usb_host_endpoint *endpoint,
151 struct usb_device *udev)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700152{
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700153 struct ep_device *ep_dev;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700154 int retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700155
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700156 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
157 if (!ep_dev) {
158 retval = -ENOMEM;
Kay Sievers55129662009-05-04 19:48:32 +0200159 goto exit;
Sarah Bailey7e277802006-11-18 22:30:16 -0800160 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700161
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700162 ep_dev->desc = &endpoint->desc;
163 ep_dev->udev = udev;
Alan Stern2e5f10e2008-04-30 15:37:19 -0400164 ep_dev->dev.groups = ep_dev_groups;
Kay Sievers55129662009-05-04 19:48:32 +0200165 ep_dev->dev.type = &usb_ep_device_type;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700166 ep_dev->dev.parent = parent;
Kay Sievers55129662009-05-04 19:48:32 +0200167 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700168
169 retval = device_register(&ep_dev->dev);
170 if (retval)
Kay Sievers55129662009-05-04 19:48:32 +0200171 goto error_register;
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700172
Peter Chen95622712011-01-05 14:50:54 +0800173 device_enable_async_suspend(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400174 endpoint->ep_dev = ep_dev;
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700175 return retval;
176
Alan Sternd5477c12006-10-10 11:56:26 -0400177error_register:
Rahul Ruikar7b3a7662010-10-07 09:31:12 +0530178 put_device(&ep_dev->dev);
Alan Sternd5477c12006-10-10 11:56:26 -0400179exit:
Greg Kroah-Hartman1b21d5e2006-08-28 11:43:25 -0700180 return retval;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700181}
182
Alan Stern3b23dd62008-12-05 14:10:34 -0500183void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700184{
Sarah Bailey7e277802006-11-18 22:30:16 -0800185 struct ep_device *ep_dev = endpoint->ep_dev;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700186
Sarah Bailey7e277802006-11-18 22:30:16 -0800187 if (ep_dev) {
Sarah Bailey7e277802006-11-18 22:30:16 -0800188 device_unregister(&ep_dev->dev);
Greg Kroah-Hartman9bde7492006-06-14 12:14:34 -0700189 endpoint->ep_dev = NULL;
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700190 }
Greg Kroah-Hartman84412f62006-06-14 12:14:34 -0700191}