lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <BYAPR07MB538127FB75FE24832DC1BBD6DD869@BYAPR07MB5381.namprd07.prod.outlook.com>
Date:   Wed, 22 Mar 2023 07:27:36 +0000
From:   Pawel Laszczak <pawell@...ence.com>
To:     Frank Li <Frank.Li@....com>, Peter Chen <peter.chen@...nel.org>,
        Roger Quadros <rogerq@...nel.org>,
        Aswath Govindraju <a-govindraju@...com>,
        Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        "open list:CADENCE USB3 DRD IP DRIVER" <linux-usb@...r.kernel.org>,
        open list <linux-kernel@...r.kernel.org>
CC:     "imx@...ts.linux.dev" <imx@...ts.linux.dev>
Subject: RE: [PATCH 1/1] usb: cdns3: fix super speed mass storage gadget
 device failure at imx8qm

>
>The mass storage gadget has one IN and one OUT endpoint. The below (Fixes)
>commit aimed to utilize all hardware FIFO to support composited gadget
>devices. This resulted in an ep_buf_size of 15 when a single gadget was
>enabled, such as the mass storage gadget.
>
>However, it was found that there are unknown limitations on the imx8qm and
>imx8qxp B0 platforms. The device would fail to work if ep_buf_size exceeded
>9.
>
>To resolve this issue, this patch reverts to the old settings used before the
>below commit for the imx8qm and imx8qxp B0 platforms.
>
>Fixes: dce49449e04f ("usb: cdns3: allocate TX FIFO size according to
>composite EP number")
>
>Signed-off-by: Frank Li <Frank.Li@....com>
>---
>
>I hope cdns engineer, such as pawell@...ence.com help identfy the root
>cause.
>Look like old version ip use more memory then what ep_cfg show.
>
> drivers/usb/cdns3/cdns3-gadget.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
>diff --git a/drivers/usb/cdns3/cdns3-gadget.c b/drivers/usb/cdns3/cdns3-
>gadget.c
>index 5adcb349718c..497c8e87dabf 100644
>--- a/drivers/usb/cdns3/cdns3-gadget.c
>+++ b/drivers/usb/cdns3/cdns3-gadget.c
>@@ -3005,6 +3005,17 @@ static int cdns3_gadget_check_config(struct
>usb_gadget *gadget)
> 	priv_dev->ep_buf_size = priv_dev->ep_iso_burst =
> 			(priv_dev->onchip_buffers - 2) / (n_in + 1);
>
>+	/*
>+	 * There are unknown hardware limition: when work at super speed
>mode,
>+	 * ep_buffer_size can't bigger than 9 for one IN and OUT case at
>i.MX8QM
>+	 * and i.MX8QXP B0, which report there are 32k memory.
>+	 * Rollback to original settings for the these chipes.
>+	 */
>+	if (priv_dev->dev_ver < DEV_VER_V2) {
>+		priv_dev->ep_buf_size = min_t(u8, priv_dev->ep_buf_size, 4);
>+		priv_dev->ep_iso_burst = min_t(u8, priv_dev->ep_iso_burst,
>3);
>+	}
>+
> 	return 0;
> }

I'm not sure whether you have 32KB. I remember that you had a Soc which have only 18KB on-chip memory
and value in usb_cap2 was incorrect. 
It was the reason why the on-chip-buff-size property has been added to driver.

Please confirm that you have 32KB, then I will recreate such test on my testing board. 

Regards,
Pawel
>
>--
>2.34.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