public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull Request for imx
@ 2010-05-19  7:35 Stefano Babic
  2010-05-21 20:25 ` Wolfgang Denk
  0 siblings, 1 reply; 2+ messages in thread
From: Stefano Babic @ 2010-05-19  7:35 UTC (permalink / raw)
  To: u-boot

Wolfgang,

could you pull u-boot-imx in the time Tom is not available ? Tom has
already merged most of the patches in u-boot-arm, I resend you the
pull-request for completeness:

The following changes since commit ab92d0fd9abd0d4726878a80c6baf3a0f94770b8:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx

are available in the git repository at:

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

Anatolij Gustschin (1):
      tx25: fix crash while booting Linux

Fabio Estevam (1):
      MX51: Fix MX51 CPU detect message

Magnus Lilja (1):
      i.MX31: Activate NAND support for i.MX31 Litekit board.

Stefano Babic (8):
      MX51evk: Removed warnings
      MX: Added Freescale Power Management Driver
      MX: RTC13783 uses general function to access PMIC
      MX31: Add support for PMIC to the QONG module
      SPI: added support for MX51 to mxc_spi
      MX: Added definition file for MC13892
      Add SPI support to mx51evk board
      MX31: Added support for the Casio COM57H5M10XRC to QONG

 arch/arm/cpu/arm_cortexa8/mx51/soc.c |    2 +-
 board/davedenx/qong/qong.c           |   20 +++
 board/freescale/mx51evk/mx51evk.c    |  143 +++++++++++++++++++++-
 board/karo/tx25/tx25.c               |    3 +
 drivers/misc/Makefile                |    1 +
 drivers/misc/fsl_pmic.c              |  200 +++++++++++++++++++++++++++++
 drivers/rtc/mc13783-rtc.c            |   72 +++---------
 drivers/spi/mxc_spi.c                |  231
+++++++++++++++++++++++++++++++---
 drivers/video/mx3fb.c                |   47 +++++---
 include/configs/imx31_litekit.h      |   19 +++-
 include/configs/mx31ads.h            |    8 +-
 include/configs/mx31pdk.h            |    9 +-
 include/configs/mx51evk.h            |   15 +++
 include/configs/qong.h               |   16 +++-
 include/fsl_pmic.h                   |  128 +++++++++++++++++++
 include/mc13892.h                    |  160 +++++++++++++++++++++++
 16 files changed, 967 insertions(+), 107 deletions(-)
 create mode 100644 drivers/misc/fsl_pmic.c
 create mode 100644 include/fsl_pmic.h
 create mode 100644 include/mc13892.h


Thanks,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [U-Boot] Pull Request for imx
  2010-05-19  7:35 [U-Boot] Pull Request for imx Stefano Babic
@ 2010-05-21 20:25 ` Wolfgang Denk
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2010-05-21 20:25 UTC (permalink / raw)
  To: u-boot

Dear Stefano Babic,

In message <4BF394AE.10501@denx.de> you wrote:
> Wolfgang,
> 
> could you pull u-boot-imx in the time Tom is not available ? Tom has
> already merged most of the patches in u-boot-arm, I resend you the
> pull-request for completeness:
> 
> The following changes since commit ab92d0fd9abd0d4726878a80c6baf3a0f94770b8:
>   Wolfgang Denk (1):
>         Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-imx master
> 
> Anatolij Gustschin (1):
>       tx25: fix crash while booting Linux
> 
> Fabio Estevam (1):
>       MX51: Fix MX51 CPU detect message
> 
> Magnus Lilja (1):
>       i.MX31: Activate NAND support for i.MX31 Litekit board.
> 
> Stefano Babic (8):
>       MX51evk: Removed warnings
>       MX: Added Freescale Power Management Driver
>       MX: RTC13783 uses general function to access PMIC
>       MX31: Add support for PMIC to the QONG module
>       SPI: added support for MX51 to mxc_spi
>       MX: Added definition file for MC13892
>       Add SPI support to mx51evk board
>       MX31: Added support for the Casio COM57H5M10XRC to QONG
> 
>  arch/arm/cpu/arm_cortexa8/mx51/soc.c |    2 +-
>  board/davedenx/qong/qong.c           |   20 +++
>  board/freescale/mx51evk/mx51evk.c    |  143 +++++++++++++++++++++-
>  board/karo/tx25/tx25.c               |    3 +
>  drivers/misc/Makefile                |    1 +
>  drivers/misc/fsl_pmic.c              |  200 +++++++++++++++++++++++++++++
>  drivers/rtc/mc13783-rtc.c            |   72 +++---------
>  drivers/spi/mxc_spi.c                |  231
> +++++++++++++++++++++++++++++++---
>  drivers/video/mx3fb.c                |   47 +++++---
>  include/configs/imx31_litekit.h      |   19 +++-
>  include/configs/mx31ads.h            |    8 +-
>  include/configs/mx31pdk.h            |    9 +-
>  include/configs/mx51evk.h            |   15 +++
>  include/configs/qong.h               |   16 +++-
>  include/fsl_pmic.h                   |  128 +++++++++++++++++++
>  include/mc13892.h                    |  160 +++++++++++++++++++++++
>  16 files changed, 967 insertions(+), 107 deletions(-)
>  create mode 100644 drivers/misc/fsl_pmic.c
>  create mode 100644 include/fsl_pmic.h
>  create mode 100644 include/mc13892.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Writing a book is like washing an elephant: there's no good place  to
begin  or  end,  and  it's  hard to keep track of what you've already
covered.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-21 20:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-19  7:35 [U-Boot] Pull Request for imx Stefano Babic
2010-05-21 20:25 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox