public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC
@ 2009-12-23 16:57 Prafulla Wadaskar
  2009-12-23 20:21 ` Albert ARIBAUD
  0 siblings, 1 reply; 10+ messages in thread
From: Prafulla Wadaskar @ 2009-12-23 16:57 UTC (permalink / raw)
  To: u-boot

 

> -----Original Message-----
> From: Prafulla Wadaskar 
> Sent: Wednesday, December 23, 2009 11:32 AM
> To: 'Wolfgang Denk'; Albert ARIBAUD
> Cc: U-Boot at lists.denx.de
> Subject: RE: [U-Boot] [PATCH V2 1/3] Initial support for 
> Marvell Orion5x SoC
> 
>  
> 
> > -----Original Message-----
> > From: Wolfgang Denk [mailto:wd at denx.de] 
> > Sent: Saturday, December 05, 2009 6:08 AM
> > To: Albert ARIBAUD
> > Cc: U-Boot at lists.denx.de; Prafulla Wadaskar
> > Subject: Re: [U-Boot] [PATCH V2 1/3] Initial support for 
> > Marvell Orion5x SoC
> > 
> > Dear Albert ARIBAUD,
> > 
> > In message <4B1236F3.4010605@free.fr> you wrote:
> > >
> > > These files are derived from their kirkwood counterparts, 
> > which are GPL 
> > > v2 only, so I don't have the right to simply change that to 
> > "v2 or any 
> > > later version", I believe, unless the originals' copyright 
> > owner allows 
> > > it (and possibly even fixes the originals). Prafulla, would 
> > you ACK this?
> 
> Ack
> 
> > 
> > Indeed. These files need to be fixed ASAP, too:
> > 
> > 	drivers/gpio/kw_gpio.c
> > 	drivers/i2c/kirkwood_i2c.c
> > 	include/asm-arm/arch-kirkwood/gpio.h
> > 	include/asm-arm/arch-kirkwood/mpp.h
> 
> In the kirkwood port these files are 
> Imported from Linux kernel source,
> I will request the respective writers to update to latest GPL license.

I got a GREEN flag from respective owners, we can update these files for GPL v2, I will send the patch soon.
Hi Albert, you also take care of the same in your patches

Regards..
Prafulla . .

> 
> Regards..
> Prafulla . .
>  
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [U-Boot] [PATCH V2 0/3] Support for Marvell Orion5x SoC and LaCie ED Mini V2 board
@ 2009-11-14 23:03 Albert Aribaud
  2009-11-14 23:03 ` [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Albert Aribaud
  0 siblings, 1 reply; 10+ messages in thread
From: Albert Aribaud @ 2009-11-14 23:03 UTC (permalink / raw)
  To: u-boot

This series of patches is the second attempt at introducing support
for the Marvell Orion5x SoC and the LaCie ED Mini V2 board. Initial
support includes only serial port and Flash. Additional support will
be added as Marvell devices (e.g. egiga) are made common to kirkwood
and orion5x.

All comments to the first attempt have been taken into account.

The Linux checkpatch.pl script has been run on all three patches. The
first patch has six errors and zero warnings, and all errors are false
positives triggered by colons in 'asm volatile' statements. The second
and third patches have zero errors and zero warnings.

Albert Aribaud (3):
  Initial support for Marvell Orion5x SoC
  Add Orion5x support to 16550 serial device driver
  Add support for the LaCie ED Mini V2 board

 MAINTAINERS                            |    4 +
 MAKEALL                                |    1 +
 Makefile                               |    3 +
 board/LaCie/edminiv2/Makefile          |   54 +++++
 board/LaCie/edminiv2/config.mk         |   27 +++
 board/LaCie/edminiv2/edminiv2.c        |  134 +++++++++++++
 board/LaCie/edminiv2/edminiv2.h        |   43 ++++
 cpu/arm926ejs/orion5x/Makefile         |   52 +++++
 cpu/arm926ejs/orion5x/cpu.c            |  332 ++++++++++++++++++++++++++++++++
 cpu/arm926ejs/orion5x/dram.c           |   61 ++++++
 cpu/arm926ejs/orion5x/mpp.c            |   89 +++++++++
 cpu/arm926ejs/orion5x/timer.c          |  175 +++++++++++++++++
 drivers/serial/serial.c                |    3 +
 include/asm-arm/arch-orion5x/88f5182.h |   40 ++++
 include/asm-arm/arch-orion5x/cpu.h     |  213 ++++++++++++++++++++
 include/asm-arm/arch-orion5x/gpio.h    |   52 +++++
 include/asm-arm/arch-orion5x/mpp.h     |  122 ++++++++++++
 include/asm-arm/arch-orion5x/orion5x.h |   67 +++++++
 include/configs/edminiv2.h             |  143 ++++++++++++++
 19 files changed, 1615 insertions(+), 0 deletions(-)
 create mode 100644 board/LaCie/edminiv2/Makefile
 create mode 100644 board/LaCie/edminiv2/config.mk
 create mode 100644 board/LaCie/edminiv2/edminiv2.c
 create mode 100644 board/LaCie/edminiv2/edminiv2.h
 create mode 100644 cpu/arm926ejs/orion5x/Makefile
 create mode 100644 cpu/arm926ejs/orion5x/cpu.c
 create mode 100644 cpu/arm926ejs/orion5x/dram.c
 create mode 100644 cpu/arm926ejs/orion5x/mpp.c
 create mode 100644 cpu/arm926ejs/orion5x/timer.c
 create mode 100644 include/asm-arm/arch-orion5x/88f5182.h
 create mode 100644 include/asm-arm/arch-orion5x/cpu.h
 create mode 100644 include/asm-arm/arch-orion5x/gpio.h
 create mode 100644 include/asm-arm/arch-orion5x/mpp.h
 create mode 100644 include/asm-arm/arch-orion5x/orion5x.h
 create mode 100644 include/configs/edminiv2.h

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

end of thread, other threads:[~2009-12-24  7:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-23 16:57 [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Prafulla Wadaskar
2009-12-23 20:21 ` Albert ARIBAUD
2009-12-24  7:52   ` Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2009-11-14 23:03 [U-Boot] [PATCH V2 0/3] Support for Marvell Orion5x SoC and LaCie ED Mini V2 board Albert Aribaud
2009-11-14 23:03 ` [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Albert Aribaud
2009-11-18 22:17   ` Wolfgang Denk
2009-11-18 22:51     ` Albert ARIBAUD
2009-11-29  8:55     ` Albert ARIBAUD
2009-12-05  0:37       ` Wolfgang Denk
2009-12-23  6:07         ` Prafulla Wadaskar
2009-11-29 10:34     ` Albert ARIBAUD

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