1. 07 3月, 2010 2 次提交
  2. 18 12月, 2009 1 次提交
  3. 23 9月, 2009 4 次提交
    • N
      mmc: propagate error codes back from bus drivers' suspend/resume methods · 95cdfb72
      Nicolas Pitre 提交于
      Especially for SDIO drivers which may have special conditions/errors to
      report, it is a good thing to relay the returned error code back to upper
      layers.
      
      This also allows for the rationalization of the resume path where code to
      "remove" a no-longer-existing or replaced card was duplicated into the
      MMC, SD and SDIO bus drivers.
      
      In the SDIO case, if a function suspend method returns an error, then all
      previously suspended functions are resumed and the error returned.  An
      exception is made for -ENOSYS which the core interprets as "we don't
      support suspend so just kick the card out for suspend and return success".
      
      When resuming SDIO cards, the core code only validates the manufacturer
      and product IDs to make sure the same kind of card is still present before
      invoking functions resume methods.  It's the function driver's
      responsibility to perform further tests to confirm that the actual same
      card is present (same MAC address, etc.) and return an error otherwise.
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      Cc: <linux-mmc@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      95cdfb72
    • N
      mmc: core SDIO suspend/resume support · 17d33e14
      Nicolas Pitre 提交于
      Currently, all SDIO cards are virtually removed upon a suspend, and
      completely reprobed upon a resume.  This adds the suspend and resume
      methods to the SDIO bus driver so to be able to dispatch those events to
      the actual SDIO function drivers for real suspend/resume instead.
      
      All active functions on a card must have a driver with both a suspend and
      a resume method though.  Failing that, we fall back to the current
      behavior of simply "removing" the card when suspending.
      
      When resuming, we make sure the same card is still inserted by comparing
      the vendor and product IDs.  If there is a mismatch, or if there is simply
      no card anymore in the slot, then the previous card is "removed" and the
      new card is detected.  This is further enhanced with the next patch.
      
      [akpm@linux-foundation.org: fix warnings]
      Signed-off-by: NNicolas Pitre <nico@marvell.com>
      Cc: <linux-mmc@vger.kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      17d33e14
    • O
      sdio: add CD disable support · 006ebd5d
      Ohad Ben-Cohen 提交于
      Add support to disconnect the pull-up resistor on CD/DAT[3] (pin 1)
      of the card. This may be desired on certain setups of boards,
      controllers and embedded sdio devices which do not need the card's
      pull-up. As a result, card detection is disabled and power is saved.
      
      [akpm@linux-foundation.org: simplify sdio_disable_cd() a bit]
      Signed-off-by: NOhad Ben-Cohen <ohad@wizery.com>
      Acked-by: NMatt Fleming <matt@console-pimps.org>
      Cc: Ian Molton <ian@mnementh.co.uk>
      Cc: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>
      Cc: Philip Langdale <philipl@overt.org>
      Cc: Pierre Ossman <pierre@ossman.eu>
      Cc: David Vrabel <david.vrabel@csr.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      006ebd5d
    • O
      sdio: do not ignore MMC_VDD_165_195 · 27cce39f
      Ohad Ben-Cohen 提交于
      This is needed for 1.8V embedded SDIO devices and supporting host controllers
      (e.g. TI 127x and ZOOM2 boards)
      Signed-off-by: NOhad Ben-Cohen <ohad@bencohen.org>
      Acked-by: NMatt Fleming <matt@console-pimps.org>
      Cc: Ian Molton <ian@mnementh.co.uk>
      Cc: Pierre Ossman <pierre@ossman.eu>
      Cc: Ian Molton <ian@mnementh.co.uk>
      Cc: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>
      Cc: Philip Langdale <philipl@overt.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      27cce39f
  4. 12 10月, 2008 1 次提交
  5. 23 3月, 2008 1 次提交
  6. 24 9月, 2007 11 次提交