Message ID | 1314797003-17638-12-git-send-email-tomi.valkeinen@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 08/31/2011 08:23 AM, Tomi Valkeinen wrote: > Add i2c bus number for DVI output. The driver uses this to detect if a > panel is connected and to read EDID. > > Signed-off-by: Tomi Valkeinen<tomi.valkeinen@ti.com> > --- > arch/arm/mach-omap2/board-omap3beagle.c | 1 + > arch/arm/mach-omap2/board-omap4panda.c | 1 + > 2 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c > index 3ae16b4..13244e9 100644 > --- a/arch/arm/mach-omap2/board-omap3beagle.c > +++ b/arch/arm/mach-omap2/board-omap3beagle.c > @@ -207,6 +207,7 @@ static struct panel_generic_dpi_data dvi_panel = { > .name = "generic", > .platform_enable = beagle_enable_dvi, > .platform_disable = beagle_disable_dvi, > + .i2c_bus_num = 3, > }; > > static struct omap_dss_device beagle_dvi_device = { > diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c > index 9aaa960..d5760e3 100644 > --- a/arch/arm/mach-omap2/board-omap4panda.c > +++ b/arch/arm/mach-omap2/board-omap4panda.c > @@ -459,6 +459,7 @@ static struct panel_generic_dpi_data omap4_dvi_panel = { > .name = "generic", > .platform_enable = omap4_panda_enable_dvi, > .platform_disable = omap4_panda_disable_dvi, > + .i2c_bus_num = 3, > }; > > struct omap_dss_device omap4_panda_dvi_device = { Can you add a similar patch for board-overo.c? I've tested earlier versions of this patch series on a Tide+Tobi successfully. Here's a copy of my patch: http://tinyurl.com/3cek5m7 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, 2011-08-31 at 10:00 -0500, Andy Doan wrote: > On 08/31/2011 08:23 AM, Tomi Valkeinen wrote: > > Add i2c bus number for DVI output. The driver uses this to detect if a > > panel is connected and to read EDID. > > > > Signed-off-by: Tomi Valkeinen<tomi.valkeinen@ti.com> > > --- > > arch/arm/mach-omap2/board-omap3beagle.c | 1 + > > arch/arm/mach-omap2/board-omap4panda.c | 1 + > > 2 files changed, 2 insertions(+), 0 deletions(-) > > > > diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c > > index 3ae16b4..13244e9 100644 > > --- a/arch/arm/mach-omap2/board-omap3beagle.c > > +++ b/arch/arm/mach-omap2/board-omap3beagle.c > > @@ -207,6 +207,7 @@ static struct panel_generic_dpi_data dvi_panel = { > > .name = "generic", > > .platform_enable = beagle_enable_dvi, > > .platform_disable = beagle_disable_dvi, > > + .i2c_bus_num = 3, > > }; > > > > static struct omap_dss_device beagle_dvi_device = { > > diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c > > index 9aaa960..d5760e3 100644 > > --- a/arch/arm/mach-omap2/board-omap4panda.c > > +++ b/arch/arm/mach-omap2/board-omap4panda.c > > @@ -459,6 +459,7 @@ static struct panel_generic_dpi_data omap4_dvi_panel = { > > .name = "generic", > > .platform_enable = omap4_panda_enable_dvi, > > .platform_disable = omap4_panda_disable_dvi, > > + .i2c_bus_num = 3, > > }; > > > > struct omap_dss_device omap4_panda_dvi_device = { > > Can you add a similar patch for board-overo.c? I've tested earlier > versions of this patch series on a Tide+Tobi successfully. Here's a copy > of my patch: > > http://tinyurl.com/3cek5m7 Sure. I only added the boards I know have the ddc i2c on bus 3 (i.e. those I was able to test). Tomi -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 3ae16b4..13244e9 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -207,6 +207,7 @@ static struct panel_generic_dpi_data dvi_panel = { .name = "generic", .platform_enable = beagle_enable_dvi, .platform_disable = beagle_disable_dvi, + .i2c_bus_num = 3, }; static struct omap_dss_device beagle_dvi_device = { diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index 9aaa960..d5760e3 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c @@ -459,6 +459,7 @@ static struct panel_generic_dpi_data omap4_dvi_panel = { .name = "generic", .platform_enable = omap4_panda_enable_dvi, .platform_disable = omap4_panda_disable_dvi, + .i2c_bus_num = 3, }; struct omap_dss_device omap4_panda_dvi_device = {
Add i2c bus number for DVI output. The driver uses this to detect if a panel is connected and to read EDID. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> --- arch/arm/mach-omap2/board-omap3beagle.c | 1 + arch/arm/mach-omap2/board-omap4panda.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-)