mbox

[U-Boot,GIT,PULL] Pull request: u-boot-imx

Message ID 4D2E9E54.6040704@denx.de
State Accepted
Headers show

Pull-request

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

Message

Stefano Babic Jan. 13, 2011, 6:40 a.m. UTC
Hi Wolfgang,

The following changes since commit cdc51c294ad33879c4e57edf4c9d2155381b1d59:

  Merge branch 'next' of ../next (2010-12-22 21:16:17 +0100)

are available in the git repository at:

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

Liu Hui-R64343 (9):
      MX51EVK: UART does not print out the early information
      MX5: Add initial support for MX53 processor
      fec_mxc: add support for MX53 processor
      serial_mxc: add support for MX53 processor
      mxc_gpio: add support for MX53 processor
      mxc_i2c: add support for MX53 processor
      fsl_pmic: add I2C interface support
      imximage: Add MX53 boot image support
      MX5:MX53: add initial support for MX53EVK board

 MAINTAINERS                                 |    4 +
 arch/arm/cpu/armv7/mx5/iomux.c              |   30 ++-
 arch/arm/cpu/armv7/mx5/lowlevel_init.S      |   91 +++---
 arch/arm/cpu/armv7/mx5/soc.c                |   22 +-
 arch/arm/include/asm/arch-mx5/asm-offsets.h |    5 +
 arch/arm/include/asm/arch-mx5/imx-regs.h    |   82 ++---
 arch/arm/include/asm/arch-mx5/iomux.h       |  102 ------
 arch/arm/include/asm/arch-mx5/mx5x_pins.h   |  469
++++++++++++++++++++++++++-
 board/freescale/mx51evk/mx51evk.c           |   11 +-
 board/freescale/mx53evk/Makefile            |   48 +++
 board/freescale/mx53evk/config.mk           |   24 ++
 board/freescale/mx53evk/imximage.cfg        |  112 +++++++
 board/freescale/mx53evk/mx53evk.c           |  397 +++++++++++++++++++++++
 boards.cfg                                  |    1 +
 doc/README.imximage                         |   12 +-
 drivers/gpio/mxc_gpio.c                     |    9 +-
 drivers/i2c/mxc_i2c.c                       |   21 +-
 drivers/misc/fsl_pmic.c                     |   45 +++-
 drivers/net/fec_mxc.c                       |    2 +-
 drivers/net/fec_mxc.h                       |    4 +-
 drivers/serial/serial_mxc.c                 |    6 +
 include/configs/mx51evk.h                   |    5 +-
 include/configs/mx53evk.h                   |  193 +++++++++++
 include/configs/vision2.h                   |    3 +-
 include/mc13892.h                           |    5 +
 tools/imximage.c                            |  421 +++++++++++++++++++-----
 tools/imximage.h                            |  110 +++++--
 27 files changed, 1900 insertions(+), 334 deletions(-)
 mode change 100644 => 100755 arch/arm/cpu/armv7/mx5/iomux.c
 mode change 100644 => 100755 arch/arm/cpu/armv7/mx5/lowlevel_init.S
 mode change 100644 => 100755 arch/arm/include/asm/arch-mx5/imx-regs.h
 mode change 100644 => 100755 arch/arm/include/asm/arch-mx5/mx5x_pins.h
 create mode 100755 board/freescale/mx53evk/Makefile
 create mode 100755 board/freescale/mx53evk/config.mk
 create mode 100644 board/freescale/mx53evk/imximage.cfg
 create mode 100755 board/freescale/mx53evk/mx53evk.c
 mode change 100644 => 100755 drivers/i2c/mxc_i2c.c
 mode change 100644 => 100755 include/configs/mx51evk.h
 create mode 100755 include/configs/mx53evk.h

Comments

