0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-22 04:56:15 +00:00
openwrt/target/linux/bcm27xx/patches-6.6/950-0663-media-i2c-ov9282-Read-chip-ID-via-2-reads.patch
Álvaro Fernández Rojas 8c405cdccc bcm27xx: add 6.6 kernel patches
The patches were generated from the RPi repo with the following command:
git format-patch v6.6.34..rpi-6.1.y

Some patches needed rebasing and, as usual, the applied and reverted, wireless
drivers, Github workflows, READMEs and defconfigs patches were removed.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2024-06-18 18:52:49 +02:00

39 lines
1.2 KiB
Diff

From eff15cfea957f6a9714e305cf99ebe641a343144 Mon Sep 17 00:00:00 2001
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
Date: Wed, 11 Oct 2023 11:12:41 +0100
Subject: [PATCH 0663/1085] media: i2c: ov9282: Read chip ID via 2 reads
Vision Components have made an OV9281 module which blocks reading
back the majority of registers to comply with NDAs, and in doing
so doesn't allow auto-increment register reading as used when
reading the chip ID.
Use two reads and manually combine the results.
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
---
drivers/media/i2c/ov9282.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
--- a/drivers/media/i2c/ov9282.c
+++ b/drivers/media/i2c/ov9282.c
@@ -1078,12 +1078,16 @@ error_unlock:
static int ov9282_detect(struct ov9282 *ov9282)
{
int ret;
- u32 val;
+ u32 val, msb;
- ret = ov9282_read_reg(ov9282, OV9282_REG_ID, 2, &val);
+ ret = ov9282_read_reg(ov9282, OV9282_REG_ID + 1, 1, &val);
+ if (ret)
+ return ret;
+ ret = ov9282_read_reg(ov9282, OV9282_REG_ID, 1, &msb);
if (ret)
return ret;
+ val |= (msb << 8);
if (val != OV9282_ID) {
dev_err(ov9282->dev, "chip id mismatch: %x!=%x",
OV9282_ID, val);