public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP: Add omap34xx revision detection for ES3.1.1
@ 2009-08-26 12:04 Anand Gadiyar
  2009-09-22 21:38 ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Anand Gadiyar @ 2009-08-26 12:04 UTC (permalink / raw)
  To: linux-omap; +Cc: Anand Gadiyar

ARM: OMAP: Add omap34xx revision detection for ES3.1.1

- Add omap34xx revision detection for ES3.1.1 silicon.
- Change default silicon to ES3.1.1

- Also minor bug-fix: ES2.0 rev field is 1, not 0.
  - This means that ES2.0 silicon would have wrongly been
    detected as unknown

Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
---
Let me know if this should be split into a bug-fix patch,
and a separate patch for adding ES 3.1.1 revision info.
I felt the change was too minor to split out, since
ES2.0 silicon is rare.

This patch is against linus' tree - so the cpu.h
change will apply with an offset

 arch/arm/mach-omap2/id.c              |    8 ++++++--
 arch/arm/plat-omap/include/mach/cpu.h |    1 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
index a98201c..414c520 100644
--- a/arch/arm/mach-omap2/id.c
+++ b/arch/arm/mach-omap2/id.c
@@ -185,7 +185,7 @@ void __init omap34xx_check_revision(void)
 
 	if (hawkeye == 0xb7ae) {
 		switch (rev) {
-		case 0:
+		case 1:
 			omap_revision = OMAP3430_REV_ES2_0;
 			rev_name = "ES2.0";
 			break;
@@ -201,9 +201,13 @@ void __init omap34xx_check_revision(void)
 			omap_revision = OMAP3430_REV_ES3_1;
 			rev_name = "ES3.1";
 			break;
+		case 6:
+			omap_revision = OMAP3430_REV_ES3_1_1;
+			rev_name = "ES3.1.1";
+			break;
 		default:
 			/* Use the latest known revision as default */
-			omap_revision = OMAP3430_REV_ES3_1;
+			omap_revision = OMAP3430_REV_ES3_1_1;
 			rev_name = "Unknown revision\n";
 		}
 	}
diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h
index 11e73d9..22cceb8 100644
--- a/arch/arm/plat-omap/include/mach/cpu.h
+++ b/arch/arm/plat-omap/include/mach/cpu.h
@@ -392,6 +392,7 @@ IS_OMAP_TYPE(3430, 0x3430)
 #define OMAP3430_REV_ES2_1	0x34302034
 #define OMAP3430_REV_ES3_0	0x34303034
 #define OMAP3430_REV_ES3_1	0x34304034
+#define OMAP3430_REV_ES3_1_1	0x34306034
 
 #define OMAP443X_CLASS		0x44300034
 

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: OMAP: Add omap34xx revision detection for ES3.1.1
  2009-08-26 12:04 [PATCH] ARM: OMAP: Add omap34xx revision detection for ES3.1.1 Anand Gadiyar
@ 2009-09-22 21:38 ` Tony Lindgren
  2009-09-24 11:41   ` Gadiyar, Anand
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Lindgren @ 2009-09-22 21:38 UTC (permalink / raw)
  To: Anand Gadiyar; +Cc: linux-omap

