linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
@ 2012-04-02  8:59 Roger Quadros
  2012-04-03  9:47 ` Roger Quadros
  0 siblings, 1 reply; 7+ messages in thread
From: Roger Quadros @ 2012-04-02  8:59 UTC (permalink / raw)
  To: linux-omap; +Cc: Chris Lalancette, Roger Quadros

From: Chris Lalancette <clalancette@gmail.com>

Signed-off-by: Chris Lalancette <clalancette@gmail.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/mach-omap2/id.c              |    5 ++++-
 arch/arm/plat-omap/include/plat/cpu.h |    1 +
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
index 0e79b7b..f139817 100644
--- a/arch/arm/mach-omap2/id.c
+++ b/arch/arm/mach-omap2/id.c
@@ -478,9 +478,12 @@ void __init omap4xxx_check_revision(void)
 	case 0xb94e:
 		switch (rev) {
 		case 0:
-		default:
 			omap_revision = OMAP4460_REV_ES1_0;
 			break;
+		case 2:
+		default:
+			omap_revision = OMAP4460_REV_ES1_1;
+			break;
 		}
 		break;
 	case 0xb975:
diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
index dc6a86b..4bdf14e 100644
--- a/arch/arm/plat-omap/include/plat/cpu.h
+++ b/arch/arm/plat-omap/include/plat/cpu.h
@@ -445,6 +445,7 @@ IS_OMAP_TYPE(3517, 0x3517)
 
 #define OMAP446X_CLASS		0x44600044
 #define OMAP4460_REV_ES1_0	(OMAP446X_CLASS | (0x10 << 8))
+#define OMAP4460_REV_ES1_1	(OMAP446X_CLASS | (0x11 << 8))
 
 #define OMAP447X_CLASS		0x44700044
 #define OMAP4470_REV_ES1_0	(OMAP447X_CLASS | (0x10 << 8))
-- 
1.7.4.1


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

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-04-02  8:59 [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1 Roger Quadros
@ 2012-04-03  9:47 ` Roger Quadros
  2012-04-18 16:50   ` Tony Lindgren
  0 siblings, 1 reply; 7+ messages in thread
From: Roger Quadros @ 2012-04-03  9:47 UTC (permalink / raw)
  To: tony@atomide.com; +Cc: linux-omap, Chris Lalancette

Hi Tony,

Could you please take this patch for the next merge? Thanks.

regards,
-roger

On 04/02/2012 11:59 AM, Roger Quadros wrote:
> From: Chris Lalancette <clalancette@gmail.com>
> 
> Signed-off-by: Chris Lalancette <clalancette@gmail.com>
> Signed-off-by: Roger Quadros <rogerq@ti.com>
> ---
>  arch/arm/mach-omap2/id.c              |    5 ++++-
>  arch/arm/plat-omap/include/plat/cpu.h |    1 +
>  2 files changed, 5 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
> index 0e79b7b..f139817 100644
> --- a/arch/arm/mach-omap2/id.c
> +++ b/arch/arm/mach-omap2/id.c
> @@ -478,9 +478,12 @@ void __init omap4xxx_check_revision(void)
>  	case 0xb94e:
>  		switch (rev) {
>  		case 0:
> -		default:
>  			omap_revision = OMAP4460_REV_ES1_0;
>  			break;
> +		case 2:
> +		default:
> +			omap_revision = OMAP4460_REV_ES1_1;
> +			break;
>  		}
>  		break;
>  	case 0xb975:
> diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
> index dc6a86b..4bdf14e 100644
> --- a/arch/arm/plat-omap/include/plat/cpu.h
> +++ b/arch/arm/plat-omap/include/plat/cpu.h
> @@ -445,6 +445,7 @@ IS_OMAP_TYPE(3517, 0x3517)
>  
>  #define OMAP446X_CLASS		0x44600044
>  #define OMAP4460_REV_ES1_0	(OMAP446X_CLASS | (0x10 << 8))
> +#define OMAP4460_REV_ES1_1	(OMAP446X_CLASS | (0x11 << 8))
>  
>  #define OMAP447X_CLASS		0x44700044
>  #define OMAP4470_REV_ES1_0	(OMAP447X_CLASS | (0x10 << 8))


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

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-04-03  9:47 ` Roger Quadros
@ 2012-04-18 16:50   ` Tony Lindgren
  2012-04-19  7:23     ` Roger Quadros
  0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2012-04-18 16:50 UTC (permalink / raw)
  To: Roger Quadros; +Cc: linux-omap, Chris Lalancette

