]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: atomisp: csi2-bridge: Add DMI quirk for OV5693 on Xiaomi Mipad2
authorHans de Goede <hdegoede@redhat.com>
Mon, 3 Jun 2024 13:20:57 +0000 (15:20 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Tue, 2 Jul 2024 19:23:14 +0000 (21:23 +0200)
The OV5693 the Xiaomi Mipad2 is used as a front facing sensor and
as such is connected to CsiPort 0, but the _DSM has CsiPort 1, add
a DMI quirk to override the wrong _DSM setting.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Andy Shevchenko <andy@kernel.org>
Link: https://lore.kernel.org/r/20240603132057.255917-5-hdegoede@redhat.com
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/staging/media/atomisp/pci/atomisp_csi2_bridge.c

index 2483eaeeac7332515eb20f76e3a78970e5f2c39d..d789d38ef689935e62852e1e67b0120fe9640613 100644 (file)
@@ -106,6 +106,12 @@ static struct gmin_cfg_var lenovo_ideapad_miix_310_vars[] = {
        {}
 };
 
+static struct gmin_cfg_var xiaomi_mipad2_vars[] = {
+       /* _DSM contains the wrong CsiPort for the front facing OV5693 sensor */
+       { "INT33BE:00", "CsiPort", "0" },
+       {}
+};
+
 static const struct dmi_system_id gmin_cfg_dmi_overrides[] = {
        {
                /* Lenovo Ideapad Miix 310 */
@@ -115,6 +121,14 @@ static const struct dmi_system_id gmin_cfg_dmi_overrides[] = {
                },
                .driver_data = lenovo_ideapad_miix_310_vars,
        },
+       {
+               /* Xiaomi Mipad2 */
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Xiaomi Inc"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Mipad2"),
+               },
+               .driver_data = xiaomi_mipad2_vars,
+       },
        {}
 };