xref: /openbmc/linux/drivers/mmc/host/sdhci-pci.h (revision 522624f9)
1 #ifndef __SDHCI_PCI_H
2 #define __SDHCI_PCI_H
3 
4 /*
5  * PCI device IDs
6  */
7 
8 #define PCI_DEVICE_ID_INTEL_PCH_SDIO0	0x8809
9 #define PCI_DEVICE_ID_INTEL_PCH_SDIO1	0x880a
10 #define PCI_DEVICE_ID_INTEL_BYT_EMMC	0x0f14
11 #define PCI_DEVICE_ID_INTEL_BYT_SDIO	0x0f15
12 #define PCI_DEVICE_ID_INTEL_BYT_SD	0x0f16
13 #define PCI_DEVICE_ID_INTEL_BYT_EMMC2	0x0f50
14 #define PCI_DEVICE_ID_INTEL_MRFL_MMC	0x1190
15 #define PCI_DEVICE_ID_INTEL_CLV_SDIO0	0x08f9
16 #define PCI_DEVICE_ID_INTEL_CLV_SDIO1	0x08fa
17 #define PCI_DEVICE_ID_INTEL_CLV_SDIO2	0x08fb
18 #define PCI_DEVICE_ID_INTEL_CLV_EMMC0	0x08e5
19 #define PCI_DEVICE_ID_INTEL_CLV_EMMC1	0x08e6
20 
21 /*
22  * PCI registers
23  */
24 
25 #define PCI_SDHCI_IFPIO			0x00
26 #define PCI_SDHCI_IFDMA			0x01
27 #define PCI_SDHCI_IFVENDOR		0x02
28 
29 #define PCI_SLOT_INFO			0x40	/* 8 bits */
30 #define  PCI_SLOT_INFO_SLOTS(x)		((x >> 4) & 7)
31 #define  PCI_SLOT_INFO_FIRST_BAR_MASK	0x07
32 
33 #define MAX_SLOTS			8
34 
35 struct sdhci_pci_chip;
36 struct sdhci_pci_slot;
37 
38 struct sdhci_pci_fixes {
39 	unsigned int		quirks;
40 	unsigned int		quirks2;
41 	bool			allow_runtime_pm;
42 
43 	int			(*probe) (struct sdhci_pci_chip *);
44 
45 	int			(*probe_slot) (struct sdhci_pci_slot *);
46 	void			(*remove_slot) (struct sdhci_pci_slot *, int);
47 
48 	int			(*suspend) (struct sdhci_pci_chip *);
49 	int			(*resume) (struct sdhci_pci_chip *);
50 };
51 
52 struct sdhci_pci_slot {
53 	struct sdhci_pci_chip	*chip;
54 	struct sdhci_host	*host;
55 	struct sdhci_pci_data	*data;
56 
57 	int			pci_bar;
58 	int			rst_n_gpio;
59 	int			cd_gpio;
60 	int			cd_irq;
61 
62 	void (*hw_reset)(struct sdhci_host *host);
63 };
64 
65 struct sdhci_pci_chip {
66 	struct pci_dev		*pdev;
67 
68 	unsigned int		quirks;
69 	unsigned int		quirks2;
70 	bool			allow_runtime_pm;
71 	const struct sdhci_pci_fixes *fixes;
72 
73 	int			num_slots;	/* Slots on controller */
74 	struct sdhci_pci_slot	*slots[MAX_SLOTS]; /* Pointers to host slots */
75 };
76 
77 #endif /* __SDHCI_PCI_H */
78