summaryrefslogtreecommitdiff
path: root/include/media/ov9772.h
blob: 454a74d912029b6905eb372f0fd3c5aa2fcd6809 (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
53
54
55
56
/*
 * nvc_ov9772.h - ov9772 sensor driver
 *
 *  * Copyright (c) 2012-2013 NVIDIA Corporation.  All rights reserved.
 *
 * Contributors:
 *	Phil Breczinski <pbreczinski@nvidia.com>
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2. This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */

#ifndef __OV9772_H__
#define __OV9772_H__

#include <media/nvc.h>
#include <media/nvc_image.h>

/* See notes in the nvc.h file on the GPIO usage */
enum ov9772_gpio_type {
	OV9772_GPIO_TYPE_SHTDN = 0,
	OV9772_GPIO_TYPE_PWRDN,
	OV9772_GPIO_TYPE_I2CMUX,
	OV9772_GPIO_TYPE_GP1,
	OV9772_GPIO_TYPE_GP2,
	OV9772_GPIO_TYPE_GP3,
};

struct ov9772_power_rail {
	struct regulator *dvdd;
	struct regulator *avdd;
	struct regulator *dovdd;
	struct regulator *afvdd;
};

struct ov9772_platform_data {
	unsigned cfg;
	unsigned num;
	unsigned sync;
	const char *dev_name;
	unsigned gpio_count;
	struct nvc_gpio_pdata *gpio; /* see nvc.h GPIO notes */
	struct nvc_imager_cap *cap;
	unsigned lens_focal_length; /* / _INT2FLOAT_DIVISOR */
	unsigned lens_max_aperture; /* / _INT2FLOAT_DIVISOR */
	unsigned lens_fnumber; /* / _INT2FLOAT_DIVISOR */
	unsigned lens_view_angle_h; /* / _INT2FLOAT_DIVISOR */
	unsigned lens_view_angle_v; /* / _INT2FLOAT_DIVISOR */
	const char *mclk_name;
	int (*probe_clock)(unsigned long);
	bool vcm_vdd;
	int (*power_on)(struct ov9772_power_rail *);
	int (*power_off)(struct ov9772_power_rail *);
};
#endif  /* __OV9772_H__ */