aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/s5k4ba_platform.h
diff options
context:
space:
mode:
authorcodeworkx <daniel.hillenbrand@codeworkx.de>2012-06-02 13:09:29 +0200
committercodeworkx <daniel.hillenbrand@codeworkx.de>2012-06-02 13:09:29 +0200
commitc6da2cfeb05178a11c6d062a06f8078150ee492f (patch)
treef3b4021d252c52d6463a9b3c1bb7245e399b009c /include/media/s5k4ba_platform.h
parentc6d7c4dbff353eac7919342ae6b3299a378160a6 (diff)
downloadkernel_samsung_smdk4412-c6da2cfeb05178a11c6d062a06f8078150ee492f.zip
kernel_samsung_smdk4412-c6da2cfeb05178a11c6d062a06f8078150ee492f.tar.gz
kernel_samsung_smdk4412-c6da2cfeb05178a11c6d062a06f8078150ee492f.tar.bz2
samsung update 1
Diffstat (limited to 'include/media/s5k4ba_platform.h')
-rw-r--r--include/media/s5k4ba_platform.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/media/s5k4ba_platform.h b/include/media/s5k4ba_platform.h
new file mode 100644
index 0000000..91fcb4c
--- /dev/null
+++ b/include/media/s5k4ba_platform.h
@@ -0,0 +1,33 @@
+/* linux/include/media/s5k4ba_platform.h
+ *
+ * Copyright (c) 2010 Samsung Electronics Co., Ltd.
+ * http://www.samsung.com/
+ *
+ * Driver for S5K4BA (UXGA camera) from Samsung Electronics
+ * 1/4" 2.0Mp CMOS Image Sensor SoC with an Embedded Image Processor
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+*/
+
+#include <linux/device.h>
+#include <media/v4l2-mediabus.h>
+
+struct s5k4ba_platform_data {
+ unsigned int default_width;
+ unsigned int default_height;
+ unsigned int pixelformat;
+ int freq; /* MCLK in KHz */
+
+ /* This SoC supports Parallel & CSI-2 */
+ int is_mipi;
+};
+
+struct s5k4ba_mbus_platform_data {
+ int id;
+ struct v4l2_mbus_framefmt fmt;
+ unsigned long clk_rate; /* master clock frequency in Hz */
+ int (*set_power)(int on);
+ int (*set_clock)(struct device *dev, int on);
+};