Merge tag 'mm-hotfixes-stable-2025-07-11-16-16' of git://git.kernel.org/pub/scm/linux...
[linux-2.6-block.git] / drivers / usb / core / endpoint.c
CommitLineData
aa1f3bb5 1// SPDX-License-Identifier: GPL-2.0
84412f62
GKH
2/*
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 *
b65fba3d 9 * Released under the GPLv2 only.
84412f62 10 *
b65fba3d 11 * Endpoint sysfs stuff
84412f62
GKH
12 */
13
14#include <linux/kernel.h>
7e27780f 15#include <linux/spinlock.h>
5a0e3ad6 16#include <linux/slab.h>
c67e9601 17#include <linux/sysfs.h>
84412f62
GKH
18#include <linux/usb.h>
19#include "usb.h"
20
9bde7497 21struct ep_device {
84412f62
GKH
22 struct usb_endpoint_descriptor *desc;
23 struct usb_device *udev;
9bde7497 24 struct device dev;
84412f62 25};
9bde7497
GKH
26#define to_ep_device(_dev) \
27 container_of(_dev, struct ep_device, dev)
84412f62
GKH
28
29struct ep_attribute {
30 struct attribute attr;
31 ssize_t (*show)(struct usb_device *,
32 struct usb_endpoint_descriptor *, char *);
33};
34#define to_ep_attribute(_attr) \
35 container_of(_attr, struct ep_attribute, attr)
36
84412f62 37#define usb_ep_attr(field, format_string) \
d03f254f 38static ssize_t field##_show(struct device *dev, \
9bde7497
GKH
39 struct device_attribute *attr, \
40 char *buf) \
84412f62 41{ \
9bde7497 42 struct ep_device *ep = to_ep_device(dev); \
c67e9601 43 return sysfs_emit(buf, format_string, ep->desc->field); \
84412f62 44} \
d03f254f 45static DEVICE_ATTR_RO(field)
84412f62 46
d03f254f
GKH
47usb_ep_attr(bLength, "%02x\n");
48usb_ep_attr(bEndpointAddress, "%02x\n");
49usb_ep_attr(bmAttributes, "%02x\n");
50usb_ep_attr(bInterval, "%02x\n");
84412f62 51
d03f254f
GKH
52static ssize_t wMaxPacketSize_show(struct device *dev,
53 struct device_attribute *attr, char *buf)
84412f62 54{
9bde7497 55 struct ep_device *ep = to_ep_device(dev);
c67e9601 56 return sysfs_emit(buf, "%04x\n", usb_endpoint_maxp(ep->desc));
84412f62 57}
d03f254f 58static DEVICE_ATTR_RO(wMaxPacketSize);
84412f62 59
d03f254f
GKH
60static ssize_t type_show(struct device *dev, struct device_attribute *attr,
61 char *buf)
84412f62 62{
9bde7497 63 struct ep_device *ep = to_ep_device(dev);
84412f62
GKH
64 char *type = "unknown";
65
2e0fe709 66 switch (usb_endpoint_type(ep->desc)) {
84412f62
GKH
67 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 }
c67e9601 80 return sysfs_emit(buf, "%s\n", type);
84412f62 81}
d03f254f 82static DEVICE_ATTR_RO(type);
84412f62 83
d03f254f
GKH
84static ssize_t interval_show(struct device *dev, struct device_attribute *attr,
85 char *buf)
84412f62 86{
9bde7497 87 struct ep_device *ep = to_ep_device(dev);
fb95c7cf 88 unsigned int interval;
84412f62 89 char unit;
84412f62 90
fb95c7cf
CY
91 interval = usb_decode_interval(ep->desc, ep->udev->speed);
92 if (interval % 1000) {
84412f62 93 unit = 'u';
fb95c7cf 94 } else {
84412f62
GKH
95 unit = 'm';
96 interval /= 1000;
97 }
98
c67e9601 99 return sysfs_emit(buf, "%d%cs\n", interval, unit);
84412f62 100}
d03f254f 101static DEVICE_ATTR_RO(interval);
84412f62 102
d03f254f
GKH
103static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
104 char *buf)
84412f62 105{
9bde7497 106 struct ep_device *ep = to_ep_device(dev);
84412f62
GKH
107 char *direction;
108
2e0fe709 109 if (usb_endpoint_xfer_control(ep->desc))
84412f62 110 direction = "both";
2e0fe709 111 else if (usb_endpoint_dir_in(ep->desc))
84412f62
GKH
112 direction = "in";
113 else
114 direction = "out";
c67e9601 115 return sysfs_emit(buf, "%s\n", direction);
84412f62 116}
d03f254f 117static DEVICE_ATTR_RO(direction);
9bde7497
GKH
118
119static struct attribute *ep_dev_attrs[] = {
120 &dev_attr_bLength.attr,
121 &dev_attr_bEndpointAddress.attr,
122 &dev_attr_bmAttributes.attr,
123 &dev_attr_bInterval.attr,
124 &dev_attr_wMaxPacketSize.attr,
125 &dev_attr_interval.attr,
126 &dev_attr_type.attr,
127 &dev_attr_direction.attr,
84412f62
GKH
128 NULL,
129};
4154a4f7 130static const struct attribute_group ep_dev_attr_grp = {
9bde7497
GKH
131 .attrs = ep_dev_attrs,
132};
a4dbd674 133static const struct attribute_group *ep_dev_groups[] = {
2e5f10e4
AS
134 &ep_dev_attr_grp,
135 NULL
136};
84412f62 137
9bde7497
GKH
138static void ep_device_release(struct device *dev)
139{
140 struct ep_device *ep_dev = to_ep_device(dev);
84412f62 141
9bde7497
GKH
142 kfree(ep_dev);
143}
84412f62 144
1ab40abc 145const struct device_type usb_ep_device_type = {
2d366846
LT
146 .name = "usb_endpoint",
147 .release = ep_device_release,
148};
149
3b23dd6f 150int usb_create_ep_devs(struct device *parent,
1b21d5e1
GKH
151 struct usb_host_endpoint *endpoint,
152 struct usb_device *udev)
84412f62 153{
9bde7497 154 struct ep_device *ep_dev;
9bde7497
GKH
155 int retval;
156
9bde7497
GKH
157 ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
158 if (!ep_dev) {
159 retval = -ENOMEM;
55129666 160 goto exit;
7e27780f 161 }
84412f62 162
9bde7497
GKH
163 ep_dev->desc = &endpoint->desc;
164 ep_dev->udev = udev;
2e5f10e4 165 ep_dev->dev.groups = ep_dev_groups;
55129666 166 ep_dev->dev.type = &usb_ep_device_type;
9bde7497 167 ep_dev->dev.parent = parent;
55129666 168 dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
84412f62 169
9bde7497
GKH
170 retval = device_register(&ep_dev->dev);
171 if (retval)
55129666 172 goto error_register;
9bde7497 173
95622712 174 device_enable_async_suspend(&ep_dev->dev);
d5477c11 175 endpoint->ep_dev = ep_dev;
1b21d5e1
GKH
176 return retval;
177
d5477c11 178error_register:
7b3a766c 179 put_device(&ep_dev->dev);
d5477c11 180exit:
1b21d5e1 181 return retval;
84412f62
GKH
182}
183
3b23dd6f 184void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
84412f62 185{
7e27780f 186 struct ep_device *ep_dev = endpoint->ep_dev;
84412f62 187
7e27780f 188 if (ep_dev) {
7e27780f 189 device_unregister(&ep_dev->dev);
9bde7497 190 endpoint->ep_dev = NULL;
84412f62
GKH
191 }
192}