blob: 03a1d5976ff5016b25841dd1c87a425276cb1609 [file] [log] [blame]
Jan Glaubercd248342012-11-29 12:50:30 +01001/*
2 * Copyright IBM Corp. 2012
3 *
4 * Author(s):
5 * Jan Glauber <jang@linux.vnet.ibm.com>
6 *
7 * The System z PCI code is a rewrite from a prototype by
8 * the following people (Kudoz!):
Jan Glauberbedef752012-12-06 14:06:28 +01009 * Alexander Schmidt
10 * Christoph Raisch
11 * Hannes Hering
12 * Hoang-Nam Nguyen
13 * Jan-Bernd Themann
14 * Stefan Roscher
15 * Thomas Klein
Jan Glaubercd248342012-11-29 12:50:30 +010016 */
17
Gerald Schaefer896cb7e2014-07-16 17:21:01 +020018#define KMSG_COMPONENT "zpci"
19#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
Jan Glaubercd248342012-11-29 12:50:30 +010020
21#include <linux/kernel.h>
22#include <linux/slab.h>
23#include <linux/err.h>
24#include <linux/export.h>
25#include <linux/delay.h>
Jan Glauber9a4da8a2012-11-29 13:05:05 +010026#include <linux/irq.h>
27#include <linux/kernel_stat.h>
Jan Glaubercd248342012-11-29 12:50:30 +010028#include <linux/seq_file.h>
29#include <linux/pci.h>
30#include <linux/msi.h>
31
Jan Glauber9a4da8a2012-11-29 13:05:05 +010032#include <asm/isc.h>
33#include <asm/airq.h>
Jan Glaubercd248342012-11-29 12:50:30 +010034#include <asm/facility.h>
35#include <asm/pci_insn.h>
Jan Glaubera755a452012-11-29 12:55:21 +010036#include <asm/pci_clp.h>
Jan Glauber828b35f2012-11-29 14:33:30 +010037#include <asm/pci_dma.h>
Jan Glaubercd248342012-11-29 12:50:30 +010038
39#define DEBUG /* enable pr_debug */
40
Jan Glauber9a4da8a2012-11-29 13:05:05 +010041#define SIC_IRQ_MODE_ALL 0
42#define SIC_IRQ_MODE_SINGLE 1
43
Jan Glaubercd248342012-11-29 12:50:30 +010044#define ZPCI_NR_DMA_SPACES 1
45#define ZPCI_NR_DEVICES CONFIG_PCI_NR_FUNCTIONS
46
47/* list of all detected zpci devices */
Sebastian Ott67f43f32013-08-29 19:33:16 +020048static LIST_HEAD(zpci_list);
Sebastian Ott57b59182013-08-29 19:40:01 +020049static DEFINE_SPINLOCK(zpci_list_lock);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +020050
Martin Schwidefsky1f44a222013-06-27 09:01:09 +020051static struct irq_chip zpci_irq_chip = {
52 .name = "zPCI",
Thomas Gleixner280510f2014-11-23 12:23:20 +010053 .irq_unmask = pci_msi_unmask_irq,
54 .irq_mask = pci_msi_mask_irq,
Martin Schwidefsky1f44a222013-06-27 09:01:09 +020055};
56
Jan Glaubercd248342012-11-29 12:50:30 +010057static DECLARE_BITMAP(zpci_domain, ZPCI_NR_DEVICES);
58static DEFINE_SPINLOCK(zpci_domain_lock);
59
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +020060static struct airq_iv *zpci_aisb_iv;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +020061static struct airq_iv *zpci_aibv[ZPCI_NR_DEVICES];
Jan Glauber9a4da8a2012-11-29 13:05:05 +010062
Martin Schwidefskyf4eae942013-06-24 10:30:41 +020063/* Adapter interrupt definitions */
64static void zpci_irq_handler(struct airq_struct *airq);
65
66static struct airq_struct zpci_airq = {
67 .handler = zpci_irq_handler,
68 .isc = PCI_ISC,
69};
Jan Glauber9a4da8a2012-11-29 13:05:05 +010070
Sebastian Ottc506fff32016-01-22 14:01:44 +010071#define ZPCI_IOMAP_ENTRIES \
72 min(((unsigned long) CONFIG_PCI_NR_FUNCTIONS * PCI_BAR_COUNT), \
73 ZPCI_IOMAP_MAX_ENTRIES)
74
Jan Glaubercd248342012-11-29 12:50:30 +010075static DEFINE_SPINLOCK(zpci_iomap_lock);
Sebastian Ottc506fff32016-01-22 14:01:44 +010076static unsigned long *zpci_iomap_bitmap;
Jan Glaubercd248342012-11-29 12:50:30 +010077struct zpci_iomap_entry *zpci_iomap_start;
78EXPORT_SYMBOL_GPL(zpci_iomap_start);
79
Jan Glauberd0b08852012-12-11 14:53:35 +010080static struct kmem_cache *zdev_fmb_cache;
81
Jan Glaubercd248342012-11-29 12:50:30 +010082struct zpci_dev *get_zdev_by_fid(u32 fid)
83{
84 struct zpci_dev *tmp, *zdev = NULL;
85
Sebastian Ott57b59182013-08-29 19:40:01 +020086 spin_lock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +010087 list_for_each_entry(tmp, &zpci_list, entry) {
88 if (tmp->fid == fid) {
89 zdev = tmp;
90 break;
91 }
92 }
Sebastian Ott57b59182013-08-29 19:40:01 +020093 spin_unlock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +010094 return zdev;
95}
96
Jan Glaubercd248342012-11-29 12:50:30 +010097static struct zpci_dev *get_zdev_by_bus(struct pci_bus *bus)
98{
99 return (bus && bus->sysdata) ? (struct zpci_dev *) bus->sysdata : NULL;
100}
101
102int pci_domain_nr(struct pci_bus *bus)
103{
104 return ((struct zpci_dev *) bus->sysdata)->domain;
105}
106EXPORT_SYMBOL_GPL(pci_domain_nr);
107
108int pci_proc_domain(struct pci_bus *bus)
109{
110 return pci_domain_nr(bus);
111}
112EXPORT_SYMBOL_GPL(pci_proc_domain);
113
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100114/* Modify PCI: Register adapter interruptions */
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200115static int zpci_set_airq(struct zpci_dev *zdev)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100116{
117 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_REG_INT);
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200118 struct zpci_fib fib = {0};
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100119
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200120 fib.isc = PCI_ISC;
121 fib.sum = 1; /* enable summary notifications */
122 fib.noi = airq_iv_end(zdev->aibv);
123 fib.aibv = (unsigned long) zdev->aibv->vector;
124 fib.aibvo = 0; /* each zdev has its own interrupt vector */
125 fib.aisb = (unsigned long) zpci_aisb_iv->vector + (zdev->aisb/64)*8;
126 fib.aisbo = zdev->aisb & 63;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100127
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200128 return zpci_mod_fc(req, &fib);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100129}
130
131struct mod_pci_args {
132 u64 base;
133 u64 limit;
134 u64 iota;
Jan Glauberd0b08852012-12-11 14:53:35 +0100135 u64 fmb_addr;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100136};
137
138static int mod_pci(struct zpci_dev *zdev, int fn, u8 dmaas, struct mod_pci_args *args)
139{
140 u64 req = ZPCI_CREATE_REQ(zdev->fh, dmaas, fn);
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200141 struct zpci_fib fib = {0};
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100142
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200143 fib.pba = args->base;
144 fib.pal = args->limit;
145 fib.iota = args->iota;
146 fib.fmb_addr = args->fmb_addr;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100147
Sebastian Ottcb4deb62013-10-22 15:19:24 +0200148 return zpci_mod_fc(req, &fib);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100149}
150
Jan Glauber828b35f2012-11-29 14:33:30 +0100151/* Modify PCI: Register I/O address translation parameters */
152int zpci_register_ioat(struct zpci_dev *zdev, u8 dmaas,
153 u64 base, u64 limit, u64 iota)
154{
Jan Glauberd0b08852012-12-11 14:53:35 +0100155 struct mod_pci_args args = { base, limit, iota, 0 };
Jan Glauber828b35f2012-11-29 14:33:30 +0100156
157 WARN_ON_ONCE(iota & 0x3fff);
158 args.iota |= ZPCI_IOTA_RTTO_FLAG;
159 return mod_pci(zdev, ZPCI_MOD_FC_REG_IOAT, dmaas, &args);
160}
161
162/* Modify PCI: Unregister I/O address translation parameters */
163int zpci_unregister_ioat(struct zpci_dev *zdev, u8 dmaas)
164{
Jan Glauberd0b08852012-12-11 14:53:35 +0100165 struct mod_pci_args args = { 0, 0, 0, 0 };
Jan Glauber828b35f2012-11-29 14:33:30 +0100166
167 return mod_pci(zdev, ZPCI_MOD_FC_DEREG_IOAT, dmaas, &args);
168}
169
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100170/* Modify PCI: Unregister adapter interruptions */
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200171static int zpci_clear_airq(struct zpci_dev *zdev)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100172{
Jan Glauberd0b08852012-12-11 14:53:35 +0100173 struct mod_pci_args args = { 0, 0, 0, 0 };
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100174
175 return mod_pci(zdev, ZPCI_MOD_FC_DEREG_INT, 0, &args);
176}
177
Jan Glauberd0b08852012-12-11 14:53:35 +0100178/* Modify PCI: Set PCI function measurement parameters */
179int zpci_fmb_enable_device(struct zpci_dev *zdev)
180{
181 struct mod_pci_args args = { 0, 0, 0, 0 };
182
183 if (zdev->fmb)
184 return -EINVAL;
185
Wei Yongjun08b42122013-02-25 22:09:25 +0800186 zdev->fmb = kmem_cache_zalloc(zdev_fmb_cache, GFP_KERNEL);
Jan Glauberd0b08852012-12-11 14:53:35 +0100187 if (!zdev->fmb)
188 return -ENOMEM;
Jan Glauberd0b08852012-12-11 14:53:35 +0100189 WARN_ON((u64) zdev->fmb & 0xf);
190
Sebastian Ott60010182015-04-10 14:33:08 +0200191 /* reset software counters */
192 atomic64_set(&zdev->allocated_pages, 0);
193 atomic64_set(&zdev->mapped_pages, 0);
194 atomic64_set(&zdev->unmapped_pages, 0);
195
Jan Glauberd0b08852012-12-11 14:53:35 +0100196 args.fmb_addr = virt_to_phys(zdev->fmb);
197 return mod_pci(zdev, ZPCI_MOD_FC_SET_MEASURE, 0, &args);
198}
199
200/* Modify PCI: Disable PCI function measurement */
201int zpci_fmb_disable_device(struct zpci_dev *zdev)
202{
203 struct mod_pci_args args = { 0, 0, 0, 0 };
204 int rc;
205
206 if (!zdev->fmb)
207 return -EINVAL;
208
209 /* Function measurement is disabled if fmb address is zero */
210 rc = mod_pci(zdev, ZPCI_MOD_FC_SET_MEASURE, 0, &args);
211
212 kmem_cache_free(zdev_fmb_cache, zdev->fmb);
213 zdev->fmb = NULL;
214 return rc;
215}
216
Jan Glaubercd248342012-11-29 12:50:30 +0100217#define ZPCI_PCIAS_CFGSPC 15
218
219static int zpci_cfg_load(struct zpci_dev *zdev, int offset, u32 *val, u8 len)
220{
221 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
222 u64 data;
223 int rc;
224
Martin Schwidefsky93893392013-06-25 14:52:23 +0200225 rc = zpci_load(&data, req, offset);
Sebastian Ottb170bad2013-04-16 14:17:15 +0200226 if (!rc) {
227 data = data << ((8 - len) * 8);
228 data = le64_to_cpu(data);
Jan Glaubercd248342012-11-29 12:50:30 +0100229 *val = (u32) data;
Sebastian Ottb170bad2013-04-16 14:17:15 +0200230 } else
Jan Glaubercd248342012-11-29 12:50:30 +0100231 *val = 0xffffffff;
232 return rc;
233}
234
235static int zpci_cfg_store(struct zpci_dev *zdev, int offset, u32 val, u8 len)
236{
237 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
238 u64 data = val;
239 int rc;
240
241 data = cpu_to_le64(data);
242 data = data >> ((8 - len) * 8);
Martin Schwidefsky93893392013-06-25 14:52:23 +0200243 rc = zpci_store(data, req, offset);
Jan Glaubercd248342012-11-29 12:50:30 +0100244 return rc;
245}
246
Greg Kroah-Hartmanb881bc42012-12-21 14:06:37 -0800247void pcibios_fixup_bus(struct pci_bus *bus)
Jan Glaubercd248342012-11-29 12:50:30 +0100248{
249}
250
251resource_size_t pcibios_align_resource(void *data, const struct resource *res,
252 resource_size_t size,
253 resource_size_t align)
254{
255 return 0;
256}
257
Jan Glauber87bc3592012-12-06 14:30:28 +0100258/* combine single writes by using store-block insn */
259void __iowrite64_copy(void __iomem *to, const void *from, size_t count)
260{
261 zpci_memcpy_toio(to, from, count);
262}
263
Jan Glaubercd248342012-11-29 12:50:30 +0100264/* Create a virtual mapping cookie for a PCI BAR */
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930265void __iomem *pci_iomap_range(struct pci_dev *pdev,
266 int bar,
267 unsigned long offset,
268 unsigned long max)
Jan Glaubercd248342012-11-29 12:50:30 +0100269{
Sebastian Ott198a5272015-06-23 14:06:35 +0200270 struct zpci_dev *zdev = to_zpci(pdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100271 int idx;
272
Sebastian Ottc0cabad2016-01-22 14:03:06 +0100273 if (!pci_resource_len(pdev, bar))
Jan Glaubercd248342012-11-29 12:50:30 +0100274 return NULL;
275
276 idx = zdev->bars[bar].map_idx;
277 spin_lock(&zpci_iomap_lock);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930278 /* Detect overrun */
Sebastian Ottf5e44f82016-01-22 14:11:21 +0100279 WARN_ON(!++zpci_iomap_start[idx].count);
280 zpci_iomap_start[idx].fh = zdev->fh;
281 zpci_iomap_start[idx].bar = bar;
Jan Glaubercd248342012-11-29 12:50:30 +0100282 spin_unlock(&zpci_iomap_lock);
283
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100284 return (void __iomem *) ZPCI_ADDR(idx) + offset;
Jan Glaubercd248342012-11-29 12:50:30 +0100285}
Sebastian Ottd9426082015-02-27 16:43:55 +0100286EXPORT_SYMBOL(pci_iomap_range);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930287
288void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
289{
290 return pci_iomap_range(dev, bar, 0, maxlen);
291}
292EXPORT_SYMBOL(pci_iomap);
Jan Glaubercd248342012-11-29 12:50:30 +0100293
294void pci_iounmap(struct pci_dev *pdev, void __iomem *addr)
295{
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100296 unsigned int idx = ZPCI_IDX(addr);
Jan Glaubercd248342012-11-29 12:50:30 +0100297
Jan Glaubercd248342012-11-29 12:50:30 +0100298 spin_lock(&zpci_iomap_lock);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930299 /* Detect underrun */
Sebastian Ottf5e44f82016-01-22 14:11:21 +0100300 WARN_ON(!zpci_iomap_start[idx].count);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930301 if (!--zpci_iomap_start[idx].count) {
302 zpci_iomap_start[idx].fh = 0;
303 zpci_iomap_start[idx].bar = 0;
304 }
Jan Glaubercd248342012-11-29 12:50:30 +0100305 spin_unlock(&zpci_iomap_lock);
306}
Sebastian Ottd9426082015-02-27 16:43:55 +0100307EXPORT_SYMBOL(pci_iounmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100308
309static int pci_read(struct pci_bus *bus, unsigned int devfn, int where,
310 int size, u32 *val)
311{
312 struct zpci_dev *zdev = get_zdev_by_bus(bus);
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200313 int ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100314
315 if (!zdev || devfn != ZPCI_DEVFN)
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200316 ret = -ENODEV;
317 else
318 ret = zpci_cfg_load(zdev, where, val, size);
319
320 return ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100321}
322
323static int pci_write(struct pci_bus *bus, unsigned int devfn, int where,
324 int size, u32 val)
325{
326 struct zpci_dev *zdev = get_zdev_by_bus(bus);
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200327 int ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100328
329 if (!zdev || devfn != ZPCI_DEVFN)
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200330 ret = -ENODEV;
331 else
332 ret = zpci_cfg_store(zdev, where, val, size);
333
334 return ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100335}
336
337static struct pci_ops pci_root_ops = {
338 .read = pci_read,
339 .write = pci_write,
340};
341
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200342static void zpci_irq_handler(struct airq_struct *airq)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100343{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200344 unsigned long si, ai;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200345 struct airq_iv *aibv;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200346 int irqs_on = 0;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100347
Heiko Carstens420f42e2013-01-02 15:18:18 +0100348 inc_irq_stat(IRQIO_PCI);
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200349 for (si = 0;;) {
350 /* Scan adapter summary indicator bit vector */
351 si = airq_iv_scan(zpci_aisb_iv, si, airq_iv_end(zpci_aisb_iv));
352 if (si == -1UL) {
353 if (irqs_on++)
354 /* End of second scan with interrupts on. */
355 break;
356 /* First scan complete, reenable interrupts. */
Christian Borntraeger63074a72017-10-30 14:38:58 +0100357 if (zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC))
358 break;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200359 si = 0;
360 continue;
361 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100362
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200363 /* Scan the adapter interrupt vector for this device. */
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200364 aibv = zpci_aibv[si];
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200365 for (ai = 0;;) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200366 ai = airq_iv_scan(aibv, ai, airq_iv_end(aibv));
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200367 if (ai == -1UL)
368 break;
Heiko Carstens420f42e2013-01-02 15:18:18 +0100369 inc_irq_stat(IRQIO_MSI);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200370 airq_iv_lock(aibv, ai);
371 generic_handle_irq(airq_iv_get_data(aibv, ai));
372 airq_iv_unlock(aibv, ai);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100373 }
374 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100375}
376
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200377int arch_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100378{
Sebastian Ott198a5272015-06-23 14:06:35 +0200379 struct zpci_dev *zdev = to_zpci(pdev);
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000380 unsigned int hwirq, msi_vecs;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200381 unsigned long aisb;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100382 struct msi_desc *msi;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200383 struct msi_msg msg;
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000384 int rc, irq;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100385
Alexander Gordeeva384c892013-12-16 09:34:54 +0100386 if (type == PCI_CAP_ID_MSI && nvec > 1)
387 return 1;
Sebastian Ottb19148f2014-10-29 19:12:04 +0100388 msi_vecs = min_t(unsigned int, nvec, zdev->max_msi);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100389
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200390 /* Allocate adapter summary indicator bit */
391 rc = -EIO;
392 aisb = airq_iv_alloc_bit(zpci_aisb_iv);
393 if (aisb == -1UL)
394 goto out;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100395 zdev->aisb = aisb;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100396
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200397 /* Create adapter interrupt vector */
398 rc = -ENOMEM;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200399 zdev->aibv = airq_iv_create(msi_vecs, AIRQ_IV_DATA | AIRQ_IV_BITLOCK);
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200400 if (!zdev->aibv)
401 goto out_si;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100402
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200403 /* Wire up shortcut pointer */
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200404 zpci_aibv[aisb] = zdev->aibv;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200405
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200406 /* Request MSI interrupts */
407 hwirq = 0;
Jiang Liudf516f42015-07-09 16:00:39 +0800408 for_each_pci_msi_entry(msi, pdev) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200409 rc = -EIO;
410 irq = irq_alloc_desc(0); /* Alloc irq on node 0 */
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000411 if (irq < 0)
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200412 goto out_msi;
413 rc = irq_set_msi_desc(irq, msi);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100414 if (rc)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200415 goto out_msi;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200416 irq_set_chip_and_handler(irq, &zpci_irq_chip,
417 handle_simple_irq);
418 msg.data = hwirq;
419 msg.address_lo = zdev->msi_addr & 0xffffffff;
420 msg.address_hi = zdev->msi_addr >> 32;
Jiang Liu83a18912014-11-09 23:10:34 +0800421 pci_write_msi_msg(irq, &msg);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200422 airq_iv_set_data(zdev->aibv, hwirq, irq);
423 hwirq++;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100424 }
425
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200426 /* Enable adapter interrupts */
427 rc = zpci_set_airq(zdev);
428 if (rc)
429 goto out_msi;
430
431 return (msi_vecs == nvec) ? 0 : msi_vecs;
432
433out_msi:
Jiang Liudf516f42015-07-09 16:00:39 +0800434 for_each_pci_msi_entry(msi, pdev) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200435 if (hwirq-- == 0)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200436 break;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200437 irq_set_msi_desc(msi->irq, NULL);
438 irq_free_desc(msi->irq);
439 msi->msg.address_lo = 0;
440 msi->msg.address_hi = 0;
441 msi->msg.data = 0;
442 msi->irq = 0;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100443 }
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200444 zpci_aibv[aisb] = NULL;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200445 airq_iv_release(zdev->aibv);
446out_si:
447 airq_iv_free_bit(zpci_aisb_iv, aisb);
448out:
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200449 return rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100450}
451
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200452void arch_teardown_msi_irqs(struct pci_dev *pdev)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100453{
Sebastian Ott198a5272015-06-23 14:06:35 +0200454 struct zpci_dev *zdev = to_zpci(pdev);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100455 struct msi_desc *msi;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200456 int rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100457
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200458 /* Disable adapter interrupts */
459 rc = zpci_clear_airq(zdev);
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +0200460 if (rc)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100461 return;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100462
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200463 /* Release MSI interrupts */
Jiang Liudf516f42015-07-09 16:00:39 +0800464 for_each_pci_msi_entry(msi, pdev) {
Yijing Wang8fb878c2014-07-08 10:08:05 +0800465 if (msi->msi_attrib.is_msix)
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100466 __pci_msix_desc_mask_irq(msi, 1);
Yijing Wang8fb878c2014-07-08 10:08:05 +0800467 else
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100468 __pci_msi_desc_mask_irq(msi, 1, 1);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200469 irq_set_msi_desc(msi->irq, NULL);
470 irq_free_desc(msi->irq);
471 msi->msg.address_lo = 0;
472 msi->msg.address_hi = 0;
473 msi->msg.data = 0;
474 msi->irq = 0;
475 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100476
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200477 zpci_aibv[zdev->aisb] = NULL;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200478 airq_iv_release(zdev->aibv);
479 airq_iv_free_bit(zpci_aisb_iv, zdev->aisb);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100480}
481
Sebastian Ott1803ba22015-02-27 16:43:21 +0100482static void zpci_map_resources(struct pci_dev *pdev)
Jan Glaubercd248342012-11-29 12:50:30 +0100483{
Jan Glaubercd248342012-11-29 12:50:30 +0100484 resource_size_t len;
485 int i;
486
487 for (i = 0; i < PCI_BAR_COUNT; i++) {
488 len = pci_resource_len(pdev, i);
489 if (!len)
490 continue;
Martin Schwidefsky5b9f2082014-10-30 10:30:45 +0100491 pdev->resource[i].start =
492 (resource_size_t __force) pci_iomap(pdev, i, 0);
Jan Glaubercd248342012-11-29 12:50:30 +0100493 pdev->resource[i].end = pdev->resource[i].start + len - 1;
Jan Glaubercd248342012-11-29 12:50:30 +0100494 }
Sebastian Ott944239c2013-06-05 16:06:16 +0200495}
496
Sebastian Ott1803ba22015-02-27 16:43:21 +0100497static void zpci_unmap_resources(struct pci_dev *pdev)
Sebastian Ott944239c2013-06-05 16:06:16 +0200498{
Sebastian Ott944239c2013-06-05 16:06:16 +0200499 resource_size_t len;
500 int i;
501
502 for (i = 0; i < PCI_BAR_COUNT; i++) {
503 len = pci_resource_len(pdev, i);
504 if (!len)
505 continue;
Martin Schwidefsky5b9f2082014-10-30 10:30:45 +0100506 pci_iounmap(pdev, (void __iomem __force *)
507 pdev->resource[i].start);
Sebastian Ott944239c2013-06-05 16:06:16 +0200508 }
509}
Jan Glaubercd248342012-11-29 12:50:30 +0100510
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100511static int __init zpci_irq_init(void)
512{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200513 int rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100514
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200515 rc = register_adapter_interrupt(&zpci_airq);
516 if (rc)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200517 goto out;
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200518 /* Set summary to 1 to be called every time for the ISC. */
519 *zpci_airq.lsi_ptr = 1;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100520
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200521 rc = -ENOMEM;
522 zpci_aisb_iv = airq_iv_create(ZPCI_NR_DEVICES, AIRQ_IV_ALLOC);
523 if (!zpci_aisb_iv)
524 goto out_airq;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100525
Martin Schwidefsky93893392013-06-25 14:52:23 +0200526 zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100527 return 0;
528
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200529out_airq:
530 unregister_adapter_interrupt(&zpci_airq);
531out:
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100532 return rc;
533}
534
535static void zpci_irq_exit(void)
536{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200537 airq_iv_release(zpci_aisb_iv);
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200538 unregister_adapter_interrupt(&zpci_airq);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100539}
540
Jan Glaubercd248342012-11-29 12:50:30 +0100541static int zpci_alloc_iomap(struct zpci_dev *zdev)
542{
Sebastian Ottbf19c942016-01-22 13:59:35 +0100543 unsigned long entry;
Jan Glaubercd248342012-11-29 12:50:30 +0100544
545 spin_lock(&zpci_iomap_lock);
Sebastian Ottc506fff32016-01-22 14:01:44 +0100546 entry = find_first_zero_bit(zpci_iomap_bitmap, ZPCI_IOMAP_ENTRIES);
547 if (entry == ZPCI_IOMAP_ENTRIES) {
Jan Glaubercd248342012-11-29 12:50:30 +0100548 spin_unlock(&zpci_iomap_lock);
549 return -ENOSPC;
550 }
Sebastian Ottc506fff32016-01-22 14:01:44 +0100551 set_bit(entry, zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100552 spin_unlock(&zpci_iomap_lock);
553 return entry;
554}
555
556static void zpci_free_iomap(struct zpci_dev *zdev, int entry)
557{
558 spin_lock(&zpci_iomap_lock);
559 memset(&zpci_iomap_start[entry], 0, sizeof(struct zpci_iomap_entry));
Sebastian Ottc506fff32016-01-22 14:01:44 +0100560 clear_bit(entry, zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100561 spin_unlock(&zpci_iomap_lock);
562}
563
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100564static struct resource *__alloc_res(struct zpci_dev *zdev, unsigned long start,
565 unsigned long size, unsigned long flags)
566{
567 struct resource *r;
568
569 r = kzalloc(sizeof(*r), GFP_KERNEL);
570 if (!r)
571 return NULL;
572
573 r->start = start;
574 r->end = r->start + size - 1;
575 r->flags = flags;
576 r->name = zdev->res_name;
577
578 if (request_resource(&iomem_resource, r)) {
579 kfree(r);
580 return NULL;
581 }
582 return r;
583}
584
585static int zpci_setup_bus_resources(struct zpci_dev *zdev,
586 struct list_head *resources)
587{
588 unsigned long addr, size, flags;
589 struct resource *res;
590 int i, entry;
591
592 snprintf(zdev->res_name, sizeof(zdev->res_name),
593 "PCI Bus %04x:%02x", zdev->domain, ZPCI_BUS_NR);
594
595 for (i = 0; i < PCI_BAR_COUNT; i++) {
596 if (!zdev->bars[i].size)
597 continue;
598 entry = zpci_alloc_iomap(zdev);
599 if (entry < 0)
600 return entry;
601 zdev->bars[i].map_idx = entry;
602
603 /* only MMIO is supported */
604 flags = IORESOURCE_MEM;
605 if (zdev->bars[i].val & 8)
606 flags |= IORESOURCE_PREFETCH;
607 if (zdev->bars[i].val & 4)
608 flags |= IORESOURCE_MEM_64;
609
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100610 addr = ZPCI_ADDR(entry);
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100611 size = 1UL << zdev->bars[i].size;
612
613 res = __alloc_res(zdev, addr, size, flags);
614 if (!res) {
615 zpci_free_iomap(zdev, entry);
616 return -ENOMEM;
617 }
618 zdev->bars[i].res = res;
619 pci_add_resource(resources, res);
620 }
621
622 return 0;
623}
624
625static void zpci_cleanup_bus_resources(struct zpci_dev *zdev)
626{
627 int i;
628
629 for (i = 0; i < PCI_BAR_COUNT; i++) {
Sebastian Ott2b1df722015-07-28 19:10:45 +0200630 if (!zdev->bars[i].size || !zdev->bars[i].res)
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100631 continue;
632
633 zpci_free_iomap(zdev, zdev->bars[i].map_idx);
634 release_resource(zdev->bars[i].res);
635 kfree(zdev->bars[i].res);
636 }
637}
638
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200639int pcibios_add_device(struct pci_dev *pdev)
640{
Sebastian Ottcb809182013-08-29 19:34:37 +0200641 struct resource *res;
642 int i;
643
Sebastian Ottef4858c2014-04-30 14:50:09 -0600644 pdev->dev.groups = zpci_attr_groups;
Christian Borntraegere82becfc2016-02-02 21:46:34 -0800645 pdev->dev.archdata.dma_ops = &s390_pci_dma_ops;
Sebastian Ott1803ba22015-02-27 16:43:21 +0100646 zpci_map_resources(pdev);
Sebastian Ottcb809182013-08-29 19:34:37 +0200647
648 for (i = 0; i < PCI_BAR_COUNT; i++) {
649 res = &pdev->resource[i];
650 if (res->parent || !res->flags)
651 continue;
652 pci_claim_resource(pdev, i);
653 }
654
655 return 0;
656}
657
Sebastian Ott1803ba22015-02-27 16:43:21 +0100658void pcibios_release_device(struct pci_dev *pdev)
659{
660 zpci_unmap_resources(pdev);
661}
662
Sebastian Ottcb809182013-08-29 19:34:37 +0200663int pcibios_enable_device(struct pci_dev *pdev, int mask)
664{
Sebastian Ott198a5272015-06-23 14:06:35 +0200665 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200666
Sebastian Ott9a996492016-01-29 15:13:30 +0100667 zpci_debug_init_device(zdev, dev_name(&pdev->dev));
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200668 zpci_fmb_enable_device(zdev);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200669
Bjorn Helgaasd7533232014-02-26 15:30:24 -0700670 return pci_enable_resources(pdev, mask);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200671}
672
Sebastian Ottcb809182013-08-29 19:34:37 +0200673void pcibios_disable_device(struct pci_dev *pdev)
Sebastian Ott944239c2013-06-05 16:06:16 +0200674{
Sebastian Ott198a5272015-06-23 14:06:35 +0200675 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott944239c2013-06-05 16:06:16 +0200676
Sebastian Ott944239c2013-06-05 16:06:16 +0200677 zpci_fmb_disable_device(zdev);
678 zpci_debug_exit_device(zdev);
Sebastian Ott944239c2013-06-05 16:06:16 +0200679}
680
Sebastian Ott69db3b52013-09-25 12:27:43 +0200681#ifdef CONFIG_HIBERNATE_CALLBACKS
682static int zpci_restore(struct device *dev)
683{
Sebastian Ott1803ba22015-02-27 16:43:21 +0100684 struct pci_dev *pdev = to_pci_dev(dev);
Sebastian Ott198a5272015-06-23 14:06:35 +0200685 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200686 int ret = 0;
687
688 if (zdev->state != ZPCI_FN_STATE_ONLINE)
689 goto out;
690
691 ret = clp_enable_fh(zdev, ZPCI_NR_DMA_SPACES);
692 if (ret)
693 goto out;
694
Sebastian Ott1803ba22015-02-27 16:43:21 +0100695 zpci_map_resources(pdev);
Gerald Schaefer69eea952015-11-16 14:35:48 +0100696 zpci_register_ioat(zdev, 0, zdev->start_dma, zdev->end_dma,
Sebastian Ott69db3b52013-09-25 12:27:43 +0200697 (u64) zdev->dma_table);
698
699out:
700 return ret;
701}
702
703static int zpci_freeze(struct device *dev)
704{
Sebastian Ott1803ba22015-02-27 16:43:21 +0100705 struct pci_dev *pdev = to_pci_dev(dev);
Sebastian Ott198a5272015-06-23 14:06:35 +0200706 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200707
708 if (zdev->state != ZPCI_FN_STATE_ONLINE)
709 return 0;
710
711 zpci_unregister_ioat(zdev, 0);
Sebastian Ott1803ba22015-02-27 16:43:21 +0100712 zpci_unmap_resources(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200713 return clp_disable_fh(zdev);
714}
715
716struct dev_pm_ops pcibios_pm_ops = {
717 .thaw_noirq = zpci_restore,
718 .freeze_noirq = zpci_freeze,
719 .restore_noirq = zpci_restore,
720 .poweroff_noirq = zpci_freeze,
721};
722#endif /* CONFIG_HIBERNATE_CALLBACKS */
723
Jan Glaubercd248342012-11-29 12:50:30 +0100724static int zpci_alloc_domain(struct zpci_dev *zdev)
725{
726 spin_lock(&zpci_domain_lock);
727 zdev->domain = find_first_zero_bit(zpci_domain, ZPCI_NR_DEVICES);
728 if (zdev->domain == ZPCI_NR_DEVICES) {
729 spin_unlock(&zpci_domain_lock);
730 return -ENOSPC;
731 }
732 set_bit(zdev->domain, zpci_domain);
733 spin_unlock(&zpci_domain_lock);
734 return 0;
735}
736
737static void zpci_free_domain(struct zpci_dev *zdev)
738{
739 spin_lock(&zpci_domain_lock);
740 clear_bit(zdev->domain, zpci_domain);
741 spin_unlock(&zpci_domain_lock);
742}
743
Sebastian Ott7d594322013-11-12 19:35:01 +0100744void pcibios_remove_bus(struct pci_bus *bus)
745{
746 struct zpci_dev *zdev = get_zdev_by_bus(bus);
747
748 zpci_exit_slot(zdev);
749 zpci_cleanup_bus_resources(zdev);
750 zpci_free_domain(zdev);
751
752 spin_lock(&zpci_list_lock);
753 list_del(&zdev->entry);
754 spin_unlock(&zpci_list_lock);
755
756 kfree(zdev);
757}
758
759static int zpci_scan_bus(struct zpci_dev *zdev)
760{
761 LIST_HEAD(resources);
762 int ret;
763
764 ret = zpci_setup_bus_resources(zdev, &resources);
765 if (ret)
Sebastian Ott2b1df722015-07-28 19:10:45 +0200766 goto error;
Sebastian Ott7d594322013-11-12 19:35:01 +0100767
768 zdev->bus = pci_scan_root_bus(NULL, ZPCI_BUS_NR, &pci_root_ops,
769 zdev, &resources);
770 if (!zdev->bus) {
Sebastian Ott2b1df722015-07-28 19:10:45 +0200771 ret = -EIO;
772 goto error;
Sebastian Ott7d594322013-11-12 19:35:01 +0100773 }
Sebastian Ott7d594322013-11-12 19:35:01 +0100774 zdev->bus->max_bus_speed = zdev->max_bus_speed;
Yijing Wangb97ea282015-03-16 11:18:56 +0800775 pci_bus_add_devices(zdev->bus);
Sebastian Ott7d594322013-11-12 19:35:01 +0100776 return 0;
Sebastian Ott2b1df722015-07-28 19:10:45 +0200777
778error:
779 zpci_cleanup_bus_resources(zdev);
780 pci_free_resource_list(&resources);
781 return ret;
Sebastian Ott7d594322013-11-12 19:35:01 +0100782}
783
Jan Glaubera755a452012-11-29 12:55:21 +0100784int zpci_enable_device(struct zpci_dev *zdev)
785{
786 int rc;
787
788 rc = clp_enable_fh(zdev, ZPCI_NR_DMA_SPACES);
789 if (rc)
790 goto out;
Jan Glauber828b35f2012-11-29 14:33:30 +0100791
792 rc = zpci_dma_init_device(zdev);
793 if (rc)
794 goto out_dma;
Sebastian Ott0ff70ec2013-08-29 19:35:19 +0200795
796 zdev->state = ZPCI_FN_STATE_ONLINE;
Jan Glaubera755a452012-11-29 12:55:21 +0100797 return 0;
Jan Glauber828b35f2012-11-29 14:33:30 +0100798
799out_dma:
800 clp_disable_fh(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100801out:
802 return rc;
803}
804EXPORT_SYMBOL_GPL(zpci_enable_device);
805
Sebastian Ottcb65a662013-04-16 14:12:17 +0200806int zpci_disable_device(struct zpci_dev *zdev)
807{
808 zpci_dma_exit_device(zdev);
809 return clp_disable_fh(zdev);
810}
811EXPORT_SYMBOL_GPL(zpci_disable_device);
812
Jan Glaubercd248342012-11-29 12:50:30 +0100813int zpci_create_device(struct zpci_dev *zdev)
814{
815 int rc;
816
817 rc = zpci_alloc_domain(zdev);
818 if (rc)
819 goto out;
820
Sebastian Ott80ed1562015-04-10 14:34:33 +0200821 mutex_init(&zdev->lock);
Sebastian Ott1c213512013-04-25 14:49:48 +0200822 if (zdev->state == ZPCI_FN_STATE_CONFIGURED) {
823 rc = zpci_enable_device(zdev);
824 if (rc)
825 goto out_free;
Sebastian Ott1c213512013-04-25 14:49:48 +0200826 }
827 rc = zpci_scan_bus(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100828 if (rc)
Sebastian Ott1c213512013-04-25 14:49:48 +0200829 goto out_disable;
Jan Glaubercd248342012-11-29 12:50:30 +0100830
Sebastian Ott57b59182013-08-29 19:40:01 +0200831 spin_lock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +0100832 list_add_tail(&zdev->entry, &zpci_list);
Sebastian Ott57b59182013-08-29 19:40:01 +0200833 spin_unlock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +0100834
Sebastian Ott67f43f32013-08-29 19:33:16 +0200835 zpci_init_slot(zdev);
836
Jan Glaubercd248342012-11-29 12:50:30 +0100837 return 0;
838
Sebastian Ott1c213512013-04-25 14:49:48 +0200839out_disable:
840 if (zdev->state == ZPCI_FN_STATE_ONLINE)
841 zpci_disable_device(zdev);
842out_free:
Jan Glaubercd248342012-11-29 12:50:30 +0100843 zpci_free_domain(zdev);
844out:
845 return rc;
846}
847
848void zpci_stop_device(struct zpci_dev *zdev)
849{
Jan Glauber828b35f2012-11-29 14:33:30 +0100850 zpci_dma_exit_device(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100851 /*
852 * Note: SCLP disables fh via set-pci-fn so don't
853 * do that here.
854 */
855}
856EXPORT_SYMBOL_GPL(zpci_stop_device);
857
Martin Schwidefskybd3a1722016-07-18 14:05:21 +0200858int zpci_report_error(struct pci_dev *pdev,
859 struct zpci_report_error_header *report)
860{
861 struct zpci_dev *zdev = to_zpci(pdev);
862
863 return sclp_pci_report(report, zdev->fh, zdev->fid);
864}
865EXPORT_SYMBOL(zpci_report_error);
866
Jan Glaubercd248342012-11-29 12:50:30 +0100867static inline int barsize(u8 size)
868{
869 return (size) ? (1 << size) >> 10 : 0;
870}
871
872static int zpci_mem_init(void)
873{
Sebastian Ott80c544de2016-03-14 15:47:23 +0100874 BUILD_BUG_ON(!is_power_of_2(__alignof__(struct zpci_fmb)) ||
875 __alignof__(struct zpci_fmb) < sizeof(struct zpci_fmb));
876
Jan Glauberd0b08852012-12-11 14:53:35 +0100877 zdev_fmb_cache = kmem_cache_create("PCI_FMB_cache", sizeof(struct zpci_fmb),
Sebastian Ott80c544de2016-03-14 15:47:23 +0100878 __alignof__(struct zpci_fmb), 0, NULL);
Jan Glauberd0b08852012-12-11 14:53:35 +0100879 if (!zdev_fmb_cache)
Sebastian Ottc506fff32016-01-22 14:01:44 +0100880 goto error_fmb;
Jan Glauberd0b08852012-12-11 14:53:35 +0100881
Sebastian Ottc506fff32016-01-22 14:01:44 +0100882 zpci_iomap_start = kcalloc(ZPCI_IOMAP_ENTRIES,
883 sizeof(*zpci_iomap_start), GFP_KERNEL);
Jan Glaubercd248342012-11-29 12:50:30 +0100884 if (!zpci_iomap_start)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100885 goto error_iomap;
Jan Glaubercd248342012-11-29 12:50:30 +0100886
Sebastian Ottc506fff32016-01-22 14:01:44 +0100887 zpci_iomap_bitmap = kcalloc(BITS_TO_LONGS(ZPCI_IOMAP_ENTRIES),
888 sizeof(*zpci_iomap_bitmap), GFP_KERNEL);
889 if (!zpci_iomap_bitmap)
890 goto error_iomap_bitmap;
891
892 return 0;
893error_iomap_bitmap:
894 kfree(zpci_iomap_start);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100895error_iomap:
Jan Glauberd0b08852012-12-11 14:53:35 +0100896 kmem_cache_destroy(zdev_fmb_cache);
Sebastian Ottc506fff32016-01-22 14:01:44 +0100897error_fmb:
Jan Glaubercd248342012-11-29 12:50:30 +0100898 return -ENOMEM;
899}
900
901static void zpci_mem_exit(void)
902{
Sebastian Ottc506fff32016-01-22 14:01:44 +0100903 kfree(zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100904 kfree(zpci_iomap_start);
Jan Glauberd0b08852012-12-11 14:53:35 +0100905 kmem_cache_destroy(zdev_fmb_cache);
Jan Glaubercd248342012-11-29 12:50:30 +0100906}
907
Sebastian Ott257608f2013-12-12 17:55:22 +0100908static unsigned int s390_pci_probe = 1;
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100909static unsigned int s390_pci_initialized;
Jan Glaubercd248342012-11-29 12:50:30 +0100910
911char * __init pcibios_setup(char *str)
912{
Sebastian Ott257608f2013-12-12 17:55:22 +0100913 if (!strcmp(str, "off")) {
914 s390_pci_probe = 0;
Jan Glaubercd248342012-11-29 12:50:30 +0100915 return NULL;
916 }
917 return str;
918}
919
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100920bool zpci_is_enabled(void)
921{
922 return s390_pci_initialized;
923}
924
Jan Glaubercd248342012-11-29 12:50:30 +0100925static int __init pci_base_init(void)
926{
927 int rc;
928
Heiko Carstens1e5635d2013-01-30 15:52:16 +0100929 if (!s390_pci_probe)
Jan Glaubercd248342012-11-29 12:50:30 +0100930 return 0;
931
Christian Borntraeger63074a72017-10-30 14:38:58 +0100932 if (!test_facility(69) || !test_facility(71))
Jan Glaubercd248342012-11-29 12:50:30 +0100933 return 0;
934
Jan Glauberd0b08852012-12-11 14:53:35 +0100935 rc = zpci_debug_init();
936 if (rc)
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200937 goto out;
Jan Glauberd0b08852012-12-11 14:53:35 +0100938
Jan Glaubercd248342012-11-29 12:50:30 +0100939 rc = zpci_mem_init();
940 if (rc)
941 goto out_mem;
942
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100943 rc = zpci_irq_init();
944 if (rc)
945 goto out_irq;
946
Jan Glauber828b35f2012-11-29 14:33:30 +0100947 rc = zpci_dma_init();
948 if (rc)
949 goto out_dma;
950
Sebastian Ott1d578962013-08-29 19:37:28 +0200951 rc = clp_scan_pci_devices();
Jan Glaubera755a452012-11-29 12:55:21 +0100952 if (rc)
953 goto out_find;
954
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100955 s390_pci_initialized = 1;
Jan Glaubercd248342012-11-29 12:50:30 +0100956 return 0;
957
Jan Glaubera755a452012-11-29 12:55:21 +0100958out_find:
Jan Glauber828b35f2012-11-29 14:33:30 +0100959 zpci_dma_exit();
960out_dma:
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100961 zpci_irq_exit();
962out_irq:
Jan Glaubercd248342012-11-29 12:50:30 +0100963 zpci_mem_exit();
964out_mem:
Jan Glauberd0b08852012-12-11 14:53:35 +0100965 zpci_debug_exit();
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200966out:
Jan Glaubercd248342012-11-29 12:50:30 +0100967 return rc;
968}
Sebastian Ott67f43f32013-08-29 19:33:16 +0200969subsys_initcall_sync(pci_base_init);
Sebastian Ott57b59182013-08-29 19:40:01 +0200970
971void zpci_rescan(void)
972{
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100973 if (zpci_is_enabled())
974 clp_rescan_pci_devices_simple();
Sebastian Ott57b59182013-08-29 19:40:01 +0200975}