mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
CDC/ACM and PL2303 device drivers: Don't use the max packet size assigned to an endpoint in order to determine the request buffer size. The endpoint has not yet been configured that max packet size may be wrong.
This commit is contained in:
@@ -210,7 +210,8 @@ config PL2303_NRDREQS
|
||||
|
||||
config PL2303_BULKIN_REQLEN
|
||||
int "Size of one write request buffer"
|
||||
default 96
|
||||
default 768 if USBDEV_DUALSPEED
|
||||
default 96 if !USBDEV_DUALSPEED
|
||||
---help---
|
||||
Ideally, the BULKOUT request size should *not* be the same size as
|
||||
the maxpacket size. That is because IN transfers of exactly the
|
||||
@@ -376,7 +377,8 @@ config CDCACM_NRDREQS
|
||||
|
||||
config CDCACM_BULKIN_REQLEN
|
||||
int "Size of one write request buffer"
|
||||
default 96
|
||||
default 768 if USBDEV_DUALSPEED
|
||||
default 96 if !USBDEV_DUALSPEED
|
||||
---help---
|
||||
Ideally, the BULKOUT request size should *not* be the same size as
|
||||
the maxpacket size. That is because IN transfers of exactly the
|
||||
|
||||
+23
-4
@@ -1006,9 +1006,13 @@ static int cdcacm_bind(FAR struct usbdevclass_driver_s *driver,
|
||||
|
||||
priv->epbulkout->priv = priv;
|
||||
|
||||
/* Pre-allocate read requests */
|
||||
/* Pre-allocate read requests. The buffer size is one full packet. */
|
||||
|
||||
reqlen = priv->epbulkout->maxpacket;
|
||||
#ifdef CONFIG_USBDEV_DUALSPEED
|
||||
reqlen = CONFIG_CDCACM_EPBULKOUT_HSSIZE;
|
||||
#else
|
||||
reqlen = CONFIG_CDCACM_EPBULKOUT_FSSIZE;
|
||||
#endif
|
||||
|
||||
for (i = 0; i < CONFIG_CDCACM_NRDREQS; i++)
|
||||
{
|
||||
@@ -1025,9 +1029,24 @@ static int cdcacm_bind(FAR struct usbdevclass_driver_s *driver,
|
||||
reqcontainer->req->callback = cdcacm_rdcomplete;
|
||||
}
|
||||
|
||||
/* Pre-allocate write request containers and put in a free list */
|
||||
/* Pre-allocate write request containers and put in a free list.
|
||||
* The buffer size should be larger than a full packet. Otherwise,
|
||||
* we will send a bogus null packet at the end of each packet.
|
||||
*
|
||||
* Pick the larger of the max packet size and the configured request
|
||||
* size.
|
||||
*/
|
||||
|
||||
reqlen = MAX(CONFIG_CDCACM_BULKIN_REQLEN, priv->epbulkin->maxpacket);
|
||||
#ifdef CONFIG_USBDEV_DUALSPEED
|
||||
reqlen = CONFIG_CDCACM_EPBULKIN_HSSIZE;
|
||||
#else
|
||||
reqlen = CONFIG_CDCACM_EPBULKIN_FSSIZE;
|
||||
#endif
|
||||
|
||||
if (CONFIG_CDCACM_BULKIN_REQLEN > reqlen)
|
||||
{
|
||||
reqlen = CONFIG_CDCACM_BULKIN_REQLEN;
|
||||
}
|
||||
|
||||
for (i = 0; i < CONFIG_CDCACM_NWRREQS; i++)
|
||||
{
|
||||
|
||||
+25
-6
@@ -472,7 +472,7 @@ static const struct usb_epdesc_s g_epbulkoutdesc =
|
||||
USB_DESC_TYPE_ENDPOINT, /* type */
|
||||
PL2303_EPOUTBULK_ADDR, /* addr */
|
||||
PL2303_EPOUTBULK_ATTR, /* attr */
|
||||
{ LSBYTE(64), MSBYTE(64) }, /* maxpacket -- might change to 512*/
|
||||
{ LSBYTE(64), MSBYTE(64) }, /* maxpacket -- might change to 512 */
|
||||
0 /* interval */
|
||||
};
|
||||
|
||||
@@ -482,7 +482,7 @@ static const struct usb_epdesc_s g_epbulkindesc =
|
||||
USB_DESC_TYPE_ENDPOINT, /* type */
|
||||
PL2303_EPINBULK_ADDR, /* addr */
|
||||
PL2303_EPINBULK_ATTR, /* attr */
|
||||
{ LSBYTE(64), MSBYTE(64) }, /* maxpacket -- might change to 512*/
|
||||
{ LSBYTE(64), MSBYTE(64) }, /* maxpacket -- might change to 512 */
|
||||
0 /* interval */
|
||||
};
|
||||
|
||||
@@ -1381,9 +1381,13 @@ static int usbclass_bind(FAR struct usbdevclass_driver_s *driver,
|
||||
}
|
||||
priv->epbulkout->priv = priv;
|
||||
|
||||
/* Pre-allocate read requests */
|
||||
/* Pre-allocate read requests. The buffer size is one full packet. */
|
||||
|
||||
reqlen = priv->epbulkout->maxpacket;
|
||||
#ifdef CONFIG_USBDEV_DUALSPEED
|
||||
reqlen = 512;
|
||||
#else
|
||||
reqlen = 64;
|
||||
#endif
|
||||
|
||||
for (i = 0; i < CONFIG_PL2303_NRDREQS; i++)
|
||||
{
|
||||
@@ -1400,9 +1404,24 @@ static int usbclass_bind(FAR struct usbdevclass_driver_s *driver,
|
||||
reqcontainer->req->callback = usbclass_rdcomplete;
|
||||
}
|
||||
|
||||
/* Pre-allocate write request containers and put in a free list */
|
||||
/* Pre-allocate write request containers and put in a free list.
|
||||
* The buffer size should be larger than a full packet. Otherwise,
|
||||
* we will send a bogus null packet at the end of each packet.
|
||||
*
|
||||
* Pick the larger of the max packet size and the configured request
|
||||
* size.
|
||||
*/
|
||||
|
||||
reqlen = max(CONFIG_PL2303_BULKIN_REQLEN, priv->epbulkin->maxpacket);
|
||||
#ifdef CONFIG_USBDEV_DUALSPEED
|
||||
reqlen = 512;
|
||||
#else
|
||||
reqlen = 64;
|
||||
#endif
|
||||
|
||||
if (CONFIG_PL2303_BULKIN_REQLEN > reqlen)
|
||||
{
|
||||
reqlen = CONFIG_CDCACM_BULKIN_REQLEN;
|
||||
}
|
||||
|
||||
for (i = 0; i < CONFIG_PL2303_NWRREQS; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user