mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 14:46:47 +07:00
db9935000d
Some sdio card are not following sdio standard, and do not work when the sdio bus's clock is gated. To keep functionnality for all legacy driver, we turn this quirk on for every sdio card. Drivers needs to disable the quirk manually when someone verifies that their supported card works with clock gating. Signed-off-by: Pierre Tardy <tardyp@gmail.com> Acked-by: Ohad Ben-Cohen <ohad@wizery.com> Signed-off-by: Chris Ball <cjb@laptop.org>
75 lines
1.8 KiB
C
75 lines
1.8 KiB
C
/*
|
|
* This file contains work-arounds for many known sdio hardware
|
|
* bugs.
|
|
*
|
|
* Copyright (c) 2011 Pierre Tardy <tardyp@gmail.com>
|
|
* Inspired from pci fixup code:
|
|
* Copyright (c) 1999 Martin Mares <mj@ucw.cz>
|
|
*
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/mmc/card.h>
|
|
#include <linux/mod_devicetable.h>
|
|
|
|
/*
|
|
* The world is not perfect and supplies us with broken mmc/sdio devices.
|
|
* For at least a part of these bugs we need a work-around
|
|
*/
|
|
|
|
struct mmc_fixup {
|
|
u16 vendor, device; /* You can use SDIO_ANY_ID here of course */
|
|
void (*vendor_fixup)(struct mmc_card *card, int data);
|
|
int data;
|
|
};
|
|
|
|
/*
|
|
* This hook just adds a quirk unconditionnally
|
|
*/
|
|
static void __maybe_unused add_quirk(struct mmc_card *card, int data)
|
|
{
|
|
card->quirks |= data;
|
|
}
|
|
|
|
/*
|
|
* This hook just removes a quirk unconditionnally
|
|
*/
|
|
static void __maybe_unused remove_quirk(struct mmc_card *card, int data)
|
|
{
|
|
card->quirks &= ~data;
|
|
}
|
|
|
|
/*
|
|
* This hook just adds a quirk for all sdio devices
|
|
*/
|
|
static void add_quirk_for_sdio_devices(struct mmc_card *card, int data)
|
|
{
|
|
if (mmc_card_sdio(card))
|
|
card->quirks |= data;
|
|
}
|
|
|
|
static const struct mmc_fixup mmc_fixup_methods[] = {
|
|
/* by default sdio devices are considered CLK_GATING broken */
|
|
/* good cards will be whitelisted as they are tested */
|
|
{ SDIO_ANY_ID, SDIO_ANY_ID,
|
|
add_quirk_for_sdio_devices, MMC_QUIRK_BROKEN_CLK_GATING }
|
|
{ 0 }
|
|
};
|
|
|
|
void mmc_fixup_device(struct mmc_card *card)
|
|
{
|
|
const struct mmc_fixup *f;
|
|
|
|
for (f = mmc_fixup_methods; f->vendor_fixup; f++) {
|
|
if ((f->vendor == card->cis.vendor
|
|
|| f->vendor == (u16) SDIO_ANY_ID) &&
|
|
(f->device == card->cis.device
|
|
|| f->device == (u16) SDIO_ANY_ID)) {
|
|
dev_dbg(&card->dev, "calling %pF\n", f->vendor_fixup);
|
|
f->vendor_fixup(card, f->data);
|
|
}
|
|
}
|
|
}
|
|
EXPORT_SYMBOL(mmc_fixup_device);
|