* [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config
@ 2026-02-10 8:18 Leif Skunberg
0 siblings, 0 replies; 5+ messages in thread
From: Leif Skunberg @ 2026-02-10 8:18 UTC (permalink / raw)
To: sakari.ailus; +Cc: linux-media, linux-kernel, Leif Skunberg
Add the Omnivision OV5675 (ACPI HID OVTI5675) to the
ipu_supported_sensors[] table with a link frequency of 450 MHz.
This sensor is found in the Lenovo ThinkPad X1 Fold 16 Gen 1 behind
an Intel Vision Sensing Controller (IVSC). Without this entry the IPU
bridge does not create the software-node fwnode graph for the sensor,
preventing the camera from being enumerated.
Signed-off-by: Leif Skunberg <diamondback@cohunt.app>
---
drivers/media/pci/intel/ipu-bridge.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
index 4e579352a..aaad759dd 100644
--- a/drivers/media/pci/intel/ipu-bridge.c
+++ b/drivers/media/pci/intel/ipu-bridge.c
@@ -79,6 +79,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = {
IPU_SENSOR_CONFIG("OVTI02C1", 1, 400000000),
/* Omnivision OV02E10 */
IPU_SENSOR_CONFIG("OVTI02E1", 1, 360000000),
+ /* Omnivision OV5675 */
+ IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000),
/* Omnivision OV08A10 */
IPU_SENSOR_CONFIG("OVTI08A1", 1, 500000000),
/* Omnivision OV08x40 */
--
2.53.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config
@ 2026-02-10 8:55 Leif Skunberg
2026-02-10 9:36 ` Sakari Ailus
2026-02-10 9:45 ` [PATCH v2] " Leif Skunberg
0 siblings, 2 replies; 5+ messages in thread
From: Leif Skunberg @ 2026-02-10 8:55 UTC (permalink / raw)
To: sakari.ailus, bingbu.cao; +Cc: linux-media, linux-kernel, Leif Skunberg
Add the Omnivision OV5675 (ACPI HID OVTI5675) to the
ipu_supported_sensors[] table with a link frequency of 450 MHz.
This sensor is found in the Lenovo ThinkPad X1 Fold 16 Gen 1 behind
an Intel Vision Sensing Controller (IVSC). Without this entry the IPU
bridge does not create the software-node fwnode graph for the sensor,
preventing the camera from being enumerated.
Signed-off-by: Leif Skunberg <diamondback@cohunt.app>
---
drivers/media/pci/intel/ipu-bridge.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
index 4e579352a..aaad759dd 100644
--- a/drivers/media/pci/intel/ipu-bridge.c
+++ b/drivers/media/pci/intel/ipu-bridge.c
@@ -79,6 +79,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = {
IPU_SENSOR_CONFIG("OVTI02C1", 1, 400000000),
/* Omnivision OV02E10 */
IPU_SENSOR_CONFIG("OVTI02E1", 1, 360000000),
+ /* Omnivision OV5675 */
+ IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000),
/* Omnivision OV08A10 */
IPU_SENSOR_CONFIG("OVTI08A1", 1, 500000000),
/* Omnivision OV08x40 */
--
2.53.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config
2026-02-10 8:55 [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config Leif Skunberg
@ 2026-02-10 9:36 ` Sakari Ailus
2026-02-10 9:45 ` [PATCH v2] " Leif Skunberg
1 sibling, 0 replies; 5+ messages in thread
From: Sakari Ailus @ 2026-02-10 9:36 UTC (permalink / raw)
To: Leif Skunberg; +Cc: bingbu.cao, linux-media, linux-kernel
Hi Leif,
Thanks for the patch.
On Tue, Feb 10, 2026 at 09:55:58AM +0100, Leif Skunberg wrote:
> Add the Omnivision OV5675 (ACPI HID OVTI5675) to the
> ipu_supported_sensors[] table with a link frequency of 450 MHz.
>
> This sensor is found in the Lenovo ThinkPad X1 Fold 16 Gen 1 behind
> an Intel Vision Sensing Controller (IVSC). Without this entry the IPU
> bridge does not create the software-node fwnode graph for the sensor,
> preventing the camera from being enumerated.
>
> Signed-off-by: Leif Skunberg <diamondback@cohunt.app>
> ---
> drivers/media/pci/intel/ipu-bridge.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
> index 4e579352a..aaad759dd 100644
> --- a/drivers/media/pci/intel/ipu-bridge.c
> +++ b/drivers/media/pci/intel/ipu-bridge.c
> @@ -79,6 +79,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = {
> IPU_SENSOR_CONFIG("OVTI02C1", 1, 400000000),
> /* Omnivision OV02E10 */
> IPU_SENSOR_CONFIG("OVTI02E1", 1, 360000000),
> + /* Omnivision OV5675 */
> + IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000),
Could you order this alphabetically, please?
> /* Omnivision OV08A10 */
> IPU_SENSOR_CONFIG("OVTI08A1", 1, 500000000),
> /* Omnivision OV08x40 */
--
Kind regards,
Sakari Ailus
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] media: ipu-bridge: Add OV5675 sensor config
2026-02-10 8:55 [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config Leif Skunberg
2026-02-10 9:36 ` Sakari Ailus
@ 2026-02-10 9:45 ` Leif Skunberg
2026-02-10 13:33 ` johannes.goede
1 sibling, 1 reply; 5+ messages in thread
From: Leif Skunberg @ 2026-02-10 9:45 UTC (permalink / raw)
To: sakari.ailus, bingbu.cao; +Cc: linux-media, linux-kernel, Leif Skunberg
Add the Omnivision OV5675 (ACPI HID OVTI5675) to the
ipu_supported_sensors[] table with a link frequency of 450 MHz.
This sensor is found in the Lenovo ThinkPad X1 Fold 16 Gen 1 behind
an Intel Vision Sensing Controller (IVSC). Without this entry the IPU
bridge does not create the software-node fwnode graph for the sensor,
preventing the camera from being enumerated.
Signed-off-by: Leif Skunberg <diamondback@cohunt.app>
---
drivers/media/pci/intel/ipu-bridge.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
index 4e579352a..170cea847 100644
--- a/drivers/media/pci/intel/ipu-bridge.c
+++ b/drivers/media/pci/intel/ipu-bridge.c
@@ -88,6 +88,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = {
IPU_SENSOR_CONFIG("OVTIDB10", 1, 560000000),
/* Omnivision OV2680 */
IPU_SENSOR_CONFIG("OVTI2680", 1, 331200000),
+ /* Omnivision OV5675 */
+ IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000),
/* Omnivision OV8856 */
IPU_SENSOR_CONFIG("OVTI8856", 3, 180000000, 360000000, 720000000),
/* Toshiba T4KA3 */
--
2.53.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] media: ipu-bridge: Add OV5675 sensor config
2026-02-10 9:45 ` [PATCH v2] " Leif Skunberg
@ 2026-02-10 13:33 ` johannes.goede
0 siblings, 0 replies; 5+ messages in thread
From: johannes.goede @ 2026-02-10 13:33 UTC (permalink / raw)
To: Leif Skunberg, sakari.ailus, bingbu.cao; +Cc: linux-media, linux-kernel
Hi,
On 10-Feb-26 10:45, Leif Skunberg wrote:
> Add the Omnivision OV5675 (ACPI HID OVTI5675) to the
> ipu_supported_sensors[] table with a link frequency of 450 MHz.
>
> This sensor is found in the Lenovo ThinkPad X1 Fold 16 Gen 1 behind
> an Intel Vision Sensing Controller (IVSC). Without this entry the IPU
> bridge does not create the software-node fwnode graph for the sensor,
> preventing the camera from being enumerated.
>
> Signed-off-by: Leif Skunberg <diamondback@cohunt.app>
Thanks, patch looks good to me:
Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com>
Regards,
Hans
> ---
> drivers/media/pci/intel/ipu-bridge.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
> index 4e579352a..170cea847 100644
> --- a/drivers/media/pci/intel/ipu-bridge.c
> +++ b/drivers/media/pci/intel/ipu-bridge.c
> @@ -88,6 +88,8 @@ static const struct ipu_sensor_config ipu_supported_sensors[] = {
> IPU_SENSOR_CONFIG("OVTIDB10", 1, 560000000),
> /* Omnivision OV2680 */
> IPU_SENSOR_CONFIG("OVTI2680", 1, 331200000),
> + /* Omnivision OV5675 */
> + IPU_SENSOR_CONFIG("OVTI5675", 1, 450000000),
> /* Omnivision OV8856 */
> IPU_SENSOR_CONFIG("OVTI8856", 3, 180000000, 360000000, 720000000),
> /* Toshiba T4KA3 */
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-02-10 13:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-10 8:55 [PATCH 1/2] media: ipu-bridge: Add OV5675 sensor config Leif Skunberg
2026-02-10 9:36 ` Sakari Ailus
2026-02-10 9:45 ` [PATCH v2] " Leif Skunberg
2026-02-10 13:33 ` johannes.goede
-- strict thread matches above, loose matches on Subject: below --
2026-02-10 8:18 [PATCH 1/2] " Leif Skunberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox