diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2008-12-02 16:38:34 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-01-21 17:41:28 +0900 |
commit | ff04ea40ea3037b26d01bdeacbab1d6c15c5df61 (patch) | |
tree | c506e72b9cdd0d7e35f108bc8cda67a9d252c29b /arch/sh/boards/mach-migor/setup.c | |
parent | c2bcc4a7ffa7438a8ded91fbd0313c50d420ff45 (diff) |
sh: mach-migor: Add ov772x support.
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/mach-migor/setup.c')
-rw-r--r-- | arch/sh/boards/mach-migor/setup.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index cc1408119c2..332b90d9df4 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c @@ -20,6 +20,7 @@ #include <linux/gpio.h> #include <media/soc_camera_platform.h> #include <media/sh_mobile_ceu.h> +#include <media/ov772x.h> #include <video/sh_mobile_lcdc.h> #include <asm/clock.h> #include <asm/machvec.h> @@ -326,6 +327,16 @@ static void camera_power(int mode) camera_power_off(); } +static int ov7725_power(struct device *dev, int mode) +{ + if (mode) + camera_power_on(); + else + camera_power_off(); + + return 0; +} + #ifdef CONFIG_I2C static unsigned char camera_ov772x_magic[] = { @@ -448,6 +459,13 @@ static struct platform_device migor_ceu_device = { }, }; +static struct ov772x_camera_info ov7725_info = { + .buswidth = SOCAM_DATAWIDTH_8, + .link = { + .power = ov7725_power, + }, +}; + static struct platform_device *migor_devices[] __initdata = { &smc91x_eth_device, &sh_keysc_device, @@ -468,6 +486,10 @@ static struct i2c_board_info migor_i2c_devices[] = { I2C_BOARD_INFO("migor_ts", 0x51), .irq = 38, /* IRQ6 */ }, + { + I2C_BOARD_INFO("ov772x", 0x21), + .platform_data = &ov7725_info, + }, }; static int __init migor_devices_setup(void) |