Linux Audio

Check our new training course

Loading...
v3.1
 
  1/*
  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>
 13#include <linux/spinlock.h>
 14#include <linux/slab.h>
 15#include <linux/idr.h>
 16#include <linux/usb.h>
 17#include "usb.h"
 18
 19struct ep_device {
 20	struct usb_endpoint_descriptor *desc;
 21	struct usb_device *udev;
 22	struct device dev;
 23};
 24#define to_ep_device(_dev) \
 25	container_of(_dev, struct ep_device, dev)
 26
 27struct device_type usb_ep_device_type = {
 28	.name =		"usb_endpoint",
 29};
 30
 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
 39#define usb_ep_attr(field, format_string)			\
 40static ssize_t show_ep_##field(struct device *dev,		\
 41			       struct device_attribute *attr,	\
 42			       char *buf)			\
 43{								\
 44	struct ep_device *ep = to_ep_device(dev);		\
 45	return sprintf(buf, format_string, ep->desc->field);	\
 46}								\
 47static DEVICE_ATTR(field, S_IRUGO, show_ep_##field, NULL);
 48
 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
 54static ssize_t show_ep_wMaxPacketSize(struct device *dev,
 55				      struct device_attribute *attr, char *buf)
 56{
 57	struct ep_device *ep = to_ep_device(dev);
 58	return sprintf(buf, "%04x\n",
 59			le16_to_cpu(ep->desc->wMaxPacketSize) & 0x07ff);
 60}
 61static DEVICE_ATTR(wMaxPacketSize, S_IRUGO, show_ep_wMaxPacketSize, NULL);
 62
 63static ssize_t show_ep_type(struct device *dev, struct device_attribute *attr,
 64			    char *buf)
 65{
 66	struct ep_device *ep = to_ep_device(dev);
 67	char *type = "unknown";
 68
 69	switch (usb_endpoint_type(ep->desc)) {
 70	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}
 85static DEVICE_ATTR(type, S_IRUGO, show_ep_type, NULL);
 86
 87static ssize_t show_ep_interval(struct device *dev,
 88				struct device_attribute *attr, char *buf)
 89{
 90	struct ep_device *ep = to_ep_device(dev);
 
 91	char unit;
 92	unsigned interval = 0;
 93	unsigned in;
 94
 95	in = (ep->desc->bEndpointAddress & USB_DIR_IN);
 96
 97	switch (usb_endpoint_type(ep->desc)) {
 98	case USB_ENDPOINT_XFER_CONTROL:
 99		if (ep->udev->speed == USB_SPEED_HIGH)
100			/* uframes per NAK */
101			interval = ep->desc->bInterval;
102		break;
103
104	case USB_ENDPOINT_XFER_ISOC:
105		interval = 1 << (ep->desc->bInterval - 1);
106		break;
107
108	case USB_ENDPOINT_XFER_BULK:
109		if (ep->udev->speed == USB_SPEED_HIGH && !in)
110			/* uframes per NAK */
111			interval = ep->desc->bInterval;
112		break;
113
114	case USB_ENDPOINT_XFER_INT:
115		if (ep->udev->speed == USB_SPEED_HIGH)
116			interval = 1 << (ep->desc->bInterval - 1);
117		else
118			interval = ep->desc->bInterval;
119		break;
120	}
121	interval *= (ep->udev->speed == USB_SPEED_HIGH) ? 125 : 1000;
122	if (interval % 1000)
123		unit = 'u';
124	else {
125		unit = 'm';
126		interval /= 1000;
127	}
128
129	return sprintf(buf, "%d%cs\n", interval, unit);
130}
131static DEVICE_ATTR(interval, S_IRUGO, show_ep_interval, NULL);
132
133static ssize_t show_ep_direction(struct device *dev,
134				 struct device_attribute *attr, char *buf)
135{
136	struct ep_device *ep = to_ep_device(dev);
137	char *direction;
138
139	if (usb_endpoint_xfer_control(ep->desc))
140		direction = "both";
141	else if (usb_endpoint_dir_in(ep->desc))
142		direction = "in";
143	else
144		direction = "out";
145	return sprintf(buf, "%s\n", direction);
146}
147static DEVICE_ATTR(direction, S_IRUGO, show_ep_direction, NULL);
148
149static struct attribute *ep_dev_attrs[] = {
150	&dev_attr_bLength.attr,
151	&dev_attr_bEndpointAddress.attr,
152	&dev_attr_bmAttributes.attr,
153	&dev_attr_bInterval.attr,
154	&dev_attr_wMaxPacketSize.attr,
155	&dev_attr_interval.attr,
156	&dev_attr_type.attr,
157	&dev_attr_direction.attr,
158	NULL,
159};
160static struct attribute_group ep_dev_attr_grp = {
161	.attrs = ep_dev_attrs,
162};
163static const struct attribute_group *ep_dev_groups[] = {
164	&ep_dev_attr_grp,
165	NULL
166};
167
168static void ep_device_release(struct device *dev)
169{
170	struct ep_device *ep_dev = to_ep_device(dev);
171
172	kfree(ep_dev);
173}
174
 
 
 
 
 
