linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
To: Linus Torvalds
	<torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Cc: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PULL REQUEST] i2c for 3.11
Date: Thu, 4 Jul 2013 22:32:40 +0200	[thread overview]
Message-ID: <20130704203209.GA4196@katana> (raw)

[-- Attachment #1: Type: text/plain, Size: 5765 bytes --]

Linus,

here are the updates for the I2C subsystem for 3.11:

* new drivers: Kontron PLD, Wondermedia VT
* mv64xxx driver gained sun4i support and a bigger cleanup
* duplicate driver 'intel-mid' removed
* added generic device tree binding for sda holding time
  (and designware driver already uses it)
* we tried to allow driver probing with only device tree and no i2c ids,
  but I had to revert it because of side effects. Needs some rethinking.
* driver bugfixes, cleanups...

Sorry, the base should have been "3.10-rc4", but I accidently picked the
wrong commit and didn't want to rebase my public tree, so it is a few
merges after rc4.

Please pull.

Thanks,

   Wolfram


The following changes since commit aa4f608478acb7ed69dfcff4f3c404100b78ac49:

  Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k (2013-06-03 18:09:42 +0900)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git i2c/for-next

for you to fetch changes up to 97191d734f6ac028e5e6dcd574378c1544a16c0b:

  i2c-designware: use div_u64 to fix link (2013-07-03 22:07:51 +0200)

----------------------------------------------------------------
Andy Shevchenko (1):
      i2c: intel-mid: remove obsolete driver

Arnaud Patard (1):
      i2c: imx: allow autoloading on dt ids

Christian Ruppert (2):
      i2c: designware: fix race between subsequent xfers
      i2c-designware: make SDA hold time configurable

Daniel Drake (1):
      i2c-pxa: prepare clock before use

Fabio Estevam (2):
      i2c: imx: Let device core handle pinctrl
      i2c: mxs: Let device core handle pinctrl

Gregory CLEMENT (1):
      i2c: mv64xxx: Set bus frequency to 100kHz if clock-frequency is not provided

Guenter Roeck (1):
      i2c: mv64xxx: Fix transfer error code

Jingoo Han (1):
      i2c: use platform_{get,set}_drvdata()

Kevin Hilman (1):
      i2c: iop3xxx: fix build failure after waitqueue changes

Kevin Strasser (1):
      i2c: Kontron PLD i2c bus driver

Linus Walleij (3):
      i2c: core: make it possible to match a pure device tree driver
      i2c: nomadik: support elder Nomadiks
      i2c: nomadik: allocate adapter number dynamically

Maxime Ripard (3):
      i2c: mv64xxx: Add macros to access parts of registers
      i2c: mv64xxx: make the registers offset configurable
      i2c: mv64xxx: Add Allwinner sun4i compatible

Mika Westerberg (1):
      i2c: designware: prevent signals from aborting I2C transfers

Oleksandr Dmytryshyn (1):
      i2c: omap: correct usage of the interrupt enable register

Russell King (8):
      I2C: mv64xxx: use return value from mv64xxx_i2c_map_regs()
      I2C: mv64xxx: use devm_ioremap_resource()
      I2C: mv64xxx: use devm_clk_get() to avoid missing clk_put()
      I2C: mv64xxx: use devm_kzalloc()
      I2C: mv64xxx: fix error handling for request_irq()
      I2C: mv64xxx: remove I2C_M_NOSTART code
      I2C: mv64xxx: move mv64xxx_i2c_prepare_for_io()
      I2C: mv64xxx: fix race between FSM/interrupt and process context

Seth Heasley (1):
      i2c: i801: SMBus patch for Intel Coleto Creek DeviceIDs

Sonic Zhang (1):
      i2c: bfin-twi: Read and write the FIFO in loop

Tony Prisk (1):
      i2c: vt8500: Add support for I2C bus on Wondermedia SoCs

Vincent Stehlé (1):
      i2c-designware: use div_u64 to fix link

Wolfram Sang (2):
      drivers/i2c/busses: don't check resource with devm_ioremap_resource
      Revert "i2c: core: make it possible to match a pure device tree driver"

 .../devicetree/bindings/i2c/i2c-designware.txt     |   15 +
 .../devicetree/bindings/i2c/i2c-mv64xxx.txt        |    6 +-
 .../devicetree/bindings/i2c/i2c-vt8500.txt         |   24 +
 Documentation/i2c/busses/i2c-i801                  |    1 +
 MAINTAINERS                                        |    1 +
 arch/arc/boot/dts/abilis_tb100_dvk.dts             |   10 +-
 arch/arc/boot/dts/abilis_tb101_dvk.dts             |   10 +-
 drivers/i2c/busses/Kconfig                         |   34 +-
 drivers/i2c/busses/Makefile                        |    3 +-
 drivers/i2c/busses/i2c-bfin-twi.c                  |   47 +-
 drivers/i2c/busses/i2c-cpm.c                       |    4 +-
 drivers/i2c/busses/i2c-davinci.c                   |    8 +-
 drivers/i2c/busses/i2c-designware-core.c           |   30 +-
 drivers/i2c/busses/i2c-designware-core.h           |    1 +
 drivers/i2c/busses/i2c-designware-platdrv.c        |   19 +-
 drivers/i2c/busses/i2c-i801.c                      |    3 +
 drivers/i2c/busses/i2c-ibm_iic.c                   |    4 +-
 drivers/i2c/busses/i2c-imx.c                       |   15 +-
 drivers/i2c/busses/i2c-intel-mid.c                 | 1121 --------------------
 drivers/i2c/busses/i2c-iop3xx.c                    |    2 +-
 drivers/i2c/busses/i2c-kempld.c                    |  410 +++++++
 drivers/i2c/busses/i2c-mpc.c                       |    4 +-
 drivers/i2c/busses/i2c-mv64xxx.c                   |  321 +++---
 drivers/i2c/busses/i2c-mxs.c                       |    6 -
 drivers/i2c/busses/i2c-nomadik.c                   |   52 +-
 drivers/i2c/busses/i2c-omap.c                      |   23 +-
 drivers/i2c/busses/i2c-pxa.c                       |    6 +-
 drivers/i2c/busses/i2c-rcar.c                      |    7 +-
 drivers/i2c/busses/i2c-wmt.c                       |  479 +++++++++
 29 files changed, 1268 insertions(+), 1398 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-vt8500.txt
 delete mode 100644 drivers/i2c/busses/i2c-intel-mid.c
 create mode 100644 drivers/i2c/busses/i2c-kempld.c
 create mode 100644 drivers/i2c/busses/i2c-wmt.c

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

             reply	other threads:[~2013-07-04 20:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-04 20:32 Wolfram Sang [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-08-11  9:55 [PULL REQUEST] i2c for 3.11 Wolfram Sang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130704203209.GA4196@katana \
    --to=wsa-z923lk4zbo2bacvfa/9k2g@public.gmane.org \
    --cc=khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org \
    --cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).