2 * Copyright IBM Corp. 2012
5 * Jan Glauber <jang@linux.vnet.ibm.com>
7 * The System z PCI code is a rewrite from a prototype by
8 * the following people (Kudoz!):
18 #define COMPONENT "zPCI"
19 #define pr_fmt(fmt) COMPONENT ": " fmt
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>
26 #include <linux/irq.h>
27 #include <linux/kernel_stat.h>
28 #include <linux/seq_file.h>
29 #include <linux/pci.h>
30 #include <linux/msi.h>
34 #include <asm/facility.h>
35 #include <asm/pci_insn.h>
36 #include <asm/pci_clp.h>
37 #include <asm/pci_dma.h>
39 #define DEBUG /* enable pr_debug */
41 #define SIC_IRQ_MODE_ALL 0
42 #define SIC_IRQ_MODE_SINGLE 1
44 #define ZPCI_NR_DMA_SPACES 1
45 #define ZPCI_NR_DEVICES CONFIG_PCI_NR_FUNCTIONS
47 /* list of all detected zpci devices */
48 static LIST_HEAD(zpci_list
);
49 static DEFINE_SPINLOCK(zpci_list_lock
);
51 static void zpci_enable_irq(struct irq_data
*data
);
52 static void zpci_disable_irq(struct irq_data
*data
);
54 static struct irq_chip zpci_irq_chip
= {
56 .irq_unmask
= zpci_enable_irq
,
57 .irq_mask
= zpci_disable_irq
,
60 static DECLARE_BITMAP(zpci_domain
, ZPCI_NR_DEVICES
);
61 static DEFINE_SPINLOCK(zpci_domain_lock
);
63 static struct airq_iv
*zpci_aisb_iv
;
64 static struct airq_iv
*zpci_aibv
[ZPCI_NR_DEVICES
];
66 /* Adapter interrupt definitions */
67 static void zpci_irq_handler(struct airq_struct
*airq
);
69 static struct airq_struct zpci_airq
= {
70 .handler
= zpci_irq_handler
,
75 static DEFINE_SPINLOCK(zpci_iomap_lock
);
76 static DECLARE_BITMAP(zpci_iomap
, ZPCI_IOMAP_MAX_ENTRIES
);
77 struct zpci_iomap_entry
*zpci_iomap_start
;
78 EXPORT_SYMBOL_GPL(zpci_iomap_start
);
80 static struct kmem_cache
*zdev_fmb_cache
;
82 struct zpci_dev
*get_zdev(struct pci_dev
*pdev
)
84 return (struct zpci_dev
*) pdev
->sysdata
;
87 struct zpci_dev
*get_zdev_by_fid(u32 fid
)
89 struct zpci_dev
*tmp
, *zdev
= NULL
;
91 spin_lock(&zpci_list_lock
);
92 list_for_each_entry(tmp
, &zpci_list
, entry
) {
93 if (tmp
->fid
== fid
) {
98 spin_unlock(&zpci_list_lock
);
102 static struct zpci_dev
*get_zdev_by_bus(struct pci_bus
*bus
)
104 return (bus
&& bus
->sysdata
) ? (struct zpci_dev
*) bus
->sysdata
: NULL
;
107 int pci_domain_nr(struct pci_bus
*bus
)
109 return ((struct zpci_dev
*) bus
->sysdata
)->domain
;
111 EXPORT_SYMBOL_GPL(pci_domain_nr
);
113 int pci_proc_domain(struct pci_bus
*bus
)
115 return pci_domain_nr(bus
);
117 EXPORT_SYMBOL_GPL(pci_proc_domain
);
119 /* Modify PCI: Register adapter interruptions */
120 static int zpci_set_airq(struct zpci_dev
*zdev
)
122 u64 req
= ZPCI_CREATE_REQ(zdev
->fh
, 0, ZPCI_MOD_FC_REG_INT
);
123 struct zpci_fib
*fib
;
126 fib
= (void *) get_zeroed_page(GFP_KERNEL
);
131 fib
->sum
= 1; /* enable summary notifications */
132 fib
->noi
= airq_iv_end(zdev
->aibv
);
133 fib
->aibv
= (unsigned long) zdev
->aibv
->vector
;
134 fib
->aibvo
= 0; /* each zdev has its own interrupt vector */
135 fib
->aisb
= (unsigned long) zpci_aisb_iv
->vector
+ (zdev
->aisb
/64)*8;
136 fib
->aisbo
= zdev
->aisb
& 63;
138 rc
= zpci_mod_fc(req
, fib
);
139 pr_debug("%s mpcifc returned noi: %d\n", __func__
, fib
->noi
);
141 free_page((unsigned long) fib
);
145 struct mod_pci_args
{
152 static int mod_pci(struct zpci_dev
*zdev
, int fn
, u8 dmaas
, struct mod_pci_args
*args
)
154 u64 req
= ZPCI_CREATE_REQ(zdev
->fh
, dmaas
, fn
);
155 struct zpci_fib
*fib
;
158 /* The FIB must be available even if it's not used */
159 fib
= (void *) get_zeroed_page(GFP_KERNEL
);
163 fib
->pba
= args
->base
;
164 fib
->pal
= args
->limit
;
165 fib
->iota
= args
->iota
;
166 fib
->fmb_addr
= args
->fmb_addr
;
168 rc
= zpci_mod_fc(req
, fib
);
169 free_page((unsigned long) fib
);
173 /* Modify PCI: Register I/O address translation parameters */
174 int zpci_register_ioat(struct zpci_dev
*zdev
, u8 dmaas
,
175 u64 base
, u64 limit
, u64 iota
)
177 struct mod_pci_args args
= { base
, limit
, iota
, 0 };
179 WARN_ON_ONCE(iota
& 0x3fff);
180 args
.iota
|= ZPCI_IOTA_RTTO_FLAG
;
181 return mod_pci(zdev
, ZPCI_MOD_FC_REG_IOAT
, dmaas
, &args
);
184 /* Modify PCI: Unregister I/O address translation parameters */
185 int zpci_unregister_ioat(struct zpci_dev
*zdev
, u8 dmaas
)
187 struct mod_pci_args args
= { 0, 0, 0, 0 };
189 return mod_pci(zdev
, ZPCI_MOD_FC_DEREG_IOAT
, dmaas
, &args
);
192 /* Modify PCI: Unregister adapter interruptions */
193 static int zpci_clear_airq(struct zpci_dev
*zdev
)
195 struct mod_pci_args args
= { 0, 0, 0, 0 };
197 return mod_pci(zdev
, ZPCI_MOD_FC_DEREG_INT
, 0, &args
);
200 /* Modify PCI: Set PCI function measurement parameters */
201 int zpci_fmb_enable_device(struct zpci_dev
*zdev
)
203 struct mod_pci_args args
= { 0, 0, 0, 0 };
208 zdev
->fmb
= kmem_cache_zalloc(zdev_fmb_cache
, GFP_KERNEL
);
211 WARN_ON((u64
) zdev
->fmb
& 0xf);
213 args
.fmb_addr
= virt_to_phys(zdev
->fmb
);
214 return mod_pci(zdev
, ZPCI_MOD_FC_SET_MEASURE
, 0, &args
);
217 /* Modify PCI: Disable PCI function measurement */
218 int zpci_fmb_disable_device(struct zpci_dev
*zdev
)
220 struct mod_pci_args args
= { 0, 0, 0, 0 };
226 /* Function measurement is disabled if fmb address is zero */
227 rc
= mod_pci(zdev
, ZPCI_MOD_FC_SET_MEASURE
, 0, &args
);
229 kmem_cache_free(zdev_fmb_cache
, zdev
->fmb
);
234 #define ZPCI_PCIAS_CFGSPC 15
236 static int zpci_cfg_load(struct zpci_dev
*zdev
, int offset
, u32
*val
, u8 len
)
238 u64 req
= ZPCI_CREATE_REQ(zdev
->fh
, ZPCI_PCIAS_CFGSPC
, len
);
242 rc
= zpci_load(&data
, req
, offset
);
244 data
= data
<< ((8 - len
) * 8);
245 data
= le64_to_cpu(data
);
252 static int zpci_cfg_store(struct zpci_dev
*zdev
, int offset
, u32 val
, u8 len
)
254 u64 req
= ZPCI_CREATE_REQ(zdev
->fh
, ZPCI_PCIAS_CFGSPC
, len
);
258 data
= cpu_to_le64(data
);
259 data
= data
>> ((8 - len
) * 8);
260 rc
= zpci_store(data
, req
, offset
);
264 static int zpci_msi_set_mask_bits(struct msi_desc
*msi
, u32 mask
, u32 flag
)
269 if (msi
->msi_attrib
.is_msix
) {
270 offset
= msi
->msi_attrib
.entry_nr
* PCI_MSIX_ENTRY_SIZE
+
271 PCI_MSIX_ENTRY_VECTOR_CTRL
;
272 msi
->masked
= readl(msi
->mask_base
+ offset
);
273 writel(flag
, msi
->mask_base
+ offset
);
274 } else if (msi
->msi_attrib
.maskbit
) {
275 pos
= (long) msi
->mask_base
;
276 pci_read_config_dword(msi
->dev
, pos
, &mask_bits
);
277 mask_bits
&= ~(mask
);
278 mask_bits
|= flag
& mask
;
279 pci_write_config_dword(msi
->dev
, pos
, mask_bits
);
283 msi
->msi_attrib
.maskbit
= !!flag
;
287 static void zpci_enable_irq(struct irq_data
*data
)
289 struct msi_desc
*msi
= irq_get_msi_desc(data
->irq
);
291 zpci_msi_set_mask_bits(msi
, 1, 0);
294 static void zpci_disable_irq(struct irq_data
*data
)
296 struct msi_desc
*msi
= irq_get_msi_desc(data
->irq
);
298 zpci_msi_set_mask_bits(msi
, 1, 1);
301 void pcibios_fixup_bus(struct pci_bus
*bus
)
305 resource_size_t
pcibios_align_resource(void *data
, const struct resource
*res
,
306 resource_size_t size
,
307 resource_size_t align
)
312 /* combine single writes by using store-block insn */
313 void __iowrite64_copy(void __iomem
*to
, const void *from
, size_t count
)
315 zpci_memcpy_toio(to
, from
, count
);
318 /* Create a virtual mapping cookie for a PCI BAR */
319 void __iomem
*pci_iomap(struct pci_dev
*pdev
, int bar
, unsigned long max
)
321 struct zpci_dev
*zdev
= get_zdev(pdev
);
325 if ((bar
& 7) != bar
)
328 idx
= zdev
->bars
[bar
].map_idx
;
329 spin_lock(&zpci_iomap_lock
);
330 zpci_iomap_start
[idx
].fh
= zdev
->fh
;
331 zpci_iomap_start
[idx
].bar
= bar
;
332 spin_unlock(&zpci_iomap_lock
);
334 addr
= ZPCI_IOMAP_ADDR_BASE
| ((u64
) idx
<< 48);
335 return (void __iomem
*) addr
;
337 EXPORT_SYMBOL_GPL(pci_iomap
);
339 void pci_iounmap(struct pci_dev
*pdev
, void __iomem
*addr
)
343 idx
= (((__force u64
) addr
) & ~ZPCI_IOMAP_ADDR_BASE
) >> 48;
344 spin_lock(&zpci_iomap_lock
);
345 zpci_iomap_start
[idx
].fh
= 0;
346 zpci_iomap_start
[idx
].bar
= 0;
347 spin_unlock(&zpci_iomap_lock
);
349 EXPORT_SYMBOL_GPL(pci_iounmap
);
351 static int pci_read(struct pci_bus
*bus
, unsigned int devfn
, int where
,
354 struct zpci_dev
*zdev
= get_zdev_by_bus(bus
);
357 if (!zdev
|| devfn
!= ZPCI_DEVFN
)
360 ret
= zpci_cfg_load(zdev
, where
, val
, size
);
365 static int pci_write(struct pci_bus
*bus
, unsigned int devfn
, int where
,
368 struct zpci_dev
*zdev
= get_zdev_by_bus(bus
);
371 if (!zdev
|| devfn
!= ZPCI_DEVFN
)
374 ret
= zpci_cfg_store(zdev
, where
, val
, size
);
379 static struct pci_ops pci_root_ops
= {
384 static void zpci_irq_handler(struct airq_struct
*airq
)
386 unsigned long si
, ai
;
387 struct airq_iv
*aibv
;
390 inc_irq_stat(IRQIO_PCI
);
392 /* Scan adapter summary indicator bit vector */
393 si
= airq_iv_scan(zpci_aisb_iv
, si
, airq_iv_end(zpci_aisb_iv
));
396 /* End of second scan with interrupts on. */
398 /* First scan complete, reenable interrupts. */
399 zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE
, NULL
, PCI_ISC
);
404 /* Scan the adapter interrupt vector for this device. */
405 aibv
= zpci_aibv
[si
];
407 ai
= airq_iv_scan(aibv
, ai
, airq_iv_end(aibv
));
410 inc_irq_stat(IRQIO_MSI
);
411 airq_iv_lock(aibv
, ai
);
412 generic_handle_irq(airq_iv_get_data(aibv
, ai
));
413 airq_iv_unlock(aibv
, ai
);
418 int arch_setup_msi_irqs(struct pci_dev
*pdev
, int nvec
, int type
)
420 struct zpci_dev
*zdev
= get_zdev(pdev
);
421 unsigned int hwirq
, irq
, msi_vecs
;
423 struct msi_desc
*msi
;
427 pr_debug("%s: requesting %d MSI-X interrupts...", __func__
, nvec
);
428 if (type
!= PCI_CAP_ID_MSIX
&& type
!= PCI_CAP_ID_MSI
)
430 msi_vecs
= min(nvec
, ZPCI_MSI_VEC_MAX
);
431 msi_vecs
= min_t(unsigned int, msi_vecs
, CONFIG_PCI_NR_MSI
);
433 /* Allocate adapter summary indicator bit */
435 aisb
= airq_iv_alloc_bit(zpci_aisb_iv
);
440 /* Create adapter interrupt vector */
442 zdev
->aibv
= airq_iv_create(msi_vecs
, AIRQ_IV_DATA
| AIRQ_IV_BITLOCK
);
446 /* Wire up shortcut pointer */
447 zpci_aibv
[aisb
] = zdev
->aibv
;
449 /* Request MSI interrupts */
451 list_for_each_entry(msi
, &pdev
->msi_list
, list
) {
453 irq
= irq_alloc_desc(0); /* Alloc irq on node 0 */
456 rc
= irq_set_msi_desc(irq
, msi
);
459 irq_set_chip_and_handler(irq
, &zpci_irq_chip
,
462 msg
.address_lo
= zdev
->msi_addr
& 0xffffffff;
463 msg
.address_hi
= zdev
->msi_addr
>> 32;
464 write_msi_msg(irq
, &msg
);
465 airq_iv_set_data(zdev
->aibv
, hwirq
, irq
);
469 /* Enable adapter interrupts */
470 rc
= zpci_set_airq(zdev
);
474 return (msi_vecs
== nvec
) ? 0 : msi_vecs
;
477 list_for_each_entry(msi
, &pdev
->msi_list
, list
) {
480 irq_set_msi_desc(msi
->irq
, NULL
);
481 irq_free_desc(msi
->irq
);
482 msi
->msg
.address_lo
= 0;
483 msi
->msg
.address_hi
= 0;
487 zpci_aibv
[aisb
] = NULL
;
488 airq_iv_release(zdev
->aibv
);
490 airq_iv_free_bit(zpci_aisb_iv
, aisb
);
492 dev_err(&pdev
->dev
, "register MSI failed with: %d\n", rc
);
496 void arch_teardown_msi_irqs(struct pci_dev
*pdev
)
498 struct zpci_dev
*zdev
= get_zdev(pdev
);
499 struct msi_desc
*msi
;
502 pr_info("%s: on pdev: %p\n", __func__
, pdev
);
504 /* Disable adapter interrupts */
505 rc
= zpci_clear_airq(zdev
);
507 dev_err(&pdev
->dev
, "deregister MSI failed with: %d\n", rc
);
511 /* Release MSI interrupts */
512 list_for_each_entry(msi
, &pdev
->msi_list
, list
) {
513 zpci_msi_set_mask_bits(msi
, 1, 1);
514 irq_set_msi_desc(msi
->irq
, NULL
);
515 irq_free_desc(msi
->irq
);
516 msi
->msg
.address_lo
= 0;
517 msi
->msg
.address_hi
= 0;
522 zpci_aibv
[zdev
->aisb
] = NULL
;
523 airq_iv_release(zdev
->aibv
);
524 airq_iv_free_bit(zpci_aisb_iv
, zdev
->aisb
);
527 static void zpci_map_resources(struct zpci_dev
*zdev
)
529 struct pci_dev
*pdev
= zdev
->pdev
;
533 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
534 len
= pci_resource_len(pdev
, i
);
537 pdev
->resource
[i
].start
= (resource_size_t
) pci_iomap(pdev
, i
, 0);
538 pdev
->resource
[i
].end
= pdev
->resource
[i
].start
+ len
- 1;
542 static void zpci_unmap_resources(struct zpci_dev
*zdev
)
544 struct pci_dev
*pdev
= zdev
->pdev
;
548 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
549 len
= pci_resource_len(pdev
, i
);
552 pci_iounmap(pdev
, (void *) pdev
->resource
[i
].start
);
556 struct zpci_dev
*zpci_alloc_device(void)
558 struct zpci_dev
*zdev
;
560 /* Alloc memory for our private pci device data */
561 zdev
= kzalloc(sizeof(*zdev
), GFP_KERNEL
);
562 return zdev
? : ERR_PTR(-ENOMEM
);
565 void zpci_free_device(struct zpci_dev
*zdev
)
570 int pcibios_add_platform_entries(struct pci_dev
*pdev
)
572 return zpci_sysfs_add_device(&pdev
->dev
);
575 static int __init
zpci_irq_init(void)
579 rc
= register_adapter_interrupt(&zpci_airq
);
582 /* Set summary to 1 to be called every time for the ISC. */
583 *zpci_airq
.lsi_ptr
= 1;
586 zpci_aisb_iv
= airq_iv_create(ZPCI_NR_DEVICES
, AIRQ_IV_ALLOC
);
590 zpci_set_irq_ctrl(SIC_IRQ_MODE_SINGLE
, NULL
, PCI_ISC
);
594 unregister_adapter_interrupt(&zpci_airq
);
599 static void zpci_irq_exit(void)
601 airq_iv_release(zpci_aisb_iv
);
602 unregister_adapter_interrupt(&zpci_airq
);
605 static struct resource
*zpci_alloc_bus_resource(unsigned long start
, unsigned long size
,
606 unsigned long flags
, int domain
)
612 r
= kzalloc(sizeof(*r
), GFP_KERNEL
);
614 return ERR_PTR(-ENOMEM
);
616 r
->end
= r
->start
+ size
- 1;
618 r
->parent
= &iomem_resource
;
619 name
= kmalloc(18, GFP_KERNEL
);
622 return ERR_PTR(-ENOMEM
);
624 sprintf(name
, "PCI Bus: %04x:%02x", domain
, ZPCI_BUS_NR
);
627 rc
= request_resource(&iomem_resource
, r
);
629 pr_debug("request resource %pR failed\n", r
);
633 static int zpci_alloc_iomap(struct zpci_dev
*zdev
)
637 spin_lock(&zpci_iomap_lock
);
638 entry
= find_first_zero_bit(zpci_iomap
, ZPCI_IOMAP_MAX_ENTRIES
);
639 if (entry
== ZPCI_IOMAP_MAX_ENTRIES
) {
640 spin_unlock(&zpci_iomap_lock
);
643 set_bit(entry
, zpci_iomap
);
644 spin_unlock(&zpci_iomap_lock
);
648 static void zpci_free_iomap(struct zpci_dev
*zdev
, int entry
)
650 spin_lock(&zpci_iomap_lock
);
651 memset(&zpci_iomap_start
[entry
], 0, sizeof(struct zpci_iomap_entry
));
652 clear_bit(entry
, zpci_iomap
);
653 spin_unlock(&zpci_iomap_lock
);
656 int pcibios_add_device(struct pci_dev
*pdev
)
658 struct zpci_dev
*zdev
= get_zdev(pdev
);
659 struct resource
*res
;
663 zpci_map_resources(zdev
);
665 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
666 res
= &pdev
->resource
[i
];
667 if (res
->parent
|| !res
->flags
)
669 pci_claim_resource(pdev
, i
);
675 int pcibios_enable_device(struct pci_dev
*pdev
, int mask
)
677 struct zpci_dev
*zdev
= get_zdev(pdev
);
678 struct resource
*res
;
683 zpci_debug_init_device(zdev
);
684 zpci_fmb_enable_device(zdev
);
685 zpci_map_resources(zdev
);
687 pci_read_config_word(pdev
, PCI_COMMAND
, &cmd
);
688 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
689 res
= &pdev
->resource
[i
];
691 if (res
->flags
& IORESOURCE_IO
)
694 if (res
->flags
& IORESOURCE_MEM
)
695 cmd
|= PCI_COMMAND_MEMORY
;
697 pci_write_config_word(pdev
, PCI_COMMAND
, cmd
);
701 void pcibios_disable_device(struct pci_dev
*pdev
)
703 struct zpci_dev
*zdev
= get_zdev(pdev
);
705 zpci_unmap_resources(zdev
);
706 zpci_fmb_disable_device(zdev
);
707 zpci_debug_exit_device(zdev
);
711 static int zpci_scan_bus(struct zpci_dev
*zdev
)
713 struct resource
*res
;
714 LIST_HEAD(resources
);
717 /* allocate mapping entry for each used bar */
718 for (i
= 0; i
< PCI_BAR_COUNT
; i
++) {
719 unsigned long addr
, size
, flags
;
722 if (!zdev
->bars
[i
].size
)
724 entry
= zpci_alloc_iomap(zdev
);
727 zdev
->bars
[i
].map_idx
= entry
;
729 /* only MMIO is supported */
730 flags
= IORESOURCE_MEM
;
731 if (zdev
->bars
[i
].val
& 8)
732 flags
|= IORESOURCE_PREFETCH
;
733 if (zdev
->bars
[i
].val
& 4)
734 flags
|= IORESOURCE_MEM_64
;
736 addr
= ZPCI_IOMAP_ADDR_BASE
+ ((u64
) entry
<< 48);
738 size
= 1UL << zdev
->bars
[i
].size
;
740 res
= zpci_alloc_bus_resource(addr
, size
, flags
, zdev
->domain
);
742 zpci_free_iomap(zdev
, entry
);
745 pci_add_resource(&resources
, res
);
748 zdev
->bus
= pci_scan_root_bus(NULL
, ZPCI_BUS_NR
, &pci_root_ops
,
753 zdev
->bus
->max_bus_speed
= zdev
->max_bus_speed
;
757 static int zpci_alloc_domain(struct zpci_dev
*zdev
)
759 spin_lock(&zpci_domain_lock
);
760 zdev
->domain
= find_first_zero_bit(zpci_domain
, ZPCI_NR_DEVICES
);
761 if (zdev
->domain
== ZPCI_NR_DEVICES
) {
762 spin_unlock(&zpci_domain_lock
);
765 set_bit(zdev
->domain
, zpci_domain
);
766 spin_unlock(&zpci_domain_lock
);
770 static void zpci_free_domain(struct zpci_dev
*zdev
)
772 spin_lock(&zpci_domain_lock
);
773 clear_bit(zdev
->domain
, zpci_domain
);
774 spin_unlock(&zpci_domain_lock
);
777 int zpci_enable_device(struct zpci_dev
*zdev
)
781 rc
= clp_enable_fh(zdev
, ZPCI_NR_DMA_SPACES
);
784 pr_info("Enabled fh: 0x%x fid: 0x%x\n", zdev
->fh
, zdev
->fid
);
786 rc
= zpci_dma_init_device(zdev
);
790 zdev
->state
= ZPCI_FN_STATE_ONLINE
;
794 clp_disable_fh(zdev
);
798 EXPORT_SYMBOL_GPL(zpci_enable_device
);
800 int zpci_disable_device(struct zpci_dev
*zdev
)
802 zpci_dma_exit_device(zdev
);
803 return clp_disable_fh(zdev
);
805 EXPORT_SYMBOL_GPL(zpci_disable_device
);
807 int zpci_create_device(struct zpci_dev
*zdev
)
811 rc
= zpci_alloc_domain(zdev
);
815 if (zdev
->state
== ZPCI_FN_STATE_CONFIGURED
) {
816 rc
= zpci_enable_device(zdev
);
820 rc
= zpci_scan_bus(zdev
);
824 spin_lock(&zpci_list_lock
);
825 list_add_tail(&zdev
->entry
, &zpci_list
);
826 spin_unlock(&zpci_list_lock
);
828 zpci_init_slot(zdev
);
833 if (zdev
->state
== ZPCI_FN_STATE_ONLINE
)
834 zpci_disable_device(zdev
);
836 zpci_free_domain(zdev
);
841 void zpci_stop_device(struct zpci_dev
*zdev
)
843 zpci_dma_exit_device(zdev
);
845 * Note: SCLP disables fh via set-pci-fn so don't
849 EXPORT_SYMBOL_GPL(zpci_stop_device
);
851 static inline int barsize(u8 size
)
853 return (size
) ? (1 << size
) >> 10 : 0;
856 static int zpci_mem_init(void)
858 zdev_fmb_cache
= kmem_cache_create("PCI_FMB_cache", sizeof(struct zpci_fmb
),
863 /* TODO: use realloc */
864 zpci_iomap_start
= kzalloc(ZPCI_IOMAP_MAX_ENTRIES
* sizeof(*zpci_iomap_start
),
866 if (!zpci_iomap_start
)
871 kmem_cache_destroy(zdev_fmb_cache
);
876 static void zpci_mem_exit(void)
878 kfree(zpci_iomap_start
);
879 kmem_cache_destroy(zdev_fmb_cache
);
882 static unsigned int s390_pci_probe
;
884 char * __init
pcibios_setup(char *str
)
886 if (!strcmp(str
, "on")) {
893 static int __init
pci_base_init(void)
900 if (!test_facility(2) || !test_facility(69)
901 || !test_facility(71) || !test_facility(72))
904 pr_info("Probing PCI hardware: PCI:%d SID:%d AEN:%d\n",
905 test_facility(69), test_facility(70),
908 rc
= zpci_debug_init();
912 rc
= zpci_mem_init();
916 rc
= zpci_irq_init();
920 rc
= zpci_dma_init();
924 rc
= clp_scan_pci_devices();
941 subsys_initcall_sync(pci_base_init
);
943 void zpci_rescan(void)
945 clp_rescan_pci_devices_simple();