2 * Copyright IBM Corp. 2012
5 * Jan Glauber <jang@linux.vnet.ibm.com>
8 #define COMPONENT "zPCI"
9 #define pr_fmt(fmt) 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>
20 * Call Logical Processor
21 * Retry logic is handled by the caller.
23 static inline u8
clp_instr(void *data
)
25 struct { u8 _
[CLP_BLK_SIZE
]; } *req
= data
;
30 " .insn rrf,0xb9a00000,%[ign],%[req],0x0,0x2\n"
33 : [cc
] "=d" (cc
), [ign
] "=d" (ignored
), "+m" (*req
)
39 static void *clp_alloc_block(void)
41 return (void *) __get_free_pages(GFP_KERNEL
, get_order(CLP_BLK_SIZE
));
44 static void clp_free_block(void *ptr
)
46 free_pages((unsigned long) ptr
, get_order(CLP_BLK_SIZE
));
49 static void clp_store_query_pci_fngrp(struct zpci_dev
*zdev
,
50 struct clp_rsp_query_pci_grp
*response
)
52 zdev
->tlb_refresh
= response
->refresh
;
53 zdev
->dma_mask
= response
->dasm
;
54 zdev
->msi_addr
= response
->msia
;
55 zdev
->fmb_update
= response
->mui
;
57 pr_debug("Supported number of MSI vectors: %u\n", response
->noi
);
58 switch (response
->version
) {
60 zdev
->max_bus_speed
= PCIE_SPEED_5_0GT
;
63 zdev
->max_bus_speed
= PCI_SPEED_UNKNOWN
;
68 static int clp_query_pci_fngrp(struct zpci_dev
*zdev
, u8 pfgid
)
70 struct clp_req_rsp_query_pci_grp
*rrb
;
73 rrb
= clp_alloc_block();
77 memset(rrb
, 0, sizeof(*rrb
));
78 rrb
->request
.hdr
.len
= sizeof(rrb
->request
);
79 rrb
->request
.hdr
.cmd
= CLP_QUERY_PCI_FNGRP
;
80 rrb
->response
.hdr
.len
= sizeof(rrb
->response
);
81 rrb
->request
.pfgid
= pfgid
;
84 if (!rc
&& rrb
->response
.hdr
.rsp
== CLP_RC_OK
)
85 clp_store_query_pci_fngrp(zdev
, &rrb
->response
);
87 pr_err("Query PCI FNGRP failed with response: %x cc: %d\n",
88 rrb
->response
.hdr
.rsp
, rc
);
95 static int clp_store_query_pci_fn(struct zpci_dev
*zdev
,
96 struct clp_rsp_query_pci
*response
)
100 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
101 zdev
->bars
[i
].val
= le32_to_cpu(response
->bar
[i
]);
102 zdev
->bars
[i
].size
= response
->bar_size
[i
];
104 zdev
->start_dma
= response
->sdma
;
105 zdev
->end_dma
= response
->edma
;
106 zdev
->pchid
= response
->pchid
;
107 zdev
->pfgid
= response
->pfgid
;
111 static int clp_query_pci_fn(struct zpci_dev
*zdev
, u32 fh
)
113 struct clp_req_rsp_query_pci
*rrb
;
116 rrb
= clp_alloc_block();
120 memset(rrb
, 0, sizeof(*rrb
));
121 rrb
->request
.hdr
.len
= sizeof(rrb
->request
);
122 rrb
->request
.hdr
.cmd
= CLP_QUERY_PCI_FN
;
123 rrb
->response
.hdr
.len
= sizeof(rrb
->response
);
124 rrb
->request
.fh
= fh
;
127 if (!rc
&& rrb
->response
.hdr
.rsp
== CLP_RC_OK
) {
128 rc
= clp_store_query_pci_fn(zdev
, &rrb
->response
);
131 if (rrb
->response
.pfgid
)
132 rc
= clp_query_pci_fngrp(zdev
, rrb
->response
.pfgid
);
134 pr_err("Query PCI failed with response: %x cc: %d\n",
135 rrb
->response
.hdr
.rsp
, rc
);
143 int clp_add_pci_device(u32 fid
, u32 fh
, int configured
)
145 struct zpci_dev
*zdev
;
148 zpci_dbg(3, "add fid:%x, fh:%x, c:%d\n", fid
, fh
, configured
);
149 zdev
= zpci_alloc_device();
151 return PTR_ERR(zdev
);
156 /* Query function properties and update zdev */
157 rc
= clp_query_pci_fn(zdev
, fh
);
162 zdev
->state
= ZPCI_FN_STATE_CONFIGURED
;
164 zdev
->state
= ZPCI_FN_STATE_STANDBY
;
166 rc
= zpci_create_device(zdev
);
172 zpci_free_device(zdev
);
177 * Enable/Disable a given PCI function defined by its function handle.
179 static int clp_set_pci_fn(u32
*fh
, u8 nr_dma_as
, u8 command
)
181 struct clp_req_rsp_set_pci
*rrb
;
182 int rc
, retries
= 1000;
184 rrb
= clp_alloc_block();
189 memset(rrb
, 0, sizeof(*rrb
));
190 rrb
->request
.hdr
.len
= sizeof(rrb
->request
);
191 rrb
->request
.hdr
.cmd
= CLP_SET_PCI_FN
;
192 rrb
->response
.hdr
.len
= sizeof(rrb
->response
);
193 rrb
->request
.fh
= *fh
;
194 rrb
->request
.oc
= command
;
195 rrb
->request
.ndas
= nr_dma_as
;
198 if (rrb
->response
.hdr
.rsp
== CLP_RC_SETPCIFN_BUSY
) {
204 } while (rrb
->response
.hdr
.rsp
== CLP_RC_SETPCIFN_BUSY
);
206 if (!rc
&& rrb
->response
.hdr
.rsp
== CLP_RC_OK
)
207 *fh
= rrb
->response
.fh
;
209 zpci_dbg(0, "SPF fh:%x, cc:%d, resp:%x\n", *fh
, rc
,
210 rrb
->response
.hdr
.rsp
);
217 int clp_enable_fh(struct zpci_dev
*zdev
, u8 nr_dma_as
)
222 rc
= clp_set_pci_fn(&fh
, nr_dma_as
, CLP_SET_ENABLE_PCI_FN
);
224 /* Success -> store enabled handle in zdev */
227 zpci_dbg(3, "ena fid:%x, fh:%x, rc:%d\n", zdev
->fid
, zdev
->fh
, rc
);
231 int clp_disable_fh(struct zpci_dev
*zdev
)
236 if (!zdev_enabled(zdev
))
239 rc
= clp_set_pci_fn(&fh
, 0, CLP_SET_DISABLE_PCI_FN
);
241 /* Success -> store disabled handle in zdev */
244 zpci_dbg(3, "dis fid:%x, fh:%x, rc:%d\n", zdev
->fid
, zdev
->fh
, rc
);
248 static void clp_check_pcifn_entry(struct clp_fh_list_entry
*entry
)
252 if (!entry
->vendor_id
)
255 /* TODO: be a little bit more scalable */
256 present
= zpci_fid_present(entry
->fid
);
259 pr_debug("%s: device %x already present\n", __func__
, entry
->fid
);
261 /* skip already used functions */
262 if (present
&& entry
->config_state
)
265 /* aev 306: function moved to stand-by state */
266 if (present
&& !entry
->config_state
) {
268 * The handle is already disabled, that means no iota/irq freeing via
269 * the firmware interfaces anymore. Need to free resources manually
270 * (DMA memory, debug, sysfs)...
272 zpci_stop_device(get_zdev_by_fid(entry
->fid
));
276 rc
= clp_add_pci_device(entry
->fid
, entry
->fh
, entry
->config_state
);
278 pr_err("Failed to add fid: 0x%x\n", entry
->fid
);
281 int clp_find_pci_devices(void)
283 struct clp_req_rsp_list_pci
*rrb
;
284 u64 resume_token
= 0;
287 rrb
= clp_alloc_block();
292 memset(rrb
, 0, sizeof(*rrb
));
293 rrb
->request
.hdr
.len
= sizeof(rrb
->request
);
294 rrb
->request
.hdr
.cmd
= CLP_LIST_PCI
;
295 /* store as many entries as possible */
296 rrb
->response
.hdr
.len
= CLP_BLK_SIZE
- LIST_PCI_HDR_LEN
;
297 rrb
->request
.resume_token
= resume_token
;
299 /* Get PCI function handle list */
301 if (rc
|| rrb
->response
.hdr
.rsp
!= CLP_RC_OK
) {
302 pr_err("List PCI failed with response: 0x%x cc: %d\n",
303 rrb
->response
.hdr
.rsp
, rc
);
308 WARN_ON_ONCE(rrb
->response
.entry_size
!=
309 sizeof(struct clp_fh_list_entry
));
311 entries
= (rrb
->response
.hdr
.len
- LIST_PCI_HDR_LEN
) /
312 rrb
->response
.entry_size
;
313 pr_info("Detected number of PCI functions: %u\n", entries
);
315 /* Store the returned resume token as input for the next call */
316 resume_token
= rrb
->response
.resume_token
;
318 for (i
= 0; i
< entries
; i
++)
319 clp_check_pcifn_entry(&rrb
->response
.fh_list
[i
]);
320 } while (resume_token
);
322 pr_debug("Maximum number of supported PCI functions: %u\n",
323 rrb
->response
.max_fn
);