summaryrefslogtreecommitdiff
path: root/drivers/mxc/mipi/mxc_mipi_csi2.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mxc/mipi/mxc_mipi_csi2.h')
-rw-r--r--drivers/mxc/mipi/mxc_mipi_csi2.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/drivers/mxc/mipi/mxc_mipi_csi2.h b/drivers/mxc/mipi/mxc_mipi_csi2.h
new file mode 100644
index 000000000000..1a3c49e2ba10
--- /dev/null
+++ b/drivers/mxc/mipi/mxc_mipi_csi2.h
@@ -0,0 +1,34 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Copyright (C) 2011-2014 Freescale Semiconductor, Inc. All Rights Reserved.
+ * Copyright 2019 NXP
+ */
+
+#ifndef __MXC_MIPI_CSI2_H__
+#define __MXC_MIPI_CSI2_H__
+
+#ifdef DEBUG
+#define mipi_dbg(fmt, ...) \
+ printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
+#else
+#define mipi_dbg(fmt, ...)
+#endif
+
+/* driver private data */
+struct mipi_csi2_info {
+ bool mipi_en;
+ int ipu_id;
+ unsigned int csi_id;
+ unsigned int v_channel;
+ unsigned int lanes;
+ unsigned int datatype;
+ struct clk *cfg_clk;
+ struct clk *dphy_clk;
+ struct clk *pixel_clk;
+ void __iomem *mipi_csi2_base;
+ struct platform_device *pdev;
+
+ struct mutex mutex_lock;
+};
+
+#endif