linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PULL REQUEST] i2c for 3.11
@ 2013-07-04 20:32 Wolfram Sang
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfram Sang @ 2013-07-04 20:32 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Jean Delvare, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

[-- 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 --]

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

* [PULL REQUEST] i2c for 3.11
@ 2013-08-11  9:55 Wolfram Sang
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfram Sang @ 2013-08-11  9:55 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Jean Delvare, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

Linus,

here are some driver bugfixes for the I2C subsystem. Please pull.

Thanks,

   Wolfram


The following changes since commit c095ba7224d8edc71dcef0d655911399a8bd4a3f:

  Linux 3.11-rc4 (2013-08-04 13:46:46 -0700)

are available in the git repository at:

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

for you to fetch changes up to f480adaf1b7130ad43760f627b762f771fcfc5f5:

  i2c: mv64xxx: Document the newly introduced allwinner compatible (2013-08-07 16:57:53 +0200)

----------------------------------------------------------------
Fabio Estevam (1):
      i2c: i2c-mxs: Use DMA mode even for small transfers

Maxime Ripard (1):
      i2c: mv64xxx: Document the newly introduced allwinner compatible

Michael Brunner (1):
      i2c: Fix Kontron PLD prescaler calculation

 Documentation/devicetree/bindings/i2c/i2c-mv64xxx.txt |    2 +-
 drivers/i2c/busses/i2c-kempld.c                       |    4 ++--
 drivers/i2c/busses/i2c-mxs.c                          |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

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

end of thread, other threads:[~2013-08-11  9:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-04 20:32 [PULL REQUEST] i2c for 3.11 Wolfram Sang
  -- strict thread matches above, loose matches on Subject: below --
2013-08-11  9:55 Wolfram Sang

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).