* OMAP DSS2 coming out of OFF mode without restoring context @ 2010-07-29 21:29 Laine Walker-Avina 2010-07-30 6:57 ` Tomi Valkeinen 2010-07-30 11:09 ` Menon, Nishanth 0 siblings, 2 replies; 6+ messages in thread From: Laine Walker-Avina @ 2010-07-29 21:29 UTC (permalink / raw) To: linux-omap, Tomi Valkeinen, linux-fbdev Hi, I'm having a problem where the DSS driver isn't restoring the framebuffer parameters after going in and out of blanking with OFF mode enabled. The problem appears to be in dss_get_ctx_id() in that pdata->get_last_off_on_transaction_id is 0. Commenting out the call to dss_need_ctx_restore() in dss_clk_enable() appears to do the right thing. I'm using the current master branch of linux-omap. -- Laine Walker-Avina Firmware Engineer PASCO scientific ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: OMAP DSS2 coming out of OFF mode without restoring context 2010-07-29 21:29 OMAP DSS2 coming out of OFF mode without restoring context Laine Walker-Avina @ 2010-07-30 6:57 ` Tomi Valkeinen 2010-07-30 11:09 ` Menon, Nishanth 1 sibling, 0 replies; 6+ messages in thread From: Tomi Valkeinen @ 2010-07-30 6:57 UTC (permalink / raw) To: ext Laine Walker-Avina Cc: linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org Hi, On Thu, 2010-07-29 at 23:29 +0200, ext Laine Walker-Avina wrote: > Hi, > > I'm having a problem where the DSS driver isn't restoring the > framebuffer parameters after going in and out of blanking with OFF > mode enabled. The problem appears to be in dss_get_ctx_id() in that > pdata->get_last_off_on_transaction_id is 0. Commenting out the call to > dss_need_ctx_restore() in dss_clk_enable() appears to do the right > thing. I'm using the current master branch of linux-omap. You need to fill the func pointer in the board file: static struct omap_dss_board_info xxx_dss_data = { .get_last_off_on_transaction_id = omap_pm_get_dev_context_loss_count, Tomi ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: OMAP DSS2 coming out of OFF mode without restoring context 2010-07-29 21:29 OMAP DSS2 coming out of OFF mode without restoring context Laine Walker-Avina 2010-07-30 6:57 ` Tomi Valkeinen @ 2010-07-30 11:09 ` Menon, Nishanth 2010-07-30 11:17 ` Tomi Valkeinen 1 sibling, 1 reply; 6+ messages in thread From: Menon, Nishanth @ 2010-07-30 11:09 UTC (permalink / raw) To: Tomi Valkeinen, ext Laine Walker-Avina Cc: linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset="windows-1254", Size: 1135 bytes --] ----- Original message ----- > Hi, > > On Thu, 2010-07-29 at 23:29 +0200, ext Laine Walker-Avina wrote: > > Hi, > > > > I'm having a problem where the DSS driver isn't restoring the > > framebuffer parameters after going in and out of blanking with OFF > > mode enabled. The problem appears to be in dss_get_ctx_id() in that > > pdata->get_last_off_on_transaction_id is 0. Commenting out the call to > > dss_need_ctx_restore() in dss_clk_enable() appears to do the right > > thing. I'm using the current master branch of linux-omap. > > You need to fill the func pointer in the board file: > > static struct omap_dss_board_info xxx_dss_data = { >        .get_last_off_on_transaction_id > omap_pm_get_dev_context_loss_count, > none of l-o board files seem to do this. I guess with off capable master, we need this to be defaulted under CONFIG_PM within dss/core itself? I mean the defaults prevent display function at off, so why ask all boards to fill it up? Regards, Nishanth Menon ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±ýöÝzÿâØ^nr¡ö¦zË\x1aëh¨èÚ&£ûàz¿äz¹Þú+Ê+zf£¢·h§~Ûiÿÿïêÿêçz_è®\x0fæj:+v¨þ)ߣøm ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: OMAP DSS2 coming out of OFF mode without restoring context 2010-07-30 11:09 ` Menon, Nishanth @ 2010-07-30 11:17 ` Tomi Valkeinen 2010-07-30 13:01 ` Nishanth Menon 0 siblings, 1 reply; 6+ messages in thread From: Tomi Valkeinen @ 2010-07-30 11:17 UTC (permalink / raw) To: Menon, Nishanth Cc: ext Laine Walker-Avina, linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org On Fri, 2010-07-30 at 13:09 +0200, ext Menon, Nishanth wrote: > ----- Original message ----- > > Hi, > > > > On Thu, 2010-07-29 at 23:29 +0200, ext Laine Walker-Avina wrote: > > > Hi, > > > > > > I'm having a problem where the DSS driver isn't restoring the > > > framebuffer parameters after going in and out of blanking with OFF > > > mode enabled. The problem appears to be in dss_get_ctx_id() in that > > > pdata->get_last_off_on_transaction_id is 0. Commenting out the call to > > > dss_need_ctx_restore() in dss_clk_enable() appears to do the right > > > thing. I'm using the current master branch of linux-omap. > > > > You need to fill the func pointer in the board file: > > > > static struct omap_dss_board_info xxx_dss_data = { > > .get_last_off_on_transaction_id > > omap_pm_get_dev_context_loss_count, > > > none of l-o board files seem to do this. I guess > with off capable master, we need this to be > defaulted under CONFIG_PM within dss/core itself? > I mean the defaults prevent display function > at off, so why ask all boards to fill it up? If the PM stuff in linux tree starts to be in working order, then yes, we need some better solution. I'm not quite sure what the options are, but I was told that the correct way to get context loss count is as above, fill the platform_data in the board file with a pointer to omap_pm_get_dev_context_loss_count(). So if that is still the proper way, then we need a "DSS platform initialization" function that the board files can call, which then fills the platform_data with correct data. But this will still require modifying every board file that uses DSS. Then again, every board file needs anyway DSS code, so perhaps that's not such a big issue. For this particular case there's not much benefit having a separate initialization function. On the contrary, it'll just have more code lines. But I think there will be some more platform DSS stuff (like pinmuxing) which can then use the same mechanism. Tomi ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: OMAP DSS2 coming out of OFF mode without restoring context 2010-07-30 11:17 ` Tomi Valkeinen @ 2010-07-30 13:01 ` Nishanth Menon 2010-07-30 15:15 ` Aguirre, Sergio 0 siblings, 1 reply; 6+ messages in thread From: Nishanth Menon @ 2010-07-30 13:01 UTC (permalink / raw) To: Tomi Valkeinen Cc: ext Laine Walker-Avina, linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org Tomi Valkeinen had written, on 07/30/2010 06:17 AM, the following: > On Fri, 2010-07-30 at 13:09 +0200, ext Menon, Nishanth wrote: >> ----- Original message ----- >>> Hi, >>> >>> On Thu, 2010-07-29 at 23:29 +0200, ext Laine Walker-Avina wrote: >>>> Hi, >>>> >>>> I'm having a problem where the DSS driver isn't restoring the >>>> framebuffer parameters after going in and out of blanking with OFF >>>> mode enabled. The problem appears to be in dss_get_ctx_id() in that >>>> pdata->get_last_off_on_transaction_id is 0. Commenting out the call to >>>> dss_need_ctx_restore() in dss_clk_enable() appears to do the right >>>> thing. I'm using the current master branch of linux-omap. >>> You need to fill the func pointer in the board file: >>> >>> static struct omap_dss_board_info xxx_dss_data = { >>> .get_last_off_on_transaction_id >>> omap_pm_get_dev_context_loss_count, >>> >> none of l-o board files seem to do this. I guess >> with off capable master, we need this to be >> defaulted under CONFIG_PM within dss/core itself? >> I mean the defaults prevent display function >> at off, so why ask all boards to fill it up? > > If the PM stuff in linux tree starts to be in working order, then yes, > we need some better solution. > > I'm not quite sure what the options are, but I was told that the correct > way to get context loss count is as above, fill the platform_data in the > board file with a pointer to omap_pm_get_dev_context_loss_count(). > > So if that is still the proper way, then we need a "DSS platform > initialization" function that the board files can call, which then fills > the platform_data with correct data. > > But this will still require modifying every board file that uses DSS. > Then again, every board file needs anyway DSS code, so perhaps that's > not such a big issue. > > For this particular case there's not much benefit having a separate > initialization function. On the contrary, it'll just have more code > lines. But I think there will be some more platform DSS stuff (like > pinmuxing) which can then use the same mechanism. > > Tomi > > I was thinking more of the lines of this: a) omap_pm_get_dev_context_loss_count is exported OR b) there is a file arch/arm/mach-omap2/dss.c which would take this.. diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c index b3a498f..0b9041a 100644 --- a/drivers/video/omap2/dss/core.c +++ b/drivers/video/omap2/dss/core.c @@ -35,6 +35,7 @@ #include <plat/display.h> #include <plat/clock.h> +#include <plat/omap-pm.h> #include "dss.h" @@ -502,6 +503,10 @@ static int omap_dss_probe(struct platform_device *pdev) core.pdev = pdev; + if (!core.pdev->get_last_off_on_transaction_id) + core.pdev->get_last_off_on_transaction_id + omap_pm_get_dev_context_loss_count; + dss_init_overlay_managers(pdev); dss_init_overlays(pdev); -- Regards, Nishanth Menon ^ permalink raw reply related [flat|nested] 6+ messages in thread
* RE: OMAP DSS2 coming out of OFF mode without restoring context 2010-07-30 13:01 ` Nishanth Menon @ 2010-07-30 15:15 ` Aguirre, Sergio 0 siblings, 0 replies; 6+ messages in thread From: Aguirre, Sergio @ 2010-07-30 15:15 UTC (permalink / raw) To: Menon, Nishanth, Tomi Valkeinen Cc: ext Laine Walker-Avina, linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org Hi, > -----Original Message----- > From: linux-omap-owner@vger.kernel.org [mailto:linux-omap- > owner@vger.kernel.org] On Behalf Of Menon, Nishanth > Sent: Friday, July 30, 2010 8:01 AM > To: Tomi Valkeinen > Cc: ext Laine Walker-Avina; linux-omap@vger.kernel.org; linux- > fbdev@vger.kernel.org > Subject: Re: OMAP DSS2 coming out of OFF mode without restoring context > > Tomi Valkeinen had written, on 07/30/2010 06:17 AM, the following: > > On Fri, 2010-07-30 at 13:09 +0200, ext Menon, Nishanth wrote: > >> ----- Original message ----- > >>> Hi, > >>> > >>> On Thu, 2010-07-29 at 23:29 +0200, ext Laine Walker-Avina wrote: > >>>> Hi, > >>>> > >>>> I'm having a problem where the DSS driver isn't restoring the > >>>> framebuffer parameters after going in and out of blanking with OFF > >>>> mode enabled. The problem appears to be in dss_get_ctx_id() in that > >>>> pdata->get_last_off_on_transaction_id is 0. Commenting out the call > to > >>>> dss_need_ctx_restore() in dss_clk_enable() appears to do the right > >>>> thing. I'm using the current master branch of linux-omap. > >>> You need to fill the func pointer in the board file: > >>> > >>> static struct omap_dss_board_info xxx_dss_data = { > >>> .get_last_off_on_transaction_id > >>> omap_pm_get_dev_context_loss_count, > >>> > >> none of l-o board files seem to do this. I guess > >> with off capable master, we need this to be > >> defaulted under CONFIG_PM within dss/core itself? > >> I mean the defaults prevent display function > >> at off, so why ask all boards to fill it up? > > > > If the PM stuff in linux tree starts to be in working order, then yes, > > we need some better solution. > > > > I'm not quite sure what the options are, but I was told that the correct > > way to get context loss count is as above, fill the platform_data in the > > board file with a pointer to omap_pm_get_dev_context_loss_count(). > > > > So if that is still the proper way, then we need a "DSS platform > > initialization" function that the board files can call, which then fills > > the platform_data with correct data. > > > > But this will still require modifying every board file that uses DSS. > > Then again, every board file needs anyway DSS code, so perhaps that's > > not such a big issue. > > > > For this particular case there's not much benefit having a separate > > initialization function. On the contrary, it'll just have more code > > lines. But I think there will be some more platform DSS stuff (like > > pinmuxing) which can then use the same mechanism. > > > > Tomi > > > > > > I was thinking more of the lines of this: > a) omap_pm_get_dev_context_loss_count is exported > OR > b) there is a file arch/arm/mach-omap2/dss.c which would take this.. I'm curious about something... Why this can't be part of the platform code per-cpu? It makes no sense to me (unless I'm missing something here) to put this In mach-omap2/ files... It should be on plat-omap/ somewhere. What do you think? Regards, Sergio > > > diff --git a/drivers/video/omap2/dss/core.c > b/drivers/video/omap2/dss/core.c > index b3a498f..0b9041a 100644 > --- a/drivers/video/omap2/dss/core.c > +++ b/drivers/video/omap2/dss/core.c > @@ -35,6 +35,7 @@ > > #include <plat/display.h> > #include <plat/clock.h> > +#include <plat/omap-pm.h> > > #include "dss.h" > > @@ -502,6 +503,10 @@ static int omap_dss_probe(struct platform_device > *pdev) > > core.pdev = pdev; > > + if (!core.pdev->get_last_off_on_transaction_id) > + core.pdev->get_last_off_on_transaction_id > + omap_pm_get_dev_context_loss_count; > + > dss_init_overlay_managers(pdev); > dss_init_overlays(pdev); > > > > -- > Regards, > Nishanth Menon > -- > 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 ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-07-30 15:15 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-07-29 21:29 OMAP DSS2 coming out of OFF mode without restoring context Laine Walker-Avina 2010-07-30 6:57 ` Tomi Valkeinen 2010-07-30 11:09 ` Menon, Nishanth 2010-07-30 11:17 ` Tomi Valkeinen 2010-07-30 13:01 ` Nishanth Menon 2010-07-30 15:15 ` Aguirre, Sergio
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).