175int usb_create_ep_devs(struct device *parent,
176			struct usb_host_endpoint *endpoint,
177			struct usb_device *udev)
178{
179	struct ep_device *ep_dev;
180	int retval;
181
182	ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
183	if (!ep_dev) {
184		retval = -ENOMEM;
185		goto exit;
186	}
187
188	ep_dev->desc = &endpoint->desc;
189	ep_dev->udev = udev;
190	ep_dev->dev.groups = ep_dev_groups;
191	ep_dev->dev.type = &usb_ep_device_type;
192	ep_dev->dev.parent = parent;
193	ep_dev->dev.release = ep_device_release;
194	dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
195
196	retval = device_register(&ep_dev->dev);
197	if (retval)
198		goto error_register;
199
200	device_enable_async_suspend(&ep_dev->dev);
201	endpoint->ep_dev = ep_dev;
202	return retval;
203
204error_register:
205	put_device(&ep_dev->dev);
206exit:
207	return retval;
208}
209
210void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
211{
212	struct ep_device *ep_dev = endpoint->ep_dev;
213
214	if (ep_dev) {
215		device_unregister(&ep_dev->dev);
216		endpoint->ep_dev = NULL;
217	}
218}
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  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 *
  9 * Released under the GPLv2 only.
 10 *
 11 * Endpoint sysfs stuff
 12 */
 13
 14#include <linux/kernel.h>
 15#include <linux/spinlock.h>
 16#include <linux/slab.h>
 17#include <linux/sysfs.h>
 18#include <linux/usb.h>
 19#include "usb.h"
 20
 21struct ep_device {
 22	struct usb_endpoint_descriptor *desc;
 23	struct usb_device *udev;
 24	struct device dev;
 25};
 26#define to_ep_device(_dev) \
 27	container_of(_dev, struct ep_device, dev)
 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
 37#define usb_ep_attr(field, format_string)			\
 38static ssize_t field##_show(struct device *dev,			\
 39			       struct device_attribute *attr,	\
 40			       char *buf)			\
 41{								\
 42	struct ep_device *ep = to_ep_device(dev);		\
 43	return sysfs_emit(buf, format_string, ep->desc->field);	\
 44}								\
 45static DEVICE_ATTR_RO(field)
 46
 47usb_ep_attr(bLength, "%02x\n");
 48usb_ep_attr(bEndpointAddress, "%02x\n");
 49usb_ep_attr(bmAttributes, "%02x\n");
 50usb_ep_attr(bInterval, "%02x\n");
 51
 52static ssize_t wMaxPacketSize_show(struct device *dev,
 53				   struct device_attribute *attr, char *buf)
 54{
 55	struct ep_device *ep = to_ep_device(dev);
 56	return sysfs_emit(buf, "%04x\n", usb_endpoint_maxp(ep->desc));
 
 57}
 58static DEVICE_ATTR_RO(wMaxPacketSize);
 59
 60static ssize_t type_show(struct device *dev, struct device_attribute *attr,
 61			 char *buf)
 62{
 63	struct ep_device *ep = to_ep_device(dev);
 64	char *type = "unknown";
 65
 66	switch (usb_endpoint_type(ep->desc)) {
 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	}
 80	return sysfs_emit(buf, "%s\n", type);
 81}
 82static DEVICE_ATTR_RO(type);
 83
 84static ssize_t interval_show(struct device *dev, struct device_attribute *attr,
 85			     char *buf)
 86{
 87	struct ep_device *ep = to_ep_device(dev);
 88	unsigned int interval;
 89	char unit;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 90
 91	interval = usb_decode_interval(ep->desc, ep->udev->speed);
 92	if (interval % 1000) {
 
 
 
 
 
 
 
 93		unit = 'u';
 94	} else {
 95		unit = 'm';
 96		interval /= 1000;
 97	}
 98
 99	return sysfs_emit(buf, "%d%cs\n", interval, unit);
100}
101static DEVICE_ATTR_RO(interval);
102
103static ssize_t direction_show(struct device *dev, struct device_attribute *attr,
104			      char *buf)
105{
106	struct ep_device *ep = to_ep_device(dev);
107	char *direction;
108
109	if (usb_endpoint_xfer_control(ep->desc))
110		direction = "both";
111	else if (usb_endpoint_dir_in(ep->desc))
112		direction = "in";
113	else
114		direction = "out";
115	return sysfs_emit(buf, "%s\n", direction);
116}
117static DEVICE_ATTR_RO(direction);
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,
128	NULL,
129};
130static const struct attribute_group ep_dev_attr_grp = {
131	.attrs = ep_dev_attrs,
132};
133static const struct attribute_group *ep_dev_groups[] = {
134	&ep_dev_attr_grp,
135	NULL
136};
137
138static void ep_device_release(struct device *dev)
139{
140	struct ep_device *ep_dev = to_ep_device(dev);
141
142	kfree(ep_dev);
143}
144
145const struct device_type usb_ep_device_type = {
146	.name =		"usb_endpoint",
147	.release = ep_device_release,
148};
149
150int usb_create_ep_devs(struct device *parent,
151			struct usb_host_endpoint *endpoint,
152			struct usb_device *udev)
153{
154	struct ep_device *ep_dev;
155	int retval;
156
157	ep_dev = kzalloc(sizeof(*ep_dev), GFP_KERNEL);
158	if (!ep_dev) {
159		retval = -ENOMEM;
160		goto exit;
161	}
162
163	ep_dev->desc = &endpoint->desc;
164	ep_dev->udev = udev;
165	ep_dev->dev.groups = ep_dev_groups;
166	ep_dev->dev.type = &usb_ep_device_type;
167	ep_dev->dev.parent = parent;
 
168	dev_set_name(&ep_dev->dev, "ep_%02x", endpoint->desc.bEndpointAddress);
169
170	retval = device_register(&ep_dev->dev);
171	if (retval)
172		goto error_register;
173
174	device_enable_async_suspend(&ep_dev->dev);
175	endpoint->ep_dev = ep_dev;
176	return retval;
177
178error_register:
179	put_device(&ep_dev->dev);
180exit:
181	return retval;
182}
183
184void usb_remove_ep_devs(struct usb_host_endpoint *endpoint)
185{
186	struct ep_device *ep_dev = endpoint->ep_dev;
187
188	if (ep_dev) {
189		device_unregister(&ep_dev->dev);
190		endpoint->ep_dev = NULL;
191	}
192}