blob: c747394029eec181dbe521775296c701e9054a62 [file] [log] [blame]
Jan Glaubera755a452012-11-29 12:55:21 +01001/*
2 * Copyright IBM Corp. 2012
3 *
4 * Author(s):
5 * Jan Glauber <jang@linux.vnet.ibm.com>
6 */
7
8#define COMPONENT "zPCI"
9#define pr_fmt(fmt) COMPONENT ": " fmt
10
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>
Sebastian Otta2ab8332013-04-16 14:11:14 +020016#include <asm/pci_debug.h>
Jan Glaubera755a452012-11-29 12:55:21 +010017#include <asm/pci_clp.h>
18
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020019static inline void zpci_err_clp(unsigned int rsp, int rc)
20{
21 struct {
22 unsigned int rsp;
23 int rc;
24 } __packed data = {rsp, rc};
25
26 zpci_err_hex(&data, sizeof(data));
27}
28
Jan Glaubera755a452012-11-29 12:55:21 +010029/*
30 * Call Logical Processor
31 * Retry logic is handled by the caller.
32 */
Sebastian Ottbf4ec242013-01-31 19:53:12 +010033static inline u8 clp_instr(void *data)
Jan Glaubera755a452012-11-29 12:55:21 +010034{
Sebastian Ottbf4ec242013-01-31 19:53:12 +010035 struct { u8 _[CLP_BLK_SIZE]; } *req = data;
36 u64 ignored;
Jan Glaubera755a452012-11-29 12:55:21 +010037 u8 cc;
38
39 asm volatile (
Sebastian Ottbf4ec242013-01-31 19:53:12 +010040 " .insn rrf,0xb9a00000,%[ign],%[req],0x0,0x2\n"
Jan Glaubera755a452012-11-29 12:55:21 +010041 " ipm %[cc]\n"
42 " srl %[cc],28\n"
Sebastian Ottbf4ec242013-01-31 19:53:12 +010043 : [cc] "=d" (cc), [ign] "=d" (ignored), "+m" (*req)
Jan Glaubera755a452012-11-29 12:55:21 +010044 : [req] "a" (req)
Sebastian Ottbf4ec242013-01-31 19:53:12 +010045 : "cc");
Jan Glaubera755a452012-11-29 12:55:21 +010046 return cc;
47}
48
Sebastian Ott1d578962013-08-29 19:37:28 +020049static void *clp_alloc_block(gfp_t gfp_mask)
Jan Glaubera755a452012-11-29 12:55:21 +010050{
Sebastian Ott1d578962013-08-29 19:37:28 +020051 return (void *) __get_free_pages(gfp_mask, get_order(CLP_BLK_SIZE));
Jan Glaubera755a452012-11-29 12:55:21 +010052}
53
54static void clp_free_block(void *ptr)
55{
56 free_pages((unsigned long) ptr, get_order(CLP_BLK_SIZE));
57}
58
59static void clp_store_query_pci_fngrp(struct zpci_dev *zdev,
60 struct clp_rsp_query_pci_grp *response)
61{
Jan Glauber828b35f2012-11-29 14:33:30 +010062 zdev->tlb_refresh = response->refresh;
63 zdev->dma_mask = response->dasm;
Jan Glauber9a4da8a2012-11-29 13:05:05 +010064 zdev->msi_addr = response->msia;
Jan Glauberd0b08852012-12-11 14:53:35 +010065 zdev->fmb_update = response->mui;
Jan Glauber9a4da8a2012-11-29 13:05:05 +010066
Jan Glaubera755a452012-11-29 12:55:21 +010067 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;
74 }
75}
76
77static int clp_query_pci_fngrp(struct zpci_dev *zdev, u8 pfgid)
78{
79 struct clp_req_rsp_query_pci_grp *rrb;
80 int rc;
81
Sebastian Ott1d578962013-08-29 19:37:28 +020082 rrb = clp_alloc_block(GFP_KERNEL);
Jan Glaubera755a452012-11-29 12:55:21 +010083 if (!rrb)
84 return -ENOMEM;
85
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;
91
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 {
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020096 zpci_err("Q PCI FGRP:\n");
97 zpci_err_clp(rrb->response.hdr.rsp, rc);
Jan Glaubera755a452012-11-29 12:55:21 +010098 rc = -EIO;
99 }
100 clp_free_block(rrb);
101 return rc;
102}
103
104static int clp_store_query_pci_fn(struct zpci_dev *zdev,
105 struct clp_rsp_query_pci *response)
106{
107 int i;
108
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];
112 }
Jan Glauber828b35f2012-11-29 14:33:30 +0100113 zdev->start_dma = response->sdma;
114 zdev->end_dma = response->edma;
Jan Glaubera755a452012-11-29 12:55:21 +0100115 zdev->pchid = response->pchid;
116 zdev->pfgid = response->pfgid;
117 return 0;
118}
119
120static int clp_query_pci_fn(struct zpci_dev *zdev, u32 fh)
121{
122 struct clp_req_rsp_query_pci *rrb;
123 int rc;
124
Sebastian Ott1d578962013-08-29 19:37:28 +0200125 rrb = clp_alloc_block(GFP_KERNEL);
Jan Glaubera755a452012-11-29 12:55:21 +0100126 if (!rrb)
127 return -ENOMEM;
128
129 memset(rrb, 0, sizeof(*rrb));
130 rrb->request.hdr.len = sizeof(rrb->request);
131 rrb->request.hdr.cmd = CLP_QUERY_PCI_FN;
132 rrb->response.hdr.len = sizeof(rrb->response);
133 rrb->request.fh = fh;
134
135 rc = clp_instr(rrb);
136 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) {
137 rc = clp_store_query_pci_fn(zdev, &rrb->response);
138 if (rc)
139 goto out;
140 if (rrb->response.pfgid)
141 rc = clp_query_pci_fngrp(zdev, rrb->response.pfgid);
142 } else {
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +0200143 zpci_err("Q PCI FN:\n");
144 zpci_err_clp(rrb->response.hdr.rsp, rc);
Jan Glaubera755a452012-11-29 12:55:21 +0100145 rc = -EIO;
146 }
147out:
148 clp_free_block(rrb);
149 return rc;
150}
151
152int clp_add_pci_device(u32 fid, u32 fh, int configured)
153{
154 struct zpci_dev *zdev;
155 int rc;
156
Sebastian Otta2ab8332013-04-16 14:11:14 +0200157 zpci_dbg(3, "add fid:%x, fh:%x, c:%d\n", fid, fh, configured);
Sebastian Ott7d594322013-11-12 19:35:01 +0100158 zdev = kzalloc(sizeof(*zdev), GFP_KERNEL);
159 if (!zdev)
160 return -ENOMEM;
Jan Glaubera755a452012-11-29 12:55:21 +0100161
162 zdev->fh = fh;
163 zdev->fid = fid;
164
165 /* Query function properties and update zdev */
166 rc = clp_query_pci_fn(zdev, fh);
167 if (rc)
168 goto error;
169
170 if (configured)
171 zdev->state = ZPCI_FN_STATE_CONFIGURED;
172 else
173 zdev->state = ZPCI_FN_STATE_STANDBY;
174
175 rc = zpci_create_device(zdev);
176 if (rc)
177 goto error;
178 return 0;
179
180error:
Sebastian Ott7d594322013-11-12 19:35:01 +0100181 kfree(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100182 return rc;
183}
184
185/*
186 * Enable/Disable a given PCI function defined by its function handle.
187 */
188static int clp_set_pci_fn(u32 *fh, u8 nr_dma_as, u8 command)
189{
190 struct clp_req_rsp_set_pci *rrb;
Sebastian Ottd03abe52013-08-29 19:38:33 +0200191 int rc, retries = 100;
Jan Glaubera755a452012-11-29 12:55:21 +0100192
Sebastian Ott1d578962013-08-29 19:37:28 +0200193 rrb = clp_alloc_block(GFP_KERNEL);
Jan Glaubera755a452012-11-29 12:55:21 +0100194 if (!rrb)
195 return -ENOMEM;
196
197 do {
198 memset(rrb, 0, sizeof(*rrb));
199 rrb->request.hdr.len = sizeof(rrb->request);
200 rrb->request.hdr.cmd = CLP_SET_PCI_FN;
201 rrb->response.hdr.len = sizeof(rrb->response);
202 rrb->request.fh = *fh;
203 rrb->request.oc = command;
204 rrb->request.ndas = nr_dma_as;
205
206 rc = clp_instr(rrb);
207 if (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY) {
208 retries--;
209 if (retries < 0)
210 break;
Sebastian Ottd03abe52013-08-29 19:38:33 +0200211 msleep(20);
Jan Glaubera755a452012-11-29 12:55:21 +0100212 }
213 } while (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY);
214
215 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK)
216 *fh = rrb->response.fh;
217 else {
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +0200218 zpci_err("Set PCI FN:\n");
219 zpci_err_clp(rrb->response.hdr.rsp, rc);
Jan Glaubera755a452012-11-29 12:55:21 +0100220 rc = -EIO;
221 }
222 clp_free_block(rrb);
223 return rc;
224}
225
226int clp_enable_fh(struct zpci_dev *zdev, u8 nr_dma_as)
227{
228 u32 fh = zdev->fh;
229 int rc;
230
231 rc = clp_set_pci_fn(&fh, nr_dma_as, CLP_SET_ENABLE_PCI_FN);
232 if (!rc)
233 /* Success -> store enabled handle in zdev */
234 zdev->fh = fh;
Sebastian Otta2ab8332013-04-16 14:11:14 +0200235
236 zpci_dbg(3, "ena fid:%x, fh:%x, rc:%d\n", zdev->fid, zdev->fh, rc);
Jan Glaubera755a452012-11-29 12:55:21 +0100237 return rc;
238}
239
240int clp_disable_fh(struct zpci_dev *zdev)
241{
242 u32 fh = zdev->fh;
243 int rc;
244
245 if (!zdev_enabled(zdev))
246 return 0;
247
Jan Glaubera755a452012-11-29 12:55:21 +0100248 rc = clp_set_pci_fn(&fh, 0, CLP_SET_DISABLE_PCI_FN);
249 if (!rc)
250 /* Success -> store disabled handle in zdev */
251 zdev->fh = fh;
Sebastian Otta2ab8332013-04-16 14:11:14 +0200252
253 zpci_dbg(3, "dis fid:%x, fh:%x, rc:%d\n", zdev->fid, zdev->fh, rc);
Jan Glaubera755a452012-11-29 12:55:21 +0100254 return rc;
255}
256
Sebastian Ott1d578962013-08-29 19:37:28 +0200257static int clp_list_pci(struct clp_req_rsp_list_pci *rrb,
258 void (*cb)(struct clp_fh_list_entry *entry))
Jan Glaubera755a452012-11-29 12:55:21 +0100259{
Jan Glaubera755a452012-11-29 12:55:21 +0100260 u64 resume_token = 0;
261 int entries, i, rc;
262
Jan Glaubera755a452012-11-29 12:55:21 +0100263 do {
264 memset(rrb, 0, sizeof(*rrb));
265 rrb->request.hdr.len = sizeof(rrb->request);
266 rrb->request.hdr.cmd = CLP_LIST_PCI;
267 /* store as many entries as possible */
268 rrb->response.hdr.len = CLP_BLK_SIZE - LIST_PCI_HDR_LEN;
269 rrb->request.resume_token = resume_token;
270
271 /* Get PCI function handle list */
272 rc = clp_instr(rrb);
273 if (rc || rrb->response.hdr.rsp != CLP_RC_OK) {
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +0200274 zpci_err("List PCI FN:\n");
275 zpci_err_clp(rrb->response.hdr.rsp, rc);
Jan Glaubera755a452012-11-29 12:55:21 +0100276 rc = -EIO;
277 goto out;
278 }
279
280 WARN_ON_ONCE(rrb->response.entry_size !=
281 sizeof(struct clp_fh_list_entry));
282
283 entries = (rrb->response.hdr.len - LIST_PCI_HDR_LEN) /
284 rrb->response.entry_size;
Jan Glaubera755a452012-11-29 12:55:21 +0100285
Jan Glaubera755a452012-11-29 12:55:21 +0100286 resume_token = rrb->response.resume_token;
Jan Glaubera755a452012-11-29 12:55:21 +0100287 for (i = 0; i < entries; i++)
Sebastian Ott1d578962013-08-29 19:37:28 +0200288 cb(&rrb->response.fh_list[i]);
Jan Glaubera755a452012-11-29 12:55:21 +0100289 } while (resume_token);
Jan Glaubera755a452012-11-29 12:55:21 +0100290out:
Sebastian Ott1d578962013-08-29 19:37:28 +0200291 return rc;
292}
293
294static void __clp_add(struct clp_fh_list_entry *entry)
295{
296 if (!entry->vendor_id)
297 return;
298
299 clp_add_pci_device(entry->fid, entry->fh, entry->config_state);
300}
301
302static void __clp_rescan(struct clp_fh_list_entry *entry)
303{
304 struct zpci_dev *zdev;
305
306 if (!entry->vendor_id)
307 return;
308
309 zdev = get_zdev_by_fid(entry->fid);
310 if (!zdev) {
311 clp_add_pci_device(entry->fid, entry->fh, entry->config_state);
312 return;
313 }
314
315 if (!entry->config_state) {
316 /*
317 * The handle is already disabled, that means no iota/irq freeing via
318 * the firmware interfaces anymore. Need to free resources manually
319 * (DMA memory, debug, sysfs)...
320 */
321 zpci_stop_device(zdev);
322 }
323}
324
Sebastian Ott57b59182013-08-29 19:40:01 +0200325static void __clp_update(struct clp_fh_list_entry *entry)
326{
327 struct zpci_dev *zdev;
328
329 if (!entry->vendor_id)
330 return;
331
332 zdev = get_zdev_by_fid(entry->fid);
333 if (!zdev)
334 return;
335
336 zdev->fh = entry->fh;
337}
338
Sebastian Ott1d578962013-08-29 19:37:28 +0200339int clp_scan_pci_devices(void)
340{
341 struct clp_req_rsp_list_pci *rrb;
342 int rc;
343
344 rrb = clp_alloc_block(GFP_KERNEL);
345 if (!rrb)
346 return -ENOMEM;
347
348 rc = clp_list_pci(rrb, __clp_add);
349
350 clp_free_block(rrb);
351 return rc;
352}
353
354int clp_rescan_pci_devices(void)
355{
356 struct clp_req_rsp_list_pci *rrb;
357 int rc;
358
359 rrb = clp_alloc_block(GFP_KERNEL);
360 if (!rrb)
361 return -ENOMEM;
362
363 rc = clp_list_pci(rrb, __clp_rescan);
364
Jan Glaubera755a452012-11-29 12:55:21 +0100365 clp_free_block(rrb);
366 return rc;
367}
Sebastian Ott57b59182013-08-29 19:40:01 +0200368
369int clp_rescan_pci_devices_simple(void)
370{
371 struct clp_req_rsp_list_pci *rrb;
372 int rc;
373
374 rrb = clp_alloc_block(GFP_NOWAIT);
375 if (!rrb)
376 return -ENOMEM;
377
378 rc = clp_list_pci(rrb, __clp_update);
379
380 clp_free_block(rrb);
381 return rc;
382}