mbox

[U-Boot,PULL] : Please pull u-boot-imx

Message ID 53748289.2020702@denx.de
State Not Applicable
Delegated to: Stefano Babic
Headers show

Pull-request

git://www.denx.de/git/u-boot-imx.git master

Message

Stefano Babic May 15, 2014, 9:02 a.m. UTC
Hi Albert,

please pull from u-boot-imx, thanks !

The following changes since commit d2a3e911390f9fc4d8c0ee4b3c7fc75f4fd3fd19:

  Merge branch 'u-boot/master' (2014-05-09 11:50:14 +0200)

are available in the git repository at:


  git://www.denx.de/git/u-boot-imx.git master

for you to fetch changes up to e7f9350525d73233d4eaf1793f8fe618e9fd4910:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-05-15
10:27:32 +0200)

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

Eric Benard (8):
      imx-common: add board_video_skip
      nitrogen6x: use common board_video_skip
      mx6sabresd: use common board_video_skip
      RiOTboard and MarSBoard: add new boards support
      imx-common/video: add detect_hdmi
      nitrogen6x: use common detect_hdmi
      mx6sabresd: use common detect_hdmi
      embest/mx6boards: use common detect_hdmi

Eric Nelson (1):
      ARM: imx6: nitrogen6x: Enable CONFIG_SYS_GENERIC_BOARD

Fabio Estevam (11):
      wandboard: Convert to generic board
      mx53loco: Convert to generic board
      mx6sabre_common: Convert to generic board
      mx53ard: Convert to generic board
      mx53smd: Convert to generic board
      mx53evk: Convert to generic board
      udoo: Convert to generic board
      hummingboard: Convert to generic board
      mx6slevk: Add SPI NOR flash support
      nitrogen6x: Fix the PAD settings for the ECSPI chipselect
      iomux-v3: Add support for mx6sl LVE bit

Marek Vasut (1):
      arm: mxs: Enable CONFIG_SYS_GENERIC_BOARD

Otavio Salvador (2):
      wandboard: add Future Eletronics 7" WVGA LCD extension board
      wandboard: Pass video kernel arguments for HDMI and LCD

Stefano Babic (3):
      mx6: fix weird formatting in imx6q-sabreauto.dts
      Merge branch 'master' of git://git.denx.de/u-boot-arm
      Merge branch 'master' of git://git.denx.de/u-boot-arm

Thomas Diener (2):
      imx25: Add new hardware registers
      video: Add support for imx25 lcd controller

Tim Harvey (10):
      ventana: fixed comments in eeprom header
      ventana: remove redundant include
      power: make pfuze100 be able to coexist with other pmics
      ventana: use non-generic pfuze100 init
      power: Add support for LTC3676 PMIC
      ventana: Add support for the LTC3676 PMIC
      imx6: ventana: fix system-serial dt property
      imx: ventana: Convert to generic board
      imx: ventana: add HDMI and LVDS display capability
      nand: remove CONFIG_SYS_NAND_PAGE_SIZE

 arch/arm/dts/imx6q-sabreauto.dts            |  10 +-
 arch/arm/imx-common/Makefile                |   1 +
 arch/arm/imx-common/iomux-v3.c              |   8 +
 arch/arm/imx-common/video.c                 |  65 ++++++++
 arch/arm/include/asm/arch-mx25/imx-regs.h   | 175 ++++++++++++++++++++
 arch/arm/include/asm/arch-mx6/mx6sl_pins.h  |   4 +
 arch/arm/include/asm/imx-common/iomux-v3.h  |   5 +
 arch/arm/include/asm/imx-common/video.h     |  24 +++
 board/boundary/nitrogen6x/nitrogen6x.c      |  69 +-------
 board/embest/mx6boards/Makefile             |   9 ++
 board/embest/mx6boards/mx6boards.c          | 601
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/freescale/mx6sabresd/mx6sabresd.c     |  67 +-------
 board/freescale/mx6slevk/mx6slevk.c         |  20 +++
 board/gateworks/gw_ventana/gw_ventana.c     | 215 ++++++++++++++++++++++---
 board/gateworks/gw_ventana/ventana_eeprom.h |  14 +-
 board/wandboard/wandboard.c                 | 146 ++++++++++++++---
 boards.cfg                                  |   2 +
 common/spl/spl_nand.c                       |   2 +-
 drivers/power/pmic/Makefile                 |   1 +
 drivers/power/pmic/pmic_ltc3676.c           |  32 ++++
 drivers/power/pmic/pmic_pfuze100.c          |   2 +-
 drivers/video/Makefile                      |   1 +
 drivers/video/imx25lcdc.c                   | 121 ++++++++++++++
 include/configs/embestmx6boards.h           | 336
