diff options
author | Tushar Behera <tushar.behera@linaro.org> | 2012-08-08 13:12:19 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-08-08 15:53:39 +0900 |
commit | ccc61fd460fc1b20480dbb7e10b2ea82433bfd58 (patch) | |
tree | 2fb92825fdc0b256aca2be21c250961ed040c4a3 /arch/arm | |
parent | cceb840904d1c1f7ee453bfa9886117c6931bdbf (diff) | |
download | linux-3.10-ccc61fd460fc1b20480dbb7e10b2ea82433bfd58.tar.gz linux-3.10-ccc61fd460fc1b20480dbb7e10b2ea82433bfd58.tar.bz2 linux-3.10-ccc61fd460fc1b20480dbb7e10b2ea82433bfd58.zip |
ARM: EXYNOS: Set HDMI platform data in Origen board
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-exynos/mach-origen.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/mach-origen.c b/arch/arm/mach-exynos/mach-origen.c index 5ca80307d6d..4e574c24581 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c @@ -42,6 +42,7 @@ #include <plat/backlight.h> #include <plat/fb.h> #include <plat/mfc.h> +#include <plat/hdmi.h> #include <mach/ohci.h> #include <mach/map.h> @@ -734,6 +735,11 @@ static void __init origen_bt_setup(void) s3c_gpio_setpull(EXYNOS4_GPX2(2), S3C_GPIO_PULL_NONE); } +/* I2C module and id for HDMIPHY */ +static struct i2c_board_info hdmiphy_info = { + I2C_BOARD_INFO("hdmiphy-exynos4210", 0x38), +}; + static void s5p_tv_setup(void) { /* Direct HPD to HDMI chip */ @@ -781,6 +787,7 @@ static void __init origen_machine_init(void) s5p_tv_setup(); s5p_i2c_hdmiphy_set_platdata(NULL); + s5p_hdmi_set_platdata(&hdmiphy_info, NULL, 0); #ifdef CONFIG_DRM_EXYNOS s5p_device_fimd0.dev.platform_data = &drm_fimd_pdata; |