1. 08 3月, 2010 3 次提交
    • H
      mfd: Add irq support in 88pm860x · 5c42e8c4
      Haojian Zhuang 提交于
      88PM860x is a complex PMIC device. It contains touch, charger, sound, rtc,
      backlight, led, and so on.
      
      Host communicates to 88PM860x by I2C bus. Use thread irq to support this
      usage case.
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@marvell.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      5c42e8c4
    • H
      mfd: Support 88pm8606 in 860x driver · 53dbab7a
      Haojian Zhuang 提交于
      88PM8606 and 88PM8607 are two discrete chips used for power management.
      Hardware designer can use them together or only one of them according to
      requirement.
      
      There's some logic tightly linked between these two chips. For example, USB
      charger driver needs to access both chips by I2C interface.
      
      Now share one driver to these two devices. Only one I2C client is identified
      in platform init data. If another chip is also used, user should mark it in
      companion_addr field of platform init data. Then driver could create another
      I2C client for the companion chip.
      
      All I2C operations are accessed by 860x-i2c driver. In order to support both
      I2C client address, the read/write API is changed in below.
      
      reg_read(client, offset)
      reg_write(client, offset, data)
      
      The benefit is that client drivers only need one kind of read/write API. I2C
      and MFD driver can be shared in both 8606 and 8607.
      
      Since API is changed, update API in 8607 regulator driver.
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@marvell.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      53dbab7a
    • H
      mfd: Split 88pm8607 driver · bbd51b1f
      Haojian Zhuang 提交于
      Create 88pm8607-i2c driver to support all I2C operation of 88PM8607.
      Signed-off-by: NHaojian Zhuang <haojian.zhuang@marvell.com>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      bbd51b1f
  2. 14 12月, 2009 1 次提交