mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
media: i2c: Modify the datatype of PDAF data in the arducam_64mp driver
Modify the PDAF Datatype of the Arducam 64MP camera from 0x30 to 0x12 so that the Raspberry Pi 5 cfe driver can receive PDAF data. Signed-off-by: Lee Jackson <info@arducam.com>
This commit is contained in:
@@ -95,7 +95,7 @@
|
|||||||
#define ARDUCAM_64MP_TEST_PATTERN_GB_DEFAULT 0
|
#define ARDUCAM_64MP_TEST_PATTERN_GB_DEFAULT 0
|
||||||
|
|
||||||
/* Embedded metadata stream structure */
|
/* Embedded metadata stream structure */
|
||||||
#define ARDUCAM_64MP_EMBEDDED_LINE_WIDTH (11560 * 3)
|
#define ARDUCAM_64MP_EMBEDDED_LINE_WIDTH (((11560 * 3) + 15) & ~15)
|
||||||
#define ARDUCAM_64MP_NUM_EMBEDDED_LINES 1
|
#define ARDUCAM_64MP_NUM_EMBEDDED_LINES 1
|
||||||
|
|
||||||
enum pad_types {
|
enum pad_types {
|
||||||
@@ -155,7 +155,7 @@ static const struct arducam_64mp_reg mode_common_regs[] = {
|
|||||||
{0x33F1, 0x03},
|
{0x33F1, 0x03},
|
||||||
{0x0111, 0x02},
|
{0x0111, 0x02},
|
||||||
{0x3062, 0x00},
|
{0x3062, 0x00},
|
||||||
{0x3063, 0x30},
|
{0x3063, 0x12},
|
||||||
{0x3076, 0x00},
|
{0x3076, 0x00},
|
||||||
{0x3077, 0x30},
|
{0x3077, 0x30},
|
||||||
{0x1f06, 0x06},
|
{0x1f06, 0x06},
|
||||||
|
|||||||
Reference in New Issue
Block a user