/* * 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 #include #include #include #include #include #include "gpio-names.h" #include "board.h" #include #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; }