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

2019-10-23 Thread Mathieu Poirier
t-etm3x", "arm,primecell"; > + reg = <0xf889c000 0x1000>; > + clocks = < 27>, < 46>, < 47>; > + clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; > + cpu = <>;

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) albert.u.b...@aribaud.net wrote: Hi Tom, On Fri, 10 Aug 2012 22:06:59 +0200, Wolfgang Denk w...@denx.de wrote: Dear Tom,

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

2012-08-14 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Removed duplicate definition of PRCMU_BASE

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 mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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):

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

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

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch

[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 mathieu.poir...@linaro.org Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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 mathieu.poir...@linaro.org Signed-off-by: John

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/cpu.c |8 1 files

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/include/asm/arch-u8500

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

2012-07-31 Thread mathieu . poirier
From: John Rigby john.ri...@linaro.org 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 john.ri...@linaro.org Signed-off-by: Mathieu

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

2012-07-31 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c | 26

[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 mathieu.poir...@linaro.org Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2

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

2012-07-05 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org This is to allow the prcmu functions to be used by multiple u8500-based processors. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Fixed white space errors

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

2012-07-05 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Using correct I/O

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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

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

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

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/cpu

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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 mathieu.poir...@linaro.org Signed-off-by: John

[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 mathieu.poir...@linaro.org Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Cleaned #defines

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Moved from __attribute__

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

2012-07-04 Thread mathieu . poirier
From: John Rigby john.ri...@linaro.org 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 john.ri...@linaro.org Signed-off-by: Mathieu

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c

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

2012-07-04 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Correcting cache

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

2012-07-04 Thread Mathieu Poirier
won't boot otherwise. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Correcting cache maintenance register address. - Invalidating all 16 bits in cache maintenance register. - Polling cache maintenance

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

2012-06-25 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Following ARM's reference manuel for initializing the cache - the kernel won't boot otherwise. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Correcting cache

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

2012-06-25 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Moved from __attribute__

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

2012-06-19 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Cleaned #defines in snowball.h --- arch/arm/cpu

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

2012-06-19 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Cleaned #defines

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

2012-06-19 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- Changes for v2: - Moved from __attribute__

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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):

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

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

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/include/asm/arch-u8500

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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 mathieu.poir...@linaro.org Signed-off-by: John

[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 mathieu.poir...@linaro.org Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c

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

2012-06-18 Thread mathieu . poirier
From: John Rigby john.ri...@linaro.org 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 john.ri...@linaro.org Signed-off-by: Mathieu

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org This is mandatory in order to boot the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c |9 + 1 files changed, 9 insertions

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/cpu.c |9 + 1 files

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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):

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

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

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/clock.c| 34 +++ arch/arm/cpu/armv7/u8500/cpu.c |2 + arch

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Enabling timers and clocks in PRCMU and cleaning up mailbox. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/Makefile |2 +- arch/arm/cpu/armv7

[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 mathieu.poir...@linaro.org Addresses between ux500.v1 and ux500.v2 have changed slightly, hence mandating a review of the PRCMU access methods. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org LAN and GBF need to be powered explicitely, doing so with interface to AB8500 companion chip. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/include/asm/arch-u8500

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org 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 mathieu.poir...@linaro.org Signed-off-by: John

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Register mapping has changed on power control chip between the first and second revision. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c

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

2012-06-18 Thread mathieu . poirier
From: John Rigby john.ri...@linaro.org 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 john.ri...@linaro.org Signed-off-by: Mathieu

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org Some CPU (i.e u8500) need more cache management before launching the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/cpu.c |9 + 1 files

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

2012-06-18 Thread mathieu . poirier
From: Mathieu J. Poirier mathieu.poir...@linaro.org This is mandatory in order to boot the Linux kernel. Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org --- arch/arm/cpu/armv7/u8500/cpu.c |9 + 1 files changed, 9 insertions

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/snowball.h @@ -0,0