From: Adrian Hunter <adrian.hunter@intel.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Eric Biggers <ebiggers@google.com>,
Raul E Rangel <rrangel@chromium.org>,
linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org
Subject: Re: [PATCH v2 5/6] mmc: sdhci-pci: Remove dead code (cd_gpio, cd_irq et al)
Date: Thu, 14 Oct 2021 13:02:11 +0300 [thread overview]
Message-ID: <0eed2bea-33bd-3f16-6823-95fcb68c65a5@intel.com> (raw)
In-Reply-To: <20211013201723.52212-6-andriy.shevchenko@linux.intel.com>
On 13/10/2021 23:17, Andy Shevchenko wrote:
> The last user of this struct gone couple of releases ago.
> Remove the dead code for good and encourage people to use
> MMC core functionality for that.
>
> The removal is dependent on the previous removal of the
> struct sdhci_pci_data.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
> drivers/mmc/host/sdhci-pci-core.c | 76 +------------------------------
> drivers/mmc/host/sdhci-pci.h | 2 -
> 2 files changed, 1 insertion(+), 77 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index 8938c63b1e77..e2b6f60e9f01 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -345,73 +345,6 @@ static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
> return 0;
> }
>
> -#ifdef CONFIG_PM
> -
> -static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
> -{
> - struct sdhci_pci_slot *slot = dev_id;
> - struct sdhci_host *host = slot->host;
> -
> - mmc_detect_change(host->mmc, msecs_to_jiffies(200));
> - return IRQ_HANDLED;
> -}
> -
> -static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
> -{
> - int err, irq, gpio = slot->cd_gpio;
> -
> - slot->cd_gpio = -EINVAL;
> - slot->cd_irq = -EINVAL;
> -
> - if (!gpio_is_valid(gpio))
> - return;
> -
> - err = devm_gpio_request(&slot->chip->pdev->dev, gpio, "sd_cd");
> - if (err < 0)
> - goto out;
> -
> - err = gpio_direction_input(gpio);
> - if (err < 0)
> - goto out_free;
> -
> - irq = gpio_to_irq(gpio);
> - if (irq < 0)
> - goto out_free;
> -
> - err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
> - IRQF_TRIGGER_FALLING, "sd_cd", slot);
> - if (err)
> - goto out_free;
> -
> - slot->cd_gpio = gpio;
> - slot->cd_irq = irq;
> -
> - return;
> -
> -out_free:
> - devm_gpio_free(&slot->chip->pdev->dev, gpio);
> -out:
> - dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
> -}
> -
> -static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
> -{
> - if (slot->cd_irq >= 0)
> - free_irq(slot->cd_irq, slot);
> -}
> -
> -#else
> -
> -static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
> -{
> -}
> -
> -static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
> -{
> -}
> -
> -#endif
> -
> static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
> {
> slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
> @@ -2128,7 +2061,6 @@ static struct sdhci_pci_slot *sdhci_pci_probe_slot(
> slot->chip = chip;
> slot->host = host;
> slot->rst_n_gpio = -EINVAL;
> - slot->cd_gpio = -EINVAL;
> slot->cd_idx = -1;
>
> host->hw_name = "PCI";
> @@ -2199,15 +2131,11 @@ static struct sdhci_pci_slot *sdhci_pci_probe_slot(
> if (ret)
> goto remove;
>
> - sdhci_pci_add_own_cd(slot);
> -
> /*
> * Check if the chip needs a separate GPIO for card detect to wake up
> * from runtime suspend. If it is not there, don't allow runtime PM.
> - * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
> */
> - if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
> - !gpio_is_valid(slot->cd_gpio) && slot->cd_idx < 0)
> + if (chip->fixes && chip->fixes->own_cd_for_runtime_pm && slot->cd_idx < 0)
> chip->allow_runtime_pm = false;
>
> return slot;
> @@ -2227,8 +2155,6 @@ static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
> int dead;
> u32 scratch;
>
> - sdhci_pci_remove_own_cd(slot);
> -
> dead = 0;
> scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
> if (scratch == (u32)-1)
> diff --git a/drivers/mmc/host/sdhci-pci.h b/drivers/mmc/host/sdhci-pci.h
> index 15b36cd47860..8bb3b9c78589 100644
> --- a/drivers/mmc/host/sdhci-pci.h
> +++ b/drivers/mmc/host/sdhci-pci.h
> @@ -158,8 +158,6 @@ struct sdhci_pci_slot {
> struct sdhci_host *host;
>
> int rst_n_gpio;
> - int cd_gpio;
> - int cd_irq;
>
> int cd_idx;
> bool cd_override_level;
>
next prev parent reply other threads:[~2021-10-14 10:02 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-13 20:17 [PATCH v2 0/6] mmc: sdhci-pci: Add some CD GPIO related quirks Andy Shevchenko
2021-10-13 20:17 ` [PATCH v2 1/6] mmc: sdhci-pci: Read card detect from ACPI for Intel Merrifield Andy Shevchenko
2021-10-14 9:54 ` Adrian Hunter
2021-10-14 11:23 ` Ulf Hansson
2021-10-13 20:17 ` [PATCH v2 2/6] mmc: sdhci: Deduplicate sdhci_get_cd_nogpio() Andy Shevchenko
2021-10-14 9:58 ` Adrian Hunter
2021-10-13 20:17 ` [PATCH v2 3/6] mmc: sdhci: Remove unused prototype declaration in the header Andy Shevchenko
2021-10-14 9:59 ` Adrian Hunter
2021-10-13 20:17 ` [PATCH v2 4/6] mmc: sdhci-pci: Remove dead code (struct sdhci_pci_data et al) Andy Shevchenko
2021-10-14 10:01 ` Adrian Hunter
2021-10-13 20:17 ` [PATCH v2 5/6] mmc: sdhci-pci: Remove dead code (cd_gpio, cd_irq " Andy Shevchenko
2021-10-14 10:02 ` Adrian Hunter [this message]
2021-10-13 20:17 ` [PATCH v2 6/6] mmc: sdhci-pci: Remove dead code (rst_n_gpio " Andy Shevchenko
2021-10-14 10:04 ` Adrian Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0eed2bea-33bd-3f16-6823-95fcb68c65a5@intel.com \
--to=adrian.hunter@intel.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=ebiggers@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=rrangel@chromium.org \
--cc=ulf.hansson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox