Merge branch 'for-3.18-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[linux/fpc-iii.git] / arch / s390 / pci / pci_clp.c
blob6e22a247de9b302c768d6a4e6ff6dbca18b283b3
1 /*
2 * Copyright IBM Corp. 2012
4 * Author(s):
5 * Jan Glauber <jang@linux.vnet.ibm.com>
6 */
8 #define KMSG_COMPONENT "zpci"
9 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11 #include <linux/kernel.h>
12 #include <linux/slab.h>
13 #include <linux/err.h>
14 #include <linux/delay.h>
15 #include <linux/pci.h>
16 #include <asm/pci_debug.h>
17 #include <asm/pci_clp.h>
19 static inline void zpci_err_clp(unsigned int rsp, int rc)
21 struct {
22 unsigned int rsp;
23 int rc;
24 } __packed data = {rsp, rc};
26 zpci_err_hex(&data, sizeof(data));
30 * Call Logical Processor
31 * Retry logic is handled by the caller.
33 static inline u8 clp_instr(void *data)
35 struct { u8 _[CLP_BLK_SIZE]; } *req = data;
36 u64 ignored;
37 u8 cc;
39 asm volatile (
40 " .insn rrf,0xb9a00000,%[ign],%[req],0x0,0x2\n"
41 " ipm %[cc]\n"
42 " srl %[cc],28\n"
43 : [cc] "=d" (cc), [ign] "=d" (ignored), "+m" (*req)
44 : [req] "a" (req)
45 : "cc");
46 return cc;
49 static void *clp_alloc_block(gfp_t gfp_mask)
51 return (void *) __get_free_pages(gfp_mask, get_order(CLP_BLK_SIZE));
54 static void clp_free_block(void *ptr)
56 free_pages((unsigned long) ptr, get_order(CLP_BLK_SIZE));
59 static void clp_store_query_pci_fngrp(struct zpci_dev *zdev,
60 struct clp_rsp_query_pci_grp *response)
62 zdev->tlb_refresh = response->refresh;
63 zdev->dma_mask = response->dasm;
64 zdev->msi_addr = response->msia;
65 zdev->fmb_update = response->mui;
67 switch (response->version) {
68 case 1:
69 zdev->max_bus_speed = PCIE_SPEED_5_0GT;
70 break;
71 default:
72 zdev->max_bus_speed = PCI_SPEED_UNKNOWN;
73 break;
77 static int clp_query_pci_fngrp(struct zpci_dev *zdev, u8 pfgid)
79 struct clp_req_rsp_query_pci_grp *rrb;
80 int rc;
82 rrb = clp_alloc_block(GFP_KERNEL);
83 if (!rrb)
84 return -ENOMEM;
86 memset(rrb, 0, sizeof(*rrb));
87 rrb->request.hdr.len = sizeof(rrb->request);
88 rrb->request.hdr.cmd = CLP_QUERY_PCI_FNGRP;
89 rrb->response.hdr.len = sizeof(rrb->response);
90 rrb->request.pfgid = pfgid;
92 rc = clp_instr(rrb);
93 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK)
94 clp_store_query_pci_fngrp(zdev, &rrb->response);
95 else {
96 zpci_err("Q PCI FGRP:\n");
97 zpci_err_clp(rrb->response.hdr.rsp, rc);
98 rc = -EIO;
100 clp_free_block(rrb);
101 return rc;
104 static int clp_store_query_pci_fn(struct zpci_dev *zdev,
105 struct clp_rsp_query_pci *response)
107 int i;
109 for (i = 0; i < PCI_BAR_COUNT; i++) {
110 zdev->bars[i].val = le32_to_cpu(response->bar[i]);
111 zdev->bars[i].size = response->bar_size[i];
113 zdev->start_dma = response->sdma;
114 zdev->end_dma = response->edma;
115 zdev->pchid = response->pchid;
116 zdev->pfgid = response->pfgid;
117 zdev->pft = response->pft;
118 zdev->vfn = response->vfn;
119 zdev->uid = response->uid;
121 memcpy(zdev->pfip, response->pfip, sizeof(zdev->pfip));
122 if (response->util_str_avail) {
123 memcpy(zdev->util_str, response->util_str,
124 sizeof(zdev->util_str));
127 return 0;
130 static int clp_query_pci_fn(struct zpci_dev *zdev, u32 fh)
132 struct clp_req_rsp_query_pci *rrb;
133 int rc;
135 rrb = clp_alloc_block(GFP_KERNEL);
136 if (!rrb)
137 return -ENOMEM;
139 memset(rrb, 0, sizeof(*rrb));
140 rrb->request.hdr.len = sizeof(rrb->request);
141 rrb->request.hdr.cmd = CLP_QUERY_PCI_FN;
142 rrb->response.hdr.len = sizeof(rrb->response);
143 rrb->request.fh = fh;
145 rc = clp_instr(rrb);
146 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) {
147 rc = clp_store_query_pci_fn(zdev, &rrb->response);
148 if (rc)
149 goto out;
150 if (rrb->response.pfgid)
151 rc = clp_query_pci_fngrp(zdev, rrb->response.pfgid);
152 } else {
153 zpci_err("Q PCI FN:\n");
154 zpci_err_clp(rrb->response.hdr.rsp, rc);
155 rc = -EIO;
157 out:
158 clp_free_block(rrb);
159 return rc;
162 int clp_add_pci_device(u32 fid, u32 fh, int configured)
164 struct zpci_dev *zdev;
165 int rc;
167 zpci_dbg(3, "add fid:%x, fh:%x, c:%d\n", fid, fh, configured);
168 zdev = kzalloc(sizeof(*zdev), GFP_KERNEL);
169 if (!zdev)
170 return -ENOMEM;
172 zdev->fh = fh;
173 zdev->fid = fid;
175 /* Query function properties and update zdev */
176 rc = clp_query_pci_fn(zdev, fh);
177 if (rc)
178 goto error;
180 if (configured)
181 zdev->state = ZPCI_FN_STATE_CONFIGURED;
182 else
183 zdev->state = ZPCI_FN_STATE_STANDBY;
185 rc = zpci_create_device(zdev);
186 if (rc)
187 goto error;
188 return 0;
190 error:
191 kfree(zdev);
192 return rc;
196 * Enable/Disable a given PCI function defined by its function handle.
198 static int clp_set_pci_fn(u32 *fh, u8 nr_dma_as, u8 command)
200 struct clp_req_rsp_set_pci *rrb;
201 int rc, retries = 100;
203 rrb = clp_alloc_block(GFP_KERNEL);
204 if (!rrb)
205 return -ENOMEM;
207 do {
208 memset(rrb, 0, sizeof(*rrb));
209 rrb->request.hdr.len = sizeof(rrb->request);
210 rrb->request.hdr.cmd = CLP_SET_PCI_FN;
211 rrb->response.hdr.len = sizeof(rrb->response);
212 rrb->request.fh = *fh;
213 rrb->request.oc = command;
214 rrb->request.ndas = nr_dma_as;
216 rc = clp_instr(rrb);
217 if (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY) {
218 retries--;
219 if (retries < 0)
220 break;
221 msleep(20);
223 } while (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY);
225 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK)
226 *fh = rrb->response.fh;
227 else {
228 zpci_err("Set PCI FN:\n");
229 zpci_err_clp(rrb->response.hdr.rsp, rc);
230 rc = -EIO;
232 clp_free_block(rrb);
233 return rc;
236 int clp_enable_fh(struct zpci_dev *zdev, u8 nr_dma_as)
238 u32 fh = zdev->fh;
239 int rc;
241 rc = clp_set_pci_fn(&fh, nr_dma_as, CLP_SET_ENABLE_PCI_FN);
242 if (!rc)
243 /* Success -> store enabled handle in zdev */
244 zdev->fh = fh;
246 zpci_dbg(3, "ena fid:%x, fh:%x, rc:%d\n", zdev->fid, zdev->fh, rc);
247 return rc;
250 int clp_disable_fh(struct zpci_dev *zdev)
252 u32 fh = zdev->fh;
253 int rc;
255 if (!zdev_enabled(zdev))
256 return 0;
258 rc = clp_set_pci_fn(&fh, 0, CLP_SET_DISABLE_PCI_FN);
259 if (!rc)
260 /* Success -> store disabled handle in zdev */
261 zdev->fh = fh;
263 zpci_dbg(3, "dis fid:%x, fh:%x, rc:%d\n", zdev->fid, zdev->fh, rc);
264 return rc;
267 static int clp_list_pci(struct clp_req_rsp_list_pci *rrb,
268 void (*cb)(struct clp_fh_list_entry *entry))
270 u64 resume_token = 0;
271 int entries, i, rc;
273 do {
274 memset(rrb, 0, sizeof(*rrb));
275 rrb->request.hdr.len = sizeof(rrb->request);
276 rrb->request.hdr.cmd = CLP_LIST_PCI;
277 /* store as many entries as possible */
278 rrb->response.hdr.len = CLP_BLK_SIZE - LIST_PCI_HDR_LEN;
279 rrb->request.resume_token = resume_token;
281 /* Get PCI function handle list */
282 rc = clp_instr(rrb);
283 if (rc || rrb->response.hdr.rsp != CLP_RC_OK) {
284 zpci_err("List PCI FN:\n");
285 zpci_err_clp(rrb->response.hdr.rsp, rc);
286 rc = -EIO;
287 goto out;
290 WARN_ON_ONCE(rrb->response.entry_size !=
291 sizeof(struct clp_fh_list_entry));
293 entries = (rrb->response.hdr.len - LIST_PCI_HDR_LEN) /
294 rrb->response.entry_size;
296 resume_token = rrb->response.resume_token;
297 for (i = 0; i < entries; i++)
298 cb(&rrb->response.fh_list[i]);
299 } while (resume_token);
300 out:
301 return rc;
304 static void __clp_add(struct clp_fh_list_entry *entry)
306 if (!entry->vendor_id)
307 return;
309 clp_add_pci_device(entry->fid, entry->fh, entry->config_state);
312 static void __clp_rescan(struct clp_fh_list_entry *entry)
314 struct zpci_dev *zdev;
316 if (!entry->vendor_id)
317 return;
319 zdev = get_zdev_by_fid(entry->fid);
320 if (!zdev) {
321 clp_add_pci_device(entry->fid, entry->fh, entry->config_state);
322 return;
325 if (!entry->config_state) {
327 * The handle is already disabled, that means no iota/irq freeing via
328 * the firmware interfaces anymore. Need to free resources manually
329 * (DMA memory, debug, sysfs)...
331 zpci_stop_device(zdev);
335 static void __clp_update(struct clp_fh_list_entry *entry)
337 struct zpci_dev *zdev;
339 if (!entry->vendor_id)
340 return;
342 zdev = get_zdev_by_fid(entry->fid);
343 if (!zdev)
344 return;
346 zdev->fh = entry->fh;
349 int clp_scan_pci_devices(void)
351 struct clp_req_rsp_list_pci *rrb;
352 int rc;
354 rrb = clp_alloc_block(GFP_KERNEL);
355 if (!rrb)
356 return -ENOMEM;
358 rc = clp_list_pci(rrb, __clp_add);
360 clp_free_block(rrb);
361 return rc;
364 int clp_rescan_pci_devices(void)
366 struct clp_req_rsp_list_pci *rrb;
367 int rc;
369 rrb = clp_alloc_block(GFP_KERNEL);
370 if (!rrb)
371 return -ENOMEM;
373 rc = clp_list_pci(rrb, __clp_rescan);
375 clp_free_block(rrb);
376 return rc;
379 int clp_rescan_pci_devices_simple(void)
381 struct clp_req_rsp_list_pci *rrb;
382 int rc;
384 rrb = clp_alloc_block(GFP_NOWAIT);
385 if (!rrb)
386 return -ENOMEM;
388 rc = clp_list_pci(rrb, __clp_update);
390 clp_free_block(rrb);
391 return rc;