mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 22:50:56 +07:00
52c506f0bc
Add a means of getting platform data for the SDHCI PCI devices. The data is stored against the slot not the device in order to support multi-slot devices. The data allows platform-specific setup (such as getting GPIO numbers from firmware or setting up wl12xx for SDIO) to be done in platform support files instead of the sdhci-pci driver. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Signed-off-by: Chris Ball <cjb@laptop.org>
19 lines
443 B
C
19 lines
443 B
C
#ifndef LINUX_MMC_SDHCI_PCI_DATA_H
|
|
#define LINUX_MMC_SDHCI_PCI_DATA_H
|
|
|
|
struct pci_dev;
|
|
|
|
struct sdhci_pci_data {
|
|
struct pci_dev *pdev;
|
|
int slotno;
|
|
int rst_n_gpio; /* Set to -EINVAL if unused */
|
|
int cd_gpio; /* Set to -EINVAL if unused */
|
|
int (*setup)(struct sdhci_pci_data *data);
|
|
void (*cleanup)(struct sdhci_pci_data *data);
|
|
};
|
|
|
|
extern struct sdhci_pci_data *(*sdhci_pci_get_data)(struct pci_dev *pdev,
|
|
int slotno);
|
|
|
|
#endif
|