From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: linux-omap@vger.kernel.org
Cc: linux-fbdev@vger.kernel.org, "Archit Taneja" <a0393947@ti.com>,
"Chandrabhanu Mahapatra" <cmahapatra@ti.com>,
"Raphaël Assénat" <raph@8d.com>,
"Tony Lindgren" <tony@atomide.com>
Subject: Re: [PATCH 1/6] OMAPDSS: add omapdss_version
Date: Fri, 28 Sep 2012 10:44:39 +0000 [thread overview]
Message-ID: <1348829079.2437.9.camel@deskari> (raw)
In-Reply-To: <1348828527-13309-2-git-send-email-tomi.valkeinen@ti.com>
[-- Attachment #1: Type: text/plain, Size: 2102 bytes --]
On Fri, 2012-09-28 at 13:35 +0300, Tomi Valkeinen wrote:
> Add new enum, omapdss_version, that is used to tell which DSS hardware
> version the SoC has. This enum is initialized during platform init, and
> passed in the platform data to omapdss driver.
>
> Note that the versions are not "continuous", that is, you cannot check
> if the version is less or greater than something, but you need to check
> for exact version match. In other words, this is invalid:
>
> /* test if DSS is 3630 or earlier */
> if (ver <= OMAPDSS_VER_OMAP3630)
> ...
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
> ---
> arch/arm/mach-omap2/display.c | 38 ++++++++++++++++++++++++++++++++++++++
> include/video/omapdss.h | 14 ++++++++++++++
> 2 files changed, 52 insertions(+)
>
> diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c
> index ee40739..33555da 100644
> --- a/arch/arm/mach-omap2/display.c
> +++ b/arch/arm/mach-omap2/display.c
> @@ -284,6 +284,35 @@ err:
> return ERR_PTR(r);
> }
>
> +static enum omapdss_version omap_display_get_version(void)
> +{
> + if (cpu_is_omap24xx())
> + return OMAPDSS_VER_OMAP24xx;
> + else if (cpu_is_omap3630())
> + return OMAPDSS_VER_OMAP3630;
> + else if (cpu_is_omap34xx()) {
> + if (soc_is_am35xx()) {
> + return OMAPDSS_VER_AM35xx;
> + } else {
> + if (omap_rev() < OMAP3430_REV_ES3_0)
> + return OMAPDSS_VER_OMAP34xx_ES1;
> + else
> + return OMAPDSS_VER_OMAP34xx_ES3;
> + }
> + } else if (omap_rev() == OMAP4430_REV_ES1_0)
> + return OMAPDSS_VER_OMAP4430_ES1;
> + else if (omap_rev() == OMAP4430_REV_ES2_0 ||
> + omap_rev() == OMAP4430_REV_ES2_1 ||
> + omap_rev() == OMAP4430_REV_ES2_2)
> + return OMAPDSS_VER_OMAP4430_ES2;
> + else if (cpu_is_omap44xx())
> + return OMAPDSS_VER_OMAP4;
> + else if (soc_is_omap54xx())
> + return OMAPDSS_VER_OMAP5;
> + else
> + return OMAPDSS_VER_UNKNOWN
Sigh. I made a late minor change, and of course I broke the compilation
and didn't check it. So there's a ; missing in the above line.
Tomi
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2012-09-28 10:44 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-28 10:35 [PATCH 0/6] OMAPDSS: remove cpu_is_* calls Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 1/6] OMAPDSS: add omapdss_version Tomi Valkeinen
2012-09-28 10:44 ` Tomi Valkeinen [this message]
2012-09-28 11:12 ` Archit Taneja
2012-09-28 11:07 ` Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 2/6] OMAPDSS: use omapdss_version in dss_features.c Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 3/6] OMAPDSS: DISPC: use omapdss_version Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 4/6] OMAPDSS: DSS: " Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 5/6] OMAPDSS: HDMI: " Tomi Valkeinen
2012-09-28 10:35 ` [PATCH 6/6] OMAPDSS: remove <plat/cpu.h> includes Tomi Valkeinen
2012-10-04 1:33 ` [PATCH 0/6] OMAPDSS: remove cpu_is_* calls Jingoo Han
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=1348829079.2437.9.camel@deskari \
--to=tomi.valkeinen@ti.com \
--cc=a0393947@ti.com \
--cc=cmahapatra@ti.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=raph@8d.com \
--cc=tony@atomide.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;
as well as URLs for NNTP newsgroup(s).