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

Albert ARIBAUD albert.u.boot at aribaud.net
Thu Apr 4 16:12:50 CEST 2013


Hi Minkyu,

On Thu, 04 Apr 2013 22:34:59 +0900, Minkyu Kang <mk7.kang at samsung.com>
wrote:

> Dear Albert,
> 
> The following changes since commit ebd749da69f423a26222d2cdde9a77007fd8b4b7:
> 
>   Merge branch 'u-boot-tegra/master' into 'u-boot-arm/master' (2013-03-26 10:40:13 +0100)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-samsung master
> 
> for you to fetch changes up to 4fdebefa453a58c7b4ca653ab40f7a9791aba6c9:
> 
>   exynos: change indentation of defines in cpu.h (2013-04-04 20:17:50 +0900)
> 
> ----------------------------------------------------------------
> Ajay Kumar (13):
>       video: exynos_fb: Remove callbacks from the driver
>       video: exynos_dp: Remove callbacks from the driver
>       video: exynos_fb: Make fimd_ctrl global
>       EXYNOS: FDT: Add compatible strings for FIMD
>       video: exynos_fb: add DT support for FIMD driver
>       EXYNOS5: Add device node for FIMD
>       SMDK5250: Add device node for FIMD
>       video: exynos_dp: Make dp_regs global
>       EXYNOS5: FDT: Add compatible strings for FIMD
>       video: exynos_dp: Add function to parse DP DT node
>       EXYNOS5: Add device node for DP
>       SMDK5250: Add device node for DP
>       SMDK5250: Use statically defined structures only in non DT case
> 
> Akshay Saraswat (8):
>       Exynos: clock: Fix a bug in PLL lock check condition
>       Exynos: Add hardware accelerated SHA256 and SHA1
>       Exynos: config: Enable ACE HW for SHA 256 for Exynos
>       gen: Add sha h/w acceleration to hash
>       Exynos: config: Enable hash command
>       Exynos5: clock: Fix a typo bug in exynos clock init
>       Exynos5: config: enable time command
>       Exynos: pwm: Remove dead code of function exynos5_get_pwm_clk
> 
> Che-Liang Chiou (1):
>       Exynos: Add timer_get_us function
> 
> Gabe Black (3):
>       Exynos: pwm: Fix two bugs in the exynos pwm configuration code
>       Exynos: Avoid a divide by zero by specifying a non-zero period for pwm 4
>       Exynos: Tidy up the pwm_config function in the exynos pwm driver
> 
> Minkyu Kang (1):
>       exynos: change indentation of defines in cpu.h
> 
> Padmavathi Venna (4):
>       Exynos: Add peripherial id for pwm
>       Exynos: clock: Add generic api to get the clk freq
>       Exynos: clock: Correct pwm source clk selection
>       Exynos: pwm: Use generic api to get pwm clk freq
> 
> Przemyslaw Marczak (1):
>       spl:falcon:trats: Fix SPL image size computing.
> 
> Rajeshwari Shinde (1):
>       EXYNOS5: Add L2 Cache Support.
> 
> Simon Glass (1):
>       Exynos: Change get_timer() to work correctly
> 
> Vivek Gautam (2):
>       SMDK5250: Fix compiler warning for non-dt systems
>       spi: exynos: Fix compiler warnings for non-dt systems
> 
>  Makefile                                     |    1 +
>  arch/arm/cpu/armv7/exynos/clock.c            |  167 +++++++++++--
>  arch/arm/cpu/armv7/exynos/soc.c              |   36 +++
>  arch/arm/cpu/armv7/s5p-common/pwm.c          |   42 ++--
>  arch/arm/cpu/armv7/s5p-common/timer.c        |  117 +++++-----
>  arch/arm/dts/exynos5250.dtsi                 |   13 ++
>  arch/arm/include/asm/arch-exynos/clk.h       |   15 ++
>  arch/arm/include/asm/arch-exynos/cpu.h       |   10 +-
>  arch/arm/include/asm/arch-exynos/dp_info.h   |    1 -
>  arch/arm/include/asm/arch-exynos/periph.h    |    5 +
>  board/samsung/dts/exynos5250-smdk5250.dts    |   40 ++++
>  board/samsung/smdk5250/clock_init.c          |   22 +-
>  board/samsung/smdk5250/setup.h               |    2 +-
>  board/samsung/smdk5250/smdk5250.c            |   19 +-
>  board/samsung/trats/trats.c                  |    6 +-
>  board/samsung/universal_c210/universal.c     |   23 +-
>  common/hash.c                                |   18 ++
>  doc/device-tree-bindings/video/exynos-dp.txt |   69 ++++++
>  doc/device-tree-bindings/video/exynos-fb.txt |   92 ++++++++
>  drivers/crypto/Makefile                      |   47 ++++
>  drivers/crypto/ace_sha.c                     |  126 ++++++++++
>  drivers/crypto/ace_sha.h                     |  325 ++++++++++++++++++++++++++
>  drivers/spi/exynos_spi.c                     |    2 +
>  drivers/video/exynos_dp.c                    |   76 +++++-
>  drivers/video/exynos_dp_lowlevel.c           |   69 ++----
>  drivers/video/exynos_dp_lowlevel.h           |    1 +
>  drivers/video/exynos_fb.c                    |  230 ++++++++++++++++--
>  drivers/video/exynos_fimd.c                  |   44 ++--
>  include/configs/exynos5250-dt.h              |    8 +
>  include/configs/trats.h                      |    1 +
>  include/fdtdec.h                             |    2 +
>  include/hw_sha.h                             |   50 ++++
>  include/lcd.h                                |    9 -
>  lib/fdtdec.c                                 |    2 +
>  34 files changed, 1449 insertions(+), 241 deletions(-)
>  create mode 100644 doc/device-tree-bindings/video/exynos-dp.txt
>  create mode 100644 doc/device-tree-bindings/video/exynos-fb.txt
>  create mode 100644 drivers/crypto/Makefile
>  create mode 100644 drivers/crypto/ace_sha.c
>  create mode 100644 drivers/crypto/ace_sha.h
>  create mode 100644 include/hw_sha.h

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.


More information about the U-Boot mailing list