mbox

[U-Boot] please pull u-boot-samsung master

Message ID 54F19313.5050601@samsung.com
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

http://git.denx.de/u-boot-samsung

Message

Minkyu Kang Feb. 28, 2015, 10:06 a.m. UTC
Dear Tom,

The following changes since commit 1606b34aa50804227806971dbb6b82ea0bf81f55:

  Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-02-25 18:14:18 -0500)

are available in the git repository at:


  http://git.denx.de/u-boot-samsung 

for you to fetch changes up to 306f527eff269e48a98c9d83016df6d6877dbb6a:

  Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800 (2015-02-28 18:03:46 +0900)

----------------------------------------------------------------
Akshay Saraswat (9):
      Exynos542x: Config: Add various configs
      Exynos542x: CPU: Power down all secondary cores
      Exynos542x: Add workaround for ARM errata 798870
      Exynos542x: Add workaround for ARM errata 799270
      Exynos542x: Add workaround for exynos iROM errata
      Exynos542x: cache: Disable clean/evict push to external
      Exynos542x: add L2 control register configuration
      Exynos542x: Fix secondary core booting for thumb
      Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset

Doug Anderson (1):
      Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800

 arch/arm/cpu/armv7/exynos/Makefile        |    2 +
 arch/arm/cpu/armv7/exynos/common_setup.h  |   62 ++++++++++++
 arch/arm/cpu/armv7/exynos/exynos5_setup.h |    3 +
 arch/arm/cpu/armv7/exynos/lowlevel_init.c |  147 +++++++++++++++++++++++++++++
 arch/arm/cpu/armv7/exynos/sec_boot.S      |  128 +++++++++++++++++++++++++
 arch/arm/cpu/armv7/exynos/soc.c           |   35 -------
 arch/arm/include/asm/arch-exynos/cpu.h    |    5 +
 arch/arm/include/asm/arch-exynos/system.h |   88 +++++++++++++++++
 arch/arm/include/asm/armv7.h              |   44 +++++++++
 include/configs/exynos5420-common.h       |   16 ++++
 10 files changed, 495 insertions(+), 35 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/exynos/sec_boot.S

Comments

Simon Glass March 2, 2015, 1:04 a.m. UTC | #1
+Tom

On 28 February 2015 at 03:06, Minkyu Kang <mk7.kang@samsung.com> wrote:
> Dear Tom,
>
> The following changes since commit 1606b34aa50804227806971dbb6b82ea0bf81f55:
>
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-02-25 18:14:18 -0500)
>
> are available in the git repository at:
>
>
>   http://git.denx.de/u-boot-samsung
>
> for you to fetch changes up to 306f527eff269e48a98c9d83016df6d6877dbb6a:
>
>   Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800 (2015-02-28 18:03:46 +0900)
>
> ----------------------------------------------------------------
> Akshay Saraswat (9):
>       Exynos542x: Config: Add various configs
>       Exynos542x: CPU: Power down all secondary cores
>       Exynos542x: Add workaround for ARM errata 798870
>       Exynos542x: Add workaround for ARM errata 799270
>       Exynos542x: Add workaround for exynos iROM errata
>       Exynos542x: cache: Disable clean/evict push to external
>       Exynos542x: add L2 control register configuration
>       Exynos542x: Fix secondary core booting for thumb
>       Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset
>
> Doug Anderson (1):
>       Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800
>
>  arch/arm/cpu/armv7/exynos/Makefile        |    2 +
>  arch/arm/cpu/armv7/exynos/common_setup.h  |   62 ++++++++++++
>  arch/arm/cpu/armv7/exynos/exynos5_setup.h |    3 +
>  arch/arm/cpu/armv7/exynos/lowlevel_init.c |  147 +++++++++++++++++++++++++++++
>  arch/arm/cpu/armv7/exynos/sec_boot.S      |  128 +++++++++++++++++++++++++
>  arch/arm/cpu/armv7/exynos/soc.c           |   35 -------
>  arch/arm/include/asm/arch-exynos/cpu.h    |    5 +
>  arch/arm/include/asm/arch-exynos/system.h |   88 +++++++++++++++++
>  arch/arm/include/asm/armv7.h              |   44 +++++++++
>  include/configs/exynos5420-common.h       |   16 ++++
>  10 files changed, 495 insertions(+), 35 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/exynos/sec_boot.S
> --
> Thanks,
> Minkyu Kang.
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
Tom Rini March 2, 2015, 2:07 a.m. UTC | #2
On Sat, Feb 28, 2015 at 07:06:11PM +0900, Minkyu Kang wrote:

