From nobody Thu Feb 12 03:39:04 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7A7E3EE0213 for ; Wed, 13 Sep 2023 20:32:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232598AbjIMUc6 (ORCPT ); Wed, 13 Sep 2023 16:32:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51822 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232406AbjIMUcz (ORCPT ); Wed, 13 Sep 2023 16:32:55 -0400 Received: from mail.zeus03.de (www.zeus03.de [194.117.254.33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 066D01BCB for ; Wed, 13 Sep 2023 13:32:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=jI4vgN2cr90+cfd1v21EoE5zyLzqOPeYwv4iYO6HXXk=; b=HUXVlh Xv1Tn/Ax9P6M7vBd/x26viftksC9y0Z1h3d5C6IbU+FPVWSKgIzWyJszASmy4KoN 7l/8uCmgAKy/8/de0JTPK/hDNeEyFJXkKagtEvTdxlo5WQ5BhduE01tQT26+E80W g5W1DMqVvHQ+pEpyjCIc9+2IaD5tDOmlLzZKhbrnX+aSHjlVcEdGkZ2A2om0JTyU WGd299nXTI+B2HTs4gZ+0O65RsV2f0RgCS9oe1bQr1N1ImXLGS9L7jIWoFXG/uAR 8dvHMbuDkp8l7oXt1a0QuzVUJKZ9or87LZrDVQ6xC0DvkcHSq9j3BxhSPq6OwGyw MeNOCVq4ZvhmzkSA== Received: (qmail 715830 invoked from network); 13 Sep 2023 22:32:48 +0200 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 13 Sep 2023 22:32:48 +0200 X-UD-Smtp-Session: l3s3148p1@54ZtdkMFVo0ujnuS From: Wolfram Sang To: linux-renesas-soc@vger.kernel.org Cc: Yoshihiro Shimoda , Wolfram Sang , Andi Shyti , Geert Uytterhoeven , Magnus Damm , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] i2c: rcar: introduce Gen4 devices Date: Wed, 13 Sep 2023 22:32:40 +0200 Message-Id: <20230913203242.31505-2-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20230913203242.31505-1-wsa+renesas@sang-engineering.com> References: <20230913203242.31505-1-wsa+renesas@sang-engineering.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" So far, we treated Gen4 as Gen3. But we are soon adding FM+ as a Gen4 specific feature, so prepare the code for the new devtype. Signed-off-by: Wolfram Sang --- drivers/i2c/busses/i2c-rcar.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/busses/i2c-rcar.c b/drivers/i2c/busses/i2c-rcar.c index bc5c7a0050eb..5aa6fd777276 100644 --- a/drivers/i2c/busses/i2c-rcar.c +++ b/drivers/i2c/busses/i2c-rcar.c @@ -132,6 +132,7 @@ enum rcar_i2c_type { I2C_RCAR_GEN1, I2C_RCAR_GEN2, I2C_RCAR_GEN3, + I2C_RCAR_GEN4, }; =20 struct rcar_i2c_priv { @@ -429,8 +430,8 @@ static void rcar_i2c_cleanup_dma(struct rcar_i2c_priv *= priv, bool terminate) dma_unmap_single(chan->device->dev, sg_dma_address(&priv->sg), sg_dma_len(&priv->sg), priv->dma_direction); =20 - /* Gen3 can only do one RXDMA per transfer and we just completed it */ - if (priv->devtype =3D=3D I2C_RCAR_GEN3 && + /* Gen3+ can only do one RXDMA per transfer and we just completed it */ + if (priv->devtype >=3D I2C_RCAR_GEN3 && priv->dma_direction =3D=3D DMA_FROM_DEVICE) priv->flags |=3D ID_P_NO_RXDMA; =20 @@ -884,8 +885,8 @@ static int rcar_i2c_master_xfer(struct i2c_adapter *ada= p, if (ret < 0) goto out; =20 - /* Gen3 needs a reset before allowing RXDMA once */ - if (priv->devtype =3D=3D I2C_RCAR_GEN3) { + /* Gen3+ needs a reset. That also allows RXDMA once */ + if (priv->devtype >=3D I2C_RCAR_GEN3) { priv->flags &=3D ~ID_P_NO_RXDMA; ret =3D rcar_i2c_do_reset(priv); if (ret) @@ -1070,10 +1071,12 @@ static const struct of_device_id rcar_i2c_dt_ids[] = =3D { { .compatible =3D "renesas,i2c-r8a7794", .data =3D (void *)I2C_RCAR_GEN2 = }, { .compatible =3D "renesas,i2c-r8a7795", .data =3D (void *)I2C_RCAR_GEN3 = }, { .compatible =3D "renesas,i2c-r8a7796", .data =3D (void *)I2C_RCAR_GEN3 = }, + /* S4 has no FM+ bit */ + { .compatible =3D "renesas,i2c-r8a779f0", .data =3D (void *)I2C_RCAR_GEN3= }, { .compatible =3D "renesas,rcar-gen1-i2c", .data =3D (void *)I2C_RCAR_GEN= 1 }, { .compatible =3D "renesas,rcar-gen2-i2c", .data =3D (void *)I2C_RCAR_GEN= 2 }, { .compatible =3D "renesas,rcar-gen3-i2c", .data =3D (void *)I2C_RCAR_GEN= 3 }, - { .compatible =3D "renesas,rcar-gen4-i2c", .data =3D (void *)I2C_RCAR_GEN= 3 }, + { .compatible =3D "renesas,rcar-gen4-i2c", .data =3D (void *)I2C_RCAR_GEN= 4 }, {}, }; MODULE_DEVICE_TABLE(of, rcar_i2c_dt_ids); @@ -1140,7 +1143,7 @@ static int rcar_i2c_probe(struct platform_device *pde= v) irqhandler =3D rcar_i2c_gen2_irq; } =20 - if (priv->devtype =3D=3D I2C_RCAR_GEN3) { + if (priv->devtype >=3D I2C_RCAR_GEN3) { priv->rstc =3D devm_reset_control_get_exclusive(&pdev->dev, NULL); if (IS_ERR(priv->rstc)) return dev_err_probe(&pdev->dev, PTR_ERR(priv->rstc), --=20 2.35.1