Re: [U-Boot] [PATCH] ARM: dts: zynq: enablement of coresight topology

2019-10-23 Thread Mathieu Poirier
x1000>; > + clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; > + clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; > + cpu = <&cpu0>; > +

[U-Boot] [PATCH 00/11] support for ST-Ericsson snowball board

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This set adds support for the ST-Ericsson u8500 based snowball board. Doing so it moves u8500-href code around to allow for code reuse. John Rigby (1): u8500: Separating mmc config parameters from driver Mathieu J. Poirier (10): snowball: Add support for ux500 b

[U-Boot] [PATCH 02/11] u8500: Moving prcmu to cpu directory

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/prcmu.c

[U-Boot] [PATCH 03/11] snowball: Adding architecture dependent initialisation

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/cpu.c | 41 +++ ar

[U-Boot] [PATCH 04/11] snowball: Adding CPU clock initialisation

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch/arm/include/asm/arch-u8500/clock.h |5 +--- 3 files c

[U-Boot] [PATCH 06/11] snowball: applying power to LAN and GBF controllers

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/include/asm/arch-u8500/hardware.h | 11 +++- arch/arm/include/asm/arch-u8500/prcmu.h

[U-Boot] [PATCH 07/11] u8500: Moving processor-specific functions to cpu area.

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Functions such as providing power to the MMC device and reading the processor version register should be in the cpu area for access by multiple u8500-based boards. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u

[U-Boot] [PATCH 05/11] snowball: Moving to ux500.v2 addess scheme for PRCMU access

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/prcmu.c | 91 +++-

[U-Boot] [PATCH 08/11] u8500: Enabling power to MMC device on AB8500 V2

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c | 89 arch/arm/include/asm/

[U-Boot] [PATCH 09/11] u8500: Separating mmc config parameters from driver

2012-06-18 Thread mathieu . poirier
From: John Rigby Configuration in vexpress and u8500.v1 is different from what is needed in u8500.v2. As such, card configuration specifics need to reside in the board file rather than the driver. Signed-off-by: John Rigby Signed-off-by: Mathieu Poirier --- board/armltd/vexpress

[U-Boot] [PATCH 11/11] snowball: Adding board specific cache cleanup routine

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is mandatory in order to boot the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/u8500/cp

[U-Boot] [PATCH 10/11] armv7: Adding cpu specific cache managmenent

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/cpu.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ar

[U-Boot] [PATCH 00/11] support for ST-Ericsson snowball board

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This set adds support for the ST-Ericsson u8500 based snowball board. Doing so it moves u8500-href code around to allow for code reuse. John Rigby (1): u8500: Separating mmc config parameters from driver Mathieu J. Poirier (10): snowball: Add support for ux500 b

[U-Boot] [PATCH 02/11] u8500: Moving prcmu to cpu directory

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/prcmu.c

[U-Boot] [PATCH 04/11] snowball: Adding CPU clock initialisation

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch/arm/include/asm/arch-u8500/clock.h |5 +--- 3 files c

[U-Boot] [PATCH 03/11] snowball: Adding architecture dependent initialisation

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/cpu.c | 41 +++ ar

[U-Boot] [PATCH 05/11] snowball: Moving to ux500.v2 addess scheme for PRCMU access

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/prcmu.c | 91 +++-

[U-Boot] [PATCH 06/11] snowball: applying power to LAN and GBF controllers

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/include/asm/arch-u8500/hardware.h | 11 +++- arch/arm/include/asm/arch-u8500/prcmu.h

[U-Boot] [PATCH 07/11] u8500: Moving processor-specific functions to cpu area.

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Functions such as providing power to the MMC device and reading the processor version register should be in the cpu area for access by multiple u8500-based boards. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u

[U-Boot] [PATCH 08/11] u8500: Enabling power to MMC device on AB8500 V2

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c | 89 arch/arm/include/asm/

[U-Boot] [PATCH 09/11] u8500: Separating mmc config parameters from driver

2012-06-18 Thread mathieu . poirier
From: John Rigby Configuration in vexpress and u8500.v1 is different from what is needed in u8500.v2. As such, card configuration specifics need to reside in the board file rather than the driver. Signed-off-by: John Rigby Signed-off-by: Mathieu Poirier --- board/armltd/vexpress

