[media] media: rcar_vin: Add preliminary r8a7790 support
Signed-off-by: Valentine Barshak <valentine.barshak@cogentembedded.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
be353fa188
commit
ca0c9f17f3
1 changed files with 4 additions and 1 deletions
|
@ -105,6 +105,7 @@
|
||||||
#define VIN_MAX_HEIGHT 2048
|
#define VIN_MAX_HEIGHT 2048
|
||||||
|
|
||||||
enum chip_id {
|
enum chip_id {
|
||||||
|
RCAR_H2,
|
||||||
RCAR_H1,
|
RCAR_H1,
|
||||||
RCAR_M1,
|
RCAR_M1,
|
||||||
RCAR_E1,
|
RCAR_E1,
|
||||||
|
@ -300,7 +301,8 @@ static int rcar_vin_setup(struct rcar_vin_priv *priv)
|
||||||
dmr = 0;
|
dmr = 0;
|
||||||
break;
|
break;
|
||||||
case V4L2_PIX_FMT_RGB32:
|
case V4L2_PIX_FMT_RGB32:
|
||||||
if (priv->chip == RCAR_H1 || priv->chip == RCAR_E1) {
|
if (priv->chip == RCAR_H2 || priv->chip == RCAR_H1 ||
|
||||||
|
priv->chip == RCAR_E1) {
|
||||||
dmr = VNDMR_EXRGB;
|
dmr = VNDMR_EXRGB;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1381,6 +1383,7 @@ static struct soc_camera_host_ops rcar_vin_host_ops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device_id rcar_vin_id_table[] = {
|
static struct platform_device_id rcar_vin_id_table[] = {
|
||||||
|
{ "r8a7790-vin", RCAR_H2 },
|
||||||
{ "r8a7779-vin", RCAR_H1 },
|
{ "r8a7779-vin", RCAR_H1 },
|
||||||
{ "r8a7778-vin", RCAR_M1 },
|
{ "r8a7778-vin", RCAR_M1 },
|
||||||
{ "uPD35004-vin", RCAR_E1 },
|
{ "uPD35004-vin", RCAR_E1 },
|
||||||
|
|
Loading…
Add table
Reference in a new issue