From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Biju Das <biju.das.jz@bp.renesas.com>
Cc: Neil Armstrong <neil.armstrong@linaro.org>,
Robert Foss <rfoss@kernel.org>,
Andrzej Hajda <andrzej.hajda@intel.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Jonas Karlman <jonas@kwiboo.se>,
Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Phong LE <ple@baylibre.com>,
dri-devel@lists.freedesktop.org,
linux-renesas-soc@vger.kernel.org,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Subject: Re: [PATCH v3 1/2] drm: bridge: it66121: Extend match support for OF tables
Date: Mon, 21 Aug 2023 15:30:15 +0300 [thread overview]
Message-ID: <20230821123015.GF10135@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20230818191817.340360-2-biju.das.jz@bp.renesas.com>
Hi Biju,
Thank you for the patch.
On Fri, Aug 18, 2023 at 08:18:16PM +0100, Biju Das wrote:
> The driver has OF match table, still it uses ID lookup table for
> retrieving match data. Currently the driver is working on the
> assumption that a I2C device registered via OF will always match a
> legacy I2C device ID. The correct approach is to have an OF device ID
> table using of_device_match_data() if the devices are registered via OF.
>
> Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
> v2->v3:
> * Removed fixes tag as nothing broken.
> * Added Rb tag from Andy.
> v2:
> * New patch.
> ---
> drivers/gpu/drm/bridge/ite-it66121.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
> index 466641c77fe9..ba95ad46e259 100644
> --- a/drivers/gpu/drm/bridge/ite-it66121.c
> +++ b/drivers/gpu/drm/bridge/ite-it66121.c
> @@ -1523,7 +1523,10 @@ static int it66121_probe(struct i2c_client *client)
>
> ctx->dev = dev;
> ctx->client = client;
> - ctx->info = (const struct it66121_chip_info *) id->driver_data;
> + if (dev_fwnode(&client->dev))
> + ctx->info = of_device_get_match_data(&client->dev);
> + else
> + ctx->info = (const struct it66121_chip_info *) id->driver_data;
>
> of_property_read_u32(ep, "bus-width", &ctx->bus_width);
> of_node_put(ep);
> @@ -1609,13 +1612,6 @@ static void it66121_remove(struct i2c_client *client)
> mutex_destroy(&ctx->lock);
> }
>
> -static const struct of_device_id it66121_dt_match[] = {
> - { .compatible = "ite,it66121" },
> - { .compatible = "ite,it6610" },
> - { }
> -};
> -MODULE_DEVICE_TABLE(of, it66121_dt_match);
> -
> static const struct it66121_chip_info it66121_chip_info = {
> .id = ID_IT66121,
> .vid = 0x4954,
> @@ -1628,6 +1624,13 @@ static const struct it66121_chip_info it6610_chip_info = {
> .pid = 0x0611,
> };
>
> +static const struct of_device_id it66121_dt_match[] = {
> + { .compatible = "ite,it66121", &it66121_chip_info },
> + { .compatible = "ite,it6610", &it6610_chip_info },
> + { }
> +};
> +MODULE_DEVICE_TABLE(of, it66121_dt_match);
> +
> static const struct i2c_device_id it66121_id[] = {
> { "it66121", (kernel_ulong_t) &it66121_chip_info },
> { "it6610", (kernel_ulong_t) &it6610_chip_info },
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2023-08-21 12:30 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-18 19:18 [PATCH v3 0/2] Match data improvements for it66121 driver Biju Das
2023-08-18 19:18 ` [PATCH v3 1/2] drm: bridge: it66121: Extend match support for OF tables Biju Das
2023-08-21 12:30 ` Laurent Pinchart [this message]
2023-08-18 19:18 ` [PATCH v3 2/2] drm: bridge: it66121: Simplify probe() Biju Das
2023-08-21 12:30 ` Laurent Pinchart
2023-09-05 14:20 ` [PATCH v3 0/2] Match data improvements for it66121 driver Robert Foss
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230821123015.GF10135@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=andrzej.hajda@intel.com \
--cc=biju.das.jz@bp.renesas.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=geert+renesas@glider.be \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=ple@baylibre.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=rfoss@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox