You are not logged in.
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 camerasDMI Information:
sys_vendor: Dell Inc.
product_name: Latitude 5290 2-in-1While 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
does the lts kernel work?
I Have Linux Perl Can i Download Gnome???
Online
Nope, still the same dmesg output
Offline
Offline
Nope, thank you for the links tho, I will try to apply them to my system tomorrow, once the tablet charges.
Offline
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
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.
Offline
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