From patchwork Fri Mar 8 18:09:15 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 779137 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 5CD0E36D; Fri, 8 Mar 2024 18:09:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709921376; cv=none; b=P524bAlty+5B4J4TN7ZA4Qjd2Wq6E//EaVFl9eGHE9qGKszT3l2khEILGZ+YFnum+EuDsCpBZqQdNT9wAN0SVQo7NeRkre8D6+6QDTtUtmH6uuOIXS0yocBk9BNkKeSCaRr+3nmsEEyujlk9/u1yTsiTr8hehu5SFoT03SwiYpY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709921376; c=relaxed/simple; bh=aXymyymSYLuzBbeJcCp1m7Gd501leCKKmuIOTBAl+1A=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=VAjVMHNXhtajHya2pVXSofBlw7i3M++nAXsC6lUnM2+aL3zw0H351H0w7abKH0so5gWVuIGENgu1HDcts5NvhOCVkDMVKMNwQFx4uZ/LYpd9NT8Hc8/bmQ+Y4gqnxcyhWQyvDZkoOTrcR+oUE6+WRx9i9k04gG/OdKqHJ522ZqI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com; spf=pass smtp.mailfrom=bp.renesas.com; arc=none smtp.client-ip=210.160.252.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bp.renesas.com X-IronPort-AV: E=Sophos;i="6.07,110,1708354800"; d="scan'208";a="196951375" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 09 Mar 2024 03:09:26 +0900 Received: from localhost.localdomain (unknown [10.226.92.24]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id DE49340138F8; Sat, 9 Mar 2024 03:09:22 +0900 (JST) From: Biju Das To: Rob Herring , Krzysztof Kozlowski , Greg Kroah-Hartman , Conor Dooley Cc: Biju Das , Geert Uytterhoeven , Magnus Damm , Yoshihiro Shimoda , linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Prabhakar Mahadev Lad , Biju Das Subject: [PATCH 0/4] Fix USB pipe configuration for RZ/G2L Date: Fri, 8 Mar 2024 18:09:15 +0000 Message-Id: <20240308180919.6603-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-usb@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The USBHS IP found on RZ/G2L SoCs only has 10 pipe buffers compared to 16 pipe buffers on RZ/A2M. Document renesas,rzg2l-usbhs family compatible to handle this difference for RZ/G2L family SoCs. This patch series aims to fix the USB pipe configuration for RZ/G2L family SoCs. Biju Das (3): dt-bindings: usb: renesas,usbhs: Document RZ/G2L family compatible usb: renesas_usbhs: Remove trailing comma in the terminator entry for OF table arm64: dts: renesas: r9a07g0{43,44,54}: Update usbhs family compatible Huy Nguyen (1): usb: renesas_usbhs: Update usbhs pipe configuration for RZ/G2L family .../bindings/usb/renesas,usbhs.yaml | 6 +++- arch/arm64/boot/dts/renesas/r9a07g043.dtsi | 2 +- arch/arm64/boot/dts/renesas/r9a07g044.dtsi | 2 +- arch/arm64/boot/dts/renesas/r9a07g054.dtsi | 2 +- drivers/usb/renesas_usbhs/common.c | 33 +++++++++++++++++-- 5 files changed, 38 insertions(+), 7 deletions(-) Acked-by: Krzysztof Kozlowski