> Dear Tom,
> 
> The following changes since commit 1606b34aa50804227806971dbb6b82ea0bf81f55:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-02-25 18:14:18 -0500)
> 
> are available in the git repository at:
> 
> 
>   http://git.denx.de/u-boot-samsung 
> 
> for you to fetch changes up to 306f527eff269e48a98c9d83016df6d6877dbb6a:
> 
>   Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800 (2015-02-28 18:03:46 +0900)
> 
> ----------------------------------------------------------------
> Akshay Saraswat (9):
>       Exynos542x: Config: Add various configs
>       Exynos542x: CPU: Power down all secondary cores
>       Exynos542x: Add workaround for ARM errata 798870
>       Exynos542x: Add workaround for ARM errata 799270
>       Exynos542x: Add workaround for exynos iROM errata
>       Exynos542x: cache: Disable clean/evict push to external
>       Exynos542x: add L2 control register configuration
>       Exynos542x: Fix secondary core booting for thumb
>       Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset
> 
> Doug Anderson (1):
>       Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800
> 
>  arch/arm/cpu/armv7/exynos/Makefile        |    2 +
>  arch/arm/cpu/armv7/exynos/common_setup.h  |   62 ++++++++++++
>  arch/arm/cpu/armv7/exynos/exynos5_setup.h |    3 +
>  arch/arm/cpu/armv7/exynos/lowlevel_init.c |  147 +++++++++++++++++++++++++++++
>  arch/arm/cpu/armv7/exynos/sec_boot.S      |  128 +++++++++++++++++++++++++
>  arch/arm/cpu/armv7/exynos/soc.c           |   35 -------
>  arch/arm/include/asm/arch-exynos/cpu.h    |    5 +
>  arch/arm/include/asm/arch-exynos/system.h |   88 +++++++++++++++++
>  arch/arm/include/asm/armv7.h              |   44 +++++++++
>  include/configs/exynos5420-common.h       |   16 ++++
>  10 files changed, 495 insertions(+), 35 deletions(-)
>  create mode 100644 arch/arm/cpu/armv7/exynos/sec_boot.S

I'm not seeing any of this when I try and pull master, did they end up
in another branch?  Thanks!
Minkyu Kang March 2, 2015, 2:21 a.m. UTC | #3
On 02/03/15 11:07, Tom Rini wrote:
> On Sat, Feb 28, 2015 at 07:06:11PM +0900, Minkyu Kang wrote:
> 
>> Dear Tom,
>>
>> The following changes since commit 1606b34aa50804227806971dbb6b82ea0bf81f55:
>>
>>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-02-25 18:14:18 -0500)
>>
>> are available in the git repository at:
>>
>>
>>   http://git.denx.de/u-boot-samsung 
>>
>> for you to fetch changes up to 306f527eff269e48a98c9d83016df6d6877dbb6a:
>>
>>   Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800 (2015-02-28 18:03:46 +0900)
>>
>> ----------------------------------------------------------------
>> Akshay Saraswat (9):
>>       Exynos542x: Config: Add various configs
>>       Exynos542x: CPU: Power down all secondary cores
>>       Exynos542x: Add workaround for ARM errata 798870
>>       Exynos542x: Add workaround for ARM errata 799270
>>       Exynos542x: Add workaround for exynos iROM errata
>>       Exynos542x: cache: Disable clean/evict push to external
>>       Exynos542x: add L2 control register configuration
>>       Exynos542x: Fix secondary core booting for thumb
>>       Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset
>>
>> Doug Anderson (1):
>>       Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800
>>
>>  arch/arm/cpu/armv7/exynos/Makefile        |    2 +
>>  arch/arm/cpu/armv7/exynos/common_setup.h  |   62 ++++++++++++
>>  arch/arm/cpu/armv7/exynos/exynos5_setup.h |    3 +
>>  arch/arm/cpu/armv7/exynos/lowlevel_init.c |  147 +++++++++++++++++++++++++++++
>>  arch/arm/cpu/armv7/exynos/sec_boot.S      |  128 +++++++++++++++++++++++++
>>  arch/arm/cpu/armv7/exynos/soc.c           |   35 -------
>>  arch/arm/include/asm/arch-exynos/cpu.h    |    5 +
>>  arch/arm/include/asm/arch-exynos/system.h |   88 +++++++++++++++++
>>  arch/arm/include/asm/armv7.h              |   44 +++++++++
>>  include/configs/exynos5420-common.h       |   16 ++++
>>  10 files changed, 495 insertions(+), 35 deletions(-)
>>  create mode 100644 arch/arm/cpu/armv7/exynos/sec_boot.S
> 
> I'm not seeing any of this when I try and pull master, did they end up
> in another branch?  Thanks!
> 

sorry! I forgot push the master branch.
Please retry.

Thanks,
Minkyu Kang.
Tom Rini March 2, 2015, 12:23 p.m. UTC | #4
On Sat, Feb 28, 2015 at 07:06:11PM +0900, Minkyu Kang wrote:

> Dear Tom,
> 
> The following changes since commit 1606b34aa50804227806971dbb6b82ea0bf81f55:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq (2015-02-25 18:14:18 -0500)
> 
> are available in the git repository at:
> 
> 
>   http://git.denx.de/u-boot-samsung 
> 
> for you to fetch changes up to 306f527eff269e48a98c9d83016df6d6877dbb6a:
> 
>   Exynos: Fix L2 cache timings on Exynos5420 and Exynos5800 (2015-02-28 18:03:46 +0900)

Applied to u-boot/master, thanks!