1. 28 6月, 2013 2 次提交
  2. 27 5月, 2013 2 次提交
  3. 13 4月, 2013 1 次提交
  4. 25 2月, 2013 2 次提交
  5. 12 2月, 2013 3 次提交
  6. 28 1月, 2013 3 次提交
  7. 02 9月, 2012 1 次提交
  8. 23 7月, 2012 1 次提交
    • A
      mmc: core: reset signal voltage on power up · 108ecc4c
      Aaron Lu 提交于
      Add a call to mmc_set_signal_voltage() to set signal voltage to 3.3v in
      mmc_power_up so that we do not need to touch signal voltage setting in
      mmc/sd/sdio init functions and rescan function.
      
      For mmc/sd cards, when doing a suspend/resume cycle, consider the unsafe
      resume case, the card will lose its power and when powered on again, we
      will set signal voltage to 3.3v in mmc_power_up before its resume function
      gets called, which will re-init the card.
      
      And for sdio cards, when doing a suspend/resume cycle, consider the unsafe
      resume case, the card will either lose its power or not depending on if it
      wants to wakeup the host. If power is not maintained, it is the same case as
      mmc/sd cards. If power is maintained, mmc_power_up will not be called and
      the card's signal voltage will remain at the last setting.
      Signed-off-by: NAaron Lu <aaron.lu@amd.com>
      Tested-by: NVenkatraman S <svenkatr@ti.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      108ecc4c
  9. 06 6月, 2012 1 次提交
  10. 22 4月, 2012 1 次提交
  11. 05 3月, 2012 1 次提交
  12. 14 2月, 2012 1 次提交
  13. 13 1月, 2012 1 次提交
  14. 12 1月, 2012 2 次提交
  15. 27 10月, 2011 4 次提交
  16. 26 6月, 2011 1 次提交
  17. 25 5月, 2011 6 次提交
  18. 18 3月, 2011 1 次提交
  19. 16 3月, 2011 1 次提交
  20. 08 3月, 2011 1 次提交
  21. 09 1月, 2011 3 次提交
  22. 20 11月, 2010 1 次提交
    • O
      mmc: sdio: fix runtime PM anomalies by introducing MMC_CAP_POWER_OFF_CARD · ed919b01
      Ohad Ben-Cohen 提交于
      Some board/card/host configurations are not capable of powering off the
      card after boot.
      
      To support such configurations, and to allow smoother transition to
      runtime PM behavior, MMC_CAP_POWER_OFF_CARD is added, so hosts need to
      explicitly indicate whether it's OK to power off their cards after boot.
      
      SDIO core will enable runtime PM for a card only if that cap is set.
      As a result, the card will be powered down after boot, and will only
      be powered up again when a driver is loaded (and then it's up to the
      driver to decide whether power will be kept or not).
      
      This will prevent sdio_bus_probe() failures with setups that do not
      support powering off the card.
      Reported-and-tested-by: NDaniel Drake <dsd@laptop.org>
      Reported-and-tested-by: NArnd Hannemann <arnd@arndnet.de>
      Signed-off-by: NOhad Ben-Cohen <ohad@wizery.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      ed919b01