mirror of https://gitee.com/openkylin/linux.git
usb: cdns3: gadget: sg_support is only for DEV_VER_V2 or above
The scatter buffer list support earlier than DEV_VER_V2 is not good enough, software can't know well about short transfer for it. Cc: Pawel Laszczak <pawell@cadence.com> Signed-off-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Felipe Balbi <balbi@kernel.org>
This commit is contained in:
parent
141e70fef4
commit
d6be7c94f9
|
@ -3159,7 +3159,6 @@ static int cdns3_gadget_start(struct cdns3 *cdns)
|
|||
priv_dev->gadget.speed = USB_SPEED_UNKNOWN;
|
||||
priv_dev->gadget.ops = &cdns3_gadget_ops;
|
||||
priv_dev->gadget.name = "usb-ss-gadget";
|
||||
priv_dev->gadget.sg_supported = 1;
|
||||
priv_dev->gadget.quirk_avoids_skb_reserve = 1;
|
||||
priv_dev->gadget.irq = cdns->dev_irq;
|
||||
|
||||
|
@ -3198,6 +3197,8 @@ static int cdns3_gadget_start(struct cdns3 *cdns)
|
|||
readl(&priv_dev->regs->usb_cap2));
|
||||
|
||||
priv_dev->dev_ver = GET_DEV_BASE_VERSION(priv_dev->dev_ver);
|
||||
if (priv_dev->dev_ver >= DEV_VER_V2)
|
||||
priv_dev->gadget.sg_supported = 1;
|
||||
|
||||
priv_dev->zlp_buf = kzalloc(CDNS3_EP_ZLP_BUF_SIZE, GFP_KERNEL);
|
||||
if (!priv_dev->zlp_buf) {
|
||||
|
|
Loading…
Reference in New Issue