All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor
@ 2024-04-16 20:15 Chris Wulff
  2024-04-18 14:41 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Wulff @ 2024-04-16 20:15 UTC (permalink / raw)
  To: linux-usb


Add the ability for FunctionFS driver to be able to create DFU Run-Time
descriptors.

Signed-off-by: David Sands <david.sands@biamp.com>
---
 drivers/usb/gadget/function/f_fs.c  | 11 +++++++++--
 include/uapi/linux/usb/ch9.h        |  4 ++++
 include/uapi/linux/usb/functionfs.h | 10 ++++++++++
 3 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/gadget/function/f_fs.c b/drivers/usb/gadget/function/f_fs.c
index bffbc1dc651f..4d39e5e30b73 100644
--- a/drivers/usb/gadget/function/f_fs.c
+++ b/drivers/usb/gadget/function/f_fs.c
@@ -2467,7 +2467,7 @@ typedef int (*ffs_os_desc_callback)(enum ffs_os_desc_type entity,
 
 static int __must_check ffs_do_single_desc(char *data, unsigned len,
 					   ffs_entity_callback entity,
-					   void *priv, int *current_class)
+					   void *priv, int *current_class, int *current_subclass)
 {
 	struct usb_descriptor_header *_ds = (void *)data;
 	u8 length;
@@ -2524,6 +2524,7 @@ static int __must_check ffs_do_single_desc(char *data, unsigned len,
 		if (ds->iInterface)
 			__entity(STRING, ds->iInterface);
 		*current_class = ds->bInterfaceClass;
+		*current_subclass = ds->bInterfaceSubClass;
 	}
 		break;
 
@@ -2548,6 +2549,11 @@ static int __must_check ffs_do_single_desc(char *data, unsigned len,
 			if (length != sizeof(struct ccid_descriptor))
 				goto inv_length;
 			break;
+		} else if (*current_class == USB_CLASS_APP_SPEC && *current_subclass == USB_SUBCLASS_DFU) {
+			pr_vdebug("dfu functional descriptor\n");
+			if (length != sizeof(struct usb_dfu_functional_descriptor))
+				goto inv_length;
+			break;
 		} else {
 			pr_vdebug("unknown descriptor: %d for class %d\n",
 			      _ds->bDescriptorType, *current_class);
@@ -2610,6 +2616,7 @@ static int __must_check ffs_do_descs(unsigned count, char *data, unsigned len,
 	const unsigned _len = len;
 	unsigned long num = 0;
 	int current_class = -1;
+	int current_subclass = -1;
 
 	for (;;) {
 		int ret;
@@ -2629,7 +2636,7 @@ static int __must_check ffs_do_descs(unsigned count, char *data, unsigned len,
 			return _len - len;
 
 		ret = ffs_do_single_desc(data, len, entity, priv,
-			&current_class);
+			&current_class, &current_subclass);
 		if (ret < 0) {
 			pr_debug("%s returns %d\n", __func__, ret);
 			return ret;
diff --git a/include/uapi/linux/usb/ch9.h b/include/uapi/linux/usb/ch9.h
index 44d73ba8788d..dcd962d1a75a 100644
--- a/include/uapi/linux/usb/ch9.h
+++ b/include/uapi/linux/usb/ch9.h
@@ -263,6 +263,9 @@ struct usb_ctrlrequest {
 /* From the USB 3.1 spec */
 #define	USB_DT_SSP_ISOC_ENDPOINT_COMP	0x31
 
+/* From USB Device Firmware Upgrade Specification, Revision 1.1 */
+#define USB_DT_DFU_FUNCTIONAL		0x21
+
 /* Conventional codes for class-specific descriptors.  The convention is
  * defined in the USB "Common Class" Spec (3.11).  Individual class specs
  * are authoritative for their usage, not the "common class" writeup.
@@ -332,6 +335,7 @@ struct usb_device_descriptor {
 #define USB_CLASS_VENDOR_SPEC		0xff
 
 #define USB_SUBCLASS_VENDOR_SPEC	0xff
+#define USB_SUBCLASS_DFU		0x01
 
 /*-------------------------------------------------------------------------*/
 
diff --git a/include/uapi/linux/usb/functionfs.h b/include/uapi/linux/usb/functionfs.h
index 9f88de9c3d66..cf3f55234a5e 100644
--- a/include/uapi/linux/usb/functionfs.h
+++ b/include/uapi/linux/usb/functionfs.h
@@ -37,6 +37,16 @@ struct usb_endpoint_descriptor_no_audio {
 	__u8  bInterval;
 } __attribute__((packed));
 
+/* DFU Functional descriptor */
+struct usb_dfu_functional_descriptor {
+	__u8  bLength;
+	__u8  bDescriptorType;
+	__u8  bmAttributes;
+	__le16 wDetachTimeOut;
+	__le16 wTransferSize;
+	__le16 bcdDFUVersion;
+} __attribute__ ((packed));
+
 struct usb_functionfs_descs_head_v2 {
 	__le32 magic;
 	__le32 length;
-- 
2.34.1




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor
  2024-04-16 20:15 [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor Chris Wulff
@ 2024-04-18 14:41 ` Greg KH
  2024-04-18 15:18   ` Chris Wulff
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2024-04-18 14:41 UTC (permalink / raw)
  To: Chris Wulff; +Cc: linux-usb

On Tue, Apr 16, 2024 at 08:15:03PM +0000, Chris Wulff wrote:
> 
> Add the ability for FunctionFS driver to be able to create DFU Run-Time
> descriptors.
> 
> Signed-off-by: David Sands <david.sands@biamp.com>

That's not you :(

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor
  2024-04-18 14:41 ` Greg KH
@ 2024-04-18 15:18   ` Chris Wulff
  2024-04-18 20:21     ` Chris Wulff
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Wulff @ 2024-04-18 15:18 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-usb

 
> On Tue, Apr 16, 2024 at 08:15:03PM +0000, Chris Wulff wrote:
> >
> > Add the ability for FunctionFS driver to be able to create DFU Run-Time
> > descriptors.
> >
> > Signed-off-by: David Sands <david.sands@biamp.com>
> 
> That's not you :(

David was the original author (we work for the same company.) I am trying to submit a number of patches with some additional fixes from me and I copied his original patch text (which included his sign-off.)

I assume I should remove those old sign-offs as I can attest to the suitable history?

 -- Chris Wulff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor
  2024-04-18 15:18   ` Chris Wulff
@ 2024-04-18 20:21     ` Chris Wulff
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Wulff @ 2024-04-18 20:21 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-usb

> I assume I should remove those old sign-offs as I can attest to the suitable history?

I answered my own question. I missed the section on co-developed in
https://www.kernel.org/doc/html/latest/process/submitting-patches.html

I will submit a new patch with the attribution corrected.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-04-18 20:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-16 20:15 [PATCH] usb: gadget: f_fs: add capability for dfu run-time descriptor Chris Wulff
2024-04-18 14:41 ` Greg KH
2024-04-18 15:18   ` Chris Wulff
2024-04-18 20:21     ` Chris Wulff

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.