All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] sdhci patches
@ 2017-03-20 17:50 Adrian Hunter
  2017-03-20 17:50 ` [PATCH 01/25] mmc: sdhci: Do not disable interrupts while waiting for clock Adrian Hunter
                   ` (27 more replies)
  0 siblings, 28 replies; 36+ messages in thread
From: Adrian Hunter @ 2017-03-20 17:50 UTC (permalink / raw)
  To: Ulf Hansson
  Cc: linux-mmc, Al Cooper, Jaedon Shin, Haibo Chen, Dong Aisheng,
	Shawn Lin, Douglas Anderson, Zach Brown, Ludovic Desroches,
	Jisheng Zhang, Yangbo Lu, Jaehoon Chung, Weijun Yang, Barry Song,
	Peter Griffin, Lee Jones, Jon Hunter, Harjani Ritesh

Hi

Here are some sdhci patches that include preparation for CQE and some
general improvements.  Patches such as:

    mmc: sdhci: Let drivers decide whether to use mmc_retune_needed() with pm
    mmc: sdhci: Do not use spin lock in set_ios paths

affect several drivers specifically, like:

    drivers/mmc/host/sdhci-brcmstb.c
    drivers/mmc/host/sdhci-esdhc-imx.c
    drivers/mmc/host/sdhci-of-arasan.c
    drivers/mmc/host/sdhci-of-at91.c
    drivers/mmc/host/sdhci-of-esdhc.c
    drivers/mmc/host/sdhci-pxav3.c
    drivers/mmc/host/sdhci-s3c.c
    drivers/mmc/host/sdhci-sirf.c
    drivers/mmc/host/sdhci-spear.c
    drivers/mmc/host/sdhci-st.c



Adrian Hunter (25):
      mmc: sdhci: Do not disable interrupts while waiting for clock
      mmc: sdhci-pci: Do not disable interrupts in sdhci_intel_set_power
      mmc: sdhci: Optimize delay loops
      mmc: sdhci: Let drivers decide whether to use mmc_retune_needed() with pm
      mmc: sdhci-pci: Let devices define their own private data
      mmc: sdhci-pci: Don't re-tune with runtime pm for some Intel devices
      mmc: sdhci-pci: Use ACPI DSM to get driver strength for some Intel devices
      mmc: sdhci: Remove ->select_drive_strength() callback
      mmc: sdhci: Do not use spin lock in set_ios paths
      mmc: sdhci: Reduce spin lock usage in sdhci_execute_tuning
      mmc: sdhci: Improve debug print format
      mmc: sdhci: Add response register to register dump
      mmc: sdhci: Use sdhci_readl() not readl() in sdhci_dumpregs()
      mmc: sdhci: Improve register dump print format
      mmc: sdhci: Export sdhci_dumpregs
      mmc: sdhci: Get rid of 'extern' in header file
      mmc: sdhci: Add sdhci_cleanup_host
      mmc: sdhci: Factor out sdhci_set_default_irqs
      mmc: sdhci: Add CQE support
      mmc: sdhci-pci: Let devices define how to add the host
      mmc: sdhci-pci: Do not use suspend/resume callbacks with runtime pm
      mmc: sdhci-pci: Conditionally compile pm sleep functions
      mmc: sdhci-pci: Let suspend/resume callbacks replace default callbacks
      mmc: sdhci-pci: Add runtime suspend/resume callbacks
      mmc: sdhci-pci: Move a function to avoid later forward declaration

 drivers/mmc/host/sdhci-acpi.c        |  12 +-
 drivers/mmc/host/sdhci-brcmstb.c     |   3 +
 drivers/mmc/host/sdhci-esdhc-imx.c   |   6 +
 drivers/mmc/host/sdhci-msm.c         |   8 -
 drivers/mmc/host/sdhci-of-arasan.c   |   9 +-
 drivers/mmc/host/sdhci-of-at91.c     |   5 +-
 drivers/mmc/host/sdhci-of-esdhc.c    |   3 +
 drivers/mmc/host/sdhci-pci-core.c    | 551 ++++++++++++++++++++---------------
 drivers/mmc/host/sdhci-pci-data.c    |   3 -
 drivers/mmc/host/sdhci-pci-o2micro.c |   4 +-
 drivers/mmc/host/sdhci-pci.h         |  24 +-
 drivers/mmc/host/sdhci-pltfm.c       |   3 +
 drivers/mmc/host/sdhci-pxav3.c       |  10 +-
 drivers/mmc/host/sdhci-s3c.c         |  10 +-
 drivers/mmc/host/sdhci-sirf.c        |   3 +
 drivers/mmc/host/sdhci-spear.c       |   3 +
 drivers/mmc/host/sdhci-st.c          |   6 +-
 drivers/mmc/host/sdhci.c             | 404 ++++++++++++++++---------
 drivers/mmc/host/sdhci.h             |  58 ++--
 19 files changed, 691 insertions(+), 434 deletions(-)