* Anand Gadiyar <gadiyar@ti.com> [090826 05:04]:
> ARM: OMAP: Add omap34xx revision detection for ES3.1.1
> 
> - Add omap34xx revision detection for ES3.1.1 silicon.
> - Change default silicon to ES3.1.1
> 
> - Also minor bug-fix: ES2.0 rev field is 1, not 0.
>   - This means that ES2.0 silicon would have wrongly been
>     detected as unknown
> 
> Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
> ---
> Let me know if this should be split into a bug-fix patch,
> and a separate patch for adding ES 3.1.1 revision info.
> I felt the change was too minor to split out, since
> ES2.0 silicon is rare.
> 
> This patch is against linus' tree - so the cpu.h
> change will apply with an offset
> 
>  arch/arm/mach-omap2/id.c              |    8 ++++++--
>  arch/arm/plat-omap/include/mach/cpu.h |    1 +
>  2 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
> index a98201c..414c520 100644
> --- a/arch/arm/mach-omap2/id.c
> +++ b/arch/arm/mach-omap2/id.c
> @@ -185,7 +185,7 @@ void __init omap34xx_check_revision(void)
>  
>  	if (hawkeye == 0xb7ae) {
>  		switch (rev) {
> -		case 0:
> +		case 1:
>  			omap_revision = OMAP3430_REV_ES2_0;
>  			rev_name = "ES2.0";
>  			break;

Are you sure about this change? Can you please check on real
ES2.0 hardware, I believe the TRM may have a typo.

Regards,

Tony


> @@ -201,9 +201,13 @@ void __init omap34xx_check_revision(void)
>  			omap_revision = OMAP3430_REV_ES3_1;
>  			rev_name = "ES3.1";
>  			break;
> +		case 6:
> +			omap_revision = OMAP3430_REV_ES3_1_1;
> +			rev_name = "ES3.1.1";
> +			break;
>  		default:
>  			/* Use the latest known revision as default */
> -			omap_revision = OMAP3430_REV_ES3_1;
> +			omap_revision = OMAP3430_REV_ES3_1_1;
>  			rev_name = "Unknown revision\n";
>  		}
>  	}
> diff --git a/arch/arm/plat-omap/include/mach/cpu.h b/arch/arm/plat-omap/include/mach/cpu.h
> index 11e73d9..22cceb8 100644
> --- a/arch/arm/plat-omap/include/mach/cpu.h
> +++ b/arch/arm/plat-omap/include/mach/cpu.h
> @@ -392,6 +392,7 @@ IS_OMAP_TYPE(3430, 0x3430)
>  #define OMAP3430_REV_ES2_1	0x34302034
>  #define OMAP3430_REV_ES3_0	0x34303034
>  #define OMAP3430_REV_ES3_1	0x34304034
> +#define OMAP3430_REV_ES3_1_1	0x34306034
>  
>  #define OMAP443X_CLASS		0x44300034
>  
> --
> 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] 3+ messages in thread

* RE: [PATCH] ARM: OMAP: Add omap34xx revision detection for ES3.1.1
  2009-09-22 21:38 ` Tony Lindgren
@ 2009-09-24 11:41   ` Gadiyar, Anand
  0 siblings, 0 replies; 3+ messages in thread
From: Gadiyar, Anand @ 2009-09-24 11:41 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap@vger.kernel.org

Tony Lindgren wrote:
> * Anand Gadiyar <gadiyar@ti.com> [090826 05:04]:
> > ARM: OMAP: Add omap34xx revision detection for ES3.1.1
> > 
> > - Add omap34xx revision detection for ES3.1.1 silicon.
> > - Change default silicon to ES3.1.1
> > 
> > - Also minor bug-fix: ES2.0 rev field is 1, not 0.
> >   - This means that ES2.0 silicon would have wrongly been
> >     detected as unknown
> > 
> > Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
> > ---
> > Let me know if this should be split into a bug-fix patch,
> > and a separate patch for adding ES 3.1.1 revision info.
> > I felt the change was too minor to split out, since
> > ES2.0 silicon is rare.
> > 
> > This patch is against linus' tree - so the cpu.h
> > change will apply with an offset
> > 
> >  arch/arm/mach-omap2/id.c              |    8 ++++++--
> >  arch/arm/plat-omap/include/mach/cpu.h |    1 +
> >  2 files changed, 7 insertions(+), 2 deletions(-)
> > 
> > diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
> > index a98201c..414c520 100644
> > --- a/arch/arm/mach-omap2/id.c
> > +++ b/arch/arm/mach-omap2/id.c
> > @@ -185,7 +185,7 @@ void __init omap34xx_check_revision(void)
> >  
> >  	if (hawkeye == 0xb7ae) {
> >  		switch (rev) {
> > -		case 0:
> > +		case 1:
> >  			omap_revision = OMAP3430_REV_ES2_0;
> >  			rev_name = "ES2.0";
> >  			break;
> 
> Are you sure about this change? Can you please check on real
> ES2.0 hardware, I believe the TRM may have a typo.
> 
> Regards,
> 
> Tony
> 

No, I'm not sure. I only caught it when I looked at the TRM to get
the ES3.1.1 ID.

I'll have to dig up an ES2.0 board to really verify, but that
won't happen for a couple of weeks at least.

If someone has this board around, please test and report.

Thanks,
Anand

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-24 11:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-26 12:04 [PATCH] ARM: OMAP: Add omap34xx revision detection for ES3.1.1 Anand Gadiyar
2009-09-22 21:38 ` Tony Lindgren
2009-09-24 11:41   ` Gadiyar, Anand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox