mbox

[U-Boot,i2c] Pull request

Message ID 525F8852.9040900@denx.de
State Accepted
Delegated to: Tom Rini
Headers show

Pull-request

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

Message

Heiko Schocher Oct. 17, 2013, 6:48 a.m. UTC
Hello Tom,

please pull from u-boot-i2c.git:

The following changes since commit 183acb700378a8cfc5d50a01a65de93fb2c24586:

   Prepare v2013.10 (2013-10-16 13:08:12 -0400)

are available in the git repository at:

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

for you to fetch changes up to 9a2a73d29fa395f42f3fb477ac99dda4d7f2f21f:

   i2c: eliminate warnings in i2c_reloc_fixup function (2013-10-17 07:24:41 +0200)

----------------------------------------------------------------
Heiko Schocher (1):
       i2c, core: optimze i2c_set_bus_num()

Jens Scharsig (BuS Elektronik) (1):
       Fix: nommu I2C adapter relocation error

Masahiro Yamada (1):
       i2c: eliminate warnings in i2c_reloc_fixup function

Michael Burr (1):
       i2c: Zynq: Support for TI PCA9548 bus multiplexer

Naveen Krishna Ch (2):
       exynos: i2c: Fix i2c driver to handle NACKs properly
       i2c: s3c24xx: add hsi2c controller support

Nobuhiro Iwamatsu (3):
       i2c: Add support for Renesas rcar
       i2c: sh_i2c: Avoid using I2C prior to relocation
       README: I2C: Fix indent

Simon Glass (1):
       exynos: i2c: Change FDT bus setup code to enumerate ports correctly

trem (3):
       i2c: fix init on generic board
       i2c: mxc: move to new subsystem
       i2c: update config using mxc driver to new subsystem

  README                            |  31 +++++-
  arch/arm/cpu/armv7/mx5/clock.c    |   2 +-
  arch/arm/cpu/armv7/mx6/clock.c    |   2 +-
  arch/arm/imx-common/Makefile      |   2 +-
  common/board_f.c                  |   4 +
  drivers/i2c/Makefile              |   3 +-
  drivers/i2c/i2c_core.c            |  39 +++----
  drivers/i2c/mxc_i2c.c             | 137 +++++++++++++-----------
  drivers/i2c/rcar_i2c.c            | 288 +++++++++++++++++++++++++++++++++++++++++++++++++++
  drivers/i2c/s3c24x0_i2c.c         | 835 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------
  drivers/i2c/s3c24x0_i2c.h         |  38 +++++++
  drivers/i2c/sh_i2c.c              |  10 +-
  include/configs/apf27.h           |  11 +-
  include/configs/flea3.h           |   9 +-
  include/configs/imx31_phycore.h   |   7 +-
  include/configs/m53evk.h          |   7 +-
  include/configs/mx25pdk.h         |   7 +-
  include/configs/mx35pdk.h         |   7 +-
  include/configs/mx53ard.h         |   7 +-
  include/configs/mx53evk.h         |   7 +-
  include/configs/mx53loco.h        |   7 +-
  include/configs/mx53smd.h         |   7 +-
  include/configs/mx6qsabreauto.h   |   4 +-
  include/configs/nitrogen6x.h      |   4 +-
  include/configs/titanium.h        |   4 +-
  include/configs/vf610twr.h        |   7 +-
  include/configs/woodburn_common.h |   7 +-
  include/i2c.h                     |   2 +
  28 files changed, 1187 insertions(+), 308 deletions(-)
  create mode 100644 drivers/i2c/rcar_i2c.c

bye,
Heiko

Comments

Tom Rini Oct. 24, 2013, 1:21 a.m. UTC | #1
On Thu, Oct 17, 2013 at 08:48:50AM +0200, Heiko Schocher wrote:

> Hello Tom,
> 
> please pull from u-boot-i2c.git:
> 
> The following changes since commit 183acb700378a8cfc5d50a01a65de93fb2c24586:
> 
>   Prepare v2013.10 (2013-10-16 13:08:12 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-i2c.git master
> 
> for you to fetch changes up to 9a2a73d29fa395f42f3fb477ac99dda4d7f2f21f:
> 
>   i2c: eliminate warnings in i2c_reloc_fixup function (2013-10-17 07:24:41 +0200)
> 
> ----------------------------------------------------------------
> Heiko Schocher (1):
>       i2c, core: optimze i2c_set_bus_num()
> 
> Jens Scharsig (BuS Elektronik) (1):
>       Fix: nommu I2C adapter relocation error
> 
> Masahiro Yamada (1):
>       i2c: eliminate warnings in i2c_reloc_fixup function
> 
> Michael Burr (1):
>       i2c: Zynq: Support for TI PCA9548 bus multiplexer
> 
> Naveen Krishna Ch (2):
>       exynos: i2c: Fix i2c driver to handle NACKs properly
>       i2c: s3c24xx: add hsi2c controller support
> 
> Nobuhiro Iwamatsu (3):
>       i2c: Add support for Renesas rcar
>       i2c: sh_i2c: Avoid using I2C prior to relocation
>       README: I2C: Fix indent
> 
> Simon Glass (1):
>       exynos: i2c: Change FDT bus setup code to enumerate ports correctly
> 
> trem (3):
>       i2c: fix init on generic board
>       i2c: mxc: move to new subsystem
>       i2c: update config using mxc driver to new subsystem
> 
>  README                            |  31 +++++-
>  arch/arm/cpu/armv7/mx5/clock.c    |   2 +-
>  arch/arm/cpu/armv7/mx6/clock.c    |   2 +-
>  arch/arm/imx-common/Makefile      |   2 +-
>  common/board_f.c                  |   4 +
>  drivers/i2c/Makefile              |   3 +-
>  drivers/i2c/i2c_core.c            |  39 +++----
>  drivers/i2c/mxc_i2c.c             | 137 +++++++++++++-----------
>  drivers/i2c/rcar_i2c.c            | 288 +++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/i2c/s3c24x0_i2c.c         | 835 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------
>  drivers/i2c/s3c24x0_i2c.h         |  38 +++++++
>  drivers/i2c/sh_i2c.c              |  10 +-
>  include/configs/apf27.h           |  11 +-
>  include/configs/flea3.h           |   9 +-
>  include/configs/imx31_phycore.h   |   7 +-
>  include/configs/m53evk.h          |   7 +-
>  include/configs/mx25pdk.h         |   7 +-
>  include/configs/mx35pdk.h         |   7 +-
>  include/configs/mx53ard.h         |   7 +-
>  include/configs/mx53evk.h         |   7 +-
>  include/configs/mx53loco.h        |   7 +-
>  include/configs/mx53smd.h         |   7 +-
>  include/configs/mx6qsabreauto.h   |   4 +-
>  include/configs/nitrogen6x.h      |   4 +-
>  include/configs/titanium.h        |   4 +-
>  include/configs/vf610twr.h        |   7 +-
>  include/configs/woodburn_common.h |   7 +-
>  include/i2c.h                     |   2 +
>  28 files changed, 1187 insertions(+), 308 deletions(-)
>  create mode 100644 drivers/i2c/rcar_i2c.c

Applied to u-boot/master, thanks!