1. 27 3月, 2011 1 次提交
    • A
      mfd: Add mfd_clone_cell(), convert cs5535-mfd/olpc-xo1 to it · fa1df691
      Andres Salomon 提交于
      Replace mfd_shared_platform_driver_register with mfd_clone_cell.  The
      former was called by an mfd client, and registered both a platform driver
      and device.  The latter is called by an mfd driver, and registers only a
      platform device.
      
      The downside of this is that mfd drivers need to be modified whenever
      new clients are added that share a cell; the upside is that it fits
      Linux's driver model better.  It's also simpler.
      
      This also converts cs5535-mfd/olpc-xo1 from the old API.  cs5535-mfd
      now creates the olpc-xo1-{acpi,pms} devices, while olpc-xo1 binds to
      them via platform drivers.
      Signed-off-by: NAndres Salomon <dilinger@queued.net>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      fa1df691
  2. 23 3月, 2011 1 次提交
    • A
      mfd: Add sharing for cs5535 acpi/pms cells · 1310e6d6
      Andres Salomon 提交于
      This enables sharing of cs5535-mfd cells via the new mfd_shared_* API.
      Hooks for enable/disble of resources are added, with refcounting of
      resources being automatically handled so that cs5535_mfd_res_enable/disable
      are only called when necessary.
      
      Clients of cs5535-mfd (in this case, olpc-xo1.c) are also modified to
      use the mfd_shared API.  The platform drivers are also renamed to
      olpc-xo1-{pms,acpi}, and resource enabling/disabling is replaced
      with mfd_shared API calls.
      Signed-off-by: NAndres Salomon <dilinger@queued.net>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      1310e6d6
  3. 14 1月, 2011 2 次提交