An instance of a sensor on DT-based MMP2 platform is always going to be created asynchronously. Let's move the manual device creation away from the core to the Cafe driver (used on OLPC XO-1, not present in DT) and set up appropriate async matches: I2C on Cafe, FWNODE on MMP (OLPC XO-1.75). Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
27 lines
672 B
C
27 lines
672 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Information for the Marvell Armada MMP camera
|
|
*/
|
|
|
|
#include <media/v4l2-mediabus.h>
|
|
|
|
enum dphy3_algo {
|
|
DPHY3_ALGO_DEFAULT = 0,
|
|
DPHY3_ALGO_PXA910,
|
|
DPHY3_ALGO_PXA2128
|
|
};
|
|
|
|
struct mmp_camera_platform_data {
|
|
int sensor_power_gpio;
|
|
int sensor_reset_gpio;
|
|
enum v4l2_mbus_type bus_type;
|
|
int mclk_src; /* which clock source the MCLK derives from */
|
|
int mclk_div; /* Clock Divider Value for MCLK */
|
|
/*
|
|
* MIPI support
|
|
*/
|
|
int dphy[3]; /* DPHY: CSI2_DPHY3, CSI2_DPHY5, CSI2_DPHY6 */
|
|
enum dphy3_algo dphy3_algo; /* algos for calculate CSI2_DPHY3 */
|
|
int lane; /* ccic used lane number; 0 means DVP mode */
|
|
int lane_clk;
|
|
};
|