Home
last modified time | relevance | path

Searched refs:bdfn (Results 1 – 8 of 8) sorted by relevance

/linux/arch/powerpc/platforms/powernv/
H A Dpci.c41 u32 bdfn; in pnv_pci_get_slot_id() local
45 ret = of_property_read_u32(np, "reg", &bdfn); in pnv_pci_get_slot_id()
49 bdfn = ((bdfn & 0x00ffff00) >> 8); in pnv_pci_get_slot_id()
72 *id = PCI_SLOT_ID(phbid, bdfn); in pnv_pci_get_slot_id()
589 u32 bdfn = (pdn->busno << 8) | pdn->devfn; in pnv_pci_cfg_read() local
595 rc = opal_pci_config_read_byte(phb->opal_id, bdfn, where, &v8); in pnv_pci_cfg_read()
601 rc = opal_pci_config_read_half_word(phb->opal_id, bdfn, where, in pnv_pci_cfg_read()
608 rc = opal_pci_config_read_word(phb->opal_id, bdfn, where, &v32); in pnv_pci_cfg_read()
625 u32 bdfn = (pdn->busno << 8) | pdn->devfn; in pnv_pci_cfg_write() local
631 opal_pci_config_write_byte(phb->opal_id, bdfn, where, val); in pnv_pci_cfg_write()
[all …]
H A Docxl.c436 u32 bdfn; member
445 u32 bdfn; in pnv_ocxl_spa_setup() local
452 bdfn = pci_dev_id(dev); in pnv_ocxl_spa_setup()
453 rc = opal_npu_spa_setup(phb->opal_id, bdfn, virt_to_phys(spa_mem), in pnv_ocxl_spa_setup()
461 data->bdfn = bdfn; in pnv_ocxl_spa_setup()
472 rc = opal_npu_spa_setup(data->phb_opal_id, data->bdfn, 0, 0); in pnv_ocxl_spa_release()
482 return opal_npu_spa_clear_cache(data->phb_opal_id, data->bdfn, pe_handle); in pnv_ocxl_spa_remove_pe_from_cache()
H A Dpci-ioda.c583 struct pnv_ioda_pe *pnv_pci_bdfn_to_pe(struct pnv_phb *phb, u16 bdfn) in pnv_pci_bdfn_to_pe() argument
585 int pe_number = phb->ioda.pe_rmap[bdfn]; in pnv_pci_bdfn_to_pe()
/linux/arch/powerpc/include/asm/
H A Dppc-pci.h75 #define PCI_BUSNO(bdfn) ((bdfn >> 8) & 0xff) argument
H A Dpnv-pci.h17 #define PCI_SLOT_ID(phb_id, bdfn) \ argument
18 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
H A Dopal.h33 int64_t opal_npu_spa_setup(uint64_t phb_id, uint32_t bdfn,
35 int64_t opal_npu_spa_clear_cache(uint64_t phb_id, uint32_t bdfn,
37 int64_t opal_npu_tl_set(uint64_t phb_id, uint32_t bdfn, long cap,
/linux/arch/powerpc/kernel/
H A Deeh.c176 edev->pe->phb->global_number, edev->bdfn >> 8, in eeh_dump_dev_log()
177 PCI_SLOT(edev->bdfn), PCI_FUNC(edev->bdfn)); in eeh_dump_dev_log()
179 edev->pe->phb->global_number, edev->bdfn >> 8, in eeh_dump_dev_log()
180 PCI_SLOT(edev->bdfn), PCI_FUNC(edev->bdfn)); in eeh_dump_dev_log()
H A Dpci_dn.c140 edev->bdfn = (pdn->busno << 8) | pdn->devfn; in eeh_dev_init()