All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] New mach ids and maintainer name added
@ 2010-03-02  5:16 Vipin KUMAR
  2010-03-02  5:16 ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Vipin KUMAR
  0 siblings, 1 reply; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-02  5:16 UTC (permalink / raw)
  To: u-boot

From: Vipin Kumar <vipin.kumar@st.com>

The subpatches do the following
1. Add the maintainer name for SPEAr support in MAINTAINERS file
2. Support for new mach ids for spear310 and spear320 added

Note : include/asm-arm/mach-types.h has to be updated before applying this
patch.

Vipin Kumar (2):
  SPEAr : Adding maintainer name for spear SoCs
  SPEAr : Supporting new mach ids for spear310 and spear320

 MAINTAINERS                     |    7 +++++++
 board/spear/spear310/spear310.c |    2 +-
 board/spear/spear320/spear320.c |    2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-02  5:16 [U-Boot] [PATCH 0/2] New mach ids and maintainer name added Vipin KUMAR
@ 2010-03-02  5:16 ` Vipin KUMAR
  2010-03-02  5:16   ` [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320 Vipin KUMAR
  2010-03-03 14:56   ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Tom
  0 siblings, 2 replies; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-02  5:16 UTC (permalink / raw)
  To: u-boot

From: Vipin Kumar <vipin.kumar@st.com>

Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
---
 MAINTAINERS |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index dd1579e..49a3762 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -771,6 +771,13 @@ Minkyu Kang <mk7.kang@samsung.com>
 
 	SMDKC100	ARM CORTEX-A8 (S5PC100 SoC)
 
+Vipin Kumar <vipin.kumar@st.com>
+
+	spear300	ARM926EJS (spear300 Soc)
+	spear310	ARM926EJS (spear310 Soc)
+	spear320	ARM926EJS (spear320 Soc)
+	spear600	ARM926EJS (spear600 Soc)
+
 -------------------------------------------------------------------------
 
 Unknown / orphaned boards:
-- 
1.6.0.2

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

* [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320
  2010-03-02  5:16 ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Vipin KUMAR
@ 2010-03-02  5:16   ` Vipin KUMAR
  2010-03-05 14:06     ` Tom
  2010-03-03 14:56   ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Tom
  1 sibling, 1 reply; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-02  5:16 UTC (permalink / raw)
  To: u-boot

From: Vipin Kumar <vipin.kumar@st.com>

Supporting new machine ids for SoCs spear310 and spear320

include/asm-arm/mach-types.h has to be updated before applying
this patch for build to work

Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
---
 board/spear/spear310/spear310.c |    2 +-
 board/spear/spear320/spear320.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/spear/spear310/spear310.c b/board/spear/spear310/spear310.c
index 756aa56..03dfe16 100755
--- a/board/spear/spear310/spear310.c
+++ b/board/spear/spear310/spear310.c
@@ -32,7 +32,7 @@
 
 int board_init(void)
 {
-	return spear_board_init(MACH_TYPE_SPEAR300);
+	return spear_board_init(MACH_TYPE_SPEAR310);
 }
 
 /*
diff --git a/board/spear/spear320/spear320.c b/board/spear/spear320/spear320.c
index 756aa56..2ba2dbb 100755
--- a/board/spear/spear320/spear320.c
+++ b/board/spear/spear320/spear320.c
@@ -32,7 +32,7 @@
 
 int board_init(void)
 {
-	return spear_board_init(MACH_TYPE_SPEAR300);
+	return spear_board_init(MACH_TYPE_SPEAR320);
 }
 
 /*
-- 
1.6.0.2

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-02  5:16 ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Vipin KUMAR
  2010-03-02  5:16   ` [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320 Vipin KUMAR
@ 2010-03-03 14:56   ` Tom
  2010-03-04  2:29     ` Minkyu Kang
  2010-03-04  6:20     ` Vipin KUMAR
  1 sibling, 2 replies; 13+ messages in thread
From: Tom @ 2010-03-03 14:56 UTC (permalink / raw)
  To: u-boot

Vipin KUMAR wrote:
> From: Vipin Kumar <vipin.kumar@st.com>
> 
> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
> ---
>  MAINTAINERS |    7 +++++++
>  1 files changed, 7 insertions(+), 0 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dd1579e..49a3762 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -771,6 +771,13 @@ Minkyu Kang <mk7.kang@samsung.com>
>  
>  	SMDKC100	ARM CORTEX-A8 (S5PC100 SoC)
>  
The smdkc100 is a mistake.
Minkyu,
Please move this up to be after

Feng Kan <fkan@amcc.com>

	redwood			PPC4xx


> +Vipin Kumar <vipin.kumar@st.com>
> +
> +	spear300	ARM926EJS (spear300 Soc)
> +	spear310	ARM926EJS (spear310 Soc)
> +	spear320	ARM926EJS (spear320 Soc)
> +	spear600	ARM926EJS (spear600 Soc)
> +
>  -------------------------------------------------------------------------

Vipin,
Please move this up to be after
Sangmoon Kim <dogoil@etinsys.com>

	debris		MPC8245
	KVME080		MPC8245

The mach id changing looks fine.

Tom

>  
>  Unknown / orphaned boards:

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-03 14:56   ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Tom
@ 2010-03-04  2:29     ` Minkyu Kang
  2010-03-04  6:20     ` Vipin KUMAR
  1 sibling, 0 replies; 13+ messages in thread
From: Minkyu Kang @ 2010-03-04  2:29 UTC (permalink / raw)
  To: u-boot

Dear Tom,

On 3 March 2010 23:56, Tom <Tom.Rix@windriver.com> wrote:
> Vipin KUMAR wrote:
>> From: Vipin Kumar <vipin.kumar@st.com>
>>
>> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
>> ---
>> ?MAINTAINERS | ? ?7 +++++++
>> ?1 files changed, 7 insertions(+), 0 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index dd1579e..49a3762 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -771,6 +771,13 @@ Minkyu Kang <mk7.kang@samsung.com>
>>
>> ? ? ? SMDKC100 ? ? ? ?ARM CORTEX-A8 (S5PC100 SoC)
>>
> The smdkc100 is a mistake.
> Minkyu,
> Please move this up to be after
>
> Feng Kan <fkan@amcc.com>
>
> ? ? ? ?redwood ? ? ? ? ? ? ? ? PPC4xx
>

I don't understand what is a mistake.
I think.. that is section of PowerPC systems.
Do you really want to move it?

>
>> +Vipin Kumar <vipin.kumar@st.com>
>> +
>> + ? ? spear300 ? ? ? ?ARM926EJS (spear300 Soc)
>> + ? ? spear310 ? ? ? ?ARM926EJS (spear310 Soc)
>> + ? ? spear320 ? ? ? ?ARM926EJS (spear320 Soc)
>> + ? ? spear600 ? ? ? ?ARM926EJS (spear600 Soc)
>> +
>> ?-------------------------------------------------------------------------
>
> Vipin,
> Please move this up to be after
> Sangmoon Kim <dogoil@etinsys.com>
>
> ? ? ? ?debris ? ? ? ? ?MPC8245
> ? ? ? ?KVME080 ? ? ? ? MPC8245
>
> The mach id changing looks fine.
>
> Tom
>
>>
>> ?Unknown / orphaned boards:
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

Thanks
Minkyu Kang
-- 
from. prom.
www.promsoft.net

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-03 14:56   ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Tom
  2010-03-04  2:29     ` Minkyu Kang
@ 2010-03-04  6:20     ` Vipin KUMAR
  2010-03-04 12:44       ` Wolfgang Denk
  1 sibling, 1 reply; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-04  6:20 UTC (permalink / raw)
  To: u-boot

On 3/3/2010 8:26 PM, Tom wrote:
> Vipin KUMAR wrote:
>> From: Vipin Kumar <vipin.kumar@st.com>
>>
>> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
>> ---
>>  MAINTAINERS |    7 +++++++
>>  1 files changed, 7 insertions(+), 0 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index dd1579e..49a3762 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -771,6 +771,13 @@ Minkyu Kang <mk7.kang@samsung.com>
>>  
>>      SMDKC100    ARM CORTEX-A8 (S5PC100 SoC)
>>  
> The smdkc100 is a mistake.
> Minkyu,
> Please move this up to be after
> 
> Feng Kan <fkan@amcc.com>
> 
>     redwood            PPC4xx
> 
> 
>> +Vipin Kumar <vipin.kumar@st.com>
>> +
>> +    spear300    ARM926EJS (spear300 Soc)
>> +    spear310    ARM926EJS (spear310 Soc)
>> +    spear320    ARM926EJS (spear320 Soc)
>> +    spear600    ARM926EJS (spear600 Soc)
>> +
>>  -------------------------------------------------------------------------
>>
> 
> Vipin,
> Please move this up to be after
> Sangmoon Kim <dogoil@etinsys.com>
> 
>     debris        MPC8245
>     KVME080        MPC8245
> 

This is under Power PC systems section.
Do you really want me to move it into Power PC systems
Even in ARM systems, the ordering is not alphabetical. 
Is there any other logic followed for arranging maintainer names

> The mach id changing looks fine.
> 
> Tom
> 
>>  
>>  Unknown / orphaned boards:
> 
> 
Regards
Vipin

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-04  6:20     ` Vipin KUMAR
@ 2010-03-04 12:44       ` Wolfgang Denk
  2010-03-05  1:25         ` Minkyu Kang
  2010-03-05 14:10         ` Tom
  0 siblings, 2 replies; 13+ messages in thread
From: Wolfgang Denk @ 2010-03-04 12:44 UTC (permalink / raw)
  To: u-boot

Dear Vipin KUMAR,

In message <4B8F5122.60602@st.com> you wrote:
> On 3/3/2010 8:26 PM, Tom wrote:
...
> > Please move this up to be after
> > Sangmoon Kim <dogoil@etinsys.com>
> > 
> >     debris        MPC8245
> >     KVME080        MPC8245
> > 
> 
> This is under Power PC systems section.
> Do you really want me to move it into Power PC systems

No, of course not.

> Even in ARM systems, the ordering is not alphabetical. 

It should be. If you notice errors, then please submit a patch to fix
this.

> Is there any other logic followed for arranging maintainer names

They are sorted within the respective architecture group
alphabetically by the maintainer's last name.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Real Programmers always confuse Christmas and Halloween because
OCT 31 == DEC 25 !  - Andrew Rutherford (andrewr at ucs.adelaide.edu.au)

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-04 12:44       ` Wolfgang Denk
@ 2010-03-05  1:25         ` Minkyu Kang
  2010-03-05 14:10         ` Tom
  1 sibling, 0 replies; 13+ messages in thread
From: Minkyu Kang @ 2010-03-05  1:25 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang and Tom,

On 4 March 2010 21:44, Wolfgang Denk <wd@denx.de> wrote:
> Dear Vipin KUMAR,
>
> In message <4B8F5122.60602@st.com> you wrote:
>> On 3/3/2010 8:26 PM, Tom wrote:
> ...
>> > Please move this up to be after
>> > Sangmoon Kim <dogoil@etinsys.com>
>> >
>> > ? ? debris ? ? ? ?MPC8245
>> > ? ? KVME080 ? ? ? ?MPC8245
>> >
>>
>> This is under Power PC systems section.
>> Do you really want me to move it into Power PC systems
>
> No, of course not.
>
>> Even in ARM systems, the ordering is not alphabetical.
>
> It should be. If you notice errors, then please submit a patch to fix
> this.
>
>> Is there any other logic followed for arranging maintainer names
>
> They are sorted within the respective architecture group
> alphabetically by the maintainer's last name.

If so, I should move smdkc100 up to be after Eric Millbrandt. right?

Thanks
Minkyu Kang
-- 
from. prom.
www.promsoft.net

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

* [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320
  2010-03-02  5:16   ` [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320 Vipin KUMAR
@ 2010-03-05 14:06     ` Tom
  2010-03-08  5:18       ` Vipin KUMAR
  0 siblings, 1 reply; 13+ messages in thread
From: Tom @ 2010-03-05 14:06 UTC (permalink / raw)
  To: u-boot

Vipin KUMAR wrote:
> From: Vipin Kumar <vipin.kumar@st.com>
> 
> Supporting new machine ids for SoCs spear310 and spear320
> 
> include/asm-arm/mach-types.h has to be updated before applying
> this patch for build to work
> 
> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>

I have applied just this patch to ARM.
Patch 1 is outstanding
Tom

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-04 12:44       ` Wolfgang Denk
  2010-03-05  1:25         ` Minkyu Kang
@ 2010-03-05 14:10         ` Tom
  1 sibling, 0 replies; 13+ messages in thread
From: Tom @ 2010-03-05 14:10 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:
> Dear Vipin KUMAR,
> 
> In message <4B8F5122.60602@st.com> you wrote:
>> On 3/3/2010 8:26 PM, Tom wrote:
> ...
>>> Please move this up to be after
>>> Sangmoon Kim <dogoil@etinsys.com>
>>>
>>>     debris        MPC8245
>>>     KVME080        MPC8245
>>>
>> This is under Power PC systems section.
>> Do you really want me to move it into Power PC systems
> 
> No, of course not.
> 
Sorry, this recommendation was a mistake.

However, the locations of these maintainers must move
to the appropriate alphabetical locations under the ARM
boards.

Tom

>> Even in ARM systems, the ordering is not alphabetical. 
> 
> It should be. If you notice errors, then please submit a patch to fix
> this.
> 
>> Is there any other logic followed for arranging maintainer names
> 
> They are sorted within the respective architecture group
> alphabetically by the maintainer's last name.
> 
> Best regards,
> 
> Wolfgang Denk
> 

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

* [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320
  2010-03-05 14:06     ` Tom
@ 2010-03-08  5:18       ` Vipin KUMAR
  0 siblings, 0 replies; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-08  5:18 UTC (permalink / raw)
  To: u-boot

On 3/5/2010 7:36 PM, Tom wrote:
> Vipin KUMAR wrote:
>> From: Vipin Kumar <vipin.kumar@st.com>
>>
>> Supporting new machine ids for SoCs spear310 and spear320
>>
>> include/asm-arm/mach-types.h has to be updated before applying
>> this patch for build to work
>>
>> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
> 
> I have applied just this patch to ARM.
> Patch 1 is outstanding

I have sent a new patch for maintainer name in MAINTAINERS file
Please include it in your tree

Thanks and Regards
Vipin

> Tom
> 

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
  2010-03-08  5:16 Vipin KUMAR
@ 2010-03-12 19:40 ` Tom
  0 siblings, 0 replies; 13+ messages in thread
From: Tom @ 2010-03-12 19:40 UTC (permalink / raw)
  To: u-boot

Vipin KUMAR wrote:
> Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
> ---
>  MAINTAINERS |    7 +++++++
>  1 files changed, 7 insertions(+), 0 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dd1579e..a42f339 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -639,6 +639,13 @@ Prakash Kumar <prakash@embedx.com>
>  
>  	cerf250		xscale
>  
> +Vipin Kumar <vipin.kumar@st.com>
> +
> +	spear300	ARM926EJS (spear300 Soc)
> +	spear310	ARM926EJS (spear310 Soc)
> +	spear320	ARM926EJS (spear320 Soc)
> +	spear600	ARM926EJS (spear600 Soc)
> +
>  Sergey Lapin <slapin@ossfans.org>
>  
>  	afeb9260	ARM926EJS (AT91SAM9260 SoC)
Applied,
Thanks
Tom

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

* [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs
@ 2010-03-08  5:16 Vipin KUMAR
  2010-03-12 19:40 ` Tom
  0 siblings, 1 reply; 13+ messages in thread
From: Vipin KUMAR @ 2010-03-08  5:16 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
---
 MAINTAINERS |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index dd1579e..a42f339 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -639,6 +639,13 @@ Prakash Kumar <prakash@embedx.com>
 
 	cerf250		xscale
 
+Vipin Kumar <vipin.kumar@st.com>
+
+	spear300	ARM926EJS (spear300 Soc)
+	spear310	ARM926EJS (spear310 Soc)
+	spear320	ARM926EJS (spear320 Soc)
+	spear600	ARM926EJS (spear600 Soc)
+
 Sergey Lapin <slapin@ossfans.org>
 
 	afeb9260	ARM926EJS (AT91SAM9260 SoC)
-- 
1.6.0.2

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

end of thread, other threads:[~2010-03-12 19:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-02  5:16 [U-Boot] [PATCH 0/2] New mach ids and maintainer name added Vipin KUMAR
2010-03-02  5:16 ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Vipin KUMAR
2010-03-02  5:16   ` [U-Boot] [PATCH 2/2] SPEAr : Supporting new mach ids for spear310 and spear320 Vipin KUMAR
2010-03-05 14:06     ` Tom
2010-03-08  5:18       ` Vipin KUMAR
2010-03-03 14:56   ` [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs Tom
2010-03-04  2:29     ` Minkyu Kang
2010-03-04  6:20     ` Vipin KUMAR
2010-03-04 12:44       ` Wolfgang Denk
2010-03-05  1:25         ` Minkyu Kang
2010-03-05 14:10         ` Tom
2010-03-08  5:16 Vipin KUMAR
2010-03-12 19:40 ` Tom

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.