blob: d28d194d580c4d6e32f3a7a12d507c6c9eaa406d [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 if (zpci_iomap_start[idx].count++) {
279 BUG_ON(zpci_iomap_start[idx].fh != zdev->fh ||
280 zpci_iomap_start[idx].bar != bar);
281 } else {
282 zpci_iomap_start[idx].fh = zdev->fh;
283 zpci_iomap_start[idx].bar = bar;
284 }
285 /* Detect overrun */
286 BUG_ON(!zpci_iomap_start[idx].count);
Jan Glaubercd248342012-11-29 12:50:30 +0100287 spin_unlock(&zpci_iomap_lock);
288
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100289 return (void __iomem *) ZPCI_ADDR(idx) + offset;
Jan Glaubercd248342012-11-29 12:50:30 +0100290}
Sebastian Ottd9426082015-02-27 16:43:55 +0100291EXPORT_SYMBOL(pci_iomap_range);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930292
293void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
294{
295 return pci_iomap_range(dev, bar, 0, maxlen);
296}
297EXPORT_SYMBOL(pci_iomap);
Jan Glaubercd248342012-11-29 12:50:30 +0100298
299void pci_iounmap(struct pci_dev *pdev, void __iomem *addr)
300{
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100301 unsigned int idx = ZPCI_IDX(addr);
Jan Glaubercd248342012-11-29 12:50:30 +0100302
Jan Glaubercd248342012-11-29 12:50:30 +0100303 spin_lock(&zpci_iomap_lock);
Michael S. Tsirkin8cfc99b2013-05-29 11:52:21 +0930304 /* Detect underrun */
305 BUG_ON(!zpci_iomap_start[idx].count);
306 if (!--zpci_iomap_start[idx].count) {
307 zpci_iomap_start[idx].fh = 0;
308 zpci_iomap_start[idx].bar = 0;
309 }
Jan Glaubercd248342012-11-29 12:50:30 +0100310 spin_unlock(&zpci_iomap_lock);
311}
Sebastian Ottd9426082015-02-27 16:43:55 +0100312EXPORT_SYMBOL(pci_iounmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100313
314static int pci_read(struct pci_bus *bus, unsigned int devfn, int where,
315 int size, u32 *val)
316{
317 struct zpci_dev *zdev = get_zdev_by_bus(bus);
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200318 int ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100319
320 if (!zdev || devfn != ZPCI_DEVFN)
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200321 ret = -ENODEV;
322 else
323 ret = zpci_cfg_load(zdev, where, val, size);
324
325 return ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100326}
327
328static int pci_write(struct pci_bus *bus, unsigned int devfn, int where,
329 int size, u32 val)
330{
331 struct zpci_dev *zdev = get_zdev_by_bus(bus);
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200332 int ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100333
334 if (!zdev || devfn != ZPCI_DEVFN)
Sebastian Ott2c3700b2013-04-16 14:18:41 +0200335 ret = -ENODEV;
336 else
337 ret = zpci_cfg_store(zdev, where, val, size);
338
339 return ret;
Jan Glaubercd248342012-11-29 12:50:30 +0100340}
341
342static struct pci_ops pci_root_ops = {
343 .read = pci_read,
344 .write = pci_write,
345};
346
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200347static void zpci_irq_handler(struct airq_struct *airq)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100348{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200349 unsigned long si, ai;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200350 struct airq_iv *aibv;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200351 int irqs_on = 0;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100352
Heiko Carstens420f42e2013-01-02 15:18:18 +0100353 inc_irq_stat(IRQIO_PCI);
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200354 for (si = 0;;) {
355 /* Scan adapter summary indicator bit vector */
356 si = airq_iv_scan(zpci_aisb_iv, si, airq_iv_end(zpci_aisb_iv));
357 if (si == -1UL) {
358 if (irqs_on++)
359 /* End of second scan with interrupts on. */
360 break;
361 /* First scan complete, reenable interrupts. */
362 zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC);
363 si = 0;
364 continue;
365 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100366
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200367 /* Scan the adapter interrupt vector for this device. */
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200368 aibv = zpci_aibv[si];
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200369 for (ai = 0;;) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200370 ai = airq_iv_scan(aibv, ai, airq_iv_end(aibv));
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200371 if (ai == -1UL)
372 break;
Heiko Carstens420f42e2013-01-02 15:18:18 +0100373 inc_irq_stat(IRQIO_MSI);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200374 airq_iv_lock(aibv, ai);
375 generic_handle_irq(airq_iv_get_data(aibv, ai));
376 airq_iv_unlock(aibv, ai);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100377 }
378 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100379}
380
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200381int arch_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100382{
Sebastian Ott198a5272015-06-23 14:06:35 +0200383 struct zpci_dev *zdev = to_zpci(pdev);
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000384 unsigned int hwirq, msi_vecs;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200385 unsigned long aisb;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100386 struct msi_desc *msi;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200387 struct msi_msg msg;
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000388 int rc, irq;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100389
Alexander Gordeeva384c892013-12-16 09:34:54 +0100390 if (type == PCI_CAP_ID_MSI && nvec > 1)
391 return 1;
Sebastian Ottb19148f2014-10-29 19:12:04 +0100392 msi_vecs = min_t(unsigned int, nvec, zdev->max_msi);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100393
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200394 /* Allocate adapter summary indicator bit */
395 rc = -EIO;
396 aisb = airq_iv_alloc_bit(zpci_aisb_iv);
397 if (aisb == -1UL)
398 goto out;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100399 zdev->aisb = aisb;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100400
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200401 /* Create adapter interrupt vector */
402 rc = -ENOMEM;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200403 zdev->aibv = airq_iv_create(msi_vecs, AIRQ_IV_DATA | AIRQ_IV_BITLOCK);
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200404 if (!zdev->aibv)
405 goto out_si;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100406
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200407 /* Wire up shortcut pointer */
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200408 zpci_aibv[aisb] = zdev->aibv;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200409
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200410 /* Request MSI interrupts */
411 hwirq = 0;
Jiang Liudf516f42015-07-09 16:00:39 +0800412 for_each_pci_msi_entry(msi, pdev) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200413 rc = -EIO;
414 irq = irq_alloc_desc(0); /* Alloc irq on node 0 */
Thomas Gleixner0a0a9422014-05-07 15:44:19 +0000415 if (irq < 0)
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200416 goto out_msi;
417 rc = irq_set_msi_desc(irq, msi);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100418 if (rc)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200419 goto out_msi;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200420 irq_set_chip_and_handler(irq, &zpci_irq_chip,
421 handle_simple_irq);
422 msg.data = hwirq;
423 msg.address_lo = zdev->msi_addr & 0xffffffff;
424 msg.address_hi = zdev->msi_addr >> 32;
Jiang Liu83a18912014-11-09 23:10:34 +0800425 pci_write_msi_msg(irq, &msg);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200426 airq_iv_set_data(zdev->aibv, hwirq, irq);
427 hwirq++;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100428 }
429
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200430 /* Enable adapter interrupts */
431 rc = zpci_set_airq(zdev);
432 if (rc)
433 goto out_msi;
434
435 return (msi_vecs == nvec) ? 0 : msi_vecs;
436
437out_msi:
Jiang Liudf516f42015-07-09 16:00:39 +0800438 for_each_pci_msi_entry(msi, pdev) {
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200439 if (hwirq-- == 0)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200440 break;
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200441 irq_set_msi_desc(msi->irq, NULL);
442 irq_free_desc(msi->irq);
443 msi->msg.address_lo = 0;
444 msi->msg.address_hi = 0;
445 msi->msg.data = 0;
446 msi->irq = 0;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100447 }
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200448 zpci_aibv[aisb] = NULL;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200449 airq_iv_release(zdev->aibv);
450out_si:
451 airq_iv_free_bit(zpci_aisb_iv, aisb);
452out:
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200453 return rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100454}
455
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200456void arch_teardown_msi_irqs(struct pci_dev *pdev)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100457{
Sebastian Ott198a5272015-06-23 14:06:35 +0200458 struct zpci_dev *zdev = to_zpci(pdev);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100459 struct msi_desc *msi;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200460 int rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100461
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200462 /* Disable adapter interrupts */
463 rc = zpci_clear_airq(zdev);
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +0200464 if (rc)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100465 return;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100466
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200467 /* Release MSI interrupts */
Jiang Liudf516f42015-07-09 16:00:39 +0800468 for_each_pci_msi_entry(msi, pdev) {
Yijing Wang8fb878c2014-07-08 10:08:05 +0800469 if (msi->msi_attrib.is_msix)
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100470 __pci_msix_desc_mask_irq(msi, 1);
Yijing Wang8fb878c2014-07-08 10:08:05 +0800471 else
Thomas Gleixner23ed8d52014-11-23 11:55:58 +0100472 __pci_msi_desc_mask_irq(msi, 1, 1);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200473 irq_set_msi_desc(msi->irq, NULL);
474 irq_free_desc(msi->irq);
475 msi->msg.address_lo = 0;
476 msi->msg.address_hi = 0;
477 msi->msg.data = 0;
478 msi->irq = 0;
479 }
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100480
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200481 zpci_aibv[zdev->aisb] = NULL;
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200482 airq_iv_release(zdev->aibv);
483 airq_iv_free_bit(zpci_aisb_iv, zdev->aisb);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100484}
485
Sebastian Ott1803ba22015-02-27 16:43:21 +0100486static void zpci_map_resources(struct pci_dev *pdev)
Jan Glaubercd248342012-11-29 12:50:30 +0100487{
Jan Glaubercd248342012-11-29 12:50:30 +0100488 resource_size_t len;
489 int i;
490
491 for (i = 0; i < PCI_BAR_COUNT; i++) {
492 len = pci_resource_len(pdev, i);
493 if (!len)
494 continue;
Martin Schwidefsky5b9f2082014-10-30 10:30:45 +0100495 pdev->resource[i].start =
496 (resource_size_t __force) pci_iomap(pdev, i, 0);
Jan Glaubercd248342012-11-29 12:50:30 +0100497 pdev->resource[i].end = pdev->resource[i].start + len - 1;
Jan Glaubercd248342012-11-29 12:50:30 +0100498 }
Sebastian Ott944239c2013-06-05 16:06:16 +0200499}
500
Sebastian Ott1803ba22015-02-27 16:43:21 +0100501static void zpci_unmap_resources(struct pci_dev *pdev)
Sebastian Ott944239c2013-06-05 16:06:16 +0200502{
Sebastian Ott944239c2013-06-05 16:06:16 +0200503 resource_size_t len;
504 int i;
505
506 for (i = 0; i < PCI_BAR_COUNT; i++) {
507 len = pci_resource_len(pdev, i);
508 if (!len)
509 continue;
Martin Schwidefsky5b9f2082014-10-30 10:30:45 +0100510 pci_iounmap(pdev, (void __iomem __force *)
511 pdev->resource[i].start);
Sebastian Ott944239c2013-06-05 16:06:16 +0200512 }
513}
Jan Glaubercd248342012-11-29 12:50:30 +0100514
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100515static int __init zpci_irq_init(void)
516{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200517 int rc;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100518
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200519 rc = register_adapter_interrupt(&zpci_airq);
520 if (rc)
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200521 goto out;
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200522 /* Set summary to 1 to be called every time for the ISC. */
523 *zpci_airq.lsi_ptr = 1;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100524
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200525 rc = -ENOMEM;
526 zpci_aisb_iv = airq_iv_create(ZPCI_NR_DEVICES, AIRQ_IV_ALLOC);
527 if (!zpci_aisb_iv)
528 goto out_airq;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100529
Martin Schwidefsky93893392013-06-25 14:52:23 +0200530 zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100531 return 0;
532
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200533out_airq:
534 unregister_adapter_interrupt(&zpci_airq);
535out:
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100536 return rc;
537}
538
539static void zpci_irq_exit(void)
540{
Martin Schwidefsky5d0d8f42013-06-25 16:36:29 +0200541 airq_iv_release(zpci_aisb_iv);
Martin Schwidefskyf4eae942013-06-24 10:30:41 +0200542 unregister_adapter_interrupt(&zpci_airq);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100543}
544
Jan Glaubercd248342012-11-29 12:50:30 +0100545static int zpci_alloc_iomap(struct zpci_dev *zdev)
546{
Sebastian Ottbf19c942016-01-22 13:59:35 +0100547 unsigned long entry;
Jan Glaubercd248342012-11-29 12:50:30 +0100548
549 spin_lock(&zpci_iomap_lock);
Sebastian Ottc506fff32016-01-22 14:01:44 +0100550 entry = find_first_zero_bit(zpci_iomap_bitmap, ZPCI_IOMAP_ENTRIES);
551 if (entry == ZPCI_IOMAP_ENTRIES) {
Jan Glaubercd248342012-11-29 12:50:30 +0100552 spin_unlock(&zpci_iomap_lock);
553 return -ENOSPC;
554 }
Sebastian Ottc506fff32016-01-22 14:01:44 +0100555 set_bit(entry, zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100556 spin_unlock(&zpci_iomap_lock);
557 return entry;
558}
559
560static void zpci_free_iomap(struct zpci_dev *zdev, int entry)
561{
562 spin_lock(&zpci_iomap_lock);
563 memset(&zpci_iomap_start[entry], 0, sizeof(struct zpci_iomap_entry));
Sebastian Ottc506fff32016-01-22 14:01:44 +0100564 clear_bit(entry, zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100565 spin_unlock(&zpci_iomap_lock);
566}
567
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100568static struct resource *__alloc_res(struct zpci_dev *zdev, unsigned long start,
569 unsigned long size, unsigned long flags)
570{
571 struct resource *r;
572
573 r = kzalloc(sizeof(*r), GFP_KERNEL);
574 if (!r)
575 return NULL;
576
577 r->start = start;
578 r->end = r->start + size - 1;
579 r->flags = flags;
580 r->name = zdev->res_name;
581
582 if (request_resource(&iomem_resource, r)) {
583 kfree(r);
584 return NULL;
585 }
586 return r;
587}
588
589static int zpci_setup_bus_resources(struct zpci_dev *zdev,
590 struct list_head *resources)
591{
592 unsigned long addr, size, flags;
593 struct resource *res;
594 int i, entry;
595
596 snprintf(zdev->res_name, sizeof(zdev->res_name),
597 "PCI Bus %04x:%02x", zdev->domain, ZPCI_BUS_NR);
598
599 for (i = 0; i < PCI_BAR_COUNT; i++) {
600 if (!zdev->bars[i].size)
601 continue;
602 entry = zpci_alloc_iomap(zdev);
603 if (entry < 0)
604 return entry;
605 zdev->bars[i].map_idx = entry;
606
607 /* only MMIO is supported */
608 flags = IORESOURCE_MEM;
609 if (zdev->bars[i].val & 8)
610 flags |= IORESOURCE_PREFETCH;
611 if (zdev->bars[i].val & 4)
612 flags |= IORESOURCE_MEM_64;
613
Sebastian Ott9e00caa2016-01-22 13:58:42 +0100614 addr = ZPCI_ADDR(entry);
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100615 size = 1UL << zdev->bars[i].size;
616
617 res = __alloc_res(zdev, addr, size, flags);
618 if (!res) {
619 zpci_free_iomap(zdev, entry);
620 return -ENOMEM;
621 }
622 zdev->bars[i].res = res;
623 pci_add_resource(resources, res);
624 }
625
626 return 0;
627}
628
629static void zpci_cleanup_bus_resources(struct zpci_dev *zdev)
630{
631 int i;
632
633 for (i = 0; i < PCI_BAR_COUNT; i++) {
Sebastian Ott2b1df722015-07-28 19:10:45 +0200634 if (!zdev->bars[i].size || !zdev->bars[i].res)
Sebastian Ott7a572a3a2013-11-12 19:33:06 +0100635 continue;
636
637 zpci_free_iomap(zdev, zdev->bars[i].map_idx);
638 release_resource(zdev->bars[i].res);
639 kfree(zdev->bars[i].res);
640 }
641}
642
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200643int pcibios_add_device(struct pci_dev *pdev)
644{
Sebastian Ott198a5272015-06-23 14:06:35 +0200645 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ottcb809182013-08-29 19:34:37 +0200646 struct resource *res;
647 int i;
648
649 zdev->pdev = pdev;
Sebastian Ottef4858c2014-04-30 14:50:09 -0600650 pdev->dev.groups = zpci_attr_groups;
Sebastian Ott1803ba22015-02-27 16:43:21 +0100651 zpci_map_resources(pdev);
Sebastian Ottcb809182013-08-29 19:34:37 +0200652
653 for (i = 0; i < PCI_BAR_COUNT; i++) {
654 res = &pdev->resource[i];
655 if (res->parent || !res->flags)
656 continue;
657 pci_claim_resource(pdev, i);
658 }
659
660 return 0;
661}
662
Sebastian Ott1803ba22015-02-27 16:43:21 +0100663void pcibios_release_device(struct pci_dev *pdev)
664{
665 zpci_unmap_resources(pdev);
666}
667
Sebastian Ottcb809182013-08-29 19:34:37 +0200668int pcibios_enable_device(struct pci_dev *pdev, int mask)
669{
Sebastian Ott198a5272015-06-23 14:06:35 +0200670 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200671
Sebastian Ott1c213512013-04-25 14:49:48 +0200672 zdev->pdev = pdev;
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200673 zpci_debug_init_device(zdev);
674 zpci_fmb_enable_device(zdev);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200675
Bjorn Helgaasd7533232014-02-26 15:30:24 -0700676 return pci_enable_resources(pdev, mask);
Sebastian Ottaf0a8a82013-04-16 14:13:21 +0200677}
678
Sebastian Ottcb809182013-08-29 19:34:37 +0200679void pcibios_disable_device(struct pci_dev *pdev)
Sebastian Ott944239c2013-06-05 16:06:16 +0200680{
Sebastian Ott198a5272015-06-23 14:06:35 +0200681 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott944239c2013-06-05 16:06:16 +0200682
Sebastian Ott944239c2013-06-05 16:06:16 +0200683 zpci_fmb_disable_device(zdev);
684 zpci_debug_exit_device(zdev);
685 zdev->pdev = NULL;
686}
687
Sebastian Ott69db3b52013-09-25 12:27:43 +0200688#ifdef CONFIG_HIBERNATE_CALLBACKS
689static int zpci_restore(struct device *dev)
690{
Sebastian Ott1803ba22015-02-27 16:43:21 +0100691 struct pci_dev *pdev = to_pci_dev(dev);
Sebastian Ott198a5272015-06-23 14:06:35 +0200692 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200693 int ret = 0;
694
695 if (zdev->state != ZPCI_FN_STATE_ONLINE)
696 goto out;
697
698 ret = clp_enable_fh(zdev, ZPCI_NR_DMA_SPACES);
699 if (ret)
700 goto out;
701
Sebastian Ott1803ba22015-02-27 16:43:21 +0100702 zpci_map_resources(pdev);
Gerald Schaefer69eea952015-11-16 14:35:48 +0100703 zpci_register_ioat(zdev, 0, zdev->start_dma, zdev->end_dma,
Sebastian Ott69db3b52013-09-25 12:27:43 +0200704 (u64) zdev->dma_table);
705
706out:
707 return ret;
708}
709
710static int zpci_freeze(struct device *dev)
711{
Sebastian Ott1803ba22015-02-27 16:43:21 +0100712 struct pci_dev *pdev = to_pci_dev(dev);
Sebastian Ott198a5272015-06-23 14:06:35 +0200713 struct zpci_dev *zdev = to_zpci(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200714
715 if (zdev->state != ZPCI_FN_STATE_ONLINE)
716 return 0;
717
718 zpci_unregister_ioat(zdev, 0);
Sebastian Ott1803ba22015-02-27 16:43:21 +0100719 zpci_unmap_resources(pdev);
Sebastian Ott69db3b52013-09-25 12:27:43 +0200720 return clp_disable_fh(zdev);
721}
722
723struct dev_pm_ops pcibios_pm_ops = {
724 .thaw_noirq = zpci_restore,
725 .freeze_noirq = zpci_freeze,
726 .restore_noirq = zpci_restore,
727 .poweroff_noirq = zpci_freeze,
728};
729#endif /* CONFIG_HIBERNATE_CALLBACKS */
730
Jan Glaubercd248342012-11-29 12:50:30 +0100731static int zpci_alloc_domain(struct zpci_dev *zdev)
732{
733 spin_lock(&zpci_domain_lock);
734 zdev->domain = find_first_zero_bit(zpci_domain, ZPCI_NR_DEVICES);
735 if (zdev->domain == ZPCI_NR_DEVICES) {
736 spin_unlock(&zpci_domain_lock);
737 return -ENOSPC;
738 }
739 set_bit(zdev->domain, zpci_domain);
740 spin_unlock(&zpci_domain_lock);
741 return 0;
742}
743
744static void zpci_free_domain(struct zpci_dev *zdev)
745{
746 spin_lock(&zpci_domain_lock);
747 clear_bit(zdev->domain, zpci_domain);
748 spin_unlock(&zpci_domain_lock);
749}
750
Sebastian Ott7d594322013-11-12 19:35:01 +0100751void pcibios_remove_bus(struct pci_bus *bus)
752{
753 struct zpci_dev *zdev = get_zdev_by_bus(bus);
754
755 zpci_exit_slot(zdev);
756 zpci_cleanup_bus_resources(zdev);
757 zpci_free_domain(zdev);
758
759 spin_lock(&zpci_list_lock);
760 list_del(&zdev->entry);
761 spin_unlock(&zpci_list_lock);
762
763 kfree(zdev);
764}
765
766static int zpci_scan_bus(struct zpci_dev *zdev)
767{
768 LIST_HEAD(resources);
769 int ret;
770
771 ret = zpci_setup_bus_resources(zdev, &resources);
772 if (ret)
Sebastian Ott2b1df722015-07-28 19:10:45 +0200773 goto error;
Sebastian Ott7d594322013-11-12 19:35:01 +0100774
775 zdev->bus = pci_scan_root_bus(NULL, ZPCI_BUS_NR, &pci_root_ops,
776 zdev, &resources);
777 if (!zdev->bus) {
Sebastian Ott2b1df722015-07-28 19:10:45 +0200778 ret = -EIO;
779 goto error;
Sebastian Ott7d594322013-11-12 19:35:01 +0100780 }
Sebastian Ott7d594322013-11-12 19:35:01 +0100781 zdev->bus->max_bus_speed = zdev->max_bus_speed;
Yijing Wangb97ea282015-03-16 11:18:56 +0800782 pci_bus_add_devices(zdev->bus);
Sebastian Ott7d594322013-11-12 19:35:01 +0100783 return 0;
Sebastian Ott2b1df722015-07-28 19:10:45 +0200784
785error:
786 zpci_cleanup_bus_resources(zdev);
787 pci_free_resource_list(&resources);
788 return ret;
Sebastian Ott7d594322013-11-12 19:35:01 +0100789}
790
Jan Glaubera755a452012-11-29 12:55:21 +0100791int zpci_enable_device(struct zpci_dev *zdev)
792{
793 int rc;
794
795 rc = clp_enable_fh(zdev, ZPCI_NR_DMA_SPACES);
796 if (rc)
797 goto out;
Jan Glauber828b35f2012-11-29 14:33:30 +0100798
799 rc = zpci_dma_init_device(zdev);
800 if (rc)
801 goto out_dma;
Sebastian Ott0ff70ec2013-08-29 19:35:19 +0200802
803 zdev->state = ZPCI_FN_STATE_ONLINE;
Jan Glaubera755a452012-11-29 12:55:21 +0100804 return 0;
Jan Glauber828b35f2012-11-29 14:33:30 +0100805
806out_dma:
807 clp_disable_fh(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100808out:
809 return rc;
810}
811EXPORT_SYMBOL_GPL(zpci_enable_device);
812
Sebastian Ottcb65a662013-04-16 14:12:17 +0200813int zpci_disable_device(struct zpci_dev *zdev)
814{
815 zpci_dma_exit_device(zdev);
816 return clp_disable_fh(zdev);
817}
818EXPORT_SYMBOL_GPL(zpci_disable_device);
819
Jan Glaubercd248342012-11-29 12:50:30 +0100820int zpci_create_device(struct zpci_dev *zdev)
821{
822 int rc;
823
824 rc = zpci_alloc_domain(zdev);
825 if (rc)
826 goto out;
827
Sebastian Ott80ed1562015-04-10 14:34:33 +0200828 mutex_init(&zdev->lock);
Sebastian Ott1c213512013-04-25 14:49:48 +0200829 if (zdev->state == ZPCI_FN_STATE_CONFIGURED) {
830 rc = zpci_enable_device(zdev);
831 if (rc)
832 goto out_free;
Sebastian Ott1c213512013-04-25 14:49:48 +0200833 }
834 rc = zpci_scan_bus(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100835 if (rc)
Sebastian Ott1c213512013-04-25 14:49:48 +0200836 goto out_disable;
Jan Glaubercd248342012-11-29 12:50:30 +0100837
Sebastian Ott57b59182013-08-29 19:40:01 +0200838 spin_lock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +0100839 list_add_tail(&zdev->entry, &zpci_list);
Sebastian Ott57b59182013-08-29 19:40:01 +0200840 spin_unlock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +0100841
Sebastian Ott67f43f32013-08-29 19:33:16 +0200842 zpci_init_slot(zdev);
843
Jan Glaubercd248342012-11-29 12:50:30 +0100844 return 0;
845
Sebastian Ott1c213512013-04-25 14:49:48 +0200846out_disable:
847 if (zdev->state == ZPCI_FN_STATE_ONLINE)
848 zpci_disable_device(zdev);
849out_free:
Jan Glaubercd248342012-11-29 12:50:30 +0100850 zpci_free_domain(zdev);
851out:
852 return rc;
853}
854
855void zpci_stop_device(struct zpci_dev *zdev)
856{
Jan Glauber828b35f2012-11-29 14:33:30 +0100857 zpci_dma_exit_device(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100858 /*
859 * Note: SCLP disables fh via set-pci-fn so don't
860 * do that here.
861 */
862}
863EXPORT_SYMBOL_GPL(zpci_stop_device);
864
Jan Glaubercd248342012-11-29 12:50:30 +0100865static inline int barsize(u8 size)
866{
867 return (size) ? (1 << size) >> 10 : 0;
868}
869
870static int zpci_mem_init(void)
871{
Jan Glauberd0b08852012-12-11 14:53:35 +0100872 zdev_fmb_cache = kmem_cache_create("PCI_FMB_cache", sizeof(struct zpci_fmb),
873 16, 0, NULL);
874 if (!zdev_fmb_cache)
Sebastian Ottc506fff32016-01-22 14:01:44 +0100875 goto error_fmb;
Jan Glauberd0b08852012-12-11 14:53:35 +0100876
Sebastian Ottc506fff32016-01-22 14:01:44 +0100877 zpci_iomap_start = kcalloc(ZPCI_IOMAP_ENTRIES,
878 sizeof(*zpci_iomap_start), GFP_KERNEL);
Jan Glaubercd248342012-11-29 12:50:30 +0100879 if (!zpci_iomap_start)
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100880 goto error_iomap;
Jan Glaubercd248342012-11-29 12:50:30 +0100881
Sebastian Ottc506fff32016-01-22 14:01:44 +0100882 zpci_iomap_bitmap = kcalloc(BITS_TO_LONGS(ZPCI_IOMAP_ENTRIES),
883 sizeof(*zpci_iomap_bitmap), GFP_KERNEL);
884 if (!zpci_iomap_bitmap)
885 goto error_iomap_bitmap;
886
887 return 0;
888error_iomap_bitmap:
889 kfree(zpci_iomap_start);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100890error_iomap:
Jan Glauberd0b08852012-12-11 14:53:35 +0100891 kmem_cache_destroy(zdev_fmb_cache);
Sebastian Ottc506fff32016-01-22 14:01:44 +0100892error_fmb:
Jan Glaubercd248342012-11-29 12:50:30 +0100893 return -ENOMEM;
894}
895
896static void zpci_mem_exit(void)
897{
Sebastian Ottc506fff32016-01-22 14:01:44 +0100898 kfree(zpci_iomap_bitmap);
Jan Glaubercd248342012-11-29 12:50:30 +0100899 kfree(zpci_iomap_start);
Jan Glauberd0b08852012-12-11 14:53:35 +0100900 kmem_cache_destroy(zdev_fmb_cache);
Jan Glaubercd248342012-11-29 12:50:30 +0100901}
902
Sebastian Ott257608f2013-12-12 17:55:22 +0100903static unsigned int s390_pci_probe = 1;
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100904static unsigned int s390_pci_initialized;
Jan Glaubercd248342012-11-29 12:50:30 +0100905
906char * __init pcibios_setup(char *str)
907{
Sebastian Ott257608f2013-12-12 17:55:22 +0100908 if (!strcmp(str, "off")) {
909 s390_pci_probe = 0;
Jan Glaubercd248342012-11-29 12:50:30 +0100910 return NULL;
911 }
912 return str;
913}
914
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100915bool zpci_is_enabled(void)
916{
917 return s390_pci_initialized;
918}
919
Jan Glaubercd248342012-11-29 12:50:30 +0100920static int __init pci_base_init(void)
921{
922 int rc;
923
Heiko Carstens1e5635d2013-01-30 15:52:16 +0100924 if (!s390_pci_probe)
Jan Glaubercd248342012-11-29 12:50:30 +0100925 return 0;
926
Heiko Carstens86cd7412015-02-14 11:23:21 +0100927 if (!test_facility(69) || !test_facility(71) || !test_facility(72))
Jan Glaubercd248342012-11-29 12:50:30 +0100928 return 0;
929
Jan Glauberd0b08852012-12-11 14:53:35 +0100930 rc = zpci_debug_init();
931 if (rc)
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200932 goto out;
Jan Glauberd0b08852012-12-11 14:53:35 +0100933
Jan Glaubercd248342012-11-29 12:50:30 +0100934 rc = zpci_mem_init();
935 if (rc)
936 goto out_mem;
937
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100938 rc = zpci_irq_init();
939 if (rc)
940 goto out_irq;
941
Jan Glauber828b35f2012-11-29 14:33:30 +0100942 rc = zpci_dma_init();
943 if (rc)
944 goto out_dma;
945
Sebastian Ott1d578962013-08-29 19:37:28 +0200946 rc = clp_scan_pci_devices();
Jan Glaubera755a452012-11-29 12:55:21 +0100947 if (rc)
948 goto out_find;
949
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100950 s390_pci_initialized = 1;
Jan Glaubercd248342012-11-29 12:50:30 +0100951 return 0;
952
Jan Glaubera755a452012-11-29 12:55:21 +0100953out_find:
Jan Glauber828b35f2012-11-29 14:33:30 +0100954 zpci_dma_exit();
955out_dma:
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100956 zpci_irq_exit();
957out_irq:
Jan Glaubercd248342012-11-29 12:50:30 +0100958 zpci_mem_exit();
959out_mem:
Jan Glauberd0b08852012-12-11 14:53:35 +0100960 zpci_debug_exit();
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200961out:
Jan Glaubercd248342012-11-29 12:50:30 +0100962 return rc;
963}
Sebastian Ott67f43f32013-08-29 19:33:16 +0200964subsys_initcall_sync(pci_base_init);
Sebastian Ott57b59182013-08-29 19:40:01 +0200965
966void zpci_rescan(void)
967{
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100968 if (zpci_is_enabled())
969 clp_rescan_pci_devices_simple();
Sebastian Ott57b59182013-08-29 19:40:01 +0200970}