blob: c523594a6d4532898154b5e6ef6bdf5b98b1a932 [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!):
9 * Alexander Schmidt <alexschm@de.ibm.com>
10 * Christoph Raisch <raisch@de.ibm.com>
11 * Hannes Hering <hering2@de.ibm.com>
12 * Hoang-Nam Nguyen <hnguyen@de.ibm.com>
13 * Jan-Bernd Themann <themann@de.ibm.com>
14 * Stefan Roscher <stefan.roscher@de.ibm.com>
15 * Thomas Klein <tklein@de.ibm.com>
16 */
17
18#define COMPONENT "zPCI"
19#define pr_fmt(fmt) COMPONENT ": " fmt
20
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
Jan Glauber9a4da8a2012-11-29 13:05:05 +010045#define ZPCI_MSI_VEC_BITS 6
Jan Glaubercd248342012-11-29 12:50:30 +010046#define ZPCI_NR_DEVICES CONFIG_PCI_NR_FUNCTIONS
47
48/* list of all detected zpci devices */
49LIST_HEAD(zpci_list);
Jan Glauber7441b062012-11-29 14:35:47 +010050EXPORT_SYMBOL_GPL(zpci_list);
Jan Glaubercd248342012-11-29 12:50:30 +010051DEFINE_MUTEX(zpci_list_lock);
Jan Glauber7441b062012-11-29 14:35:47 +010052EXPORT_SYMBOL_GPL(zpci_list_lock);
53
54struct pci_hp_callback_ops hotplug_ops;
55EXPORT_SYMBOL_GPL(hotplug_ops);
Jan Glaubercd248342012-11-29 12:50:30 +010056
57static DECLARE_BITMAP(zpci_domain, ZPCI_NR_DEVICES);
58static DEFINE_SPINLOCK(zpci_domain_lock);
59
Jan Glauber9a4da8a2012-11-29 13:05:05 +010060struct callback {
61 irq_handler_t handler;
62 void *data;
63};
64
65struct zdev_irq_map {
66 unsigned long aibv; /* AI bit vector */
67 int msi_vecs; /* consecutive MSI-vectors used */
68 int __unused;
69 struct callback cb[ZPCI_NR_MSI_VECS]; /* callback handler array */
70 spinlock_t lock; /* protect callbacks against de-reg */
71};
72
73struct intr_bucket {
74 /* amap of adapters, one bit per dev, corresponds to one irq nr */
75 unsigned long *alloc;
76 /* AI summary bit, global page for all devices */
77 unsigned long *aisb;
78 /* pointer to aibv and callback data in zdev */
79 struct zdev_irq_map *imap[ZPCI_NR_DEVICES];
80 /* protects the whole bucket struct */
81 spinlock_t lock;
82};
83
84static struct intr_bucket *bucket;
85
86/* Adapter local summary indicator */
87static u8 *zpci_irq_si;
88
89static atomic_t irq_retries = ATOMIC_INIT(0);
90
Jan Glaubercd248342012-11-29 12:50:30 +010091/* I/O Map */
92static DEFINE_SPINLOCK(zpci_iomap_lock);
93static DECLARE_BITMAP(zpci_iomap, ZPCI_IOMAP_MAX_ENTRIES);
94struct zpci_iomap_entry *zpci_iomap_start;
95EXPORT_SYMBOL_GPL(zpci_iomap_start);
96
Jan Glauber9a4da8a2012-11-29 13:05:05 +010097/* highest irq summary bit */
98static int __read_mostly aisb_max;
99
100static struct kmem_cache *zdev_irq_cache;
101
102static inline int irq_to_msi_nr(unsigned int irq)
103{
104 return irq & ZPCI_MSI_MASK;
105}
106
107static inline int irq_to_dev_nr(unsigned int irq)
108{
109 return irq >> ZPCI_MSI_VEC_BITS;
110}
111
112static inline struct zdev_irq_map *get_imap(unsigned int irq)
113{
114 return bucket->imap[irq_to_dev_nr(irq)];
115}
116
Jan Glaubercd248342012-11-29 12:50:30 +0100117struct zpci_dev *get_zdev(struct pci_dev *pdev)
118{
119 return (struct zpci_dev *) pdev->sysdata;
120}
121
122struct zpci_dev *get_zdev_by_fid(u32 fid)
123{
124 struct zpci_dev *tmp, *zdev = NULL;
125
126 mutex_lock(&zpci_list_lock);
127 list_for_each_entry(tmp, &zpci_list, entry) {
128 if (tmp->fid == fid) {
129 zdev = tmp;
130 break;
131 }
132 }
133 mutex_unlock(&zpci_list_lock);
134 return zdev;
135}
136
137bool zpci_fid_present(u32 fid)
138{
139 return (get_zdev_by_fid(fid) != NULL) ? true : false;
140}
141
142static struct zpci_dev *get_zdev_by_bus(struct pci_bus *bus)
143{
144 return (bus && bus->sysdata) ? (struct zpci_dev *) bus->sysdata : NULL;
145}
146
147int pci_domain_nr(struct pci_bus *bus)
148{
149 return ((struct zpci_dev *) bus->sysdata)->domain;
150}
151EXPORT_SYMBOL_GPL(pci_domain_nr);
152
153int pci_proc_domain(struct pci_bus *bus)
154{
155 return pci_domain_nr(bus);
156}
157EXPORT_SYMBOL_GPL(pci_proc_domain);
158
159/* Store PCI function information block */
160static int zpci_store_fib(struct zpci_dev *zdev, u8 *fc)
161{
162 struct zpci_fib *fib;
163 u8 status, cc;
164
165 fib = (void *) get_zeroed_page(GFP_KERNEL);
166 if (!fib)
167 return -ENOMEM;
168
169 do {
170 cc = __stpcifc(zdev->fh, 0, fib, &status);
171 if (cc == 2) {
172 msleep(ZPCI_INSN_BUSY_DELAY);
173 memset(fib, 0, PAGE_SIZE);
174 }
175 } while (cc == 2);
176
177 if (cc)
178 pr_err_once("%s: cc: %u status: %u\n",
179 __func__, cc, status);
180
181 /* Return PCI function controls */
182 *fc = fib->fc;
183
184 free_page((unsigned long) fib);
185 return (cc) ? -EIO : 0;
186}
187
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100188/* Modify PCI: Register adapter interruptions */
189static int zpci_register_airq(struct zpci_dev *zdev, unsigned int aisb,
190 u64 aibv)
191{
192 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_REG_INT);
193 struct zpci_fib *fib;
194 int rc;
195
196 fib = (void *) get_zeroed_page(GFP_KERNEL);
197 if (!fib)
198 return -ENOMEM;
199
200 fib->isc = PCI_ISC;
201 fib->noi = zdev->irq_map->msi_vecs;
202 fib->sum = 1; /* enable summary notifications */
203 fib->aibv = aibv;
204 fib->aibvo = 0; /* every function has its own page */
205 fib->aisb = (u64) bucket->aisb + aisb / 8;
206 fib->aisbo = aisb & ZPCI_MSI_MASK;
207
208 rc = mpcifc_instr(req, fib);
209 pr_debug("%s mpcifc returned noi: %d\n", __func__, fib->noi);
210
211 free_page((unsigned long) fib);
212 return rc;
213}
214
215struct mod_pci_args {
216 u64 base;
217 u64 limit;
218 u64 iota;
219};
220
221static int mod_pci(struct zpci_dev *zdev, int fn, u8 dmaas, struct mod_pci_args *args)
222{
223 u64 req = ZPCI_CREATE_REQ(zdev->fh, dmaas, fn);
224 struct zpci_fib *fib;
225 int rc;
226
227 /* The FIB must be available even if it's not used */
228 fib = (void *) get_zeroed_page(GFP_KERNEL);
229 if (!fib)
230 return -ENOMEM;
231
232 fib->pba = args->base;
233 fib->pal = args->limit;
234 fib->iota = args->iota;
235
236 rc = mpcifc_instr(req, fib);
237 free_page((unsigned long) fib);
238 return rc;
239}
240
Jan Glauber828b35f2012-11-29 14:33:30 +0100241/* Modify PCI: Register I/O address translation parameters */
242int zpci_register_ioat(struct zpci_dev *zdev, u8 dmaas,
243 u64 base, u64 limit, u64 iota)
244{
245 struct mod_pci_args args = { base, limit, iota };
246
247 WARN_ON_ONCE(iota & 0x3fff);
248 args.iota |= ZPCI_IOTA_RTTO_FLAG;
249 return mod_pci(zdev, ZPCI_MOD_FC_REG_IOAT, dmaas, &args);
250}
251
252/* Modify PCI: Unregister I/O address translation parameters */
253int zpci_unregister_ioat(struct zpci_dev *zdev, u8 dmaas)
254{
255 struct mod_pci_args args = { 0, 0, 0 };
256
257 return mod_pci(zdev, ZPCI_MOD_FC_DEREG_IOAT, dmaas, &args);
258}
259
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100260/* Modify PCI: Unregister adapter interruptions */
261static int zpci_unregister_airq(struct zpci_dev *zdev)
262{
263 struct mod_pci_args args = { 0, 0, 0 };
264
265 return mod_pci(zdev, ZPCI_MOD_FC_DEREG_INT, 0, &args);
266}
267
Jan Glaubercd248342012-11-29 12:50:30 +0100268#define ZPCI_PCIAS_CFGSPC 15
269
270static int zpci_cfg_load(struct zpci_dev *zdev, int offset, u32 *val, u8 len)
271{
272 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
273 u64 data;
274 int rc;
275
276 rc = pcilg_instr(&data, req, offset);
277 data = data << ((8 - len) * 8);
278 data = le64_to_cpu(data);
279 if (!rc)
280 *val = (u32) data;
281 else
282 *val = 0xffffffff;
283 return rc;
284}
285
286static int zpci_cfg_store(struct zpci_dev *zdev, int offset, u32 val, u8 len)
287{
288 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
289 u64 data = val;
290 int rc;
291
292 data = cpu_to_le64(data);
293 data = data >> ((8 - len) * 8);
294 rc = pcistg_instr(data, req, offset);
295 return rc;
296}
297
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100298void synchronize_irq(unsigned int irq)
299{
300 /*
301 * Not needed, the handler is protected by a lock and IRQs that occur
302 * after the handler is deleted are just NOPs.
303 */
304}
305EXPORT_SYMBOL_GPL(synchronize_irq);
306
307void enable_irq(unsigned int irq)
308{
309 struct msi_desc *msi = irq_get_msi_desc(irq);
310
311 zpci_msi_set_mask_bits(msi, 1, 0);
312}
313EXPORT_SYMBOL_GPL(enable_irq);
314
315void disable_irq(unsigned int irq)
316{
317 struct msi_desc *msi = irq_get_msi_desc(irq);
318
319 zpci_msi_set_mask_bits(msi, 1, 1);
320}
321EXPORT_SYMBOL_GPL(disable_irq);
322
323void disable_irq_nosync(unsigned int irq)
324{
325 disable_irq(irq);
326}
327EXPORT_SYMBOL_GPL(disable_irq_nosync);
328
329unsigned long probe_irq_on(void)
330{
331 return 0;
332}
333EXPORT_SYMBOL_GPL(probe_irq_on);
334
335int probe_irq_off(unsigned long val)
336{
337 return 0;
338}
339EXPORT_SYMBOL_GPL(probe_irq_off);
340
341unsigned int probe_irq_mask(unsigned long val)
342{
343 return val;
344}
345EXPORT_SYMBOL_GPL(probe_irq_mask);
346
Jan Glaubercd248342012-11-29 12:50:30 +0100347void __devinit pcibios_fixup_bus(struct pci_bus *bus)
348{
349}
350
351resource_size_t pcibios_align_resource(void *data, const struct resource *res,
352 resource_size_t size,
353 resource_size_t align)
354{
355 return 0;
356}
357
358/* Create a virtual mapping cookie for a PCI BAR */
359void __iomem *pci_iomap(struct pci_dev *pdev, int bar, unsigned long max)
360{
361 struct zpci_dev *zdev = get_zdev(pdev);
362 u64 addr;
363 int idx;
364
365 if ((bar & 7) != bar)
366 return NULL;
367
368 idx = zdev->bars[bar].map_idx;
369 spin_lock(&zpci_iomap_lock);
370 zpci_iomap_start[idx].fh = zdev->fh;
371 zpci_iomap_start[idx].bar = bar;
372 spin_unlock(&zpci_iomap_lock);
373
374 addr = ZPCI_IOMAP_ADDR_BASE | ((u64) idx << 48);
375 return (void __iomem *) addr;
376}
377EXPORT_SYMBOL_GPL(pci_iomap);
378
379void pci_iounmap(struct pci_dev *pdev, void __iomem *addr)
380{
381 unsigned int idx;
382
383 idx = (((__force u64) addr) & ~ZPCI_IOMAP_ADDR_BASE) >> 48;
384 spin_lock(&zpci_iomap_lock);
385 zpci_iomap_start[idx].fh = 0;
386 zpci_iomap_start[idx].bar = 0;
387 spin_unlock(&zpci_iomap_lock);
388}
389EXPORT_SYMBOL_GPL(pci_iounmap);
390
391static int pci_read(struct pci_bus *bus, unsigned int devfn, int where,
392 int size, u32 *val)
393{
394 struct zpci_dev *zdev = get_zdev_by_bus(bus);
395
396 if (!zdev || devfn != ZPCI_DEVFN)
397 return 0;
398 return zpci_cfg_load(zdev, where, val, size);
399}
400
401static int pci_write(struct pci_bus *bus, unsigned int devfn, int where,
402 int size, u32 val)
403{
404 struct zpci_dev *zdev = get_zdev_by_bus(bus);
405
406 if (!zdev || devfn != ZPCI_DEVFN)
407 return 0;
408 return zpci_cfg_store(zdev, where, val, size);
409}
410
411static struct pci_ops pci_root_ops = {
412 .read = pci_read,
413 .write = pci_write,
414};
415
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100416/* store the last handled bit to implement fair scheduling of devices */
417static DEFINE_PER_CPU(unsigned long, next_sbit);
418
419static void zpci_irq_handler(void *dont, void *need)
420{
421 unsigned long sbit, mbit, last = 0, start = __get_cpu_var(next_sbit);
422 int rescan = 0, max = aisb_max;
423 struct zdev_irq_map *imap;
424
425 kstat_cpu(smp_processor_id()).irqs[IOINT_PCI]++;
426 sbit = start;
427
428scan:
429 /* find summary_bit */
430 for_each_set_bit_left_cont(sbit, bucket->aisb, max) {
431 clear_bit(63 - (sbit & 63), bucket->aisb + (sbit >> 6));
432 last = sbit;
433
434 /* find vector bit */
435 imap = bucket->imap[sbit];
436 for_each_set_bit_left(mbit, &imap->aibv, imap->msi_vecs) {
437 kstat_cpu(smp_processor_id()).irqs[IOINT_MSI]++;
438 clear_bit(63 - mbit, &imap->aibv);
439
440 spin_lock(&imap->lock);
441 if (imap->cb[mbit].handler)
442 imap->cb[mbit].handler(mbit,
443 imap->cb[mbit].data);
444 spin_unlock(&imap->lock);
445 }
446 }
447
448 if (rescan)
449 goto out;
450
451 /* scan the skipped bits */
452 if (start > 0) {
453 sbit = 0;
454 max = start;
455 start = 0;
456 goto scan;
457 }
458
459 /* enable interrupts again */
460 sic_instr(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC);
461
462 /* check again to not lose initiative */
463 rmb();
464 max = aisb_max;
465 sbit = find_first_bit_left(bucket->aisb, max);
466 if (sbit != max) {
467 atomic_inc(&irq_retries);
468 rescan++;
469 goto scan;
470 }
471out:
472 /* store next device bit to scan */
473 __get_cpu_var(next_sbit) = (++last >= aisb_max) ? 0 : last;
474}
475
476/* msi_vecs - number of requested interrupts, 0 place function to error state */
477static int zpci_setup_msi(struct pci_dev *pdev, int msi_vecs)
478{
479 struct zpci_dev *zdev = get_zdev(pdev);
480 unsigned int aisb, msi_nr;
481 struct msi_desc *msi;
482 int rc;
483
484 /* store the number of used MSI vectors */
485 zdev->irq_map->msi_vecs = min(msi_vecs, ZPCI_NR_MSI_VECS);
486
487 spin_lock(&bucket->lock);
488 aisb = find_first_zero_bit(bucket->alloc, PAGE_SIZE);
489 /* alloc map exhausted? */
490 if (aisb == PAGE_SIZE) {
491 spin_unlock(&bucket->lock);
492 return -EIO;
493 }
494 set_bit(aisb, bucket->alloc);
495 spin_unlock(&bucket->lock);
496
497 zdev->aisb = aisb;
498 if (aisb + 1 > aisb_max)
499 aisb_max = aisb + 1;
500
501 /* wire up IRQ shortcut pointer */
502 bucket->imap[zdev->aisb] = zdev->irq_map;
503 pr_debug("%s: imap[%u] linked to %p\n", __func__, zdev->aisb, zdev->irq_map);
504
505 /* TODO: irq number 0 wont be found if we return less than requested MSIs.
506 * ignore it for now and fix in common code.
507 */
508 msi_nr = aisb << ZPCI_MSI_VEC_BITS;
509
510 list_for_each_entry(msi, &pdev->msi_list, list) {
511 rc = zpci_setup_msi_irq(zdev, msi, msi_nr,
512 aisb << ZPCI_MSI_VEC_BITS);
513 if (rc)
514 return rc;
515 msi_nr++;
516 }
517
518 rc = zpci_register_airq(zdev, aisb, (u64) &zdev->irq_map->aibv);
519 if (rc) {
520 clear_bit(aisb, bucket->alloc);
521 dev_err(&pdev->dev, "register MSI failed with: %d\n", rc);
522 return rc;
523 }
524 return (zdev->irq_map->msi_vecs == msi_vecs) ?
525 0 : zdev->irq_map->msi_vecs;
526}
527
528static void zpci_teardown_msi(struct pci_dev *pdev)
529{
530 struct zpci_dev *zdev = get_zdev(pdev);
531 struct msi_desc *msi;
532 int aisb, rc;
533
534 rc = zpci_unregister_airq(zdev);
535 if (rc) {
536 dev_err(&pdev->dev, "deregister MSI failed with: %d\n", rc);
537 return;
538 }
539
540 msi = list_first_entry(&pdev->msi_list, struct msi_desc, list);
541 aisb = irq_to_dev_nr(msi->irq);
542
543 list_for_each_entry(msi, &pdev->msi_list, list)
544 zpci_teardown_msi_irq(zdev, msi);
545
546 clear_bit(aisb, bucket->alloc);
547 if (aisb + 1 == aisb_max)
548 aisb_max--;
549}
550
551int arch_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
552{
553 pr_debug("%s: requesting %d MSI-X interrupts...", __func__, nvec);
554 if (type != PCI_CAP_ID_MSIX && type != PCI_CAP_ID_MSI)
555 return -EINVAL;
556 return zpci_setup_msi(pdev, nvec);
557}
558
559void arch_teardown_msi_irqs(struct pci_dev *pdev)
560{
561 pr_info("%s: on pdev: %p\n", __func__, pdev);
562 zpci_teardown_msi(pdev);
563}
564
Jan Glaubercd248342012-11-29 12:50:30 +0100565static void zpci_map_resources(struct zpci_dev *zdev)
566{
567 struct pci_dev *pdev = zdev->pdev;
568 resource_size_t len;
569 int i;
570
571 for (i = 0; i < PCI_BAR_COUNT; i++) {
572 len = pci_resource_len(pdev, i);
573 if (!len)
574 continue;
575 pdev->resource[i].start = (resource_size_t) pci_iomap(pdev, i, 0);
576 pdev->resource[i].end = pdev->resource[i].start + len - 1;
577 pr_debug("BAR%i: -> start: %Lx end: %Lx\n",
578 i, pdev->resource[i].start, pdev->resource[i].end);
579 }
580};
581
582static void zpci_unmap_resources(struct pci_dev *pdev)
583{
584 resource_size_t len;
585 int i;
586
587 for (i = 0; i < PCI_BAR_COUNT; i++) {
588 len = pci_resource_len(pdev, i);
589 if (!len)
590 continue;
591 pci_iounmap(pdev, (void *) pdev->resource[i].start);
592 }
593};
594
595struct zpci_dev *zpci_alloc_device(void)
596{
597 struct zpci_dev *zdev;
598
599 /* Alloc memory for our private pci device data */
600 zdev = kzalloc(sizeof(*zdev), GFP_KERNEL);
601 if (!zdev)
602 return ERR_PTR(-ENOMEM);
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100603
604 /* Alloc aibv & callback space */
605 zdev->irq_map = kmem_cache_alloc(zdev_irq_cache, GFP_KERNEL);
606 if (!zdev->irq_map)
607 goto error;
608 memset(zdev->irq_map, 0, sizeof(*zdev->irq_map));
609 WARN_ON((u64) zdev->irq_map & 0xff);
Jan Glaubercd248342012-11-29 12:50:30 +0100610 return zdev;
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100611
612error:
613 kfree(zdev);
614 return ERR_PTR(-ENOMEM);
Jan Glaubercd248342012-11-29 12:50:30 +0100615}
616
617void zpci_free_device(struct zpci_dev *zdev)
618{
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100619 kmem_cache_free(zdev_irq_cache, zdev->irq_map);
Jan Glaubercd248342012-11-29 12:50:30 +0100620 kfree(zdev);
621}
622
623/* Called on removal of pci_dev, leaves zpci and bus device */
624static void zpci_remove_device(struct pci_dev *pdev)
625{
626 struct zpci_dev *zdev = get_zdev(pdev);
627
628 dev_info(&pdev->dev, "Removing device %u\n", zdev->domain);
629 zdev->state = ZPCI_FN_STATE_CONFIGURED;
Jan Glauber828b35f2012-11-29 14:33:30 +0100630 zpci_dma_exit_device(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100631 zpci_unmap_resources(pdev);
632 list_del(&zdev->entry); /* can be called from init */
633 zdev->pdev = NULL;
634}
635
636static void zpci_scan_devices(void)
637{
638 struct zpci_dev *zdev;
639
640 mutex_lock(&zpci_list_lock);
641 list_for_each_entry(zdev, &zpci_list, entry)
642 if (zdev->state == ZPCI_FN_STATE_CONFIGURED)
643 zpci_scan_device(zdev);
644 mutex_unlock(&zpci_list_lock);
645}
646
647/*
648 * Too late for any s390 specific setup, since interrupts must be set up
649 * already which requires DMA setup too and the pci scan will access the
650 * config space, which only works if the function handle is enabled.
651 */
652int pcibios_enable_device(struct pci_dev *pdev, int mask)
653{
654 struct resource *res;
655 u16 cmd;
656 int i;
657
658 pci_read_config_word(pdev, PCI_COMMAND, &cmd);
659
660 for (i = 0; i < PCI_BAR_COUNT; i++) {
661 res = &pdev->resource[i];
662
663 if (res->flags & IORESOURCE_IO)
664 return -EINVAL;
665
666 if (res->flags & IORESOURCE_MEM)
667 cmd |= PCI_COMMAND_MEMORY;
668 }
669 pci_write_config_word(pdev, PCI_COMMAND, cmd);
670 return 0;
671}
672
673void pcibios_disable_device(struct pci_dev *pdev)
674{
675 zpci_remove_device(pdev);
676 pdev->sysdata = NULL;
677}
678
Jan Glauber9a4da8a2012-11-29 13:05:05 +0100679int zpci_request_irq(unsigned int irq, irq_handler_t handler, void *data)
680{
681 int msi_nr = irq_to_msi_nr(irq);
682 struct zdev_irq_map *imap;
683 struct msi_desc *msi;
684
685 msi = irq_get_msi_desc(irq);
686 if (!msi)
687 return -EIO;
688
689 imap = get_imap(irq);
690 spin_lock_init(&imap->lock);
691
692 pr_debug("%s: register handler for IRQ:MSI %d:%d\n", __func__, irq >> 6, msi_nr);
693 imap->cb[msi_nr].handler = handler;
694 imap->cb[msi_nr].data = data;
695
696 /*
697 * The generic MSI code returns with the interrupt disabled on the
698 * card, using the MSI mask bits. Firmware doesn't appear to unmask
699 * at that level, so we do it here by hand.
700 */
701 zpci_msi_set_mask_bits(msi, 1, 0);
702 return 0;
703}
704
705void zpci_free_irq(unsigned int irq)
706{
707 struct zdev_irq_map *imap = get_imap(irq);
708 int msi_nr = irq_to_msi_nr(irq);
709 unsigned long flags;
710
711 pr_debug("%s: for irq: %d\n", __func__, irq);
712
713 spin_lock_irqsave(&imap->lock, flags);
714 imap->cb[msi_nr].handler = NULL;
715 imap->cb[msi_nr].data = NULL;
716 spin_unlock_irqrestore(&imap->lock, flags);
717}
718
719int request_irq(unsigned int irq, irq_handler_t handler,
720 unsigned long irqflags, const char *devname, void *dev_id)
721{
722 pr_debug("%s: irq: %d handler: %p flags: %lx dev: %s\n",
723 __func__, irq, handler, irqflags, devname);
724
725 return zpci_request_irq(irq, handler, dev_id);
726}
727EXPORT_SYMBOL_GPL(request_irq);
728
729void free_irq(unsigned int irq, void *dev_id)
730{
731 zpci_free_irq(irq);
732}
733EXPORT_SYMBOL_GPL(free_irq);
734
735static int __init zpci_irq_init(void)
736{
737 int cpu, rc;
738
739 bucket = kzalloc(sizeof(*bucket), GFP_KERNEL);
740 if (!bucket)
741 return -ENOMEM;
742
743 bucket->aisb = (unsigned long *) get_zeroed_page(GFP_KERNEL);
744 if (!bucket->aisb) {
745 rc = -ENOMEM;
746 goto out_aisb;
747 }
748
749 bucket->alloc = (unsigned long *) get_zeroed_page(GFP_KERNEL);
750 if (!bucket->alloc) {
751 rc = -ENOMEM;
752 goto out_alloc;
753 }
754
755 isc_register(PCI_ISC);
756 zpci_irq_si = s390_register_adapter_interrupt(&zpci_irq_handler, NULL, PCI_ISC);
757 if (IS_ERR(zpci_irq_si)) {
758 rc = PTR_ERR(zpci_irq_si);
759 zpci_irq_si = NULL;
760 goto out_ai;
761 }
762
763 for_each_online_cpu(cpu)
764 per_cpu(next_sbit, cpu) = 0;
765
766 spin_lock_init(&bucket->lock);
767 /* set summary to 1 to be called every time for the ISC */
768 *zpci_irq_si = 1;
769 sic_instr(SIC_IRQ_MODE_SINGLE, NULL, PCI_ISC);
770 return 0;
771
772out_ai:
773 isc_unregister(PCI_ISC);
774 free_page((unsigned long) bucket->alloc);
775out_alloc:
776 free_page((unsigned long) bucket->aisb);
777out_aisb:
778 kfree(bucket);
779 return rc;
780}
781
782static void zpci_irq_exit(void)
783{
784 free_page((unsigned long) bucket->alloc);
785 free_page((unsigned long) bucket->aisb);
786 s390_unregister_adapter_interrupt(zpci_irq_si, PCI_ISC);
787 isc_unregister(PCI_ISC);
788 kfree(bucket);
789}
790
Jan Glaubercd248342012-11-29 12:50:30 +0100791static struct resource *zpci_alloc_bus_resource(unsigned long start, unsigned long size,
792 unsigned long flags, int domain)
793{
794 struct resource *r;
795 char *name;
796 int rc;
797
798 r = kzalloc(sizeof(*r), GFP_KERNEL);
799 if (!r)
800 return ERR_PTR(-ENOMEM);
801 r->start = start;
802 r->end = r->start + size - 1;
803 r->flags = flags;
804 r->parent = &iomem_resource;
805 name = kmalloc(18, GFP_KERNEL);
806 if (!name) {
807 kfree(r);
808 return ERR_PTR(-ENOMEM);
809 }
810 sprintf(name, "PCI Bus: %04x:%02x", domain, ZPCI_BUS_NR);
811 r->name = name;
812
813 rc = request_resource(&iomem_resource, r);
814 if (rc)
815 pr_debug("request resource %pR failed\n", r);
816 return r;
817}
818
819static int zpci_alloc_iomap(struct zpci_dev *zdev)
820{
821 int entry;
822
823 spin_lock(&zpci_iomap_lock);
824 entry = find_first_zero_bit(zpci_iomap, ZPCI_IOMAP_MAX_ENTRIES);
825 if (entry == ZPCI_IOMAP_MAX_ENTRIES) {
826 spin_unlock(&zpci_iomap_lock);
827 return -ENOSPC;
828 }
829 set_bit(entry, zpci_iomap);
830 spin_unlock(&zpci_iomap_lock);
831 return entry;
832}
833
834static void zpci_free_iomap(struct zpci_dev *zdev, int entry)
835{
836 spin_lock(&zpci_iomap_lock);
837 memset(&zpci_iomap_start[entry], 0, sizeof(struct zpci_iomap_entry));
838 clear_bit(entry, zpci_iomap);
839 spin_unlock(&zpci_iomap_lock);
840}
841
842static int zpci_create_device_bus(struct zpci_dev *zdev)
843{
844 struct resource *res;
845 LIST_HEAD(resources);
846 int i;
847
848 /* allocate mapping entry for each used bar */
849 for (i = 0; i < PCI_BAR_COUNT; i++) {
850 unsigned long addr, size, flags;
851 int entry;
852
853 if (!zdev->bars[i].size)
854 continue;
855 entry = zpci_alloc_iomap(zdev);
856 if (entry < 0)
857 return entry;
858 zdev->bars[i].map_idx = entry;
859
860 /* only MMIO is supported */
861 flags = IORESOURCE_MEM;
862 if (zdev->bars[i].val & 8)
863 flags |= IORESOURCE_PREFETCH;
864 if (zdev->bars[i].val & 4)
865 flags |= IORESOURCE_MEM_64;
866
867 addr = ZPCI_IOMAP_ADDR_BASE + ((u64) entry << 48);
868
869 size = 1UL << zdev->bars[i].size;
870
871 res = zpci_alloc_bus_resource(addr, size, flags, zdev->domain);
872 if (IS_ERR(res)) {
873 zpci_free_iomap(zdev, entry);
874 return PTR_ERR(res);
875 }
876 pci_add_resource(&resources, res);
877 }
878
879 zdev->bus = pci_create_root_bus(NULL, ZPCI_BUS_NR, &pci_root_ops,
880 zdev, &resources);
881 if (!zdev->bus)
882 return -EIO;
883
884 zdev->bus->max_bus_speed = zdev->max_bus_speed;
885 return 0;
886}
887
888static int zpci_alloc_domain(struct zpci_dev *zdev)
889{
890 spin_lock(&zpci_domain_lock);
891 zdev->domain = find_first_zero_bit(zpci_domain, ZPCI_NR_DEVICES);
892 if (zdev->domain == ZPCI_NR_DEVICES) {
893 spin_unlock(&zpci_domain_lock);
894 return -ENOSPC;
895 }
896 set_bit(zdev->domain, zpci_domain);
897 spin_unlock(&zpci_domain_lock);
898 return 0;
899}
900
901static void zpci_free_domain(struct zpci_dev *zdev)
902{
903 spin_lock(&zpci_domain_lock);
904 clear_bit(zdev->domain, zpci_domain);
905 spin_unlock(&zpci_domain_lock);
906}
907
Jan Glaubera755a452012-11-29 12:55:21 +0100908int zpci_enable_device(struct zpci_dev *zdev)
909{
910 int rc;
911
912 rc = clp_enable_fh(zdev, ZPCI_NR_DMA_SPACES);
913 if (rc)
914 goto out;
915 pr_info("Enabled fh: 0x%x fid: 0x%x\n", zdev->fh, zdev->fid);
Jan Glauber828b35f2012-11-29 14:33:30 +0100916
917 rc = zpci_dma_init_device(zdev);
918 if (rc)
919 goto out_dma;
Jan Glaubera755a452012-11-29 12:55:21 +0100920 return 0;
Jan Glauber828b35f2012-11-29 14:33:30 +0100921
922out_dma:
923 clp_disable_fh(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100924out:
925 return rc;
926}
927EXPORT_SYMBOL_GPL(zpci_enable_device);
928
Jan Glaubercd248342012-11-29 12:50:30 +0100929int zpci_create_device(struct zpci_dev *zdev)
930{
931 int rc;
932
933 rc = zpci_alloc_domain(zdev);
934 if (rc)
935 goto out;
936
937 rc = zpci_create_device_bus(zdev);
938 if (rc)
939 goto out_bus;
940
941 mutex_lock(&zpci_list_lock);
942 list_add_tail(&zdev->entry, &zpci_list);
Jan Glauber7441b062012-11-29 14:35:47 +0100943 if (hotplug_ops.create_slot)
944 hotplug_ops.create_slot(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100945 mutex_unlock(&zpci_list_lock);
946
947 if (zdev->state == ZPCI_FN_STATE_STANDBY)
948 return 0;
949
Jan Glaubera755a452012-11-29 12:55:21 +0100950 rc = zpci_enable_device(zdev);
951 if (rc)
952 goto out_start;
Jan Glaubercd248342012-11-29 12:50:30 +0100953 return 0;
954
Jan Glaubera755a452012-11-29 12:55:21 +0100955out_start:
956 mutex_lock(&zpci_list_lock);
957 list_del(&zdev->entry);
Jan Glauber7441b062012-11-29 14:35:47 +0100958 if (hotplug_ops.remove_slot)
959 hotplug_ops.remove_slot(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100960 mutex_unlock(&zpci_list_lock);
Jan Glaubercd248342012-11-29 12:50:30 +0100961out_bus:
962 zpci_free_domain(zdev);
963out:
964 return rc;
965}
966
967void zpci_stop_device(struct zpci_dev *zdev)
968{
Jan Glauber828b35f2012-11-29 14:33:30 +0100969 zpci_dma_exit_device(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100970 /*
971 * Note: SCLP disables fh via set-pci-fn so don't
972 * do that here.
973 */
974}
975EXPORT_SYMBOL_GPL(zpci_stop_device);
976
977int zpci_scan_device(struct zpci_dev *zdev)
978{
979 zdev->pdev = pci_scan_single_device(zdev->bus, ZPCI_DEVFN);
980 if (!zdev->pdev) {
981 pr_err("pci_scan_single_device failed for fid: 0x%x\n",
982 zdev->fid);
983 goto out;
984 }
985
986 zpci_map_resources(zdev);
987 pci_bus_add_devices(zdev->bus);
988
989 /* now that pdev was added to the bus mark it as used */
990 zdev->state = ZPCI_FN_STATE_ONLINE;
991 return 0;
992
993out:
Jan Glauber828b35f2012-11-29 14:33:30 +0100994 zpci_dma_exit_device(zdev);
Jan Glaubera755a452012-11-29 12:55:21 +0100995 clp_disable_fh(zdev);
Jan Glaubercd248342012-11-29 12:50:30 +0100996 return -EIO;
997}
998EXPORT_SYMBOL_GPL(zpci_scan_device);
999
1000static inline int barsize(u8 size)
1001{
1002 return (size) ? (1 << size) >> 10 : 0;
1003}
1004
1005static int zpci_mem_init(void)
1006{
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001007 zdev_irq_cache = kmem_cache_create("PCI_IRQ_cache", sizeof(struct zdev_irq_map),
1008 L1_CACHE_BYTES, SLAB_HWCACHE_ALIGN, NULL);
1009 if (!zdev_irq_cache)
1010 goto error_zdev;
1011
Jan Glaubercd248342012-11-29 12:50:30 +01001012 /* TODO: use realloc */
1013 zpci_iomap_start = kzalloc(ZPCI_IOMAP_MAX_ENTRIES * sizeof(*zpci_iomap_start),
1014 GFP_KERNEL);
1015 if (!zpci_iomap_start)
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001016 goto error_iomap;
Jan Glaubercd248342012-11-29 12:50:30 +01001017 return 0;
1018
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001019error_iomap:
1020 kmem_cache_destroy(zdev_irq_cache);
Jan Glaubercd248342012-11-29 12:50:30 +01001021error_zdev:
1022 return -ENOMEM;
1023}
1024
1025static void zpci_mem_exit(void)
1026{
1027 kfree(zpci_iomap_start);
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001028 kmem_cache_destroy(zdev_irq_cache);
Jan Glaubercd248342012-11-29 12:50:30 +01001029}
1030
1031unsigned int pci_probe = 1;
1032EXPORT_SYMBOL_GPL(pci_probe);
1033
1034char * __init pcibios_setup(char *str)
1035{
1036 if (!strcmp(str, "off")) {
1037 pci_probe = 0;
1038 return NULL;
1039 }
1040 return str;
1041}
1042
1043static int __init pci_base_init(void)
1044{
1045 int rc;
1046
1047 if (!pci_probe)
1048 return 0;
1049
1050 if (!test_facility(2) || !test_facility(69)
1051 || !test_facility(71) || !test_facility(72))
1052 return 0;
1053
1054 pr_info("Probing PCI hardware: PCI:%d SID:%d AEN:%d\n",
1055 test_facility(69), test_facility(70),
1056 test_facility(71));
1057
1058 rc = zpci_mem_init();
1059 if (rc)
1060 goto out_mem;
1061
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001062 rc = zpci_msihash_init();
1063 if (rc)
1064 goto out_hash;
1065
1066 rc = zpci_irq_init();
1067 if (rc)
1068 goto out_irq;
1069
Jan Glauber828b35f2012-11-29 14:33:30 +01001070 rc = zpci_dma_init();
1071 if (rc)
1072 goto out_dma;
1073
Jan Glaubera755a452012-11-29 12:55:21 +01001074 rc = clp_find_pci_devices();
1075 if (rc)
1076 goto out_find;
1077
Jan Glaubercd248342012-11-29 12:50:30 +01001078 zpci_scan_devices();
1079 return 0;
1080
Jan Glaubera755a452012-11-29 12:55:21 +01001081out_find:
Jan Glauber828b35f2012-11-29 14:33:30 +01001082 zpci_dma_exit();
1083out_dma:
Jan Glauber9a4da8a2012-11-29 13:05:05 +01001084 zpci_irq_exit();
1085out_irq:
1086 zpci_msihash_exit();
1087out_hash:
Jan Glaubercd248342012-11-29 12:50:30 +01001088 zpci_mem_exit();
1089out_mem:
1090 return rc;
1091}
1092subsys_initcall(pci_base_init);