[PATCH 2/2] media: ipu-bridge: add Himax HM1092 IR sensor

From: Jake Steinman

Date: Sun Jul 26 2026 - 17:45:14 EST


Add the Himax HM1092 monochrome infrared sensor to the supported
sensor list so that ipu-bridge builds the software fwnode graph
connecting it to the IPU CSI-2 receiver.

The sensor uses one CSI-2 data lane. The link frequency is 180480000,
which is the DDR clock; the vendor-stated 360960000 is the per-lane
bit rate and using it here leaves the receiver expecting twice the
line rate the sensor transmits, so no start-of-frame is ever
generated. See the sensor driver for the full explanation.

The list is kept sorted by ACPI HID, and HIMX1092 sorts before
HIMX11B1.

Signed-off-by: Jake Steinman <j@xxxxxxxxxxxxxxxx>
---
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 88581a4..481cfb5 100644
--- a/drivers/media/pci/intel/ipu-bridge.c
+++ b/drivers/media/pci/intel/ipu-bridge.c
@@ -49,6 +49,8 @@
* Please keep the list sorted by ACPI HID.
*/
static const struct ipu_sensor_config ipu_supported_sensors[] = {
+ /* Himax HM1092 */
+ IPU_SENSOR_CONFIG("HIMX1092", 1, 180480000),
/* Himax HM11B1 */
IPU_SENSOR_CONFIG("HIMX11B1", 1, 384000000),
/* Himax HM2170 */