[U-Boot] [PATCH 10/11] armv7: Adding cpu specific cache managmenent

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/cpu.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/ar

[U-Boot] [PATCH 11/11] snowball: Adding board specific cache cleanup routine

2012-06-18 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is mandatory in order to boot the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/u8500/cp

Re: [U-Boot] [PATCH 01/11] snowball: Add support for ux500 based snowball board

2012-06-18 Thread Mathieu Poirier
On 12-06-18 11:59 AM, Tom Rini wrote: > On Mon, Jun 18, 2012 at 10:35:34AM -0600, mathieu.poir...@linaro.org wrote: > > [snip] >> diff --git a/include/configs/snowball.h b/include/configs/snowball.h >> new file mode 100644 >> index 000..845db29 >> --- /dev/null >> +++ b/include/configs/snowbal

[U-Boot] [PATCH 03/11 v2] snowball: Adding architecture dependent initialisation

2012-06-19 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u

[U-Boot] [PATCH 06/11 v2] snowball: applying power to LAN and GBF controllers

2012-06-19 Thread mathieu . poirier
From: "Mathieu J. Poirier" LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/include/asm/arch-u8500/hardwar

[U-Boot] [PATCH 10/11 v2] armv7: Adding cpu specific cache managmenent

2012-06-19 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Moved from __attribute__(...) to __weak. --- arch/arm/cpu/armv7/cpu.c |8 +++

[U-Boot] [PATCH 11/11 v2] snowball: Adding board specific cache cleanup routine

2012-06-25 Thread mathieu . poirier
From: "Mathieu J. Poirier" Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Correcting cache maintenance register address. - Invalidating

[U-Boot] [PATCH 10/11 v3] armv7: Adding cpu specific cache managmenent

2012-06-25 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Moved from __attribute__(...) to __weak. changes for v3: - Choosing more explicit name

[U-Boot] [RESEND 00/11] Support for ST-Ericsson snowball board

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" This set adds support for the ST-Ericsson u8500 based snowball board. Doing so it moves u8500-href code around to allow for code reuse between boards. It was sent out more than three weeks ago, was modified after comments were received but never got an official ACK.

[U-Boot] [RESEND 02/11] u8500: Moving prcmu to cpu directory

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/prcmu.c

[U-Boot] [RESEND 03/11] snowball: Adding architecture dependent initialisation

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u

[U-Boot] [RESEND 07/11] u8500: Moving processor-specific functions to cpu area.

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Functions such as providing power to the MMC device and reading the processor version register should be in the cpu area for access by multiple u8500-based boards. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u

[U-Boot] [RESEND 05/11] snowball: Moving to ux500.v2 addess scheme for PRCMU access

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/prcmu.c | 91 +++-

[U-Boot] [RESEND 04/11] snowball: Adding CPU clock initialisation

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch/arm/include/asm/arch-u8500/clock.h |5 +--- 3 files c

[U-Boot] [RESEND 06/11] snowball: applying power to LAN and GBF controllers

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/include/asm/arch-u8500/hardwar

[U-Boot] [RESEND 10/11] armv7: Adding cpu specific cache managmenent

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Moved from __attribute__(...) to __weak. changes for v3: - Choosing more explicit name

[U-Boot] [RESEND 09/11] u8500: Separating mmc config parameters from driver

2012-07-04 Thread mathieu . poirier
From: John Rigby Configuration in vexpress and u8500.v1 is different from what is needed in u8500.v2. As such, card configuration specifics need to reside in the board file rather than the driver. Signed-off-by: John Rigby Signed-off-by: Mathieu Poirier --- board/armltd/vexpress

[U-Boot] [RESEND 08/11] u8500: Enabling power to MMC device on AB8500 V2

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c | 89 arch/arm/include/asm/

[U-Boot] [RESEND 11/11] snowball: Adding board specific cache cleanup routine

2012-07-04 Thread mathieu . poirier
From: "Mathieu J. Poirier" Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Correcting cache maintenance register address. - Invalidating

Re: [U-Boot] [RESEND 11/11] snowball: Adding board specific cache cleanup routine

2012-07-04 Thread Mathieu Poirier
r initializing the cache - the >> kernel won't boot otherwise. >> >> Signed-off-by: Mathieu Poirier >> Signed-off-by: John Rigby >> --- >> Changes for v2: >>- Correcting cache maintenance register address. >>- Invalidating all 16 bits i

