]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/media/soc_camera.h
V4L/DVB: pxa-camera: use memory mapped IO access for camera (QCI) registers
[mirror_ubuntu-zesty-kernel.git] / include / media / soc_camera.h
CommitLineData
e55222ef
GL
1/*
2 * camera image capture (abstract) bus driver header
3 *
4 * Copyright (C) 2006, Sascha Hauer, Pengutronix
5 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#ifndef SOC_CAMERA_H
13#define SOC_CAMERA_H
14
15#include <linux/videodev2.h>
092d3921 16#include <media/videobuf-core.h>
2e521061 17#include <linux/pm.h>
e55222ef
GL
18
19struct soc_camera_device {
20 struct list_head list;
21 struct device dev;
22 struct device *control;
23 unsigned short width; /* Current window */
24 unsigned short height; /* sizes */
25 unsigned short x_min; /* Camera capabilities */
26 unsigned short y_min;
27 unsigned short x_current; /* Current window location */
28 unsigned short y_current;
29 unsigned short width_min;
30 unsigned short width_max;
31 unsigned short height_min;
32 unsigned short height_max;
33 unsigned short y_skip_top; /* Lines to skip at the top */
34 unsigned short gain;
35 unsigned short exposure;
36 unsigned char iface; /* Host number */
37 unsigned char devnum; /* Device number per host */
ad5f2e85 38 unsigned char buswidth; /* See comment in .c */
e55222ef
GL
39 struct soc_camera_ops *ops;
40 struct video_device *vdev;
41 const struct soc_camera_data_format *current_fmt;
26f1b942
GL
42 const struct soc_camera_data_format *formats;
43 int num_formats;
c2786ad2
GL
44 struct soc_camera_format_xlate *user_formats;
45 int num_user_formats;
e55222ef 46 struct module *owner;
d2e3dce0 47 void *host_priv; /* per-device host private data */
9dc4e48f
GL
48 /* soc_camera.c private count. Only accessed with video_lock held */
49 int use_count;
e55222ef
GL
50};
51
52struct soc_camera_file {
53 struct soc_camera_device *icd;
54 struct videobuf_queue vb_vidq;
55};
56
57struct soc_camera_host {
58 struct list_head list;
59 struct device dev;
60 unsigned char nr; /* Host number */
e55222ef 61 void *priv;
af128a10 62 const char *drv_name;
b8d9904c
GL
63 struct soc_camera_host_ops *ops;
64};
65
66struct soc_camera_host_ops {
67 struct module *owner;
e55222ef
GL
68 int (*add)(struct soc_camera_device *);
69 void (*remove)(struct soc_camera_device *);
c2786ad2 70 int (*suspend)(struct soc_camera_device *, pm_message_t);
2e521061 71 int (*resume)(struct soc_camera_device *);
c2786ad2
GL
72 int (*get_formats)(struct soc_camera_device *, int,
73 struct soc_camera_format_xlate *);
d8fac217
GL
74 int (*set_fmt)(struct soc_camera_device *, __u32, struct v4l2_rect *);
75 int (*try_fmt)(struct soc_camera_device *, struct v4l2_format *);
a034d1b7 76 void (*init_videobuf)(struct videobuf_queue *,
092d3921 77 struct soc_camera_device *);
e55222ef
GL
78 int (*reqbufs)(struct soc_camera_file *, struct v4l2_requestbuffers *);
79 int (*querycap)(struct soc_camera_host *, struct v4l2_capability *);
ad5f2e85 80 int (*set_bus_param)(struct soc_camera_device *, __u32);
e55222ef
GL
81 unsigned int (*poll)(struct file *, poll_table *);
82};
83
84struct soc_camera_link {
85 /* Camera bus id, used to match a camera and a bus */
86 int bus_id;
87 /* GPIO number to switch between 8 and 10 bit modes */
88 unsigned int gpio;
81034663
SH
89 /* Optional callbacks to power on or off and reset the sensor */
90 int (*power)(struct device *, int);
91 int (*reset)(struct device *);
e55222ef
GL
92};
93
94static inline struct soc_camera_device *to_soc_camera_dev(struct device *dev)
95{
96 return container_of(dev, struct soc_camera_device, dev);
97}
98
99static inline struct soc_camera_host *to_soc_camera_host(struct device *dev)
100{
101 return container_of(dev, struct soc_camera_host, dev);
102}
103
b8d9904c 104extern int soc_camera_host_register(struct soc_camera_host *ici);
e55222ef
GL
105extern void soc_camera_host_unregister(struct soc_camera_host *ici);
106extern int soc_camera_device_register(struct soc_camera_device *icd);
107extern void soc_camera_device_unregister(struct soc_camera_device *icd);
108
109extern int soc_camera_video_start(struct soc_camera_device *icd);
110extern void soc_camera_video_stop(struct soc_camera_device *icd);
111
25c4d74e
GL
112extern const struct soc_camera_data_format *soc_camera_format_by_fourcc(
113 struct soc_camera_device *icd, unsigned int fourcc);
c2786ad2
GL
114extern const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc(
115 struct soc_camera_device *icd, unsigned int fourcc);
25c4d74e 116
e55222ef 117struct soc_camera_data_format {
af128a10 118 const char *name;
e55222ef
GL
119 unsigned int depth;
120 __u32 fourcc;
121 enum v4l2_colorspace colorspace;
122};
123
c2786ad2
GL
124/**
125 * struct soc_camera_format_xlate - match between host and sensor formats
126 * @cam_fmt: sensor format provided by the sensor
127 * @host_fmt: host format after host translation from cam_fmt
128 * @buswidth: bus width for this format
129 *
130 * Host and sensor translation structure. Used in table of host and sensor
131 * formats matchings in soc_camera_device. A host can override the generic list
132 * generation by implementing get_formats(), and use it for format checks and
133 * format setup.
134 */
135struct soc_camera_format_xlate {
136 const struct soc_camera_data_format *cam_fmt;
137 const struct soc_camera_data_format *host_fmt;
138 unsigned char buswidth;
139};
140
e55222ef
GL
141struct soc_camera_ops {
142 struct module *owner;
26f1b942
GL
143 int (*probe)(struct soc_camera_device *);
144 void (*remove)(struct soc_camera_device *);
2e521061
RJ
145 int (*suspend)(struct soc_camera_device *, pm_message_t state);
146 int (*resume)(struct soc_camera_device *);
e55222ef
GL
147 int (*init)(struct soc_camera_device *);
148 int (*release)(struct soc_camera_device *);
149 int (*start_capture)(struct soc_camera_device *);
150 int (*stop_capture)(struct soc_camera_device *);
d8fac217
GL
151 int (*set_fmt)(struct soc_camera_device *, __u32, struct v4l2_rect *);
152 int (*try_fmt)(struct soc_camera_device *, struct v4l2_format *);
ad5f2e85
GL
153 unsigned long (*query_bus_param)(struct soc_camera_device *);
154 int (*set_bus_param)(struct soc_camera_device *, unsigned long);
e55222ef
GL
155 int (*get_chip_id)(struct soc_camera_device *,
156 struct v4l2_chip_ident *);
157#ifdef CONFIG_VIDEO_ADV_DEBUG
158 int (*get_register)(struct soc_camera_device *, struct v4l2_register *);
159 int (*set_register)(struct soc_camera_device *, struct v4l2_register *);
160#endif
e55222ef
GL
161 int (*get_control)(struct soc_camera_device *, struct v4l2_control *);
162 int (*set_control)(struct soc_camera_device *, struct v4l2_control *);
163 const struct v4l2_queryctrl *controls;
164 int num_controls;
e55222ef
GL
165};
166
167static inline struct v4l2_queryctrl const *soc_camera_find_qctrl(
168 struct soc_camera_ops *ops, int id)
169{
170 int i;
171
172 for (i = 0; i < ops->num_controls; i++)
173 if (ops->controls[i].id == id)
174 return &ops->controls[i];
175
176 return NULL;
177}
178
ad5f2e85
GL
179#define SOCAM_MASTER (1 << 0)
180#define SOCAM_SLAVE (1 << 1)
181#define SOCAM_HSYNC_ACTIVE_HIGH (1 << 2)
182#define SOCAM_HSYNC_ACTIVE_LOW (1 << 3)
183#define SOCAM_VSYNC_ACTIVE_HIGH (1 << 4)
184#define SOCAM_VSYNC_ACTIVE_LOW (1 << 5)
185#define SOCAM_DATAWIDTH_8 (1 << 6)
186#define SOCAM_DATAWIDTH_9 (1 << 7)
187#define SOCAM_DATAWIDTH_10 (1 << 8)
b15cf1fc
MD
188#define SOCAM_DATAWIDTH_16 (1 << 9)
189#define SOCAM_PCLK_SAMPLE_RISING (1 << 10)
190#define SOCAM_PCLK_SAMPLE_FALLING (1 << 11)
ad5f2e85
GL
191
192#define SOCAM_DATAWIDTH_MASK (SOCAM_DATAWIDTH_8 | SOCAM_DATAWIDTH_9 | \
b15cf1fc 193 SOCAM_DATAWIDTH_10 | SOCAM_DATAWIDTH_16)
ad5f2e85
GL
194
195static inline unsigned long soc_camera_bus_param_compatible(
196 unsigned long camera_flags, unsigned long bus_flags)
197{
198 unsigned long common_flags, hsync, vsync, pclk;
199
200 common_flags = camera_flags & bus_flags;
201
202 hsync = common_flags & (SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW);
203 vsync = common_flags & (SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW);
204 pclk = common_flags & (SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING);
205
206 return (!hsync || !vsync || !pclk) ? 0 : common_flags;
207}
e55222ef
GL
208
209#endif