mbox

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

Message ID 5409ACFB.2060404@samsung.com
State Accepted
Delegated to: Albert ARIBAUD
Headers show

Pull-request

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

Message

Minkyu Kang Sept. 5, 2014, 12:30 p.m. UTC
Dear Albert,

The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:

  Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)

are available in the git repository at:

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

for you to fetch changes up to 5cecf21fb1fadeb39be862793f743841ad373601:

  CONFIGS: peach-pit: Enable display for peach_pit board (2014-09-05 20:37:08 +0900)

----------------------------------------------------------------
Ajay Kumar (8):
      exynos_fb: Remove usage of static defines
      arm: exynos: Add RPLL for Exynos5420
      arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420
      video: exynos_fimd: Add framework to disable FIMD sysmmu
      ARM: exynos: Add missing declaration for gpio_direction_input
      exynos5420: add callbacks needed for exynos_fb driver
      ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip
      CONFIGS: peach-pit: Enable display for peach_pit board

Masahiro Yamada (1):
      MAINTAINERS: update the maintainer of Arndale board

Przemyslaw Marczak (13):
      samsung: misc: fix soc revision setting in the set_board_info()
      exynos: pinmux: fix the gpio names for exynos4x12 mmc
      arch:exynos: boot mode: add get_boot_mode(), code cleanup
      board:samsung: check the boot device and init the right mmc driver.
      samsung: misc: add function for setting $dfu_alt_info
      samsung:board: misc_init_r: call set_dfu_alt_info()
      arm:reset: call the reset_misc() before the cpu reset
      samsung: board: enable support of multiple board types
      samsung: misc: use board specific functions to set env board info
      odroid: add board file for Odroid X2/U3 based on Samsung Exynos4412
      odroid: add odroid U3/X2 device tree description
      odroid: kconfig: add odroid_defconfig
      odroid: set MPLL clock to 880MHz

Vadim Bendebury (1):
      video: Add driver for Parade PS8625 dP to LVDS bridge

 arch/arm/cpu/armv7/exynos/Kconfig              |    4 +
 arch/arm/cpu/armv7/exynos/clock.c              |   83 ++++-
 arch/arm/cpu/armv7/exynos/clock_init.h         |    3 +
 arch/arm/cpu/armv7/exynos/clock_init_exynos5.c |   13 +
 arch/arm/cpu/armv7/exynos/exynos5_setup.h      |    2 +-
 arch/arm/cpu/armv7/exynos/pinmux.c             |    4 +-
 arch/arm/cpu/armv7/exynos/power.c              |    7 +
 arch/arm/cpu/armv7/exynos/spl_boot.c           |    7 +-
 arch/arm/dts/Makefile                          |    3 +-
 arch/arm/dts/exynos4412-odroid.dts             |   70 ++++
 arch/arm/dts/exynos5420-peach-pit.dts          |   30 ++
 arch/arm/dts/exynos54xx.dtsi                   |   10 +
 arch/arm/include/asm/arch-exynos/clk.h         |    1 +
 arch/arm/include/asm/arch-exynos/gpio.h        |    1 +
 arch/arm/include/asm/arch-exynos/power.h       |   21 ++
 arch/arm/include/asm/arch-exynos/spl.h         |   17 +-
 arch/arm/include/asm/arch-exynos/system.h      |    4 +
 arch/arm/lib/reset.c                           |    6 +
 board/samsung/arndale/MAINTAINERS              |    2 +-
 board/samsung/common/board.c                   |   69 +++-
 board/samsung/common/misc.c                    |   57 ++-
 board/samsung/odroid/Kconfig                   |   15 +
 board/samsung/odroid/MAINTAINERS               |    6 +
 board/samsung/odroid/Makefile                  |    8 +
 board/samsung/odroid/odroid.c                  |  470 ++++++++++++++++++++++++
 board/samsung/odroid/setup.h                   |  255 +++++++++++++
 board/samsung/smdk5420/smdk5420.c              |  129 +++----
 configs/odroid_defconfig                       |    3 +
 doc/README.odroid                              |  143 +++++++
 doc/device-tree-bindings/video/exynos-fb.txt   |    6 +
 drivers/video/Makefile                         |    1 +
 drivers/video/exynos_fb.c                      |   18 +-
 drivers/video/exynos_fimd.c                    |   43 +++
 drivers/video/parade.c                         |  220 +++++++++++
 include/common.h                               |    1 +
 include/configs/exynos5250-dt.h                |    2 -
 include/configs/odroid.h                       |  216 +++++++++++
 include/configs/peach-pit.h                    |   10 +
 include/configs/s5pc210_universal.h            |    3 -
 include/configs/trats.h                        |    3 -
 include/configs/trats2.h                       |    3 -
 include/fdtdec.h                               |    2 +
 include/samsung/misc.h                         |   10 +
 lib/fdtdec.c                                   |    2 +
 44 files changed, 1831 insertions(+), 152 deletions(-)
 create mode 100644 arch/arm/dts/exynos4412-odroid.dts
 create mode 100644 board/samsung/odroid/Kconfig
 create mode 100644 board/samsung/odroid/MAINTAINERS
 create mode 100644 board/samsung/odroid/Makefile
 create mode 100644 board/samsung/odroid/odroid.c
 create mode 100644 board/samsung/odroid/setup.h
 create mode 100644 configs/odroid_defconfig
 create mode 100644 doc/README.odroid
 create mode 100644 drivers/video/parade.c
 create mode 100644 include/configs/odroid.h

Comments

Albert ARIBAUD Sept. 8, 2014, 11:03 p.m. UTC | #1
Hi Minkyu,

