summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Felsch <m.felsch@pengutronix.de>2019-01-30 13:45:12 +0100
committerMarco Felsch <m.felsch@pengutronix.de>2019-04-03 17:47:15 +0200
commit154c4712e414c270a4446f2290569e9a87787caf (patch)
tree25bd420b483cc111d304573246cbe8f82da0c344
parent556abab2e5183ea24efe768fee7c8685acc3c883 (diff)
downloadlinux-0-day-154c4712e414c270a4446f2290569e9a87787caf.tar.gz
linux-0-day-154c4712e414c270a4446f2290569e9a87787caf.tar.xz
media: v4l2-fwnode: add v4l2_fwnode_connector
Currently every driver needs to parse the connector endpoints by it self. This is the initial work to make this generic. The generic connector has some common fields and some connector specific parts. The generic one includes: - type - label - remote_port (the port where the connector is connected to) - remote_id (the endpoint where the connector is connected to) The specific fields are within a union, since only one of them can be available at the time. Since this is the initial support the patch adds only the analog-connector specific ones. Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
-rw-r--r--include/media/v4l2-connector.h34
-rw-r--r--include/media/v4l2-fwnode.h33
2 files changed, 67 insertions, 0 deletions
diff --git a/include/media/v4l2-connector.h b/include/media/v4l2-connector.h
new file mode 100644
index 0000000000000..967336e38215c
--- /dev/null
+++ b/include/media/v4l2-connector.h
@@ -0,0 +1,34 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * v4l2-connector.h
+ *
+ * V4L2 connector types.
+ *
+ * Copyright 2019 Pengutronix, Marco Felsch <kernel@pengutronix.de>
+ */
+
+#ifndef V4L2_CONNECTOR_H
+#define V4L2_CONNECTOR_H
+
+#define V4L2_CONNECTOR_MAX_LABEL 41
+
+/**
+ * enum v4l2_connector_type - connector type
+ * @V4L2_CON_UNKNOWN: unknown connector type, no V4L2 connetor configuration
+ * @V4L2_CON_COMPOSITE: analog composite connector
+ * @V4L2_CON_SVIDEO: analog svideo connector
+ * @V4L2_CON_VGA: analog vga connector
+ * @V4L2_CON_DVI: analog or digital dvi connector
+ * @V4L2_CON_HDMI: digital hdmi connetor
+ */
+enum v4l2_connector_type {
+ V4L2_CON_UNKNOWN,
+ V4L2_CON_COMPOSITE,
+ V4L2_CON_SVIDEO,
+ V4L2_CON_VGA,
+ V4L2_CON_DVI,
+ V4L2_CON_HDMI,
+};
+
+#endif /* V4L2_CONNECTOR_H */
+
diff --git a/include/media/v4l2-fwnode.h b/include/media/v4l2-fwnode.h
index 6c07825e18b90..04344b71656f6 100644
--- a/include/media/v4l2-fwnode.h
+++ b/include/media/v4l2-fwnode.h
@@ -22,6 +22,7 @@
#include <linux/list.h>
#include <linux/types.h>
+#include <media/v4l2-connector.h>
#include <media/v4l2-mediabus.h>
#include <media/v4l2-subdev.h>
@@ -127,6 +128,38 @@ struct v4l2_fwnode_link {
};
/**
+ * struct v4l2_fwnode_connector_analog - analog connector data structure
+ * @supported_tvnorms: tv norms this connector supports, set to V4L2_STD_ALL
+ * if no restrictions are specified.
+ */
+struct v4l2_fwnode_connector_analog {
+ v4l2_std_id supported_tvnorms;
+};
+
+/** struct v4l2_fwnode_connector - the connector data structure
+ * @remote_port: identifier of the port the remote endpoint belongs to
+ * @remote_id: identifier of the id the remote endpoint belongs to
+ * @label: connetor label
+ * @type: connector type
+ * @connector: union with connector configuration data struct
+ * @connector.analog: embedded &struct v4l2_fwnode_connector_analog.
+ * Used if connector is of type analog.
+ */
+struct v4l2_fwnode_connector {
+ /* common fields for all v4l2_fwnode_connectors */
+ unsigned int remote_port;
+ unsigned int remote_id;
+ char label[V4L2_CONNECTOR_MAX_LABEL];
+ enum v4l2_connector_type type;
+
+ /* connector specific fields */
+ union {
+ struct v4l2_fwnode_connector_analog analog;
+ /* future connectors */
+ } connector;
+};
+
+/**
* v4l2_fwnode_endpoint_parse() - parse all fwnode node properties
* @fwnode: pointer to the endpoint's fwnode handle
* @vep: pointer to the V4L2 fwnode data structure