Hi,

* Roger Quadros <rogerq@ti.com> [120403 02:50]:
> Hi Tony,
> 
> Could you please take this patch for the next merge? Thanks.

Yes, it seems that this is not needed as a fix for the -rc cycle?

If it's needed as a fix, please let me know and also describe
what breaks.

Regards,

Tony

 
> On 04/02/2012 11:59 AM, Roger Quadros wrote:
> > From: Chris Lalancette <clalancette@gmail.com>
> > 
> > Signed-off-by: Chris Lalancette <clalancette@gmail.com>
> > Signed-off-by: Roger Quadros <rogerq@ti.com>
> > ---
> >  arch/arm/mach-omap2/id.c              |    5 ++++-
> >  arch/arm/plat-omap/include/plat/cpu.h |    1 +
> >  2 files changed, 5 insertions(+), 1 deletions(-)
> > 
> > diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
> > index 0e79b7b..f139817 100644
> > --- a/arch/arm/mach-omap2/id.c
> > +++ b/arch/arm/mach-omap2/id.c
> > @@ -478,9 +478,12 @@ void __init omap4xxx_check_revision(void)
> >  	case 0xb94e:
> >  		switch (rev) {
> >  		case 0:
> > -		default:
> >  			omap_revision = OMAP4460_REV_ES1_0;
> >  			break;
> > +		case 2:
> > +		default:
> > +			omap_revision = OMAP4460_REV_ES1_1;
> > +			break;
> >  		}
> >  		break;
> >  	case 0xb975:
> > diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
> > index dc6a86b..4bdf14e 100644
> > --- a/arch/arm/plat-omap/include/plat/cpu.h
> > +++ b/arch/arm/plat-omap/include/plat/cpu.h
> > @@ -445,6 +445,7 @@ IS_OMAP_TYPE(3517, 0x3517)
> >  
> >  #define OMAP446X_CLASS		0x44600044
> >  #define OMAP4460_REV_ES1_0	(OMAP446X_CLASS | (0x10 << 8))
> > +#define OMAP4460_REV_ES1_1	(OMAP446X_CLASS | (0x11 << 8))
> >  
> >  #define OMAP447X_CLASS		0x44700044
> >  #define OMAP4470_REV_ES1_0	(OMAP447X_CLASS | (0x10 << 8))
> 

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

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-04-18 16:50   ` Tony Lindgren
@ 2012-04-19  7:23     ` Roger Quadros
  2012-05-08 21:50       ` Tony Lindgren
  2012-05-15 11:34       ` Ryazantsev, Volodymyr
  0 siblings, 2 replies; 7+ messages in thread
From: Roger Quadros @ 2012-04-19  7:23 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, Chris Lalancette

Hi,

On 04/18/2012 07:50 PM, Tony Lindgren wrote:
> Hi,
> 
> * Roger Quadros <rogerq@ti.com> [120403 02:50]:
>> Hi Tony,
>>
>> Could you please take this patch for the next merge? Thanks.
> 
> Yes, it seems that this is not needed as a fix for the -rc cycle?

Right, it is not needed for this -rc cycle.
> 
> If it's needed as a fix, please let me know and also describe
> what breaks.

It does not fix anything but is just for the sake of correctness.

regards,
-roger

