summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-curacao-sensors.c
blob: b34a776fd211d82b6f04ef0d44b58f301dd14b41 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
 * arch/arm/mach-tegra/board-curacao-sensors.c
 *
 * Copyright (c) 2011-2012 NVIDIA CORPORATION, All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * Neither the name of NVIDIA CORPORATION nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <linux/i2c.h>
#include <linux/delay.h>
#include <mach/gpio.h>
#include <media/ov5650.h>
#include <media/ov14810.h>
#include <media/ov2710.h>
#include "gpio-names.h"
#include "board.h"
#include <mach/gpio.h>

#include "gpio-names.h"
#include "board-curacao.h"
#include "cpu-tegra.h"

static struct board_info board_info;

static int curacao_camera_init(void)
{
	return 0;
}

static int curacao_left_ov5650_power_on(struct device *dev)
{
	return 0;
}

static int curacao_left_ov5650_power_off(struct device *dev)
{
	return 0;
}

struct ov5650_platform_data curacao_ov5650_data = {
	.power_on = curacao_left_ov5650_power_on,
	.power_off = curacao_left_ov5650_power_off,
};

#ifdef CONFIG_VIDEO_OV14810
static int curacao_ov14810_power_on(struct device *dev)
{
	return 0;
}

static int curacao_ov14810_power_off(struct device *dev)
{
	return 0;
}

struct ov14810_platform_data curacao_ov14810_data = {
	.power_on = curacao_ov14810_power_on,
	.power_off = curacao_ov14810_power_off,
};

struct ov14810_platform_data curacao_ov14810uC_data = {
	.power_on = NULL,
	.power_off = NULL,
};

struct ov14810_platform_data curacao_ov14810SlaveDev_data = {
	.power_on = NULL,
	.power_off = NULL,
};

static struct i2c_board_info curacao_i2c_board_info_e1214[] = {
	{
		I2C_BOARD_INFO("ov14810", 0x36),
		.platform_data = &curacao_ov14810_data,
	},
	{
		I2C_BOARD_INFO("ov14810uC", 0x67),
		.platform_data = &curacao_ov14810uC_data,
	},
	{
		I2C_BOARD_INFO("ov14810SlaveDev", 0x69),
		.platform_data = &curacao_ov14810SlaveDev_data,
	}
};
#endif

static int curacao_right_ov5650_power_on(struct device *dev)
{
	return 0;
}

static int curacao_right_ov5650_power_off(struct device *dev)
{
	return 0;
}

static void curacao_ov5650_synchronize_sensors(void)
{
	pr_err("%s: UnSupported BoardId\n", __func__);
}

struct ov5650_platform_data curacao_right_ov5650_data = {
	.power_on = curacao_right_ov5650_power_on,
	.power_off = curacao_right_ov5650_power_off,
	.synchronize_sensors = curacao_ov5650_synchronize_sensors,
};

static int curacao_ov2710_power_on(struct device *dev)
{
	return 0;
}

static int curacao_ov2710_power_off(struct device *dev)
{
	return 0;
}

struct ov2710_platform_data curacao_ov2710_data = {
	.power_on = curacao_ov2710_power_on,
	.power_off = curacao_ov2710_power_off,
};

static struct i2c_board_info curacao_i2c2_board_info[] = {
	{
		I2C_BOARD_INFO("ov5650R", 0x36),
		.platform_data = &curacao_ov5650_data,
	},
};

int __init curacao_sensors_init(void)
{
	tegra_get_board_info(&board_info);

	curacao_camera_init();

	i2c_register_board_info(3, curacao_i2c2_board_info,
		ARRAY_SIZE(curacao_i2c2_board_info));

#ifdef CONFIG_VIDEO_OV14810
	i2c_register_board_info(3, curacao_i2c_board_info_e1214,
		ARRAY_SIZE(curacao_i2c_board_info_e1214));
#endif

	return 0;
}