* [PATCH V4 1/5] dt-bindings: display: bridge: it66121: Add compatible string for IT66122
2025-08-19 13:08 [PATCH V4 0/5] drm/bridge: it66121: Add initial it66122 support Nishanth Menon
@ 2025-08-19 13:08 ` Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 2/5] drm/bridge: it66121: Drop ftrace like dev_dbg() prints Nishanth Menon
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2025-08-19 13:08 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, David Airlie,
Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
afd, tomi.valkeinen, devarsht, dmitry.baryshkov, Nishanth Menon,
Krzysztof Kozlowski
Add a new ite,it66122 compatible string to the IT66121 binding
documentation, since the two chips are practically same except for id
register difference.
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Andrew Davis <afd@ti.com>
---
Changes in V4:
* Picked Andrew's review
V3: https://lore.kernel.org/all/20250815034105.1276548-2-nm@ti.com/
V2: https://lore.kernel.org/all/20250813204106.580141-2-nm@ti.com/
V1: https://lore.kernel.org/all/20250813190835.344563-2-nm@ti.com/
.../devicetree/bindings/display/bridge/ite,it66121.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml b/Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
index a7eb2603691f..c99b67f0bb73 100644
--- a/Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
+++ b/Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
@@ -19,6 +19,7 @@ properties:
compatible:
enum:
- ite,it66121
+ - ite,it66122
- ite,it6610
reg:
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH V4 2/5] drm/bridge: it66121: Drop ftrace like dev_dbg() prints
2025-08-19 13:08 [PATCH V4 0/5] drm/bridge: it66121: Add initial it66122 support Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 1/5] dt-bindings: display: bridge: it66121: Add compatible string for IT66122 Nishanth Menon
@ 2025-08-19 13:08 ` Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 3/5] drm/bridge: it66121: Sort the compatibles Nishanth Menon
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2025-08-19 13:08 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, David Airlie,
Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
afd, tomi.valkeinen, devarsht, dmitry.baryshkov, Nishanth Menon
Drop the ftrace like dev_dbg() that checkpatch --strict complains about:
WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);
WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);
WARNING: Unnecessary ftrace-like logging - prefer using ftrace
+ dev_dbg(dev, "%s\n", __func__);
Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Andrew Davis <afd@ti.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
Changes in V4:
* Picked Reviewed-by Tags
V3: https://lore.kernel.org/all/20250815034105.1276548-3-nm@ti.com/
drivers/gpu/drm/bridge/ite-it66121.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
index aa7b1dcc5d70..9b8ed2fae2f4 100644
--- a/drivers/gpu/drm/bridge/ite-it66121.c
+++ b/drivers/gpu/drm/bridge/ite-it66121.c
@@ -1384,8 +1384,6 @@ static int it66121_audio_startup(struct device *dev, void *data)
int ret;
struct it66121_ctx *ctx = dev_get_drvdata(dev);
- dev_dbg(dev, "%s\n", __func__);
-
mutex_lock(&ctx->lock);
ret = it661221_audio_output_enable(ctx, true);
if (ret)
@@ -1401,8 +1399,6 @@ static void it66121_audio_shutdown(struct device *dev, void *data)
int ret;
struct it66121_ctx *ctx = dev_get_drvdata(dev);
- dev_dbg(dev, "%s\n", __func__);
-
mutex_lock(&ctx->lock);
ret = it661221_audio_output_enable(ctx, false);
if (ret)
@@ -1479,8 +1475,6 @@ static int it66121_audio_codec_init(struct it66121_ctx *ctx, struct device *dev)
.no_capture_mute = 1,
};
- dev_dbg(dev, "%s\n", __func__);
-
if (!of_property_present(dev->of_node, "#sound-dai-cells")) {
dev_info(dev, "No \"#sound-dai-cells\", no audio\n");
return 0;
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH V4 3/5] drm/bridge: it66121: Sort the compatibles
2025-08-19 13:08 [PATCH V4 0/5] drm/bridge: it66121: Add initial it66122 support Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 1/5] dt-bindings: display: bridge: it66121: Add compatible string for IT66122 Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 2/5] drm/bridge: it66121: Drop ftrace like dev_dbg() prints Nishanth Menon
@ 2025-08-19 13:08 ` Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 4/5] drm/bridge: it66121: Use vid/pid to detect the type of chip Nishanth Menon
2025-08-19 13:08 ` [PATCH V4 5/5] drm/bridge: it66121: Add minimal it66122 support Nishanth Menon
4 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2025-08-19 13:08 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, David Airlie,
Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
afd, tomi.valkeinen, devarsht, dmitry.baryshkov, Nishanth Menon
Keep the compatibles sorted alpha-numerically.
Signed-off-by: Nishanth Menon <nm@ti.com>
---
Changes in V4:
- New patch based on Dmitry's review comment
drivers/gpu/drm/bridge/ite-it66121.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
index 9b8ed2fae2f4..cd74f3966560 100644
--- a/drivers/gpu/drm/bridge/ite-it66121.c
+++ b/drivers/gpu/drm/bridge/ite-it66121.c
@@ -1619,15 +1619,15 @@ static const struct it66121_chip_info it6610_chip_info = {
};
static const struct of_device_id it66121_dt_match[] = {
- { .compatible = "ite,it66121", &it66121_chip_info },
{ .compatible = "ite,it6610", &it6610_chip_info },
+ { .compatible = "ite,it66121", &it66121_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 },
+ { "it6610", (kernel_ulong_t)&it6610_chip_info },
+ { "it66121", (kernel_ulong_t)&it66121_chip_info },
{ }
};
MODULE_DEVICE_TABLE(i2c, it66121_id);
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH V4 4/5] drm/bridge: it66121: Use vid/pid to detect the type of chip
2025-08-19 13:08 [PATCH V4 0/5] drm/bridge: it66121: Add initial it66122 support Nishanth Menon
` (2 preceding siblings ...)
2025-08-19 13:08 ` [PATCH V4 3/5] drm/bridge: it66121: Sort the compatibles Nishanth Menon
@ 2025-08-19 13:08 ` Nishanth Menon
2025-08-19 14:44 ` Andrew Davis
2025-08-19 13:08 ` [PATCH V4 5/5] drm/bridge: it66121: Add minimal it66122 support Nishanth Menon
4 siblings, 1 reply; 7+ messages in thread
From: Nishanth Menon @ 2025-08-19 13:08 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, David Airlie,
Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
afd, tomi.valkeinen, devarsht, dmitry.baryshkov, Nishanth Menon
The driver knows exactly which version of the chip is present since
the vid/pid is used to enforce a compatibility. Given that some
devices like IT66121 has potentially been replaced with IT66122 mid
production for many platforms, it makes no sense to use the vid/pid
as an enforcement for compatibility. Instead, detect the ID of the
actual chip in use by matching the corresponding vid/pid and drop the
compatible specific lookup table.
Signed-off-by: Nishanth Menon <nm@ti.com>
---
Changes in V4:
* Dropped the formatting change
* Dropped the data lookup from match.
* Have not picked Andrew's review since the patch was modified
V3: https://lore.kernel.org/all/20250815034105.1276548-4-nm@ti.com/
V2: https://lore.kernel.org/all/20250813204106.580141-3-nm@ti.com/
drivers/gpu/drm/bridge/ite-it66121.c | 56 ++++++++++++++--------------
1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
index cd74f3966560..a1b0f8a8f3e8 100644
--- a/drivers/gpu/drm/bridge/ite-it66121.c
+++ b/drivers/gpu/drm/bridge/ite-it66121.c
@@ -312,7 +312,7 @@ struct it66121_ctx {
u8 swl;
bool auto_cts;
} audio;
- const struct it66121_chip_info *info;
+ enum chip_id id;
};
static const struct regmap_range_cfg it66121_regmap_banks[] = {
@@ -402,7 +402,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
if (ret)
return ret;
- if (ctx->info->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121) {
ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
IT66121_AFE_IP_EC1, 0);
if (ret)
@@ -428,7 +428,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
if (ret)
return ret;
- if (ctx->info->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121) {
ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
IT66121_AFE_IP_EC1,
IT66121_AFE_IP_EC1);
@@ -449,7 +449,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
if (ret)
return ret;
- if (ctx->info->id == ID_IT6610) {
+ if (ctx->id == ID_IT6610) {
ret = regmap_write_bits(ctx->regmap, IT66121_AFE_XP_REG,
IT6610_AFE_XP_BYPASS,
IT6610_AFE_XP_BYPASS);
@@ -599,7 +599,7 @@ static int it66121_bridge_attach(struct drm_bridge *bridge,
if (ret)
return ret;
- if (ctx->info->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121) {
ret = regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_RCLK, 0);
if (ret)
@@ -748,7 +748,7 @@ static int it66121_bridge_check(struct drm_bridge *bridge,
{
struct it66121_ctx *ctx = container_of(bridge, struct it66121_ctx, bridge);
- if (ctx->info->id == ID_IT6610) {
+ if (ctx->id == ID_IT6610) {
/* The IT6610 only supports these settings */
bridge_state->input_bus_cfg.flags |= DRM_BUS_FLAG_DE_HIGH |
DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE;
@@ -802,7 +802,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
if (regmap_write(ctx->regmap, IT66121_HDMI_MODE_REG, IT66121_HDMI_MODE_HDMI))
goto unlock;
- if (ctx->info->id == ID_IT66121 &&
+ if (ctx->id == ID_IT66121 &&
regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_TXCLK,
IT66121_CLK_BANK_PWROFF_TXCLK)) {
@@ -815,7 +815,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
if (it66121_configure_afe(ctx, adjusted_mode))
goto unlock;
- if (ctx->info->id == ID_IT66121 &&
+ if (ctx->id == ID_IT66121 &&
regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_TXCLK, 0)) {
goto unlock;
@@ -1498,6 +1498,12 @@ static const char * const it66121_supplies[] = {
"vcn33", "vcn18", "vrf12"
};
+static const struct it66121_chip_info it66xx_chip_info[] = {
+ {.id = ID_IT6610, .vid = 0xca00, .pid = 0x0611 },
+ {.id = ID_IT66121, .vid = 0x4954, .pid = 0x0612 },
+ { }
+};
+
static int it66121_probe(struct i2c_client *client)
{
u32 revision_id, vendor_ids[2] = { 0 }, device_ids[2] = { 0 };
@@ -1505,6 +1511,7 @@ static int it66121_probe(struct i2c_client *client)
int ret;
struct it66121_ctx *ctx;
struct device *dev = &client->dev;
+ const struct it66121_chip_info *chip_info;
if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
dev_err(dev, "I2C check functionality failed.\n");
@@ -1522,7 +1529,6 @@ static int it66121_probe(struct i2c_client *client)
ctx->dev = dev;
ctx->client = client;
- ctx->info = i2c_get_match_data(client);
of_property_read_u32(ep, "bus-width", &ctx->bus_width);
of_node_put(ep);
@@ -1568,11 +1574,17 @@ static int it66121_probe(struct i2c_client *client)
revision_id = FIELD_GET(IT66121_REVISION_MASK, device_ids[1]);
device_ids[1] &= IT66121_DEVICE_ID1_MASK;
- if ((vendor_ids[1] << 8 | vendor_ids[0]) != ctx->info->vid ||
- (device_ids[1] << 8 | device_ids[0]) != ctx->info->pid) {
- return -ENODEV;
+ for (chip_info = it66xx_chip_info; chip_info->vid; chip_info++) {
+ if ((vendor_ids[1] << 8 | vendor_ids[0]) == chip_info->vid &&
+ (device_ids[1] << 8 | device_ids[0]) == chip_info->pid) {
+ ctx->id = chip_info->id;
+ break;
+ }
}
+ if (!chip_info->vid)
+ return -ENODEV;
+
ctx->bridge.of_node = dev->of_node;
ctx->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
ctx->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID;
@@ -1606,28 +1618,16 @@ static void it66121_remove(struct i2c_client *client)
mutex_destroy(&ctx->lock);
}
-static const struct it66121_chip_info it66121_chip_info = {
- .id = ID_IT66121,
- .vid = 0x4954,
- .pid = 0x0612,
-};
-
-static const struct it66121_chip_info it6610_chip_info = {
- .id = ID_IT6610,
- .vid = 0xca00,
- .pid = 0x0611,
-};
-
static const struct of_device_id it66121_dt_match[] = {
- { .compatible = "ite,it6610", &it6610_chip_info },
- { .compatible = "ite,it66121", &it66121_chip_info },
+ { .compatible = "ite,it6610" },
+ { .compatible = "ite,it66121" },
{ }
};
MODULE_DEVICE_TABLE(of, it66121_dt_match);
static const struct i2c_device_id it66121_id[] = {
- { "it6610", (kernel_ulong_t)&it6610_chip_info },
- { "it66121", (kernel_ulong_t)&it66121_chip_info },
+ { .name = "it6610" },
+ { .name = "it66121" },
{ }
};
MODULE_DEVICE_TABLE(i2c, it66121_id);
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH V4 4/5] drm/bridge: it66121: Use vid/pid to detect the type of chip
2025-08-19 13:08 ` [PATCH V4 4/5] drm/bridge: it66121: Use vid/pid to detect the type of chip Nishanth Menon
@ 2025-08-19 14:44 ` Andrew Davis
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Davis @ 2025-08-19 14:44 UTC (permalink / raw)
To: Nishanth Menon, Conor Dooley, Krzysztof Kozlowski, Rob Herring,
David Airlie, Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
tomi.valkeinen, devarsht, dmitry.baryshkov
On 8/19/25 8:08 AM, Nishanth Menon wrote:
> The driver knows exactly which version of the chip is present since
> the vid/pid is used to enforce a compatibility. Given that some
> devices like IT66121 has potentially been replaced with IT66122 mid
> production for many platforms, it makes no sense to use the vid/pid
> as an enforcement for compatibility. Instead, detect the ID of the
> actual chip in use by matching the corresponding vid/pid and drop the
> compatible specific lookup table.
>
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
> Changes in V4:
> * Dropped the formatting change
> * Dropped the data lookup from match.
> * Have not picked Andrew's review since the patch was modified
>
> V3: https://lore.kernel.org/all/20250815034105.1276548-4-nm@ti.com/
> V2: https://lore.kernel.org/all/20250813204106.580141-3-nm@ti.com/
>
> drivers/gpu/drm/bridge/ite-it66121.c | 56 ++++++++++++++--------------
> 1 file changed, 28 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
> index cd74f3966560..a1b0f8a8f3e8 100644
> --- a/drivers/gpu/drm/bridge/ite-it66121.c
> +++ b/drivers/gpu/drm/bridge/ite-it66121.c
> @@ -312,7 +312,7 @@ struct it66121_ctx {
> u8 swl;
> bool auto_cts;
> } audio;
> - const struct it66121_chip_info *info;
> + enum chip_id id;
> };
>
> static const struct regmap_range_cfg it66121_regmap_banks[] = {
> @@ -402,7 +402,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
> if (ret)
> return ret;
>
> - if (ctx->info->id == ID_IT66121) {
> + if (ctx->id == ID_IT66121) {
> ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
> IT66121_AFE_IP_EC1, 0);
> if (ret)
> @@ -428,7 +428,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
> if (ret)
> return ret;
>
> - if (ctx->info->id == ID_IT66121) {
> + if (ctx->id == ID_IT66121) {
> ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
> IT66121_AFE_IP_EC1,
> IT66121_AFE_IP_EC1);
> @@ -449,7 +449,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
> if (ret)
> return ret;
>
> - if (ctx->info->id == ID_IT6610) {
> + if (ctx->id == ID_IT6610) {
> ret = regmap_write_bits(ctx->regmap, IT66121_AFE_XP_REG,
> IT6610_AFE_XP_BYPASS,
> IT6610_AFE_XP_BYPASS);
> @@ -599,7 +599,7 @@ static int it66121_bridge_attach(struct drm_bridge *bridge,
> if (ret)
> return ret;
>
> - if (ctx->info->id == ID_IT66121) {
> + if (ctx->id == ID_IT66121) {
> ret = regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
> IT66121_CLK_BANK_PWROFF_RCLK, 0);
> if (ret)
> @@ -748,7 +748,7 @@ static int it66121_bridge_check(struct drm_bridge *bridge,
> {
> struct it66121_ctx *ctx = container_of(bridge, struct it66121_ctx, bridge);
>
> - if (ctx->info->id == ID_IT6610) {
> + if (ctx->id == ID_IT6610) {
> /* The IT6610 only supports these settings */
> bridge_state->input_bus_cfg.flags |= DRM_BUS_FLAG_DE_HIGH |
> DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE;
> @@ -802,7 +802,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
> if (regmap_write(ctx->regmap, IT66121_HDMI_MODE_REG, IT66121_HDMI_MODE_HDMI))
> goto unlock;
>
> - if (ctx->info->id == ID_IT66121 &&
> + if (ctx->id == ID_IT66121 &&
> regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
> IT66121_CLK_BANK_PWROFF_TXCLK,
> IT66121_CLK_BANK_PWROFF_TXCLK)) {
> @@ -815,7 +815,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
> if (it66121_configure_afe(ctx, adjusted_mode))
> goto unlock;
>
> - if (ctx->info->id == ID_IT66121 &&
> + if (ctx->id == ID_IT66121 &&
> regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
> IT66121_CLK_BANK_PWROFF_TXCLK, 0)) {
> goto unlock;
> @@ -1498,6 +1498,12 @@ static const char * const it66121_supplies[] = {
> "vcn33", "vcn18", "vrf12"
> };
>
> +static const struct it66121_chip_info it66xx_chip_info[] = {
> + {.id = ID_IT6610, .vid = 0xca00, .pid = 0x0611 },
> + {.id = ID_IT66121, .vid = 0x4954, .pid = 0x0612 },
> + { }
> +};
> +
> static int it66121_probe(struct i2c_client *client)
> {
> u32 revision_id, vendor_ids[2] = { 0 }, device_ids[2] = { 0 };
> @@ -1505,6 +1511,7 @@ static int it66121_probe(struct i2c_client *client)
> int ret;
> struct it66121_ctx *ctx;
> struct device *dev = &client->dev;
> + const struct it66121_chip_info *chip_info;
>
> if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
> dev_err(dev, "I2C check functionality failed.\n");
> @@ -1522,7 +1529,6 @@ static int it66121_probe(struct i2c_client *client)
>
> ctx->dev = dev;
> ctx->client = client;
> - ctx->info = i2c_get_match_data(client);
>
> of_property_read_u32(ep, "bus-width", &ctx->bus_width);
> of_node_put(ep);
> @@ -1568,11 +1574,17 @@ static int it66121_probe(struct i2c_client *client)
> revision_id = FIELD_GET(IT66121_REVISION_MASK, device_ids[1]);
> device_ids[1] &= IT66121_DEVICE_ID1_MASK;
>
> - if ((vendor_ids[1] << 8 | vendor_ids[0]) != ctx->info->vid ||
> - (device_ids[1] << 8 | device_ids[0]) != ctx->info->pid) {
> - return -ENODEV;
> + for (chip_info = it66xx_chip_info; chip_info->vid; chip_info++) {
Relying on a null entry bugs me, here you could just use
the length of the table and remove the null entry:
for (i = 0; i < ARRAY_SIZE(it66xx_chip_info); i++) {
chip_info = &it66xx_chip_info[i];
...
Either way,
Reviewed-by: Andrew Davis <afd@ti.com>
> + if ((vendor_ids[1] << 8 | vendor_ids[0]) == chip_info->vid &&
> + (device_ids[1] << 8 | device_ids[0]) == chip_info->pid) {
> + ctx->id = chip_info->id;
> + break;
> + }
> }
>
> + if (!chip_info->vid)
> + return -ENODEV;
> +
> ctx->bridge.of_node = dev->of_node;
> ctx->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
> ctx->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID;
> @@ -1606,28 +1618,16 @@ static void it66121_remove(struct i2c_client *client)
> mutex_destroy(&ctx->lock);
> }
>
> -static const struct it66121_chip_info it66121_chip_info = {
> - .id = ID_IT66121,
> - .vid = 0x4954,
> - .pid = 0x0612,
> -};
> -
> -static const struct it66121_chip_info it6610_chip_info = {
> - .id = ID_IT6610,
> - .vid = 0xca00,
> - .pid = 0x0611,
> -};
> -
> static const struct of_device_id it66121_dt_match[] = {
> - { .compatible = "ite,it6610", &it6610_chip_info },
> - { .compatible = "ite,it66121", &it66121_chip_info },
> + { .compatible = "ite,it6610" },
> + { .compatible = "ite,it66121" },
> { }
> };
> MODULE_DEVICE_TABLE(of, it66121_dt_match);
>
> static const struct i2c_device_id it66121_id[] = {
> - { "it6610", (kernel_ulong_t)&it6610_chip_info },
> - { "it66121", (kernel_ulong_t)&it66121_chip_info },
> + { .name = "it6610" },
> + { .name = "it66121" },
> { }
> };
> MODULE_DEVICE_TABLE(i2c, it66121_id);
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH V4 5/5] drm/bridge: it66121: Add minimal it66122 support
2025-08-19 13:08 [PATCH V4 0/5] drm/bridge: it66121: Add initial it66122 support Nishanth Menon
` (3 preceding siblings ...)
2025-08-19 13:08 ` [PATCH V4 4/5] drm/bridge: it66121: Use vid/pid to detect the type of chip Nishanth Menon
@ 2025-08-19 13:08 ` Nishanth Menon
4 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2025-08-19 13:08 UTC (permalink / raw)
To: Conor Dooley, Krzysztof Kozlowski, Rob Herring, David Airlie,
Maxime Ripard, Laurent Pinchart, Neil Armstrong
Cc: linux-kernel, devicetree, dri-devel, Robert Nelson, Jason Kridner,
afd, tomi.valkeinen, devarsht, dmitry.baryshkov, Nishanth Menon
The IT66122 is a pin compatible replacement for the IT66122. Based on
empirical testing, the new device looks to be compatible with IT66121.
However due to a lack of public data sheet at this time beyond overall
feature list[1] (which seems to add additional features vs ITT66121),
it is hard to determine that additional register operations required
to enable additional features.
So, introduce the device as a new compatible that we will detect based
on vid/pid match, with explicit id that can be used to extend the
driver capability as information becomes available later on.
[1] https://www.ite.com.tw/en/product/cate1/IT66122
Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Andrew Davis <afd@ti.com>
---
Changes in V4:
* just rebase
* Picked Andrew's review
V3: https://lore.kernel.org/all/20250815034105.1276548-5-nm@ti.com/
V2: https://lore.kernel.org/all/20250813204106.580141-4-nm@ti.com/
drivers/gpu/drm/bridge/ite-it66121.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
index a1b0f8a8f3e8..fd71609a804e 100644
--- a/drivers/gpu/drm/bridge/ite-it66121.c
+++ b/drivers/gpu/drm/bridge/ite-it66121.c
@@ -287,6 +287,7 @@
enum chip_id {
ID_IT6610,
ID_IT66121,
+ ID_IT66122,
};
struct it66121_chip_info {
@@ -402,7 +403,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
if (ret)
return ret;
- if (ctx->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121 || ctx->id == ID_IT66122) {
ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
IT66121_AFE_IP_EC1, 0);
if (ret)
@@ -428,7 +429,7 @@ static int it66121_configure_afe(struct it66121_ctx *ctx,
if (ret)
return ret;
- if (ctx->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121 || ctx->id == ID_IT66122) {
ret = regmap_write_bits(ctx->regmap, IT66121_AFE_IP_REG,
IT66121_AFE_IP_EC1,
IT66121_AFE_IP_EC1);
@@ -599,7 +600,7 @@ static int it66121_bridge_attach(struct drm_bridge *bridge,
if (ret)
return ret;
- if (ctx->id == ID_IT66121) {
+ if (ctx->id == ID_IT66121 || ctx->id == ID_IT66122) {
ret = regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_RCLK, 0);
if (ret)
@@ -802,7 +803,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
if (regmap_write(ctx->regmap, IT66121_HDMI_MODE_REG, IT66121_HDMI_MODE_HDMI))
goto unlock;
- if (ctx->id == ID_IT66121 &&
+ if ((ctx->id == ID_IT66121 || ctx->id == ID_IT66122) &&
regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_TXCLK,
IT66121_CLK_BANK_PWROFF_TXCLK)) {
@@ -815,7 +816,7 @@ void it66121_bridge_mode_set(struct drm_bridge *bridge,
if (it66121_configure_afe(ctx, adjusted_mode))
goto unlock;
- if (ctx->id == ID_IT66121 &&
+ if ((ctx->id == ID_IT66121 || ctx->id == ID_IT66122) &&
regmap_write_bits(ctx->regmap, IT66121_CLK_BANK_REG,
IT66121_CLK_BANK_PWROFF_TXCLK, 0)) {
goto unlock;
@@ -1501,6 +1502,7 @@ static const char * const it66121_supplies[] = {
static const struct it66121_chip_info it66xx_chip_info[] = {
{.id = ID_IT6610, .vid = 0xca00, .pid = 0x0611 },
{.id = ID_IT66121, .vid = 0x4954, .pid = 0x0612 },
+ {.id = ID_IT66122, .vid = 0x4954, .pid = 0x0622 },
{ }
};
@@ -1621,6 +1623,7 @@ static void it66121_remove(struct i2c_client *client)
static const struct of_device_id it66121_dt_match[] = {
{ .compatible = "ite,it6610" },
{ .compatible = "ite,it66121" },
+ { .compatible = "ite,it66122" },
{ }
};
MODULE_DEVICE_TABLE(of, it66121_dt_match);
@@ -1628,6 +1631,7 @@ MODULE_DEVICE_TABLE(of, it66121_dt_match);
static const struct i2c_device_id it66121_id[] = {
{ .name = "it6610" },
{ .name = "it66121" },
+ { .name = "it66122" },
{ }
};
MODULE_DEVICE_TABLE(i2c, it66121_id);
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread