* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
@ 2009-11-26 23:55 srinidhi kasagar
2009-11-27 19:49 ` Russell King - ARM Linux
0 siblings, 1 reply; 6+ messages in thread
From: srinidhi kasagar @ 2009-11-26 23:55 UTC (permalink / raw)
To: linux-arm-kernel
From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
Date: Fri, 27 Nov 2009 16:24:37 +0530
This is the v4 version of patch set which adds U8500 machine.
v3 patch was posted to this list on 12th October 2009 and I
have addressed the comments from Jean christophe on this version.
The patch series has a dependency on the patch 5786/1 available in
Russell's patch tracking system. 5786/1 must be applied first.
---
ChangeLog v3->v4
- identation and better naming convention
from SPI to SHPI for Shared Peripheral
Interrupts (Jean Christophe)
- reuse MTU code from nomadik (Jean Christophe)
---
srinidhi kasagar (6):
ARM: U8500 register definitions
ARM: U8500 clock framework
ARM: U8500 core machine support
ARM: U8500 Makefile.boot
ARM nomadik: enable U8500 for common platform
ARM: U8500 integrate to ARM architecture
arch/arm/Kconfig | 20 ++-
arch/arm/Makefile | 1 +
arch/arm/mach-ux500/Kconfig | 15 ++
arch/arm/mach-ux500/Makefile | 8 +
.../{mach-footbridge => mach-ux500}/Makefile.boot | 0
arch/arm/mach-ux500/board-mop500.c | 158 +++++++++++++++++
arch/arm/mach-ux500/clock.c | 95 +++++++++++
arch/arm/mach-ux500/cpu-u8500.c | 64 +++++++
arch/arm/mach-ux500/headsmp.S | 38 ++++
.../include/mach/clkdev.h | 0
arch/arm/mach-ux500/include/mach/debug-macro.S | 19 ++
arch/arm/mach-ux500/include/mach/entry-macro.S | 89 ++++++++++
arch/arm/mach-ux500/include/mach/hardware.h | 131 +++++++++++++++
arch/arm/mach-ux500/include/mach/io.h | 22 +++
arch/arm/mach-ux500/include/mach/irqs.h | 71 ++++++++
arch/arm/mach-ux500/include/mach/memory.h | 18 ++
arch/arm/mach-ux500/include/mach/setup.h | 23 +++
arch/arm/mach-ux500/include/mach/smp.h | 32 ++++
arch/arm/mach-ux500/include/mach/system.h | 25 +++
arch/arm/mach-ux500/include/mach/timex.h | 6 +
arch/arm/mach-ux500/include/mach/uncompress.h | 58 +++++++
arch/arm/mach-ux500/include/mach/vmalloc.h | 18 ++
arch/arm/mach-ux500/localtimer.c | 28 +++
arch/arm/mach-ux500/platsmp.c | 177 ++++++++++++++++++++
arch/arm/plat-nomadik/Kconfig | 2 +-
25 files changed, 1113 insertions(+), 5 deletions(-)
create mode 100644 arch/arm/mach-ux500/Kconfig
create mode 100644 arch/arm/mach-ux500/Makefile
copy arch/arm/{mach-footbridge => mach-ux500}/Makefile.boot (100%)
create mode 100644 arch/arm/mach-ux500/board-mop500.c
create mode 100644 arch/arm/mach-ux500/clock.c
create mode 100644 arch/arm/mach-ux500/cpu-u8500.c
create mode 100644 arch/arm/mach-ux500/headsmp.S
copy arch/arm/{mach-bcmring => mach-ux500}/include/mach/clkdev.h (100%)
create mode 100644 arch/arm/mach-ux500/include/mach/debug-macro.S
create mode 100644 arch/arm/mach-ux500/include/mach/entry-macro.S
create mode 100644 arch/arm/mach-ux500/include/mach/hardware.h
create mode 100644 arch/arm/mach-ux500/include/mach/io.h
create mode 100644 arch/arm/mach-ux500/include/mach/irqs.h
create mode 100644 arch/arm/mach-ux500/include/mach/memory.h
create mode 100644 arch/arm/mach-ux500/include/mach/setup.h
create mode 100644 arch/arm/mach-ux500/include/mach/smp.h
create mode 100644 arch/arm/mach-ux500/include/mach/system.h
create mode 100644 arch/arm/mach-ux500/include/mach/timex.h
create mode 100644 arch/arm/mach-ux500/include/mach/uncompress.h
create mode 100644 arch/arm/mach-ux500/include/mach/vmalloc.h
create mode 100644 arch/arm/mach-ux500/localtimer.c
create mode 100644 arch/arm/mach-ux500/platsmp.c
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
2009-11-26 23:55 [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set srinidhi kasagar
@ 2009-11-27 19:49 ` Russell King - ARM Linux
2009-11-28 10:22 ` Russell King - ARM Linux
0 siblings, 1 reply; 6+ messages in thread
From: Russell King - ARM Linux @ 2009-11-27 19:49 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Nov 27, 2009 at 05:25:25AM +0530, srinidhi kasagar wrote:
> From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
> Date: Fri, 27 Nov 2009 16:24:37 +0530
>
> This is the v4 version of patch set which adds U8500 machine.
> v3 patch was posted to this list on 12th October 2009 and I
> have addressed the comments from Jean christophe on this version.
>
> The patch series has a dependency on the patch 5786/1 available in
> Russell's patch tracking system. 5786/1 must be applied first.
This looks fine - unless anyone has any objections, I'd suggest submitting
to the patch system since it depends on this currently unmerged patch.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
2009-11-27 19:49 ` Russell King - ARM Linux
@ 2009-11-28 10:22 ` Russell King - ARM Linux
2009-11-30 0:36 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 1 reply; 6+ messages in thread
From: Russell King - ARM Linux @ 2009-11-28 10:22 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Nov 27, 2009 at 07:49:50PM +0000, Russell King - ARM Linux wrote:
> On Fri, Nov 27, 2009 at 05:25:25AM +0530, srinidhi kasagar wrote:
> > From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
> > Date: Fri, 27 Nov 2009 16:24:37 +0530
> >
> > This is the v4 version of patch set which adds U8500 machine.
> > v3 patch was posted to this list on 12th October 2009 and I
> > have addressed the comments from Jean christophe on this version.
> >
> > The patch series has a dependency on the patch 5786/1 available in
> > Russell's patch tracking system. 5786/1 must be applied first.
>
> This looks fine - unless anyone has any objections, I'd suggest submitting
> to the patch system since it depends on this currently unmerged patch.
One last thing - please also provide a patch for the top level MAINTAINERS
file for this.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
2009-11-28 10:22 ` Russell King - ARM Linux
@ 2009-11-30 0:36 ` Jean-Christophe PLAGNIOL-VILLARD
2009-12-01 11:37 ` Russell King - ARM Linux
0 siblings, 1 reply; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-11-30 0:36 UTC (permalink / raw)
To: linux-arm-kernel
On 10:22 Sat 28 Nov , Russell King - ARM Linux wrote:
> On Fri, Nov 27, 2009 at 07:49:50PM +0000, Russell King - ARM Linux wrote:
> > On Fri, Nov 27, 2009 at 05:25:25AM +0530, srinidhi kasagar wrote:
> > > From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
> > > Date: Fri, 27 Nov 2009 16:24:37 +0530
> > >
> > > This is the v4 version of patch set which adds U8500 machine.
> > > v3 patch was posted to this list on 12th October 2009 and I
> > > have addressed the comments from Jean christophe on this version.
> > >
> > > The patch series has a dependency on the patch 5786/1 available in
> > > Russell's patch tracking system. 5786/1 must be applied first.
> >
> > This looks fine - unless anyone has any objections, I'd suggest submitting
> > to the patch system since it depends on this currently unmerged patch.
>
> One last thing - please also provide a patch for the top level MAINTAINERS
> file for this.
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
a config HAS_SMP will good to introduce to avoid this long list
config SMP
bool "Symmetric Multi-Processing (EXPERIMENTAL)"
depends on EXPERIMENTAL && (REALVIEW_EB_ARM11MP || REALVIEW_EB_A9MP ||\
MACH_REALVIEW_PB11MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || ARCH_U8500)
Best Regards,
J.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
2009-11-30 0:36 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2009-12-01 11:37 ` Russell King - ARM Linux
2009-12-01 16:02 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 1 reply; 6+ messages in thread
From: Russell King - ARM Linux @ 2009-12-01 11:37 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Nov 30, 2009 at 01:36:04AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 10:22 Sat 28 Nov , Russell King - ARM Linux wrote:
> > On Fri, Nov 27, 2009 at 07:49:50PM +0000, Russell King - ARM Linux wrote:
> > > On Fri, Nov 27, 2009 at 05:25:25AM +0530, srinidhi kasagar wrote:
> > > > From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
> > > > Date: Fri, 27 Nov 2009 16:24:37 +0530
> > > >
> > > > This is the v4 version of patch set which adds U8500 machine.
> > > > v3 patch was posted to this list on 12th October 2009 and I
> > > > have addressed the comments from Jean christophe on this version.
> > > >
> > > > The patch series has a dependency on the patch 5786/1 available in
> > > > Russell's patch tracking system. 5786/1 must be applied first.
> > >
> > > This looks fine - unless anyone has any objections, I'd suggest submitting
> > > to the patch system since it depends on this currently unmerged patch.
> >
> > One last thing - please also provide a patch for the top level MAINTAINERS
> > file for this.
> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
What's that acked-by for?
Still waiting for a MAINTAINERS patch.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set
2009-12-01 11:37 ` Russell King - ARM Linux
@ 2009-12-01 16:02 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 0 replies; 6+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2009-12-01 16:02 UTC (permalink / raw)
To: linux-arm-kernel
On 11:37 Tue 01 Dec , Russell King - ARM Linux wrote:
> On Mon, Nov 30, 2009 at 01:36:04AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > On 10:22 Sat 28 Nov , Russell King - ARM Linux wrote:
> > > On Fri, Nov 27, 2009 at 07:49:50PM +0000, Russell King - ARM Linux wrote:
> > > > On Fri, Nov 27, 2009 at 05:25:25AM +0530, srinidhi kasagar wrote:
> > > > > From: srinidhi kasagar <srinidhi.kasagar@stericsson.com>
> > > > > Date: Fri, 27 Nov 2009 16:24:37 +0530
> > > > >
> > > > > This is the v4 version of patch set which adds U8500 machine.
> > > > > v3 patch was posted to this list on 12th October 2009 and I
> > > > > have addressed the comments from Jean christophe on this version.
> > > > >
> > > > > The patch series has a dependency on the patch 5786/1 available in
> > > > > Russell's patch tracking system. 5786/1 must be applied first.
> > > >
> > > > This looks fine - unless anyone has any objections, I'd suggest submitting
> > > > to the patch system since it depends on this currently unmerged patch.
> > >
> > > One last thing - please also provide a patch for the top level MAINTAINERS
> > > file for this.
> > Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> What's that acked-by for?
the current patch series is fine
>
> Still waiting for a MAINTAINERS patch.
agreed too
Best Regards,
J.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-12-01 16:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-26 23:55 [PATCH v4 0/6] ARM: ST-Ericsson's U8500 SMP platform, a new patch set srinidhi kasagar
2009-11-27 19:49 ` Russell King - ARM Linux
2009-11-28 10:22 ` Russell King - ARM Linux
2009-11-30 0:36 ` Jean-Christophe PLAGNIOL-VILLARD
2009-12-01 11:37 ` Russell King - ARM Linux
2009-12-01 16:02 ` Jean-Christophe PLAGNIOL-VILLARD
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).