Albert ARIBAUD Jan. 13, 2011, 7:20 a.m. UTC | #1
Le 13/01/2011 07:40, Stefano Babic a écrit :
> Hi Wolfgang,
>
> The following changes since commit cdc51c294ad33879c4e57edf4c9d2155381b1d59:
>
>    Merge branch 'next' of ../next (2010-12-22 21:16:17 +0100)
>
> are available in the git repository at:
>
>    git://www.denx.de/git/u-boot-imx.git master
>
> Liu Hui-R64343 (9):
>        MX51EVK: UART does not print out the early information
>        MX5: Add initial support for MX53 processor
>        fec_mxc: add support for MX53 processor
>        serial_mxc: add support for MX53 processor
>        mxc_gpio: add support for MX53 processor
>        mxc_i2c: add support for MX53 processor
>        fsl_pmic: add I2C interface support
>        imximage: Add MX53 boot image support
>        MX5:MX53: add initial support for MX53EVK board
>
>   MAINTAINERS                                 |    4 +
>   arch/arm/cpu/armv7/mx5/iomux.c              |   30 ++-
>   arch/arm/cpu/armv7/mx5/lowlevel_init.S      |   91 +++---
>   arch/arm/cpu/armv7/mx5/soc.c                |   22 +-
>   arch/arm/include/asm/arch-mx5/asm-offsets.h |    5 +
>   arch/arm/include/asm/arch-mx5/imx-regs.h    |   82 ++---
>   arch/arm/include/asm/arch-mx5/iomux.h       |  102 ------
>   arch/arm/include/asm/arch-mx5/mx5x_pins.h   |  469
> ++++++++++++++++++++++++++-
>   board/freescale/mx51evk/mx51evk.c           |   11 +-
>   board/freescale/mx53evk/Makefile            |   48 +++
>   board/freescale/mx53evk/config.mk           |   24 ++
>   board/freescale/mx53evk/imximage.cfg        |  112 +++++++
>   board/freescale/mx53evk/mx53evk.c           |  397 +++++++++++++++++++++++
>   boards.cfg                                  |    1 +
>   doc/README.imximage                         |   12 +-
>   drivers/gpio/mxc_gpio.c                     |    9 +-
>   drivers/i2c/mxc_i2c.c                       |   21 +-
>   drivers/misc/fsl_pmic.c                     |   45 +++-
>   drivers/net/fec_mxc.c                       |    2 +-
>   drivers/net/fec_mxc.h                       |    4 +-
>   drivers/serial/serial_mxc.c                 |    6 +
>   include/configs/mx51evk.h                   |    5 +-
>   include/configs/mx53evk.h                   |  193 +++++++++++
>   include/configs/vision2.h                   |    3 +-
>   include/mc13892.h                           |    5 +
>   tools/imximage.c                            |  421 +++++++++++++++++++-----
>   tools/imximage.h                            |  110 +++++--
>   27 files changed, 1900 insertions(+), 334 deletions(-)
>   mode change 100644 =>  100755 arch/arm/cpu/armv7/mx5/iomux.c
>   mode change 100644 =>  100755 arch/arm/cpu/armv7/mx5/lowlevel_init.S
>   mode change 100644 =>  100755 arch/arm/include/asm/arch-mx5/imx-regs.h
>   mode change 100644 =>  100755 arch/arm/include/asm/arch-mx5/mx5x_pins.h
>   create mode 100755 board/freescale/mx53evk/Makefile
>   create mode 100755 board/freescale/mx53evk/config.mk
>   create mode 100644 board/freescale/mx53evk/imximage.cfg
>   create mode 100755 board/freescale/mx53evk/mx53evk.c
>   mode change 100644 =>  100755 drivers/i2c/mxc_i2c.c
>   mode change 100644 =>  100755 include/configs/mx51evk.h
>   create mode 100755 include/configs/mx53evk.h

I think I should be the one doing the pull as the ARM custodian. I'll be 
doing it this evening.

Amicalement,
Stefano Babic Jan. 13, 2011, 7:23 a.m. UTC | #2
On 01/13/2011 08:20 AM, Albert ARIBAUD wrote:

> 
> I think I should be the one doing the pull as the ARM custodian. I'll be
> doing it this evening.

Sorry, of course you are right, I forget to readdress my pull-request
after you became the ARM custodian ;-).

Stefano
Albert ARIBAUD Jan. 13, 2011, 9:30 p.m. UTC | #3
Le 13/01/2011 07:40, Stefano Babic a écrit :
> Hi Wolfgang,
>
> The following changes since commit cdc51c294ad33879c4e57edf4c9d2155381b1d59:
>
>    Merge branch 'next' of ../next (2010-12-22 21:16:17 +0100)
>
> are available in the git repository at:
>
>    git://www.denx.de/git/u-boot-imx.git master

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

Amicalement,
Wolfgang Denk Jan. 17, 2011, 7:10 p.m. UTC | #4
Dear Stefano Babic,

In message <4D2E9E54.6040704@denx.de> you wrote:
> Hi Wolfgang,
> 
> The following changes since commit cdc51c294ad33879c4e57edf4c9d2155381b1d59:
> 
>   Merge branch 'next' of ../next (2010-12-22 21:16:17 +0100)

Is this really you working base?  Then you should probably rebase
against current master first.

> are available in the git repository at:
> 
>   git://www.denx.de/git/u-boot-imx.git master

Please sends your pull request to the Albert, ARM custodian.

Best regards,

Wolfgang Denk
Stefano Babic Jan. 17, 2011, 7:30 p.m. UTC | #5
On 01/17/2011 08:10 PM, Wolfgang Denk wrote:
> Is this really you working base?  Then you should probably rebase
> against current master first.

Yes, I do it.

> Please sends your pull request to the Albert, ARM custodian.

Sorry, for the inconvenience. Albert has already saw I sent the pull
request to the wrong person and has pulled to u-boot-arm. I will be more
careful next time before sending the pull request.

Best regards,
Stefano Babic