This source file includes following definitions.
- epc_set_drvdata
- epc_get_drvdata
1
2
3
4
5
6
7
8
9 #ifndef __LINUX_PCI_EPC_H
10 #define __LINUX_PCI_EPC_H
11
12 #include <linux/pci-epf.h>
13
14 struct pci_epc;
15
16 enum pci_epc_irq_type {
17 PCI_EPC_IRQ_UNKNOWN,
18 PCI_EPC_IRQ_LEGACY,
19 PCI_EPC_IRQ_MSI,
20 PCI_EPC_IRQ_MSIX,
21 };
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 struct pci_epc_ops {
44 int (*write_header)(struct pci_epc *epc, u8 func_no,
45 struct pci_epf_header *hdr);
46 int (*set_bar)(struct pci_epc *epc, u8 func_no,
47 struct pci_epf_bar *epf_bar);
48 void (*clear_bar)(struct pci_epc *epc, u8 func_no,
49 struct pci_epf_bar *epf_bar);
50 int (*map_addr)(struct pci_epc *epc, u8 func_no,
51 phys_addr_t addr, u64 pci_addr, size_t size);
52 void (*unmap_addr)(struct pci_epc *epc, u8 func_no,
53 phys_addr_t addr);
54 int (*set_msi)(struct pci_epc *epc, u8 func_no, u8 interrupts);
55 int (*get_msi)(struct pci_epc *epc, u8 func_no);
56 int (*set_msix)(struct pci_epc *epc, u8 func_no, u16 interrupts);
57 int (*get_msix)(struct pci_epc *epc, u8 func_no);
58 int (*raise_irq)(struct pci_epc *epc, u8 func_no,
59 enum pci_epc_irq_type type, u16 interrupt_num);
60 int (*start)(struct pci_epc *epc);
61 void (*stop)(struct pci_epc *epc);
62 const struct pci_epc_features* (*get_features)(struct pci_epc *epc,
63 u8 func_no);
64 struct module *owner;
65 };
66
67
68
69
70
71
72
73
74
75
76 struct pci_epc_mem {
77 phys_addr_t phys_base;
78 size_t size;
79 unsigned long *bitmap;
80 size_t page_size;
81 int pages;
82
83 struct mutex lock;
84 };
85
86
87
88
89
90
91
92
93
94
95
96 struct pci_epc {
97 struct device dev;
98 struct list_head pci_epf;
99 const struct pci_epc_ops *ops;
100 struct pci_epc_mem *mem;
101 u8 max_functions;
102 struct config_group *group;
103
104 spinlock_t lock;
105 };
106
107
108
109
110
111
112
113
114
115
116
117 struct pci_epc_features {
118 unsigned int linkup_notifier : 1;
119 unsigned int msi_capable : 1;
120 unsigned int msix_capable : 1;
121 u8 reserved_bar;
122 u8 bar_fixed_64bit;
123 u64 bar_fixed_size[BAR_5 + 1];
124 size_t align;
125 };
126
127 #define to_pci_epc(device) container_of((device), struct pci_epc, dev)
128
129 #define pci_epc_create(dev, ops) \
130 __pci_epc_create((dev), (ops), THIS_MODULE)
131 #define devm_pci_epc_create(dev, ops) \
132 __devm_pci_epc_create((dev), (ops), THIS_MODULE)
133
134 #define pci_epc_mem_init(epc, phys_addr, size) \
135 __pci_epc_mem_init((epc), (phys_addr), (size), PAGE_SIZE)
136
137 static inline void epc_set_drvdata(struct pci_epc *epc, void *data)
138 {
139 dev_set_drvdata(&epc->dev, data);
140 }
141
142 static inline void *epc_get_drvdata(struct pci_epc *epc)
143 {
144 return dev_get_drvdata(&epc->dev);
145 }
146
147 struct pci_epc *
148 __devm_pci_epc_create(struct device *dev, const struct pci_epc_ops *ops,
149 struct module *owner);
150 struct pci_epc *
151 __pci_epc_create(struct device *dev, const struct pci_epc_ops *ops,
152 struct module *owner);
153 void devm_pci_epc_destroy(struct device *dev, struct pci_epc *epc);
154 void pci_epc_destroy(struct pci_epc *epc);
155 int pci_epc_add_epf(struct pci_epc *epc, struct pci_epf *epf);
156 void pci_epc_linkup(struct pci_epc *epc);
157 void pci_epc_remove_epf(struct pci_epc *epc, struct pci_epf *epf);
158 int pci_epc_write_header(struct pci_epc *epc, u8 func_no,
159 struct pci_epf_header *hdr);
160 int pci_epc_set_bar(struct pci_epc *epc, u8 func_no,
161 struct pci_epf_bar *epf_bar);
162 void pci_epc_clear_bar(struct pci_epc *epc, u8 func_no,
163 struct pci_epf_bar *epf_bar);
164 int pci_epc_map_addr(struct pci_epc *epc, u8 func_no,
165 phys_addr_t phys_addr,
166 u64 pci_addr, size_t size);
167 void pci_epc_unmap_addr(struct pci_epc *epc, u8 func_no,
168 phys_addr_t phys_addr);
169 int pci_epc_set_msi(struct pci_epc *epc, u8 func_no, u8 interrupts);
170 int pci_epc_get_msi(struct pci_epc *epc, u8 func_no);
171 int pci_epc_set_msix(struct pci_epc *epc, u8 func_no, u16 interrupts);
172 int pci_epc_get_msix(struct pci_epc *epc, u8 func_no);
173 int pci_epc_raise_irq(struct pci_epc *epc, u8 func_no,
174 enum pci_epc_irq_type type, u16 interrupt_num);
175 int pci_epc_start(struct pci_epc *epc);
176 void pci_epc_stop(struct pci_epc *epc);
177 const struct pci_epc_features *pci_epc_get_features(struct pci_epc *epc,
178 u8 func_no);
179 unsigned int pci_epc_get_first_free_bar(const struct pci_epc_features
180 *epc_features);
181 struct pci_epc *pci_epc_get(const char *epc_name);
182 void pci_epc_put(struct pci_epc *epc);
183
184 int __pci_epc_mem_init(struct pci_epc *epc, phys_addr_t phys_addr, size_t size,
185 size_t page_size);
186 void pci_epc_mem_exit(struct pci_epc *epc);
187 void __iomem *pci_epc_mem_alloc_addr(struct pci_epc *epc,
188 phys_addr_t *phys_addr, size_t size);
189 void pci_epc_mem_free_addr(struct pci_epc *epc, phys_addr_t phys_addr,
190 void __iomem *virt_addr, size_t size);
191 #endif