>  
>> On 04/02/2012 11:59 AM, Roger Quadros wrote:
>>> From: Chris Lalancette <clalancette@gmail.com>
>>>
>>> Signed-off-by: Chris Lalancette <clalancette@gmail.com>
>>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>>> ---
>>>  arch/arm/mach-omap2/id.c              |    5 ++++-
>>>  arch/arm/plat-omap/include/plat/cpu.h |    1 +
>>>  2 files changed, 5 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
>>> index 0e79b7b..f139817 100644
>>> --- a/arch/arm/mach-omap2/id.c
>>> +++ b/arch/arm/mach-omap2/id.c
>>> @@ -478,9 +478,12 @@ void __init omap4xxx_check_revision(void)
>>>  	case 0xb94e:
>>>  		switch (rev) {
>>>  		case 0:
>>> -		default:
>>>  			omap_revision = OMAP4460_REV_ES1_0;
>>>  			break;
>>> +		case 2:
>>> +		default:
>>> +			omap_revision = OMAP4460_REV_ES1_1;
>>> +			break;
>>>  		}
>>>  		break;
>>>  	case 0xb975:
>>> diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
>>> index dc6a86b..4bdf14e 100644
>>> --- a/arch/arm/plat-omap/include/plat/cpu.h
>>> +++ b/arch/arm/plat-omap/include/plat/cpu.h
>>> @@ -445,6 +445,7 @@ IS_OMAP_TYPE(3517, 0x3517)
>>>  
>>>  #define OMAP446X_CLASS		0x44600044
>>>  #define OMAP4460_REV_ES1_0	(OMAP446X_CLASS | (0x10 << 8))
>>> +#define OMAP4460_REV_ES1_1	(OMAP446X_CLASS | (0x11 << 8))
>>>  
>>>  #define OMAP447X_CLASS		0x44700044
>>>  #define OMAP4470_REV_ES1_0	(OMAP447X_CLASS | (0x10 << 8))
>>


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

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-04-19  7:23     ` Roger Quadros
@ 2012-05-08 21:50       ` Tony Lindgren
  2012-05-15 11:34       ` Ryazantsev, Volodymyr
  1 sibling, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2012-05-08 21:50 UTC (permalink / raw)
  To: Roger Quadros; +Cc: linux-omap, Chris Lalancette

* Roger Quadros <rogerq@ti.com> [120419 00:26]:
> Hi,
> 
> On 04/18/2012 07:50 PM, Tony Lindgren wrote:
> > Hi,
> > 
> > * Roger Quadros <rogerq@ti.com> [120403 02:50]:
> >> Hi Tony,
> >>
> >> Could you please take this patch for the next merge? Thanks.
> > 
> > Yes, it seems that this is not needed as a fix for the -rc cycle?
> 
> Right, it is not needed for this -rc cycle.
> > 
> > If it's needed as a fix, please let me know and also describe
> > what breaks.
> 
> It does not fix anything but is just for the sake of correctness.

Thanks adding into devel-soc branch.

Tony

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

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-04-19  7:23     ` Roger Quadros
  2012-05-08 21:50       ` Tony Lindgren
@ 2012-05-15 11:34       ` Ryazantsev, Volodymyr
  2012-05-25  9:42         ` Tony Lindgren
  1 sibling, 1 reply; 7+ messages in thread
From: Ryazantsev, Volodymyr @ 2012-05-15 11:34 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Roger Quadros, linux-omap, Chris Lalancette

Hi Tony,

  Could you please take this patch.
  Its absence raises some issues like Errata maintenance.

Thanks,
  _vr

On Thu, Apr 19, 2012 at 10:23 AM, Roger Quadros <rogerq@ti.com> wrote:
>
> Hi,
>
> On 04/18/2012 07:50 PM, Tony Lindgren wrote:
> > Hi,
> >
> > * Roger Quadros <rogerq@ti.com> [120403 02:50]:
> >> Hi Tony,
> >>
> >> Could you please take this patch for the next merge? Thanks.
> >
> > Yes, it seems that this is not needed as a fix for the -rc cycle?
>
> Right, it is not needed for this -rc cycle.
> >
> > If it's needed as a fix, please let me know and also describe
> > what breaks.
>
> It does not fix anything but is just for the sake of correctness.
>
> regards,
> -roger
>
> >
> >> On 04/02/2012 11:59 AM, Roger Quadros wrote:
> >>> From: Chris Lalancette <clalancette@gmail.com>
> >>>
> >>> Signed-off-by: Chris Lalancette <clalancette@gmail.com>
> >>> Signed-off-by: Roger Quadros <rogerq@ti.com>
> >>> ---
> >>>  arch/arm/mach-omap2/id.c              |    5 ++++-
> >>>  arch/arm/plat-omap/include/plat/cpu.h |    1 +
> >>>  2 files changed, 5 insertions(+), 1 deletions(-)
> >>>
> >>> diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
> >>> index 0e79b7b..f139817 100644
> >>> --- a/arch/arm/mach-omap2/id.c
> >>> +++ b/arch/arm/mach-omap2/id.c
> >>> @@ -478,9 +478,12 @@ void __init omap4xxx_check_revision(void)
> >>>     case 0xb94e:
> >>>             switch (rev) {
> >>>             case 0:
> >>> -           default:
> >>>                     omap_revision = OMAP4460_REV_ES1_0;
> >>>                     break;
> >>> +           case 2:
> >>> +           default:
> >>> +                   omap_revision = OMAP4460_REV_ES1_1;
> >>> +                   break;
> >>>             }
> >>>             break;
> >>>     case 0xb975:
> >>> diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h
> >>> index dc6a86b..4bdf14e 100644
> >>> --- a/arch/arm/plat-omap/include/plat/cpu.h
> >>> +++ b/arch/arm/plat-omap/include/plat/cpu.h
> >>> @@ -445,6 +445,7 @@ IS_OMAP_TYPE(3517, 0x3517)
> >>>
> >>>  #define OMAP446X_CLASS             0x44600044
> >>>  #define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8))
> >>> +#define OMAP4460_REV_ES1_1 (OMAP446X_CLASS | (0x11 << 8))
> >>>
> >>>  #define OMAP447X_CLASS             0x44700044
> >>>  #define OMAP4470_REV_ES1_0 (OMAP447X_CLASS | (0x10 << 8))
> >>
>
> --
> 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




--
~~~~~~~~~~~~~~~~~~~
Best regards,
Riazantsev Volodymyr | OMAP4 Platform | GlobalLogic Ukr.
--
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] 7+ messages in thread

* Re: [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1
  2012-05-15 11:34       ` Ryazantsev, Volodymyr
@ 2012-05-25  9:42         ` Tony Lindgren
  0 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2012-05-25  9:42 UTC (permalink / raw)
  To: Ryazantsev, Volodymyr; +Cc: Roger Quadros, linux-omap, Chris Lalancette

* Ryazantsev, Volodymyr <v.riazantsev@ti.com> [120515 04:38]:
> Hi Tony,
> 
>   Could you please take this patch.
>   Its absence raises some issues like Errata maintenance.

This is already in mainline as commit 33ee0db53994a574b76e0261fc9a3daf71f4b0d7.

Regards,

Tony
--
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] 7+ messages in thread

end of thread, other threads:[~2012-05-25  9:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-02  8:59 [PATCH] OMAP4: Adding ID for OMAP4460 ES1.1 Roger Quadros
2012-04-03  9:47 ` Roger Quadros
2012-04-18 16:50   ` Tony Lindgren
2012-04-19  7:23     ` Roger Quadros
2012-05-08 21:50       ` Tony Lindgren
2012-05-15 11:34       ` Ryazantsev, Volodymyr
2012-05-25  9:42         ` 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).