|
@@ -101,6 +101,16 @@ EXPORT_SYMBOL_GPL(usb_gadget_unmap_request);
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
+void usb_gadget_set_state(struct usb_gadget *gadget,
|
|
|
+ enum usb_device_state state)
|
|
|
+{
|
|
|
+ gadget->state = state;
|
|
|
+ sysfs_notify(&gadget->dev.kobj, NULL, "status");
|
|
|
+}
|
|
|
+EXPORT_SYMBOL_GPL(usb_gadget_set_state);
|
|
|
+
|
|
|
+/* ------------------------------------------------------------------------- */
|
|
|
+
|
|
|
/**
|
|
|
* usb_gadget_udc_start - tells usb device controller to start up
|
|
|
* @gadget: The gadget we want to get started
|
|
@@ -197,6 +207,8 @@ int usb_add_gadget_udc(struct device *parent, struct usb_gadget *gadget)
|
|
|
if (ret)
|
|
|
goto err4;
|
|
|
|
|
|
+ usb_gadget_set_state(gadget, USB_STATE_NOTATTACHED);
|
|
|
+
|
|
|
mutex_unlock(&udc_lock);
|
|
|
|
|
|
return 0;
|
|
@@ -406,6 +418,16 @@ static ssize_t usb_udc_softconn_store(struct device *dev,
|
|
|
}
|
|
|
static DEVICE_ATTR(soft_connect, S_IWUSR, NULL, usb_udc_softconn_store);
|
|
|
|
|
|
+static ssize_t usb_gadget_state_show(struct device *dev,
|
|
|
+ struct device_attribute *attr, char *buf)
|
|
|
+{
|
|
|
+ struct usb_udc *udc = container_of(dev, struct usb_udc, dev);
|
|
|
+ struct usb_gadget *gadget = udc->gadget;
|
|
|
+
|
|
|
+ return sprintf(buf, "%s\n", usb_state_string(gadget->state));
|
|
|
+}
|
|
|
+static DEVICE_ATTR(state, S_IRUGO, usb_gadget_state_show, NULL);
|
|
|
+
|
|
|
#define USB_UDC_SPEED_ATTR(name, param) \
|
|
|
ssize_t usb_udc_##param##_show(struct device *dev, \
|
|
|
struct device_attribute *attr, char *buf) \
|
|
@@ -439,6 +461,7 @@ static USB_UDC_ATTR(a_alt_hnp_support);
|
|
|
static struct attribute *usb_udc_attrs[] = {
|
|
|
&dev_attr_srp.attr,
|
|
|
&dev_attr_soft_connect.attr,
|
|
|
+ &dev_attr_state.attr,
|
|
|
&dev_attr_current_speed.attr,
|
|
|
&dev_attr_maximum_speed.attr,
|
|
|
|