Regards
Adrian

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2017-04-19 13:04 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-20 17:50 [PATCH 00/25] sdhci patches Adrian Hunter
2017-03-20 17:50 ` [PATCH 01/25] mmc: sdhci: Do not disable interrupts while waiting for clock Adrian Hunter
2017-03-20 17:50 ` [PATCH 02/25] mmc: sdhci-pci: Do not disable interrupts in sdhci_intel_set_power Adrian Hunter
2017-03-20 17:50 ` [PATCH 03/25] mmc: sdhci: Optimize delay loops Adrian Hunter
2017-03-20 17:50 ` [PATCH 04/25] mmc: sdhci: Let drivers decide whether to use mmc_retune_needed() with pm Adrian Hunter
2017-03-20 17:50 ` [PATCH 05/25] mmc: sdhci-pci: Let devices define their own private data Adrian Hunter
2017-03-20 17:50 ` [PATCH 06/25] mmc: sdhci-pci: Don't re-tune with runtime pm for some Intel devices Adrian Hunter
2017-03-20 17:50 ` [PATCH 07/25] mmc: sdhci-pci: Use ACPI DSM to get driver strength " Adrian Hunter
2017-04-04  8:48   ` Wolfram Sang
2017-04-19  8:50     ` Adrian Hunter
2017-04-19 12:24       ` Wolfram Sang
2017-04-19 12:58         ` Adrian Hunter
2017-03-20 17:50 ` [PATCH 08/25] mmc: sdhci: Remove ->select_drive_strength() callback Adrian Hunter
2017-03-20 17:50 ` [PATCH 09/25] mmc: sdhci: Do not use spin lock in set_ios paths Adrian Hunter
2017-03-20 17:50 ` [PATCH 10/25] mmc: sdhci: Reduce spin lock usage in sdhci_execute_tuning Adrian Hunter
2017-03-20 17:50 ` [PATCH 11/25] mmc: sdhci: Improve debug print format Adrian Hunter
2017-03-20 17:50 ` [PATCH 12/25] mmc: sdhci: Add response register to register dump Adrian Hunter
2017-03-20 17:50 ` [PATCH 13/25] mmc: sdhci: Use sdhci_readl() not readl() in sdhci_dumpregs() Adrian Hunter
2017-03-20 17:50 ` [PATCH 14/25] mmc: sdhci: Improve register dump print format Adrian Hunter
2017-03-20 17:50 ` [PATCH 15/25] mmc: sdhci: Export sdhci_dumpregs Adrian Hunter
2017-03-20 17:50 ` [PATCH 16/25] mmc: sdhci: Get rid of 'extern' in header file Adrian Hunter
2017-03-20 17:50 ` [PATCH 17/25] mmc: sdhci: Add sdhci_cleanup_host Adrian Hunter
2017-03-20 17:50 ` [PATCH 18/25] mmc: sdhci: Factor out sdhci_set_default_irqs Adrian Hunter
2017-03-20 17:50 ` [PATCH 19/25] mmc: sdhci: Add CQE support Adrian Hunter
2017-03-20 17:50 ` [PATCH 20/25] mmc: sdhci-pci: Let devices define how to add the host Adrian Hunter
2017-03-20 17:50 ` [PATCH 21/25] mmc: sdhci-pci: Do not use suspend/resume callbacks with runtime pm Adrian Hunter
2017-03-20 17:50 ` [PATCH 22/25] mmc: sdhci-pci: Conditionally compile pm sleep functions Adrian Hunter
2017-03-20 17:50 ` [PATCH 23/25] mmc: sdhci-pci: Let suspend/resume callbacks replace default callbacks Adrian Hunter
2017-03-20 17:50 ` [PATCH 24/25] mmc: sdhci-pci: Add runtime suspend/resume callbacks Adrian Hunter
2017-03-20 17:50 ` [PATCH 25/25] mmc: sdhci-pci: Move a function to avoid later forward declaration Adrian Hunter
2017-03-21 10:01 ` [PATCH 00/25] sdhci patches Ulf Hansson
2017-03-21 11:00 ` Lee Jones
2017-03-21 11:54   ` Adrian Hunter
2017-03-21 15:14     ` Lee Jones
2017-03-21 15:17       ` Lee Jones
2017-03-22  8:47 ` Ludovic Desroches

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.