+++++++++++++++++++++++++++++++++++++++
 include/configs/gw_ventana.h                |  20 +++
 include/configs/hummingboard.h              |   2 +
 include/configs/m28evk.h                    |   1 -
 include/configs/mx53ard.h                   |   2 +
 include/configs/mx53evk.h                   |   2 +
 include/configs/mx53loco.h                  |   2 +
 include/configs/mx53smd.h                   |   2 +
 include/configs/mx6sabre_common.h           |   2 +
 include/configs/mx6sabresd.h                |   1 +
 include/configs/mx6slevk.h                  |  12 ++
 include/configs/mxs.h                       |   1 +
 include/configs/nitrogen6x.h                |   2 +
 include/configs/udoo.h                      |   2 +
 include/configs/wandboard.h                 |  38 ++++-
 include/power/ltc3676_pmic.h                |  51 ++++++
 include/power/pfuze100_pmic.h               |   1 +
 40 files changed, 1876 insertions(+), 195 deletions(-)
 create mode 100644 arch/arm/imx-common/video.c
 create mode 100644 arch/arm/include/asm/imx-common/video.h
 create mode 100644 board/embest/mx6boards/Makefile
 create mode 100644 board/embest/mx6boards/mx6boards.c
 create mode 100644 drivers/power/pmic/pmic_ltc3676.c
 create mode 100644 drivers/video/imx25lcdc.c
 create mode 100644 include/configs/embestmx6boards.h
 create mode 100644 include/power/ltc3676_pmic.h

Comments

Albert ARIBAUD May 16, 2014, 5:35 p.m. UTC | #1
Hi Stefano,

On Thu, 15 May 2014 11:02:01 +0200, Stefano Babic <sbabic@denx.de>
wrote:

