|
@@ -32,6 +32,8 @@
|
|
|
#include <linux/platform_data/s3c-hsudc.h>
|
|
|
#include <linux/platform_data/s3c-hsotg.h>
|
|
|
|
|
|
+#include <media/s5p_hdmi.h>
|
|
|
+
|
|
|
#include <asm/irq.h>
|
|
|
#include <asm/pmu.h>
|
|
|
#include <asm/mach/arch.h>
|
|
@@ -760,6 +762,30 @@ void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd)
|
|
|
npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c),
|
|
|
&s5p_device_i2c_hdmiphy);
|
|
|
}
|
|
|
+
|
|
|
+struct s5p_hdmi_platform_data s5p_hdmi_def_platdata;
|
|
|
+
|
|
|
+void __init s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info,
|
|
|
+ struct i2c_board_info *mhl_info, int mhl_bus)
|
|
|
+{
|
|
|
+ struct s5p_hdmi_platform_data *pd = &s5p_hdmi_def_platdata;
|
|
|
+
|
|
|
+ if (soc_is_exynos4210() ||
|
|
|
+ soc_is_exynos4212() || soc_is_exynos4412())
|
|
|
+ pd->hdmiphy_bus = 8;
|
|
|
+ else if (soc_is_s5pv210())
|
|
|
+ pd->hdmiphy_bus = 3;
|
|
|
+ else
|
|
|
+ pd->hdmiphy_bus = 0;
|
|
|
+
|
|
|
+ pd->hdmiphy_info = hdmiphy_info;
|
|
|
+ pd->mhl_info = mhl_info;
|
|
|
+ pd->mhl_bus = mhl_bus;
|
|
|
+
|
|
|
+ s3c_set_platdata(pd, sizeof(struct s5p_hdmi_platform_data),
|
|
|
+ &s5p_device_hdmi);
|
|
|
+}
|
|
|
+
|
|
|
#endif /* CONFIG_S5P_DEV_I2C_HDMIPHY */
|
|
|
|
|
|
/* I2S */
|