提交 deae7b86 编写于 作者: K Kuninori Morimoto 提交者: Paul Mundt

sh: mach-migor: Add tw9910 support.

Signed-off-by: NKuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
上级 b9afb0ba
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <linux/gpio.h> #include <linux/gpio.h>
#include <media/sh_mobile_ceu.h> #include <media/sh_mobile_ceu.h>
#include <media/ov772x.h> #include <media/ov772x.h>
#include <media/tw9910.h>
#include <video/sh_mobile_lcdc.h> #include <video/sh_mobile_lcdc.h>
#include <asm/clock.h> #include <asm/clock.h>
#include <asm/machvec.h> #include <asm/machvec.h>
...@@ -292,9 +293,12 @@ static struct platform_device migor_lcdc_device = { ...@@ -292,9 +293,12 @@ static struct platform_device migor_lcdc_device = {
}; };
static struct clk *camera_clk; static struct clk *camera_clk;
static DEFINE_MUTEX(camera_lock);
static void camera_power_on(void) static void camera_power_on(int is_tw)
{ {
mutex_lock(&camera_lock);
/* Use 10 MHz VIO_CKO instead of 24 MHz to work /* Use 10 MHz VIO_CKO instead of 24 MHz to work
* around signal quality issues on Panel Board V2.1. * around signal quality issues on Panel Board V2.1.
*/ */
...@@ -304,6 +308,12 @@ static void camera_power_on(void) ...@@ -304,6 +308,12 @@ static void camera_power_on(void)
/* use VIO_RST to take camera out of reset */ /* use VIO_RST to take camera out of reset */
mdelay(10); mdelay(10);
if (is_tw) {
gpio_set_value(GPIO_PTT2, 0);
gpio_set_value(GPIO_PTT0, 0);
} else {
gpio_set_value(GPIO_PTT0, 1);
}
gpio_set_value(GPIO_PTT3, 0); gpio_set_value(GPIO_PTT3, 0);
mdelay(10); mdelay(10);
gpio_set_value(GPIO_PTT3, 1); gpio_set_value(GPIO_PTT3, 1);
...@@ -316,12 +326,23 @@ static void camera_power_off(void) ...@@ -316,12 +326,23 @@ static void camera_power_off(void)
clk_put(camera_clk); clk_put(camera_clk);
gpio_set_value(GPIO_PTT3, 0); gpio_set_value(GPIO_PTT3, 0);
mutex_unlock(&camera_lock);
} }
static int ov7725_power(struct device *dev, int mode) static int ov7725_power(struct device *dev, int mode)
{ {
if (mode) if (mode)
camera_power_on(); camera_power_on(0);
else
camera_power_off();
return 0;
}
static int tw9910_power(struct device *dev, int mode)
{
if (mode)
camera_power_on(1);
else else
camera_power_off(); camera_power_off();
...@@ -366,6 +387,14 @@ static struct ov772x_camera_info ov7725_info = { ...@@ -366,6 +387,14 @@ static struct ov772x_camera_info ov7725_info = {
}, },
}; };
static struct tw9910_video_info tw9910_info = {
.buswidth = SOCAM_DATAWIDTH_8,
.mpout = TW9910_MPO_FIELD,
.link = {
.power = tw9910_power,
}
};
static struct platform_device *migor_devices[] __initdata = { static struct platform_device *migor_devices[] __initdata = {
&smc91x_eth_device, &smc91x_eth_device,
&sh_keysc_device, &sh_keysc_device,
...@@ -387,6 +416,10 @@ static struct i2c_board_info migor_i2c_devices[] = { ...@@ -387,6 +416,10 @@ static struct i2c_board_info migor_i2c_devices[] = {
I2C_BOARD_INFO("ov772x", 0x21), I2C_BOARD_INFO("ov772x", 0x21),
.platform_data = &ov7725_info, .platform_data = &ov7725_info,
}, },
{
I2C_BOARD_INFO("tw9910", 0x45),
.platform_data = &tw9910_info,
},
}; };
static int __init migor_devices_setup(void) static int __init migor_devices_setup(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册