Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/arch/powerpc/platforms/powernv/
H A Docxl.c435 u32 bdfn; member
444 u32 bdfn; in pnv_ocxl_spa_setup() local
451 bdfn = (dev->bus->number << 8) | dev->devfn; in pnv_ocxl_spa_setup()
452 rc = opal_npu_spa_setup(phb->opal_id, bdfn, virt_to_phys(spa_mem), in pnv_ocxl_spa_setup()
460 data->bdfn = bdfn; in pnv_ocxl_spa_setup()
471 rc = opal_npu_spa_setup(data->phb_opal_id, data->bdfn, 0, 0); in pnv_ocxl_spa_release()
482 rc = opal_npu_spa_clear_cache(data->phb_opal_id, data->bdfn, pe_handle); in pnv_ocxl_spa_remove_pe_from_cache()
H A Dpci.c42 u32 bdfn; in pnv_pci_get_slot_id() local
46 ret = of_property_read_u32(np, "reg", &bdfn); in pnv_pci_get_slot_id()
50 bdfn = ((bdfn & 0x00ffff00) >> 8); in pnv_pci_get_slot_id()
73 *id = PCI_SLOT_ID(phbid, bdfn); in pnv_pci_get_slot_id()
657 u32 bdfn = (pdn->busno << 8) | pdn->devfn; in pnv_pci_cfg_read() local
663 rc = opal_pci_config_read_byte(phb->opal_id, bdfn, where, &v8); in pnv_pci_cfg_read()
669 rc = opal_pci_config_read_half_word(phb->opal_id, bdfn, where, in pnv_pci_cfg_read()
676 rc = opal_pci_config_read_word(phb->opal_id, bdfn, where, &v32); in pnv_pci_cfg_read()
693 u32 bdfn = (pdn->busno << 8) | pdn->devfn; in pnv_pci_cfg_write() local
699 opal_pci_config_write_byte(phb->opal_id, bdfn, where, val); in pnv_pci_cfg_write()
[all …]
H A Dpci.h301 extern struct pnv_ioda_pe *pnv_pci_bdfn_to_pe(struct pnv_phb *phb, u16 bdfn);
H A Deeh-powernv.c1616 OPAL_REINIT_PCI_DEV, edev->bdfn); in pnv_eeh_restore_config()
1620 __func__, edev->bdfn, ret); in pnv_eeh_restore_config()
H A Dpci-ioda.c670 struct pnv_ioda_pe *pnv_pci_bdfn_to_pe(struct pnv_phb *phb, u16 bdfn) in pnv_pci_bdfn_to_pe() argument
672 int pe_number = phb->ioda.pe_rmap[bdfn]; in pnv_pci_bdfn_to_pe()
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dppc-pci.h72 #define PCI_BUSNO(bdfn) ((bdfn >> 8) & 0xff) argument
H A Dpnv-pci.h16 #define PCI_SLOT_ID(phb_id, bdfn) \ argument
17 (PCI_SLOT_ID_PREFIX | ((uint64_t)(bdfn) << 16) | (phb_id))
H A Deeh.h134 int bdfn; /* bdfn of device (for cfg ops) */ member
157 (edev)->controller->global_number, PCI_BUSNO((edev)->bdfn), \
158 PCI_SLOT((edev)->bdfn), PCI_FUNC((edev)->bdfn), \
H A Dopal.h36 int64_t opal_npu_spa_setup(uint64_t phb_id, uint32_t bdfn,
38 int64_t opal_npu_spa_clear_cache(uint64_t phb_id, uint32_t bdfn,
40 int64_t opal_npu_tl_set(uint64_t phb_id, uint32_t bdfn, long cap,
/OK3568_Linux_fs/kernel/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()