> Hi Albert,
> 
> please pull from u-boot-imx, thanks !
> 
> The following changes since commit d2a3e911390f9fc4d8c0ee4b3c7fc75f4fd3fd19:
> 
>   Merge branch 'u-boot/master' (2014-05-09 11:50:14 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://www.denx.de/git/u-boot-imx.git master
> 
> for you to fetch changes up to e7f9350525d73233d4eaf1793f8fe618e9fd4910:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-arm (2014-05-15
> 10:27:32 +0200)
> 
> ----------------------------------------------------------------
> 
> Eric Benard (8):
>       imx-common: add board_video_skip
>       nitrogen6x: use common board_video_skip
>       mx6sabresd: use common board_video_skip
>       RiOTboard and MarSBoard: add new boards support
>       imx-common/video: add detect_hdmi
>       nitrogen6x: use common detect_hdmi
>       mx6sabresd: use common detect_hdmi
>       embest/mx6boards: use common detect_hdmi
> 
> Eric Nelson (1):
>       ARM: imx6: nitrogen6x: Enable CONFIG_SYS_GENERIC_BOARD
> 
> Fabio Estevam (11):
>       wandboard: Convert to generic board
>       mx53loco: Convert to generic board
>       mx6sabre_common: Convert to generic board
>       mx53ard: Convert to generic board
>       mx53smd: Convert to generic board
>       mx53evk: Convert to generic board
>       udoo: Convert to generic board
>       hummingboard: Convert to generic board
>       mx6slevk: Add SPI NOR flash support
>       nitrogen6x: Fix the PAD settings for the ECSPI chipselect
>       iomux-v3: Add support for mx6sl LVE bit
> 
> Marek Vasut (1):
>       arm: mxs: Enable CONFIG_SYS_GENERIC_BOARD
> 
> Otavio Salvador (2):
>       wandboard: add Future Eletronics 7" WVGA LCD extension board
>       wandboard: Pass video kernel arguments for HDMI and LCD
> 
> Stefano Babic (3):
>       mx6: fix weird formatting in imx6q-sabreauto.dts
>       Merge branch 'master' of git://git.denx.de/u-boot-arm
>       Merge branch 'master' of git://git.denx.de/u-boot-arm
> 
> Thomas Diener (2):
>       imx25: Add new hardware registers
>       video: Add support for imx25 lcd controller
> 
> Tim Harvey (10):
>       ventana: fixed comments in eeprom header
>       ventana: remove redundant include
>       power: make pfuze100 be able to coexist with other pmics
>       ventana: use non-generic pfuze100 init
>       power: Add support for LTC3676 PMIC
>       ventana: Add support for the LTC3676 PMIC
>       imx6: ventana: fix system-serial dt property
>       imx: ventana: Convert to generic board
>       imx: ventana: add HDMI and LVDS display capability
>       nand: remove CONFIG_SYS_NAND_PAGE_SIZE
> 
>  arch/arm/dts/imx6q-sabreauto.dts            |  10 +-
>  arch/arm/imx-common/Makefile                |   1 +
>  arch/arm/imx-common/iomux-v3.c              |   8 +
>  arch/arm/imx-common/video.c                 |  65 ++++++++
>  arch/arm/include/asm/arch-mx25/imx-regs.h   | 175 ++++++++++++++++++++
>  arch/arm/include/asm/arch-mx6/mx6sl_pins.h  |   4 +
>  arch/arm/include/asm/imx-common/iomux-v3.h  |   5 +
>  arch/arm/include/asm/imx-common/video.h     |  24 +++
>  board/boundary/nitrogen6x/nitrogen6x.c      |  69 +-------
>  board/embest/mx6boards/Makefile             |   9 ++
>  board/embest/mx6boards/mx6boards.c          | 601
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  board/freescale/mx6sabresd/mx6sabresd.c     |  67 +-------
>  board/freescale/mx6slevk/mx6slevk.c         |  20 +++
>  board/gateworks/gw_ventana/gw_ventana.c     | 215 ++++++++++++++++++++++---
>  board/gateworks/gw_ventana/ventana_eeprom.h |  14 +-
>  board/wandboard/wandboard.c                 | 146 ++++++++++++++---
>  boards.cfg                                  |   2 +
>  common/spl/spl_nand.c                       |   2 +-
>  drivers/power/pmic/Makefile                 |   1 +
>  drivers/power/pmic/pmic_ltc3676.c           |  32 ++++
>  drivers/power/pmic/pmic_pfuze100.c          |   2 +-
>  drivers/video/Makefile                      |   1 +
>  drivers/video/imx25lcdc.c                   | 121 ++++++++++++++
>  include/configs/embestmx6boards.h           | 336
> +++++++++++++++++++++++++++++++++++++++
>  include/configs/gw_ventana.h                |  20 +++
>  include/configs/hummingboard.h              |   2 +
>  include/configs/m28evk.h                    |   1 -
>  include/configs/mx53ard.h                   |   2 +
>  include/configs/mx53evk.h                   |   2 +
>  include/configs/mx53loco.h                  |   2 +
>  include/configs/mx53smd.h                   |   2 +
>  include/configs/mx6sabre_common.h           |   2 +
>  include/configs/mx6sabresd.h                |   1 +
>  include/configs/mx6slevk.h                  |  12 ++
>  include/configs/mxs.h                       |   1 +
>  include/configs/nitrogen6x.h                |   2 +
>  include/configs/udoo.h                      |   2 +
>  include/configs/wandboard.h                 |  38 ++++-
>  include/power/ltc3676_pmic.h                |  51 ++++++
>  include/power/pfuze100_pmic.h               |   1 +
>  40 files changed, 1876 insertions(+), 195 deletions(-)
>  create mode 100644 arch/arm/imx-common/video.c
>  create mode 100644 arch/arm/include/asm/imx-common/video.h
>  create mode 100644 board/embest/mx6boards/Makefile
>  create mode 100644 board/embest/mx6boards/mx6boards.c
>  create mode 100644 drivers/power/pmic/pmic_ltc3676.c
>  create mode 100644 drivers/video/imx25lcdc.c
>  create mode 100644 include/configs/embestmx6boards.h
>  create mode 100644 include/power/ltc3676_pmic.h
> 
> 

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

Amicalement,