1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2012
8 * The System z PCI code is a rewrite from a prototype by
9 * the following people (Kudoz!):
19 #define KMSG_COMPONENT "zpci"
20 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
22 #include <linux/kernel.h>
23 #include <linux/slab.h>
24 #include <linux/err.h>
25 #include <linux/export.h>
26 #include <linux/delay.h>
27 #include <linux/seq_file.h>
28 #include <linux/jump_label.h>
29 #include <linux/pci.h>
30 #include <linux/printk.h>
31 #include <linux/lockdep.h>
35 #include <asm/facility.h>
36 #include <asm/pci_insn.h>
37 #include <asm/pci_clp.h>
38 #include <asm/pci_dma.h>
43 /* list of all detected zpci devices */
44 static LIST_HEAD(zpci_list);
45 static DEFINE_SPINLOCK(zpci_list_lock);
47 static DECLARE_BITMAP(zpci_domain, ZPCI_DOMAIN_BITMAP_SIZE);
48 static DEFINE_SPINLOCK(zpci_domain_lock);
50 #define ZPCI_IOMAP_ENTRIES \
51 min(((unsigned long) ZPCI_NR_DEVICES * PCI_STD_NUM_BARS / 2), \
52 ZPCI_IOMAP_MAX_ENTRIES)
54 unsigned int s390_pci_no_rid;
56 static DEFINE_SPINLOCK(zpci_iomap_lock);
57 static unsigned long *zpci_iomap_bitmap;
58 struct zpci_iomap_entry *zpci_iomap_start;
59 EXPORT_SYMBOL_GPL(zpci_iomap_start);
61 DEFINE_STATIC_KEY_FALSE(have_mio);
63 static struct kmem_cache *zdev_fmb_cache;
65 /* AEN structures that must be preserved over KVM module re-insertion */
66 union zpci_sic_iib *zpci_aipb;
67 EXPORT_SYMBOL_GPL(zpci_aipb);
68 struct airq_iv *zpci_aif_sbv;
69 EXPORT_SYMBOL_GPL(zpci_aif_sbv);
71 struct zpci_dev *get_zdev_by_fid(u32 fid)
73 struct zpci_dev *tmp, *zdev = NULL;
75 spin_lock(&zpci_list_lock);
76 list_for_each_entry(tmp, &zpci_list, entry) {
77 if (tmp->fid == fid) {
83 spin_unlock(&zpci_list_lock);
87 void zpci_remove_reserved_devices(void)
89 struct zpci_dev *tmp, *zdev;
90 enum zpci_state state;
93 spin_lock(&zpci_list_lock);
94 list_for_each_entry_safe(zdev, tmp, &zpci_list, entry) {
95 if (zdev->state == ZPCI_FN_STATE_STANDBY &&
96 !clp_get_state(zdev->fid, &state) &&
97 state == ZPCI_FN_STATE_RESERVED)
98 list_move_tail(&zdev->entry, &remove);
100 spin_unlock(&zpci_list_lock);
102 list_for_each_entry_safe(zdev, tmp, &remove, entry)
103 zpci_device_reserved(zdev);
106 int pci_domain_nr(struct pci_bus *bus)
108 return ((struct zpci_bus *) bus->sysdata)->domain_nr;
110 EXPORT_SYMBOL_GPL(pci_domain_nr);
112 int pci_proc_domain(struct pci_bus *bus)
114 return pci_domain_nr(bus);
116 EXPORT_SYMBOL_GPL(pci_proc_domain);
118 /* Modify PCI: Register I/O address translation parameters */
119 int zpci_register_ioat(struct zpci_dev *zdev, u8 dmaas,
120 u64 base, u64 limit, u64 iota, u8 *status)
122 u64 req = ZPCI_CREATE_REQ(zdev->fh, dmaas, ZPCI_MOD_FC_REG_IOAT);
123 struct zpci_fib fib = {0};
126 WARN_ON_ONCE(iota & 0x3fff);
128 /* Work around off by one in ISM virt device */
129 if (zdev->pft == PCI_FUNC_TYPE_ISM && limit > base)
130 fib.pal = limit + (1 << 12);
133 fib.iota = iota | ZPCI_IOTA_RTTO_FLAG;
135 cc = zpci_mod_fc(req, &fib, status);
137 zpci_dbg(3, "reg ioat fid:%x, cc:%d, status:%d\n", zdev->fid, cc, *status);
140 EXPORT_SYMBOL_GPL(zpci_register_ioat);
142 /* Modify PCI: Unregister I/O address translation parameters */
143 int zpci_unregister_ioat(struct zpci_dev *zdev, u8 dmaas)
145 u64 req = ZPCI_CREATE_REQ(zdev->fh, dmaas, ZPCI_MOD_FC_DEREG_IOAT);
146 struct zpci_fib fib = {0};
151 cc = zpci_mod_fc(req, &fib, &status);
153 zpci_dbg(3, "unreg ioat fid:%x, cc:%d, status:%d\n", zdev->fid, cc, status);
157 /* Modify PCI: Set PCI function measurement parameters */
158 int zpci_fmb_enable_device(struct zpci_dev *zdev)
160 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_SET_MEASURE);
161 struct zpci_iommu_ctrs *ctrs;
162 struct zpci_fib fib = {0};
165 if (zdev->fmb || sizeof(*zdev->fmb) < zdev->fmb_length)
168 zdev->fmb = kmem_cache_zalloc(zdev_fmb_cache, GFP_KERNEL);
171 WARN_ON((u64) zdev->fmb & 0xf);
173 /* reset software counters */
174 ctrs = zpci_get_iommu_ctrs(zdev);
176 atomic64_set(&ctrs->mapped_pages, 0);
177 atomic64_set(&ctrs->unmapped_pages, 0);
178 atomic64_set(&ctrs->global_rpcits, 0);
179 atomic64_set(&ctrs->sync_map_rpcits, 0);
180 atomic64_set(&ctrs->sync_rpcits, 0);
184 fib.fmb_addr = virt_to_phys(zdev->fmb);
186 cc = zpci_mod_fc(req, &fib, &status);
188 kmem_cache_free(zdev_fmb_cache, zdev->fmb);
191 return cc ? -EIO : 0;
194 /* Modify PCI: Disable PCI function measurement */
195 int zpci_fmb_disable_device(struct zpci_dev *zdev)
197 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_SET_MEASURE);
198 struct zpci_fib fib = {0};
206 /* Function measurement is disabled if fmb address is zero */
207 cc = zpci_mod_fc(req, &fib, &status);
208 if (cc == 3) /* Function already gone. */
212 kmem_cache_free(zdev_fmb_cache, zdev->fmb);
215 return cc ? -EIO : 0;
218 static int zpci_cfg_load(struct zpci_dev *zdev, int offset, u32 *val, u8 len)
220 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
224 rc = __zpci_load(&data, req, offset);
226 data = le64_to_cpu((__force __le64) data);
227 data >>= (8 - len) * 8;
234 static int zpci_cfg_store(struct zpci_dev *zdev, int offset, u32 val, u8 len)
236 u64 req = ZPCI_CREATE_REQ(zdev->fh, ZPCI_PCIAS_CFGSPC, len);
240 data <<= (8 - len) * 8;
241 data = (__force u64) cpu_to_le64(data);
242 rc = __zpci_store(data, req, offset);
246 resource_size_t pcibios_align_resource(void *data, const struct resource *res,
247 resource_size_t size,
248 resource_size_t align)
253 void __iomem *ioremap_prot(phys_addr_t phys_addr, size_t size,
257 * When PCI MIO instructions are unavailable the "physical" address
258 * encodes a hint for accessing the PCI memory space it represents.
259 * Just pass it unchanged such that ioread/iowrite can decode it.
261 if (!static_branch_unlikely(&have_mio))
262 return (void __iomem *)phys_addr;
264 return generic_ioremap_prot(phys_addr, size, __pgprot(prot));
266 EXPORT_SYMBOL(ioremap_prot);
268 void iounmap(volatile void __iomem *addr)
270 if (static_branch_likely(&have_mio))
271 generic_iounmap(addr);
273 EXPORT_SYMBOL(iounmap);
275 /* Create a virtual mapping cookie for a PCI BAR */
276 static void __iomem *pci_iomap_range_fh(struct pci_dev *pdev, int bar,
277 unsigned long offset, unsigned long max)
279 struct zpci_dev *zdev = to_zpci(pdev);
282 idx = zdev->bars[bar].map_idx;
283 spin_lock(&zpci_iomap_lock);
285 WARN_ON(!++zpci_iomap_start[idx].count);
286 zpci_iomap_start[idx].fh = zdev->fh;
287 zpci_iomap_start[idx].bar = bar;
288 spin_unlock(&zpci_iomap_lock);
290 return (void __iomem *) ZPCI_ADDR(idx) + offset;
293 static void __iomem *pci_iomap_range_mio(struct pci_dev *pdev, int bar,
294 unsigned long offset,
297 unsigned long barsize = pci_resource_len(pdev, bar);
298 struct zpci_dev *zdev = to_zpci(pdev);
301 iova = ioremap((unsigned long) zdev->bars[bar].mio_wt, barsize);
302 return iova ? iova + offset : iova;
305 void __iomem *pci_iomap_range(struct pci_dev *pdev, int bar,
306 unsigned long offset, unsigned long max)
308 if (bar >= PCI_STD_NUM_BARS || !pci_resource_len(pdev, bar))
311 if (static_branch_likely(&have_mio))
312 return pci_iomap_range_mio(pdev, bar, offset, max);
314 return pci_iomap_range_fh(pdev, bar, offset, max);
316 EXPORT_SYMBOL(pci_iomap_range);
318 void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
320 return pci_iomap_range(dev, bar, 0, maxlen);
322 EXPORT_SYMBOL(pci_iomap);
324 static void __iomem *pci_iomap_wc_range_mio(struct pci_dev *pdev, int bar,
325 unsigned long offset, unsigned long max)
327 unsigned long barsize = pci_resource_len(pdev, bar);
328 struct zpci_dev *zdev = to_zpci(pdev);
331 iova = ioremap((unsigned long) zdev->bars[bar].mio_wb, barsize);
332 return iova ? iova + offset : iova;
335 void __iomem *pci_iomap_wc_range(struct pci_dev *pdev, int bar,
336 unsigned long offset, unsigned long max)
338 if (bar >= PCI_STD_NUM_BARS || !pci_resource_len(pdev, bar))
341 if (static_branch_likely(&have_mio))
342 return pci_iomap_wc_range_mio(pdev, bar, offset, max);
344 return pci_iomap_range_fh(pdev, bar, offset, max);
346 EXPORT_SYMBOL(pci_iomap_wc_range);
348 void __iomem *pci_iomap_wc(struct pci_dev *dev, int bar, unsigned long maxlen)
350 return pci_iomap_wc_range(dev, bar, 0, maxlen);
352 EXPORT_SYMBOL(pci_iomap_wc);
354 static void pci_iounmap_fh(struct pci_dev *pdev, void __iomem *addr)
356 unsigned int idx = ZPCI_IDX(addr);
358 spin_lock(&zpci_iomap_lock);
359 /* Detect underrun */
360 WARN_ON(!zpci_iomap_start[idx].count);
361 if (!--zpci_iomap_start[idx].count) {
362 zpci_iomap_start[idx].fh = 0;
363 zpci_iomap_start[idx].bar = 0;
365 spin_unlock(&zpci_iomap_lock);
368 static void pci_iounmap_mio(struct pci_dev *pdev, void __iomem *addr)
373 void pci_iounmap(struct pci_dev *pdev, void __iomem *addr)
375 if (static_branch_likely(&have_mio))
376 pci_iounmap_mio(pdev, addr);
378 pci_iounmap_fh(pdev, addr);
380 EXPORT_SYMBOL(pci_iounmap);
382 static int pci_read(struct pci_bus *bus, unsigned int devfn, int where,
385 struct zpci_dev *zdev = zdev_from_bus(bus, devfn);
387 return (zdev) ? zpci_cfg_load(zdev, where, val, size) : -ENODEV;
390 static int pci_write(struct pci_bus *bus, unsigned int devfn, int where,
393 struct zpci_dev *zdev = zdev_from_bus(bus, devfn);
395 return (zdev) ? zpci_cfg_store(zdev, where, val, size) : -ENODEV;
398 static struct pci_ops pci_root_ops = {
403 static void zpci_map_resources(struct pci_dev *pdev)
405 struct zpci_dev *zdev = to_zpci(pdev);
409 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
410 len = pci_resource_len(pdev, i);
414 if (zpci_use_mio(zdev))
415 pdev->resource[i].start =
416 (resource_size_t __force) zdev->bars[i].mio_wt;
418 pdev->resource[i].start = (resource_size_t __force)
419 pci_iomap_range_fh(pdev, i, 0, 0);
420 pdev->resource[i].end = pdev->resource[i].start + len - 1;
423 zpci_iov_map_resources(pdev);
426 static void zpci_unmap_resources(struct pci_dev *pdev)
428 struct zpci_dev *zdev = to_zpci(pdev);
432 if (zpci_use_mio(zdev))
435 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
436 len = pci_resource_len(pdev, i);
439 pci_iounmap_fh(pdev, (void __iomem __force *)
440 pdev->resource[i].start);
444 static int zpci_alloc_iomap(struct zpci_dev *zdev)
448 spin_lock(&zpci_iomap_lock);
449 entry = find_first_zero_bit(zpci_iomap_bitmap, ZPCI_IOMAP_ENTRIES);
450 if (entry == ZPCI_IOMAP_ENTRIES) {
451 spin_unlock(&zpci_iomap_lock);
454 set_bit(entry, zpci_iomap_bitmap);
455 spin_unlock(&zpci_iomap_lock);
459 static void zpci_free_iomap(struct zpci_dev *zdev, int entry)
461 spin_lock(&zpci_iomap_lock);
462 memset(&zpci_iomap_start[entry], 0, sizeof(struct zpci_iomap_entry));
463 clear_bit(entry, zpci_iomap_bitmap);
464 spin_unlock(&zpci_iomap_lock);
467 static void zpci_do_update_iomap_fh(struct zpci_dev *zdev, u32 fh)
471 spin_lock(&zpci_iomap_lock);
472 for (bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
473 if (!zdev->bars[bar].size)
475 idx = zdev->bars[bar].map_idx;
476 if (!zpci_iomap_start[idx].count)
478 WRITE_ONCE(zpci_iomap_start[idx].fh, zdev->fh);
480 spin_unlock(&zpci_iomap_lock);
483 void zpci_update_fh(struct zpci_dev *zdev, u32 fh)
485 if (!fh || zdev->fh == fh)
489 if (zpci_use_mio(zdev))
491 if (zdev->has_resources && zdev_enabled(zdev))
492 zpci_do_update_iomap_fh(zdev, fh);
495 static struct resource *__alloc_res(struct zpci_dev *zdev, unsigned long start,
496 unsigned long size, unsigned long flags)
500 r = kzalloc(sizeof(*r), GFP_KERNEL);
505 r->end = r->start + size - 1;
507 r->name = zdev->res_name;
509 if (request_resource(&iomem_resource, r)) {
516 int zpci_setup_bus_resources(struct zpci_dev *zdev)
518 unsigned long addr, size, flags;
519 struct resource *res;
522 snprintf(zdev->res_name, sizeof(zdev->res_name),
523 "PCI Bus %04x:%02x", zdev->uid, ZPCI_BUS_NR);
525 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
526 if (!zdev->bars[i].size)
528 entry = zpci_alloc_iomap(zdev);
531 zdev->bars[i].map_idx = entry;
533 /* only MMIO is supported */
534 flags = IORESOURCE_MEM;
535 if (zdev->bars[i].val & 8)
536 flags |= IORESOURCE_PREFETCH;
537 if (zdev->bars[i].val & 4)
538 flags |= IORESOURCE_MEM_64;
540 if (zpci_use_mio(zdev))
541 addr = (unsigned long) zdev->bars[i].mio_wt;
543 addr = ZPCI_ADDR(entry);
544 size = 1UL << zdev->bars[i].size;
546 res = __alloc_res(zdev, addr, size, flags);
548 zpci_free_iomap(zdev, entry);
551 zdev->bars[i].res = res;
553 zdev->has_resources = 1;
558 static void zpci_cleanup_bus_resources(struct zpci_dev *zdev)
560 struct resource *res;
563 pci_lock_rescan_remove();
564 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
565 res = zdev->bars[i].res;
569 release_resource(res);
570 pci_bus_remove_resource(zdev->zbus->bus, res);
571 zpci_free_iomap(zdev, zdev->bars[i].map_idx);
572 zdev->bars[i].res = NULL;
575 zdev->has_resources = 0;
576 pci_unlock_rescan_remove();
579 int pcibios_device_add(struct pci_dev *pdev)
581 struct zpci_dev *zdev = to_zpci(pdev);
582 struct resource *res;
585 /* The pdev has a reference to the zdev via its bus */
588 pdev->no_vf_scan = 1;
590 pdev->dev.groups = zpci_attr_groups;
591 zpci_map_resources(pdev);
593 for (i = 0; i < PCI_STD_NUM_BARS; i++) {
594 res = &pdev->resource[i];
595 if (res->parent || !res->flags)
597 pci_claim_resource(pdev, i);
603 void pcibios_release_device(struct pci_dev *pdev)
605 struct zpci_dev *zdev = to_zpci(pdev);
607 zpci_unmap_resources(pdev);
611 int pcibios_enable_device(struct pci_dev *pdev, int mask)
613 struct zpci_dev *zdev = to_zpci(pdev);
615 zpci_debug_init_device(zdev, dev_name(&pdev->dev));
616 zpci_fmb_enable_device(zdev);
618 return pci_enable_resources(pdev, mask);
621 void pcibios_disable_device(struct pci_dev *pdev)
623 struct zpci_dev *zdev = to_zpci(pdev);
625 zpci_fmb_disable_device(zdev);
626 zpci_debug_exit_device(zdev);
629 static int __zpci_register_domain(int domain)
631 spin_lock(&zpci_domain_lock);
632 if (test_bit(domain, zpci_domain)) {
633 spin_unlock(&zpci_domain_lock);
634 pr_err("Domain %04x is already assigned\n", domain);
637 set_bit(domain, zpci_domain);
638 spin_unlock(&zpci_domain_lock);
642 static int __zpci_alloc_domain(void)
646 spin_lock(&zpci_domain_lock);
648 * We can always auto allocate domains below ZPCI_NR_DEVICES.
649 * There is either a free domain or we have reached the maximum in
650 * which case we would have bailed earlier.
652 domain = find_first_zero_bit(zpci_domain, ZPCI_NR_DEVICES);
653 set_bit(domain, zpci_domain);
654 spin_unlock(&zpci_domain_lock);
658 int zpci_alloc_domain(int domain)
660 if (zpci_unique_uid) {
662 return __zpci_register_domain(domain);
663 pr_warn("UID checking was active but no UID is provided: switching to automatic domain allocation\n");
664 update_uid_checking(false);
666 return __zpci_alloc_domain();
669 void zpci_free_domain(int domain)
671 spin_lock(&zpci_domain_lock);
672 clear_bit(domain, zpci_domain);
673 spin_unlock(&zpci_domain_lock);
677 int zpci_enable_device(struct zpci_dev *zdev)
682 if (clp_enable_fh(zdev, &fh, ZPCI_NR_DMA_SPACES))
685 zpci_update_fh(zdev, fh);
688 EXPORT_SYMBOL_GPL(zpci_enable_device);
690 int zpci_disable_device(struct zpci_dev *zdev)
695 cc = clp_disable_fh(zdev, &fh);
697 zpci_update_fh(zdev, fh);
698 } else if (cc == CLP_RC_SETPCIFN_ALRDY) {
699 pr_info("Disabling PCI function %08x had no effect as it was already disabled\n",
701 /* Function is already disabled - update handle */
702 rc = clp_refresh_fh(zdev->fid, &fh);
704 zpci_update_fh(zdev, fh);
712 EXPORT_SYMBOL_GPL(zpci_disable_device);
715 * zpci_hot_reset_device - perform a reset of the given zPCI function
716 * @zdev: the slot which should be reset
718 * Performs a low level reset of the zPCI function. The reset is low level in
719 * the sense that the zPCI function can be reset without detaching it from the
720 * common PCI subsystem. The reset may be performed while under control of
721 * either DMA or IOMMU APIs in which case the existing DMA/IOMMU translation
722 * table is reinstated at the end of the reset.
724 * After the reset the functions internal state is reset to an initial state
725 * equivalent to its state during boot when first probing a driver.
726 * Consequently after reset the PCI function requires re-initialization via the
727 * common PCI code including re-enabling IRQs via pci_alloc_irq_vectors()
728 * and enabling the function via e.g. pci_enable_device_flags(). The caller
729 * must guard against concurrent reset attempts.
731 * In most cases this function should not be called directly but through
732 * pci_reset_function() or pci_reset_bus() which handle the save/restore and
733 * locking - asserted by lockdep.
735 * Return: 0 on success and an error value otherwise
737 int zpci_hot_reset_device(struct zpci_dev *zdev)
742 lockdep_assert_held(&zdev->state_lock);
743 zpci_dbg(3, "rst fid:%x, fh:%x\n", zdev->fid, zdev->fh);
744 if (zdev_enabled(zdev)) {
745 /* Disables device access, DMAs and IRQs (reset state) */
746 rc = zpci_disable_device(zdev);
748 * Due to a z/VM vs LPAR inconsistency in the error state the
749 * FH may indicate an enabled device but disable says the
750 * device is already disabled don't treat it as an error here.
758 rc = zpci_enable_device(zdev);
763 rc = zpci_register_ioat(zdev, 0, zdev->start_dma, zdev->end_dma,
764 virt_to_phys(zdev->dma_table), &status);
766 zpci_disable_device(zdev);
774 * zpci_create_device() - Create a new zpci_dev and add it to the zbus
775 * @fid: Function ID of the device to be created
776 * @fh: Current Function Handle of the device to be created
777 * @state: Initial state after creation either Standby or Configured
779 * Creates a new zpci device and adds it to its, possibly newly created, zbus
780 * as well as zpci_list.
782 * Returns: the zdev on success or an error pointer otherwise
784 struct zpci_dev *zpci_create_device(u32 fid, u32 fh, enum zpci_state state)
786 struct zpci_dev *zdev;
789 zpci_dbg(1, "add fid:%x, fh:%x, c:%d\n", fid, fh, state);
790 zdev = kzalloc(sizeof(*zdev), GFP_KERNEL);
792 return ERR_PTR(-ENOMEM);
794 /* FID and Function Handle are the static/dynamic identifiers */
798 /* Query function properties and update zdev */
799 rc = clp_query_pci_fn(zdev);
804 kref_init(&zdev->kref);
805 mutex_init(&zdev->state_lock);
806 mutex_init(&zdev->fmb_lock);
807 mutex_init(&zdev->kzdev_lock);
809 rc = zpci_init_iommu(zdev);
813 rc = zpci_bus_device_register(zdev, &pci_root_ops);
815 goto error_destroy_iommu;
817 spin_lock(&zpci_list_lock);
818 list_add_tail(&zdev->entry, &zpci_list);
819 spin_unlock(&zpci_list_lock);
824 zpci_destroy_iommu(zdev);
826 zpci_dbg(0, "add fid:%x, rc:%d\n", fid, rc);
831 bool zpci_is_device_configured(struct zpci_dev *zdev)
833 enum zpci_state state = zdev->state;
835 return state != ZPCI_FN_STATE_RESERVED &&
836 state != ZPCI_FN_STATE_STANDBY;
840 * zpci_scan_configured_device() - Scan a freshly configured zpci_dev
841 * @zdev: The zpci_dev to be configured
842 * @fh: The general function handle supplied by the platform
844 * Given a device in the configuration state Configured, enables, scans and
845 * adds it to the common code PCI subsystem if possible. If any failure occurs,
846 * the zpci_dev is left disabled.
848 * Return: 0 on success, or an error code otherwise
850 int zpci_scan_configured_device(struct zpci_dev *zdev, u32 fh)
852 zpci_update_fh(zdev, fh);
853 return zpci_bus_scan_device(zdev);
857 * zpci_deconfigure_device() - Deconfigure a zpci_dev
858 * @zdev: The zpci_dev to configure
860 * Deconfigure a zPCI function that is currently configured and possibly known
861 * to the common code PCI subsystem.
862 * If any failure occurs the device is left as is.
864 * Return: 0 on success, or an error code otherwise
866 int zpci_deconfigure_device(struct zpci_dev *zdev)
870 lockdep_assert_held(&zdev->state_lock);
871 if (zdev->state != ZPCI_FN_STATE_CONFIGURED)
875 zpci_bus_remove_device(zdev, false);
877 if (zdev_enabled(zdev)) {
878 rc = zpci_disable_device(zdev);
883 rc = sclp_pci_deconfigure(zdev->fid);
884 zpci_dbg(3, "deconf fid:%x, rc:%d\n", zdev->fid, rc);
887 zdev->state = ZPCI_FN_STATE_STANDBY;
893 * zpci_device_reserved() - Mark device as reserved
894 * @zdev: the zpci_dev that was reserved
896 * Handle the case that a given zPCI function was reserved by another system.
897 * After a call to this function the zpci_dev can not be found via
898 * get_zdev_by_fid() anymore but may still be accessible via existing
899 * references though it will not be functional anymore.
901 void zpci_device_reserved(struct zpci_dev *zdev)
904 * Remove device from zpci_list as it is going away. This also
905 * makes sure we ignore subsequent zPCI events for this device.
907 spin_lock(&zpci_list_lock);
908 list_del(&zdev->entry);
909 spin_unlock(&zpci_list_lock);
910 zdev->state = ZPCI_FN_STATE_RESERVED;
911 zpci_dbg(3, "rsv fid:%x\n", zdev->fid);
915 void zpci_release_device(struct kref *kref)
917 struct zpci_dev *zdev = container_of(kref, struct zpci_dev, kref);
920 if (zdev->has_hp_slot)
921 zpci_exit_slot(zdev);
924 zpci_bus_remove_device(zdev, false);
926 if (zdev_enabled(zdev))
927 zpci_disable_device(zdev);
929 switch (zdev->state) {
930 case ZPCI_FN_STATE_CONFIGURED:
931 ret = sclp_pci_deconfigure(zdev->fid);
932 zpci_dbg(3, "deconf fid:%x, rc:%d\n", zdev->fid, ret);
934 case ZPCI_FN_STATE_STANDBY:
935 if (zdev->has_hp_slot)
936 zpci_exit_slot(zdev);
937 spin_lock(&zpci_list_lock);
938 list_del(&zdev->entry);
939 spin_unlock(&zpci_list_lock);
940 zpci_dbg(3, "rsv fid:%x\n", zdev->fid);
942 case ZPCI_FN_STATE_RESERVED:
943 if (zdev->has_resources)
944 zpci_cleanup_bus_resources(zdev);
945 zpci_bus_device_unregister(zdev);
946 zpci_destroy_iommu(zdev);
951 zpci_dbg(3, "rem fid:%x\n", zdev->fid);
952 kfree_rcu(zdev, rcu);
955 int zpci_report_error(struct pci_dev *pdev,
956 struct zpci_report_error_header *report)
958 struct zpci_dev *zdev = to_zpci(pdev);
960 return sclp_pci_report(report, zdev->fh, zdev->fid);
962 EXPORT_SYMBOL(zpci_report_error);
965 * zpci_clear_error_state() - Clears the zPCI error state of the device
966 * @zdev: The zdev for which the zPCI error state should be reset
968 * Clear the zPCI error state of the device. If clearing the zPCI error state
969 * fails the device is left in the error state. In this case it may make sense
970 * to call zpci_io_perm_failure() on the associated pdev if it exists.
972 * Returns: 0 on success, -EIO otherwise
974 int zpci_clear_error_state(struct zpci_dev *zdev)
976 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_RESET_ERROR);
977 struct zpci_fib fib = {0};
981 cc = zpci_mod_fc(req, &fib, &status);
983 zpci_dbg(3, "ces fid:%x, cc:%d, status:%x\n", zdev->fid, cc, status);
991 * zpci_reset_load_store_blocked() - Re-enables L/S from error state
992 * @zdev: The zdev for which to unblock load/store access
994 * Re-enables load/store access for a PCI function in the error state while
995 * keeping DMA blocked. In this state drivers can poke MMIO space to determine
996 * if error recovery is possible while catching any rogue DMA access from the
999 * Returns: 0 on success, -EIO otherwise
1001 int zpci_reset_load_store_blocked(struct zpci_dev *zdev)
1003 u64 req = ZPCI_CREATE_REQ(zdev->fh, 0, ZPCI_MOD_FC_RESET_BLOCK);
1004 struct zpci_fib fib = {0};
1008 cc = zpci_mod_fc(req, &fib, &status);
1010 zpci_dbg(3, "rls fid:%x, cc:%d, status:%x\n", zdev->fid, cc, status);
1017 static int zpci_mem_init(void)
1019 BUILD_BUG_ON(!is_power_of_2(__alignof__(struct zpci_fmb)) ||
1020 __alignof__(struct zpci_fmb) < sizeof(struct zpci_fmb));
1022 zdev_fmb_cache = kmem_cache_create("PCI_FMB_cache", sizeof(struct zpci_fmb),
1023 __alignof__(struct zpci_fmb), 0, NULL);
1024 if (!zdev_fmb_cache)
1027 zpci_iomap_start = kcalloc(ZPCI_IOMAP_ENTRIES,
1028 sizeof(*zpci_iomap_start), GFP_KERNEL);
1029 if (!zpci_iomap_start)
1032 zpci_iomap_bitmap = kcalloc(BITS_TO_LONGS(ZPCI_IOMAP_ENTRIES),
1033 sizeof(*zpci_iomap_bitmap), GFP_KERNEL);
1034 if (!zpci_iomap_bitmap)
1035 goto error_iomap_bitmap;
1037 if (static_branch_likely(&have_mio))
1038 clp_setup_writeback_mio();
1042 kfree(zpci_iomap_start);
1044 kmem_cache_destroy(zdev_fmb_cache);
1049 static void zpci_mem_exit(void)
1051 kfree(zpci_iomap_bitmap);
1052 kfree(zpci_iomap_start);
1053 kmem_cache_destroy(zdev_fmb_cache);
1056 static unsigned int s390_pci_probe __initdata = 1;
1057 unsigned int s390_pci_force_floating __initdata;
1058 static unsigned int s390_pci_initialized;
1060 char * __init pcibios_setup(char *str)
1062 if (!strcmp(str, "off")) {
1066 if (!strcmp(str, "nomio")) {
1067 S390_lowcore.machine_flags &= ~MACHINE_FLAG_PCI_MIO;
1070 if (!strcmp(str, "force_floating")) {
1071 s390_pci_force_floating = 1;
1074 if (!strcmp(str, "norid")) {
1075 s390_pci_no_rid = 1;
1081 bool zpci_is_enabled(void)
1083 return s390_pci_initialized;
1086 static int __init pci_base_init(void)
1090 if (!s390_pci_probe)
1093 if (!test_facility(69) || !test_facility(71)) {
1094 pr_info("PCI is not supported because CPU facilities 69 or 71 are not available\n");
1098 if (MACHINE_HAS_PCI_MIO) {
1099 static_branch_enable(&have_mio);
1100 system_ctl_set_bit(2, CR2_MIO_ADDRESSING_BIT);
1103 rc = zpci_debug_init();
1107 rc = zpci_mem_init();
1111 rc = zpci_irq_init();
1115 rc = clp_scan_pci_devices();
1118 zpci_bus_scan_busses();
1120 s390_pci_initialized = 1;
1132 subsys_initcall_sync(pci_base_init);