From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: linux-omap@vger.kernel.org, Kevin Hilman <khilman@ti.com>,
Paul Walmsley <paul@pwsan.com>
Cc: archit@ti.com
Subject: Re: [PATCH 2/2] OMAPDSS: Ensure OPP100 when DSS is operational
Date: Tue, 13 Mar 2012 15:45:53 +0200 [thread overview]
Message-ID: <1331646353.2856.354.camel@deskari> (raw)
In-Reply-To: <1331205217-19927-2-git-send-email-tomi.valkeinen@ti.com>
[-- Attachment #1: Type: text/plain, Size: 3708 bytes --]
Hi Kevin, Paul,
I know you're busy, but I'd appreciate a comment/ack on these two small
patches, so I could get them in to next merge window. Otherwise using
any other OPP than OPP100 will most likely break the DSS.
This looks quite straightforward fix for me, but I'm not sure if there
could be any side effects.
Tomi
On Thu, 2012-03-08 at 13:13 +0200, Tomi Valkeinen wrote:
> Most of the DSS clocks have restrictions on their frequency based on the
> OPP in use. For example, maximum frequency for a clock may be 180MHz in
> OPP100, but 90MHz in OPP50. This means that when a high enough pixel
> clock or function clock is required, we need to use OPP100.
>
> However, there's currently no way in the PM framework to make that kind
> of request. The closest we get is to ask for very high bus throughput
> from the PM framework, which should effectively force OPP100.
>
> This patch is a simple version for handling the problem. Instead of
> asking for OPP100 only when needed, this patch asks for OPP100 whenever
> DSS is active. This obviously is not an optimal solution for cases with
> small displays where OPP50 would work just fine. However, a proper
> solution is a complex one, and this patch is a short term solution for
> the problem.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> Cc: Paul Walmsley <paul@pwsan.com>
> Cc: Kevin Hilman <khilman@ti.com>
> ---
> drivers/video/omap2/dss/core.c | 10 ++++++++++
> drivers/video/omap2/dss/dss.c | 13 +++++++++++++
> drivers/video/omap2/dss/dss.h | 1 +
> 3 files changed, 24 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
> index 8613f86..999bcbc 100644
> --- a/drivers/video/omap2/dss/core.c
> +++ b/drivers/video/omap2/dss/core.c
> @@ -87,6 +87,16 @@ struct regulator *dss_get_vdds_sdi(void)
> return reg;
> }
>
> +int dss_set_min_bus_tput(struct device *dev, unsigned long tput)
> +{
> + struct omap_dss_board_info *pdata = core.pdev->dev.platform_data;
> +
> + if (pdata->set_min_bus_tput)
> + return pdata->set_min_bus_tput(dev, tput);
> + else
> + return 0;
> +}
> +
> #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
> static int dss_debug_show(struct seq_file *s, void *unused)
> {
> diff --git a/drivers/video/omap2/dss/dss.c b/drivers/video/omap2/dss/dss.c
> index 4a6b5ee..4a3eb22 100644
> --- a/drivers/video/omap2/dss/dss.c
> +++ b/drivers/video/omap2/dss/dss.c
> @@ -826,11 +826,24 @@ static int omap_dsshw_remove(struct platform_device *pdev)
> static int dss_runtime_suspend(struct device *dev)
> {
> dss_save_context();
> + dss_set_min_bus_tput(dev, 0);
> return 0;
> }
>
> static int dss_runtime_resume(struct device *dev)
> {
> + int r;
> + /*
> + * Set an arbitrarily high tput request to ensure OPP100.
> + * What we should really do is to make a request to stay in OPP100,
> + * without any tput requirements, but that is not currently possible
> + * via the PM layer.
> + */
> +
> + r = dss_set_min_bus_tput(dev, 1000000000);
> + if (r)
> + return r;
> +
> dss_restore_context();
> return 0;
> }
> diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h
> index d4b3dff..42f8f62 100644
> --- a/drivers/video/omap2/dss/dss.h
> +++ b/drivers/video/omap2/dss/dss.h
> @@ -162,6 +162,7 @@ struct platform_device;
> struct bus_type *dss_get_bus(void);
> struct regulator *dss_get_vdds_dsi(void);
> struct regulator *dss_get_vdds_sdi(void);
> +int dss_set_min_bus_tput(struct device *dev, unsigned long tput);
>
> /* apply */
> void dss_apply_init(void);
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2012-03-13 13:45 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-08 11:13 [PATCH 1/2] OMAPDSS: add set_min_bus_tput pointer to omapdss's platform data Tomi Valkeinen
2012-03-08 11:13 ` [PATCH 2/2] OMAPDSS: Ensure OPP100 when DSS is operational Tomi Valkeinen
2012-03-13 13:45 ` Tomi Valkeinen [this message]
[not found] ` <87zkbkmjo1.fsf@ti.com>
2012-03-14 6:38 ` Tomi Valkeinen
2012-04-18 13:13 ` Tomi Valkeinen
2012-04-18 17:03 ` Kevin Hilman
2012-04-18 17:26 ` Turquette, Mike
2012-04-19 5:06 ` Tomi Valkeinen
2012-04-19 19:56 ` Turquette, Mike
2012-04-19 5:03 ` Tomi Valkeinen
2012-04-19 14:00 ` Kevin Hilman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1331646353.2856.354.camel@deskari \
--to=tomi.valkeinen@ti.com \
--cc=archit@ti.com \
--cc=khilman@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox