blob: 24b15e34b5e888b7d972ae96e45ec325c9933122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2020-2022 Bootlin
* Author: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
*/
#ifndef _SUN6I_MIPI_CSI2_H_
#define _SUN6I_MIPI_CSI2_H_
#include <linux/phy/phy.h>
#include <linux/regmap.h>
#include <linux/reset.h>
#include <media/v4l2-device.h>
#include <media/v4l2-fwnode.h>
#define SUN6I_MIPI_CSI2_NAME "sun6i-mipi-csi2"
enum sun6i_mipi_csi2_pad {
SUN6I_MIPI_CSI2_PAD_SINK = 0,
SUN6I_MIPI_CSI2_PAD_SOURCE = 1,
SUN6I_MIPI_CSI2_PAD_COUNT = 2,
};
struct sun6i_mipi_csi2_format {
u32 mbus_code;
u8 data_type;
u32 bpp;
};
struct sun6i_mipi_csi2_bridge {
struct v4l2_subdev subdev;
struct media_pad pads[SUN6I_MIPI_CSI2_PAD_COUNT];
struct v4l2_fwnode_endpoint endpoint;
struct v4l2_async_notifier notifier;
struct v4l2_mbus_framefmt mbus_format;
struct mutex lock; /* Mbus format lock. */
struct v4l2_subdev *source_subdev;
};
struct sun6i_mipi_csi2_device {
struct device *dev;
struct regmap *regmap;
struct clk *clock_mod;
struct reset_control *reset;
struct phy *dphy;
struct sun6i_mipi_csi2_bridge bridge;
};
#endif
|