[U-Boot] [PATCH 05/11 v2] snowball: Moving to ux500.v2 addess scheme for PRCMU access

2012-07-05 Thread mathieu . poirier
From: "Mathieu J. Poirier" Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Refactored to apply cleanly over previous v2 changes. ---

[U-Boot] [PATCH 02/11 v2] u8500: Moving prcmu to cpu directory

2012-07-05 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Fixed white space errors. --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm

[U-Boot] [PATCH 11/11 v2] snowball: Adding board specific cache cleanup routine

2012-07-05 Thread mathieu . poirier
From: "Mathieu J. Poirier" Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Using correct I/O access function. - Added cache controller

[U-Boot] [PATCH 00/11] Support for ST-Ericsson snowball board

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" This set adds support for the ST-Ericsson u8500 based snowball board. Doing so it moves u8500-href code around to allow for code reuse between boards. It was sent out during the 12.07 cycle but never received an official ACK. John Rigby (1): u8500: Separating mmc c

[U-Boot] [PATCH 02/11] u8500: Moving prcmu to cpu directory

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/prcmu.c

[U-Boot] [PATCH 03/11] snowball: Adding architecture dependent initialisation

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7/u8500/cpu.c | 41 +++ ar

[U-Boot] [PATCH 04/11] snowball: Adding CPU clock initialisation

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch/arm/include/asm/arch-u8500/clock.h |5 +--- 3 files c

[U-Boot] [PATCH 05/11] snowball: Moving to ux500.v2 addess scheme for PRCMU access

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/prcmu.c | 91 +++-

[U-Boot] [PATCH 07/11] u8500: Moving processor-specific functions to cpu area.

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Functions such as providing power to the MMC device and reading the processor version register should be in the cpu area for access by multiple u8500-based boards. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u

[U-Boot] [PATCH 08/11] u8500: Enabling power to MMC device on AB8500 V2

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c | 89 arch/arm/include/asm/

[U-Boot] [PATCH 10/11] armv7: Adding cpu specific cache managmenent

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/cpu.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ar

[U-Boot] [PATCH 06/11] snowball: applying power to LAN and GBF controllers

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/include/asm/arch-u8500/hardware.h | 11 +++- arch/arm/include/asm/arch-u8500/prcmu.h

[U-Boot] [PATCH 09/11] u8500: Separating mmc config parameters from driver

2012-07-31 Thread mathieu . poirier
From: John Rigby Configuration in vexpress and u8500.v1 is different from what is needed in u8500.v2. As such, card configuration specifics need to reside in the board file rather than the driver. Signed-off-by: John Rigby Signed-off-by: Mathieu Poirier --- board/armltd/vexpress

[U-Boot] [PATCH 11/11] snowball: Adding board specific cache cleanup routine

2012-07-31 Thread mathieu . poirier
From: "Mathieu J. Poirier" Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- arch/arm/cpu/armv7/u8500/cpu.c | 26 ++ 1 files changed,

Re: [U-Boot] [PATCH 01/11] snowball: Add support for ux500 based snowball board

2012-08-03 Thread Mathieu Poirier
Thanks for the review - see my comments below. Mathieu. On 12-08-03 08:46 AM, Tom Rini wrote: > On Tue, Jul 31, 2012 at 12:59:23PM -0600, mathieu.poir...@linaro.org wrote: > >> From: "Mathieu J. Poirier" >> >> Signed-off-by: Mathieu Poirier >> Sign

Re: [U-Boot] Please pull u-boot-staging/tr...@ti.com

2012-08-14 Thread Mathieu Poirier
I will fix this right away. Mathieu. On 12-08-13 07:06 PM, Albert ARIBAUD (U-Boot) wrote: > Hi Albert, > > On Tue, 14 Aug 2012 02:04:15 +0200, Albert ARIBAUD (U-Boot) > wrote: > >> Hi Tom, >> >> On Fri, 10 Aug 2012 22:06:59 +0200, Wolfgang Denk wrote: >> >>> Dear Tom, >>> >>> In message <2012

[U-Boot] [PATCH] snowball: Adding architecture dependent initialisation

2012-08-14 Thread mathieu . poirier
From: "Mathieu J. Poirier" Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier Signed-off-by: John Rigby --- Changes for v2: - Removed duplicate definition of PRCMU_BASE. --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm