mbox

[U-Boot] Pull request: u-boot-arm/master

Message ID 20130912151851.75c551a9@lilith
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

git://git.denx.de/u-boot-arm master

Message

Albert ARIBAUD Sept. 12, 2013, 1:18 p.m. UTC
Hello Tom,

The following changes since commit
68e1747f9c0506159e8ecc9a4feb58e9c65a7b39:

  socfpga: Creating driver for Reset Manager (2013-09-06 12:09:06 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-arm master

for you to fetch changes up to 5480ac32171ab0e38c48c9f585fa650c7867f6a1:

  Merge branch 'u-boot-samsung/master' into
  'u-boot-arm/master' (2013-09-11 09:59:27 +0200)

----------------------------------------------------------------

Albert ARIBAUD (1):
      Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'

Chander Kashyap (3):
      CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and
update Makefiles exynos5250: Add arndale board support
      dts: samsung: arndale: Fix include path

Inderpal Singh (1):
      exynos5250: arndale: Add mmc support

Minkyu Kang (2):
      arm: smdkc100: remove config.mk file
      arm: goni: remove config.mk file

Piotr Wilczek (2):
      arm:exynos:gpio: fix s5p_gpio_part_max for exynos4x12
      drivers:power:max77686: add function to set voltage and mode

Przemyslaw Marczak (2):
      arm:mmc:goni/exynos: Fix wrong mmc base register devices offset.
      arm:goni:mmc: Add sd card detection and initialization.

 MAINTAINERS                              |   4 +
 Makefile                                 |   2 +-
 arch/arm/include/asm/arch-exynos/gpio.h  |  17 ++-
 arch/arm/include/asm/arch-exynos/mmc.h   |   6 +-
 arch/arm/include/asm/arch-s5pc1xx/mmc.h  |   6 +-
 board/samsung/arndale/Makefile           |  34 +++++
 board/samsung/arndale/arndale.c          | 101 ++++++++++++
 board/samsung/arndale/arndale_spl.c      |  50 ++++++
 board/samsung/dts/exynos5250-arndale.dts |  39 +++++
 board/samsung/goni/config.mk             |  18 ---
 board/samsung/goni/goni.c                |  33 +++-
 board/samsung/smdkc100/config.mk         |  16 --
 boards.cfg                               |   1 +
 drivers/power/pmic/pmic_max77686.c       | 192 +++++++++++++++++++++++
 include/configs/arndale.h                | 255
 +++++++++++++++++++++++++++++++
 include/configs/exynos5250-dt.h          |   2 +-
 include/configs/s5p_goni.h               |   3 +
 include/configs/smdkc100.h               |   3 +
 include/power/max77686_pmic.h            |  26 ++++
 tools/Makefile                           |   3 +- 20 files changed,
 766 insertions(+), 45 deletions(-) create mode 100644
 board/samsung/arndale/Makefile create mode 100644
 board/samsung/arndale/arndale.c create mode 100644
 board/samsung/arndale/arndale_spl.c create mode 100644
 board/samsung/dts/exynos5250-arndale.dts delete mode 100644
 board/samsung/goni/config.mk delete mode 100644
 board/samsung/smdkc100/config.mk create mode 100644
 include/configs/arndale.h

Amicalement,

Comments

Tom Rini Sept. 12, 2013, 3:11 p.m. UTC | #1
On Thu, Sep 12, 2013 at 03:18:51PM +0200, Albert ARIBAUD wrote:

> Hello Tom,
> 
> The following changes since commit
> 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39:
> 
>   socfpga: Creating driver for Reset Manager (2013-09-06 12:09:06 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-arm master
> 
> for you to fetch changes up to 5480ac32171ab0e38c48c9f585fa650c7867f6a1:
> 
>   Merge branch 'u-boot-samsung/master' into
>   'u-boot-arm/master' (2013-09-11 09:59:27 +0200)
> 
> ----------------------------------------------------------------
> 
> Albert ARIBAUD (1):
>       Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
> 
> Chander Kashyap (3):
>       CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and
> update Makefiles exynos5250: Add arndale board support
>       dts: samsung: arndale: Fix include path
> 
> Inderpal Singh (1):
>       exynos5250: arndale: Add mmc support
> 
> Minkyu Kang (2):
>       arm: smdkc100: remove config.mk file
>       arm: goni: remove config.mk file
> 
> Piotr Wilczek (2):
>       arm:exynos:gpio: fix s5p_gpio_part_max for exynos4x12
>       drivers:power:max77686: add function to set voltage and mode
> 
> Przemyslaw Marczak (2):
>       arm:mmc:goni/exynos: Fix wrong mmc base register devices offset.
>       arm:goni:mmc: Add sd card detection and initialization.
> 
>  MAINTAINERS                              |   4 +
>  Makefile                                 |   2 +-
>  arch/arm/include/asm/arch-exynos/gpio.h  |  17 ++-
>  arch/arm/include/asm/arch-exynos/mmc.h   |   6 +-
>  arch/arm/include/asm/arch-s5pc1xx/mmc.h  |   6 +-
>  board/samsung/arndale/Makefile           |  34 +++++
>  board/samsung/arndale/arndale.c          | 101 ++++++++++++
>  board/samsung/arndale/arndale_spl.c      |  50 ++++++
>  board/samsung/dts/exynos5250-arndale.dts |  39 +++++
>  board/samsung/goni/config.mk             |  18 ---
>  board/samsung/goni/goni.c                |  33 +++-
>  board/samsung/smdkc100/config.mk         |  16 --
>  boards.cfg                               |   1 +
>  drivers/power/pmic/pmic_max77686.c       | 192 +++++++++++++++++++++++
>  include/configs/arndale.h                | 255
>  +++++++++++++++++++++++++++++++
>  include/configs/exynos5250-dt.h          |   2 +-
>  include/configs/s5p_goni.h               |   3 +
>  include/configs/smdkc100.h               |   3 +
>  include/power/max77686_pmic.h            |  26 ++++
>  tools/Makefile                           |   3 +- 20 files changed,
>  766 insertions(+), 45 deletions(-) create mode 100644
>  board/samsung/arndale/Makefile create mode 100644
>  board/samsung/arndale/arndale.c create mode 100644
>  board/samsung/arndale/arndale_spl.c create mode 100644
>  board/samsung/dts/exynos5250-arndale.dts delete mode 100644
>  board/samsung/goni/config.mk delete mode 100644
>  board/samsung/smdkc100/config.mk create mode 100644
>  include/configs/arndale.h

Applied to u-boot/master, thanks!
Albert ARIBAUD Sept. 12, 2013, 8:54 p.m. UTC | #2
Hi Tom,

On Thu, 12 Sep 2013 11:11:16 -0400, Tom Rini <trini@ti.com> wrote:

> On Thu, Sep 12, 2013 at 03:18:51PM +0200, Albert ARIBAUD wrote:
> 
> > Hello Tom,
> > 
> > The following changes since commit
> > 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39:
> > 
> >   socfpga: Creating driver for Reset Manager (2013-09-06 12:09:06 +0200)
> > 
> > are available in the git repository at:
> > 
> >   git://git.denx.de/u-boot-arm master
> > 
> > for you to fetch changes up to 5480ac32171ab0e38c48c9f585fa650c7867f6a1:
> > 
> >   Merge branch 'u-boot-samsung/master' into
> >   'u-boot-arm/master' (2013-09-11 09:59:27 +0200)
> > 
> > ----------------------------------------------------------------
> > 
> > Albert ARIBAUD (1):
> >       Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
> > 
> > Chander Kashyap (3):
> >       CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and
> > update Makefiles exynos5250: Add arndale board support
> >       dts: samsung: arndale: Fix include path
> > 
> > Inderpal Singh (1):
> >       exynos5250: arndale: Add mmc support
> > 
> > Minkyu Kang (2):
> >       arm: smdkc100: remove config.mk file
> >       arm: goni: remove config.mk file
> > 
> > Piotr Wilczek (2):
> >       arm:exynos:gpio: fix s5p_gpio_part_max for exynos4x12
> >       drivers:power:max77686: add function to set voltage and mode
> > 
> > Przemyslaw Marczak (2):
> >       arm:mmc:goni/exynos: Fix wrong mmc base register devices offset.
> >       arm:goni:mmc: Add sd card detection and initialization.
> > 
> >  MAINTAINERS                              |   4 +
> >  Makefile                                 |   2 +-
> >  arch/arm/include/asm/arch-exynos/gpio.h  |  17 ++-
> >  arch/arm/include/asm/arch-exynos/mmc.h   |   6 +-
> >  arch/arm/include/asm/arch-s5pc1xx/mmc.h  |   6 +-
> >  board/samsung/arndale/Makefile           |  34 +++++
> >  board/samsung/arndale/arndale.c          | 101 ++++++++++++
> >  board/samsung/arndale/arndale_spl.c      |  50 ++++++
> >  board/samsung/dts/exynos5250-arndale.dts |  39 +++++
> >  board/samsung/goni/config.mk             |  18 ---
> >  board/samsung/goni/goni.c                |  33 +++-
> >  board/samsung/smdkc100/config.mk         |  16 --
> >  boards.cfg                               |   1 +
> >  drivers/power/pmic/pmic_max77686.c       | 192 +++++++++++++++++++++++
> >  include/configs/arndale.h                | 255
> >  +++++++++++++++++++++++++++++++
> >  include/configs/exynos5250-dt.h          |   2 +-
> >  include/configs/s5p_goni.h               |   3 +
> >  include/configs/smdkc100.h               |   3 +
> >  include/power/max77686_pmic.h            |  26 ++++
> >  tools/Makefile                           |   3 +- 20 files changed,
> >  766 insertions(+), 45 deletions(-) create mode 100644
> >  board/samsung/arndale/Makefile create mode 100644
> >  board/samsung/arndale/arndale.c create mode 100644
> >  board/samsung/arndale/arndale_spl.c create mode 100644
> >  board/samsung/dts/exynos5250-arndale.dts delete mode 100644
> >  board/samsung/goni/config.mk delete mode 100644
> >  board/samsung/smdkc100/config.mk create mode 100644
> >  include/configs/arndale.h
> 
> Applied to u-boot/master, thanks!

Thanks. For information, I have merged u-boot/master
back into u-boot-arm/master (fast-forwarded, actually).

Amicalement,