Skip to content

Commit

Permalink
i2c-intel-mid: support for Moorestown and Medfield platform
Browse files Browse the repository at this point in the history
(Updated to address Ben's comments. With regard to the message segment
 restriction it's not something we hit on the actual platform so while
 I will investigate that further I don't think its a blocker to submission.
 At worst its a spot over-restrictive)

From: Wen Wang <[email protected]>

Initial release of the driver. Updated and verified on hardware.

Cleaned up as follows

Alan Cox:
   Squash down the switches into tables, and use the PCI ident field. We
   could perhaps take this further and put the platform and port number into
   this.
   uint32t -> u32
   bracketing of case statements
   spacing and '!' usage
   Check the speed (which is now 0/1/2) is valid and ignore otherwise.
   Fix remaining problems/suggestions from Jean's review
   Fix items from Ben's review

Arjan van de Ven:
   Initial power management hooks

Yong Wang <[email protected]>:
   Shared IRQ support

Wen Wang <[email protected]>:
   D3 support
   Fixes for OCT test runs
   Interrupt optimisations

Hong Liu <[email protected]>
   The runtime PM code is working on the wrong device (i2c_adapter->dev).
   The correct one should be pci_dev->dev. This breaks attached i2c
   slave devices with runtime PM enabled. Slave device needs to runtime
   resume parent device before runtime resuming itself, but we always get
   error since we don't have pm_runtime callback for i2c_adapter->dev.

Bin Yang <[email protected]>:
   Update speed table

Saadi Maalem <[email protected]>:
   Clear all interrupts in the hardware init

Celine Chotard <[email protected]>:
   Correct ordering of clear/disable of IRQs

Signed-off-by: Wen Wang <[email protected]>
Signed-off-by: Yong Wang <[email protected]>
Signed-off-by: Hong Liu <[email protected]>
Signed-off-by: Bin Yang <[email protected]>
Signed-off-by: Arjan van de Ven <[email protected]>
Signed-off-by: Alan Cox <[email protected]>
Signed-off-by: Ben Dooks <[email protected]>
  • Loading branch information
Alan-Cox authored and Ben Dooks committed Oct 28, 2010
1 parent b18cae4 commit aa62f85
Show file tree
Hide file tree
Showing 3 changed files with 1,145 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/i2c/busses/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,15 @@ config I2C_IMX
This driver can also be built as a module. If so, the module
will be called i2c-imx.

config I2C_INTEL_MID
tristate "Intel Moorestown/Medfield Platform I2C controller"
help
Say Y here if you have an Intel Moorestown/Medfield platform I2C
controller.

This support is also available as a module. If so, the module
will be called i2c-intel-mid.

config I2C_IOP3XX
tristate "Intel IOPx3xx and IXP4xx on-chip I2C interface"
depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IXP4XX || ARCH_IOP13XX
Expand Down
1 change: 1 addition & 0 deletions drivers/i2c/busses/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ obj-$(CONFIG_I2C_GPIO) += i2c-gpio.o
obj-$(CONFIG_I2C_HIGHLANDER) += i2c-highlander.o
obj-$(CONFIG_I2C_IBM_IIC) += i2c-ibm_iic.o
obj-$(CONFIG_I2C_IMX) += i2c-imx.o
obj-$(CONFIG_I2C_INTEL_MID) += i2c-intel-mid.o
obj-$(CONFIG_I2C_IOP3XX) += i2c-iop3xx.o
obj-$(CONFIG_I2C_IXP2000) += i2c-ixp2000.o
obj-$(CONFIG_I2C_MPC) += i2c-mpc.o
Expand Down
Loading

0 comments on commit aa62f85

Please sign in to comment.