You are not logged in.

#1 2026-09-11 22:06:26

kakto
Member
Registered: 2026-09-11
Posts: 4

[SOLVED] Dell latitude 5290 camera support

I am trying to get the integrated cameras working on a Dell Latitude 5290 2-in-1 (kernel 7.2.4).

Looking at dmesg the camera sensor fails to power up because the kernel module lacks the board data lookup table:

[    3.959837] int3472-tps68470 i2c-INT3472:05: TPS68470 REVID: 0x21
[    3.961187] int3472-tps68470 i2c-INT3472:05: error -ENODEV: No board-data found for this model
[    3.969148] ipu3-cio2 0000:00:14.3: Found supported sensor INT3479:00
[    3.969498] ipu3-cio2 0000:00:14.3: Connected 1 cameras

DMI Information:

sys_vendor: Dell Inc.
product_name: Latitude 5290 2-in-1

While I have been using arch for quite a while, I am still not fully confident in my knowledge/ability, so if I missed something please ask for more details.

If a patch is made/already exists I can test it.

Thanks.

Last edited by kakto (2026-09-12 01:10:03)

Offline

#2 2026-09-11 23:25:51

killertofus
Member
Registered: 2025-02-10
Posts: 242

Re: [SOLVED] Dell latitude 5290 camera support

does the lts kernel work?


I Have Linux Perl Can i Download Gnome???

Online

#3 2026-09-11 23:38:05

kakto
Member
Registered: 2026-09-11
Posts: 4

Re: [SOLVED] Dell latitude 5290 camera support

Nope, still the same dmesg output

Offline

#4 2026-09-11 23:46:14

loqs
Member
Registered: 2014-03-06
Posts: 19,086

Re: [SOLVED] Dell latitude 5290 camera support

Offline

#5 2026-09-12 00:00:03

kakto
Member
Registered: 2026-09-11
Posts: 4

Re: [SOLVED] Dell latitude 5290 camera support

Nope, thank you for the links tho, I will try to apply them to my system tomorrow, once the tablet charges.

Offline

#6 2026-09-12 00:04:33

loqs
Member
Registered: 2014-03-06
Posts: 19,086

Re: [SOLVED] Dell latitude 5290 camera support

Adjusted patch for 7.2.4:

diff --git a/drivers/platform/x86/intel/int3472/tps68470_board_data.c b/drivers/platform/x86/intel/int3472/tps68470_board_data.c
index c53542465fb4..413bc025c188 100644
--- a/drivers/platform/x86/intel/int3472/tps68470_board_data.c
+++ b/drivers/platform/x86/intel/int3472/tps68470_board_data.c
@@ -498,6 +498,13 @@ static const struct dmi_system_id int3472_tps68470_board_data_table[] = {
                },
                .driver_data = (void *)&dell_7212_tps68470_board_data,
        },
+       {
+               .matches = {
+                       DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude 5290 2-in-1"),
+               },
+               .driver_data = (void *)&dell_7212_tps68470_board_data,
+       },
        {
                .matches = {
                        DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Micro-Star International Co., Ltd."),

Offline

#7 2026-09-12 01:09:02

kakto
Member
Registered: 2026-09-11
Posts: 4

Re: [SOLVED] Dell latitude 5290 camera support

The patch in the provided repo works, though only for the front camera.

After a bit of searching I have also found another fix, but I would like to avoid recompiling the kernel if I can. I will post the link here in case someone else encounters this problem and wouldn't be against it.

https://github.com/vitovt/dell-5290-camera-kernel

Offline

#8 2026-09-12 01:20:11

loqs
Member
Registered: 2014-03-06
Posts: 19,086

Re: [SOLVED] Dell latitude 5290 camera support

kakto wrote:

After a bit of searching I have also found another fix, but I would like to avoid recompiling the kernel if I can.

Try and get the patch accepted upstream so you can avoid the recompile?

Does this repo contain patches for both cameras or one camera and another fix?

Offline

Board footer

Powered by FluxBB