[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20130704203209.GA4196@katana>
Date: Thu, 4 Jul 2013 22:32:40 +0200
From: Wolfram Sang <wsa@...-dreams.de>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Jean Delvare <khali@...ux-fr.org>, linux-i2c@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PULL REQUEST] i2c for 3.11
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
Download attachment "signature.asc" of type "application/pgp-signature" (837 bytes)
Powered by blists - more mailing lists