* [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900
@ 2010-12-21 17:25 Jarkko Nikula
2010-12-21 17:25 ` [PATCH 1/2] omap: rx51: Cleanup vdds_sdi supply construction Jarkko Nikula
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jarkko Nikula @ 2010-12-21 17:25 UTC (permalink / raw)
To: linux-arm-kernel
Hi
Commit 60d24ee "Added video data to support tvout on rx51" broke the
framebuffer on N900. Here are two patches where 1st one does a little cleanup
to be sync with the 2nd fixing the issue. I've tested that both tvout and lcd
are working.
--
Jarkko
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/2] omap: rx51: Cleanup vdds_sdi supply construction 2010-12-21 17:25 [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Jarkko Nikula @ 2010-12-21 17:25 ` Jarkko Nikula 2010-12-21 17:25 ` [PATCH 2/2] omap: rx51: Add vdda_dac supply for tvout Jarkko Nikula 2010-12-21 20:21 ` [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Tony Lindgren 2 siblings, 0 replies; 7+ messages in thread From: Jarkko Nikula @ 2010-12-21 17:25 UTC (permalink / raw) To: linux-arm-kernel It is much more cleaner to use REGULATOR_SUPPLY macro and a device name instead of having a reference to rx51_display_device.dev with #if defined() guards. Signed-off-by: Jarkko Nikula <jhnikula@gmail.com> --- arch/arm/mach-omap2/board-rx51-peripherals.c | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index fd95ccf..768f0dc 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c @@ -359,17 +359,8 @@ static struct regulator_consumer_supply rx51_vio_supplies[] = { REGULATOR_SUPPLY("DVDD", "2-0019"), }; -#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) -extern struct platform_device rx51_display_device; -#endif - static struct regulator_consumer_supply rx51_vaux1_consumers[] = { -#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) - { - .supply = "vdds_sdi", - .dev = &rx51_display_device.dev, - }, -#endif + REGULATOR_SUPPLY("vdds_sdi", "omapdss"), }; static struct regulator_init_data rx51_vaux1 = { -- 1.7.2.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] omap: rx51: Add vdda_dac supply for tvout 2010-12-21 17:25 [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Jarkko Nikula 2010-12-21 17:25 ` [PATCH 1/2] omap: rx51: Cleanup vdds_sdi supply construction Jarkko Nikula @ 2010-12-21 17:25 ` Jarkko Nikula 2010-12-21 20:21 ` [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Tony Lindgren 2 siblings, 0 replies; 7+ messages in thread From: Jarkko Nikula @ 2010-12-21 17:25 UTC (permalink / raw) To: linux-arm-kernel Commmit 60d24ee "Added video data to support tvout on rx51" broke the DSS on RX51/N900 since it added DSS VENC support but a patch adding needed supply is missing from tree and no framebuffers are initialized. This patch is basically cleaned up version of original one: http://marc.info/?l=linux-omap&m=129070041402418&w=2 Signed-off-by: Jarkko Nikula <jhnikula@gmail.com> Cc: Srikar <ext-srikar.1.bhavanarayana@nokia.com> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com> --- Mark cc'edd since he had comments to the original patch what this patch is trying to address. --- arch/arm/mach-omap2/board-rx51-peripherals.c | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 768f0dc..e75e240 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c @@ -363,6 +363,10 @@ static struct regulator_consumer_supply rx51_vaux1_consumers[] = { REGULATOR_SUPPLY("vdds_sdi", "omapdss"), }; +static struct regulator_consumer_supply rx51_vdac_supply[] = { + REGULATOR_SUPPLY("vdda_dac", "omapdss"), +}; + static struct regulator_init_data rx51_vaux1 = { .constraints = { .name = "V28", @@ -480,14 +484,17 @@ static struct regulator_init_data rx51_vsim = { static struct regulator_init_data rx51_vdac = { .constraints = { + .name = "VDAC", .min_uV = 1800000, .max_uV = 1800000, + .apply_uV = true, .valid_modes_mask = REGULATOR_MODE_NORMAL | REGULATOR_MODE_STANDBY, - .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE - | REGULATOR_CHANGE_MODE + .valid_ops_mask = REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS, }, + .num_consumer_supplies = 1, + .consumer_supplies = rx51_vdac_supply, }; static struct regulator_init_data rx51_vio = { -- 1.7.2.3 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 2010-12-21 17:25 [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Jarkko Nikula 2010-12-21 17:25 ` [PATCH 1/2] omap: rx51: Cleanup vdds_sdi supply construction Jarkko Nikula 2010-12-21 17:25 ` [PATCH 2/2] omap: rx51: Add vdda_dac supply for tvout Jarkko Nikula @ 2010-12-21 20:21 ` Tony Lindgren 2010-12-22 6:56 ` Jarkko Nikula 2 siblings, 1 reply; 7+ messages in thread From: Tony Lindgren @ 2010-12-21 20:21 UTC (permalink / raw) To: linux-arm-kernel * Jarkko Nikula <jhnikula@gmail.com> [101221 09:25]: > Hi > > Commit 60d24ee "Added video data to support tvout on rx51" broke the > framebuffer on N900. Here are two patches where 1st one does a little cleanup > to be sync with the 2nd fixing the issue. I've tested that both tvout and lcd > are working. Tomi, do you want to pick these three DSS/video related patches from Jarkko? If so: Acked-by: Tony Lindgren <tony@atomide.com> else please ack and let me know if you want me to take them. Regards, Tony ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 2010-12-21 20:21 ` [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Tony Lindgren @ 2010-12-22 6:56 ` Jarkko Nikula 2010-12-22 9:45 ` Tomi Valkeinen 0 siblings, 1 reply; 7+ messages in thread From: Jarkko Nikula @ 2010-12-22 6:56 UTC (permalink / raw) To: linux-arm-kernel On Tue, 21 Dec 2010 12:21:33 -0800 Tony Lindgren <tony@atomide.com> wrote: > * Jarkko Nikula <jhnikula@gmail.com> [101221 09:25]: > > Hi > > > > Commit 60d24ee "Added video data to support tvout on rx51" broke the > > framebuffer on N900. Here are two patches where 1st one does a little cleanup > > to be sync with the 2nd fixing the issue. I've tested that both tvout and lcd > > are working. > > Tomi, do you want to pick these three DSS/video related patches from Jarkko? > > If so: > > Acked-by: Tony Lindgren <tony@atomide.com> > > else please ack and let me know if you want me to take them. > I think these should go to linux-omap since the breakage is there and anyway touch only the rx51 board files. -- Jarkko ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 2010-12-22 6:56 ` Jarkko Nikula @ 2010-12-22 9:45 ` Tomi Valkeinen 2010-12-22 18:57 ` Tony Lindgren 0 siblings, 1 reply; 7+ messages in thread From: Tomi Valkeinen @ 2010-12-22 9:45 UTC (permalink / raw) To: linux-arm-kernel On Wed, 2010-12-22 at 08:56 +0200, ext Jarkko Nikula wrote: > On Tue, 21 Dec 2010 12:21:33 -0800 > Tony Lindgren <tony@atomide.com> wrote: > > > * Jarkko Nikula <jhnikula@gmail.com> [101221 09:25]: > > > Hi > > > > > > Commit 60d24ee "Added video data to support tvout on rx51" broke the > > > framebuffer on N900. Here are two patches where 1st one does a little cleanup > > > to be sync with the 2nd fixing the issue. I've tested that both tvout and lcd > > > are working. > > > > Tomi, do you want to pick these three DSS/video related patches from Jarkko? > > > > If so: > > > > Acked-by: Tony Lindgren <tony@atomide.com> > > > > else please ack and let me know if you want me to take them. > > > I think these should go to linux-omap since the breakage is there and > anyway touch only the rx51 board files. I agree, I don't have that commit in my tree. So Tony, please take the patches. For both patches: Acked-by: Tomi Valkeinen <tomi.valkeinen@nokia.com> Tomi ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 2010-12-22 9:45 ` Tomi Valkeinen @ 2010-12-22 18:57 ` Tony Lindgren 0 siblings, 0 replies; 7+ messages in thread From: Tony Lindgren @ 2010-12-22 18:57 UTC (permalink / raw) To: linux-arm-kernel * Tomi Valkeinen <tomi.valkeinen@nokia.com> [101222 01:45]: > On Wed, 2010-12-22 at 08:56 +0200, ext Jarkko Nikula wrote: > > On Tue, 21 Dec 2010 12:21:33 -0800 > > Tony Lindgren <tony@atomide.com> wrote: > > > > > * Jarkko Nikula <jhnikula@gmail.com> [101221 09:25]: > > > > Hi > > > > > > > > Commit 60d24ee "Added video data to support tvout on rx51" broke the > > > > framebuffer on N900. Here are two patches where 1st one does a little cleanup > > > > to be sync with the 2nd fixing the issue. I've tested that both tvout and lcd > > > > are working. > > > > > > Tomi, do you want to pick these three DSS/video related patches from Jarkko? > > > > > > If so: > > > > > > Acked-by: Tony Lindgren <tony@atomide.com> > > > > > > else please ack and let me know if you want me to take them. > > > > > I think these should go to linux-omap since the breakage is there and > > anyway touch only the rx51 board files. > > I agree, I don't have that commit in my tree. So Tony, please take the > patches. > > For both patches: > > Acked-by: Tomi Valkeinen <tomi.valkeinen@nokia.com> OK, thanks will queue. Tony ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-12-22 18:57 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-12-21 17:25 [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Jarkko Nikula 2010-12-21 17:25 ` [PATCH 1/2] omap: rx51: Cleanup vdds_sdi supply construction Jarkko Nikula 2010-12-21 17:25 ` [PATCH 2/2] omap: rx51: Add vdda_dac supply for tvout Jarkko Nikula 2010-12-21 20:21 ` [PATCH 0/2] omap: rx51: Fix broken fb on RX51/N900 Tony Lindgren 2010-12-22 6:56 ` Jarkko Nikula 2010-12-22 9:45 ` Tomi Valkeinen 2010-12-22 18:57 ` Tony Lindgren
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).