On Fri, 05 Sep 2014 21:30:51 +0900, Minkyu Kang <mk7.kang@samsung.com>
wrote:

> Dear Albert,
> 
> The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:
> 
>   Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-samsung 
> 
> for you to fetch changes up to 5cecf21fb1fadeb39be862793f743841ad373601:
> 
>   CONFIGS: peach-pit: Enable display for peach_pit board (2014-09-05 20:37:08 +0900)
> 
> ----------------------------------------------------------------
> Ajay Kumar (8):
>       exynos_fb: Remove usage of static defines
>       arm: exynos: Add RPLL for Exynos5420
>       arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420
>       video: exynos_fimd: Add framework to disable FIMD sysmmu
>       ARM: exynos: Add missing declaration for gpio_direction_input
>       exynos5420: add callbacks needed for exynos_fb driver
>       ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip
>       CONFIGS: peach-pit: Enable display for peach_pit board
> 
> Masahiro Yamada (1):
>       MAINTAINERS: update the maintainer of Arndale board
> 
> Przemyslaw Marczak (13):
>       samsung: misc: fix soc revision setting in the set_board_info()
>       exynos: pinmux: fix the gpio names for exynos4x12 mmc
>       arch:exynos: boot mode: add get_boot_mode(), code cleanup
>       board:samsung: check the boot device and init the right mmc driver.
>       samsung: misc: add function for setting $dfu_alt_info
>       samsung:board: misc_init_r: call set_dfu_alt_info()
>       arm:reset: call the reset_misc() before the cpu reset
>       samsung: board: enable support of multiple board types
>       samsung: misc: use board specific functions to set env board info
>       odroid: add board file for Odroid X2/U3 based on Samsung Exynos4412
>       odroid: add odroid U3/X2 device tree description
>       odroid: kconfig: add odroid_defconfig
>       odroid: set MPLL clock to 880MHz
> 
> Vadim Bendebury (1):
>       video: Add driver for Parade PS8625 dP to LVDS bridge
> 
>  arch/arm/cpu/armv7/exynos/Kconfig              |    4 +
>  arch/arm/cpu/armv7/exynos/clock.c              |   83 ++++-
>  arch/arm/cpu/armv7/exynos/clock_init.h         |    3 +
>  arch/arm/cpu/armv7/exynos/clock_init_exynos5.c |   13 +
>  arch/arm/cpu/armv7/exynos/exynos5_setup.h      |    2 +-
>  arch/arm/cpu/armv7/exynos/pinmux.c             |    4 +-
>  arch/arm/cpu/armv7/exynos/power.c              |    7 +
>  arch/arm/cpu/armv7/exynos/spl_boot.c           |    7 +-
>  arch/arm/dts/Makefile                          |    3 +-
>  arch/arm/dts/exynos4412-odroid.dts             |   70 ++++
>  arch/arm/dts/exynos5420-peach-pit.dts          |   30 ++
>  arch/arm/dts/exynos54xx.dtsi                   |   10 +
>  arch/arm/include/asm/arch-exynos/clk.h         |    1 +
>  arch/arm/include/asm/arch-exynos/gpio.h        |    1 +
>  arch/arm/include/asm/arch-exynos/power.h       |   21 ++
>  arch/arm/include/asm/arch-exynos/spl.h         |   17 +-
>  arch/arm/include/asm/arch-exynos/system.h      |    4 +
>  arch/arm/lib/reset.c                           |    6 +
>  board/samsung/arndale/MAINTAINERS              |    2 +-
>  board/samsung/common/board.c                   |   69 +++-
>  board/samsung/common/misc.c                    |   57 ++-
>  board/samsung/odroid/Kconfig                   |   15 +
>  board/samsung/odroid/MAINTAINERS               |    6 +
>  board/samsung/odroid/Makefile                  |    8 +
>  board/samsung/odroid/odroid.c                  |  470 ++++++++++++++++++++++++
>  board/samsung/odroid/setup.h                   |  255 +++++++++++++
>  board/samsung/smdk5420/smdk5420.c              |  129 +++----
>  configs/odroid_defconfig                       |    3 +
>  doc/README.odroid                              |  143 +++++++
>  doc/device-tree-bindings/video/exynos-fb.txt   |    6 +
>  drivers/video/Makefile                         |    1 +
>  drivers/video/exynos_fb.c                      |   18 +-
>  drivers/video/exynos_fimd.c                    |   43 +++
>  drivers/video/parade.c                         |  220 +++++++++++
>  include/common.h                               |    1 +
>  include/configs/exynos5250-dt.h                |    2 -
>  include/configs/odroid.h                       |  216 +++++++++++
>  include/configs/peach-pit.h                    |   10 +
>  include/configs/s5pc210_universal.h            |    3 -
>  include/configs/trats.h                        |    3 -
>  include/configs/trats2.h                       |    3 -
>  include/fdtdec.h                               |    2 +
>  include/samsung/misc.h                         |   10 +
>  lib/fdtdec.c                                   |    2 +
>  44 files changed, 1831 insertions(+), 152 deletions(-)
>  create mode 100644 arch/arm/dts/exynos4412-odroid.dts
>  create mode 100644 board/samsung/odroid/Kconfig
>  create mode 100644 board/samsung/odroid/MAINTAINERS
>  create mode 100644 board/samsung/odroid/Makefile
>  create mode 100644 board/samsung/odroid/odroid.c
>  create mode 100644 board/samsung/odroid/setup.h
>  create mode 100644 configs/odroid_defconfig
>  create mode 100644 doc/README.odroid
>  create mode 100644 drivers/video/parade.c
>  create mode 100644 include/configs/odroid.h
> 
> 

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

(warnings and errors unchanged wrt before applying)

Amicalement,