Lines Matching full:portal
62 /* Map bman portal to physical address space */ in bman_portals_attach()
67 /* Set portal properties for XX_VirtToPhys() */ in bman_portals_attach()
117 t_Handle portal; in bman_portal_setup() local
128 portal = NULL; in bman_portal_setup()
131 /* Check if portal is ready */ in bman_portal_setup()
136 /* Return if portal is already initialized */ in bman_portal_setup()
146 /* Map portal registers */ in bman_portal_setup()
149 /* Configure and initialize portal */ in bman_portal_setup()
156 portal = BM_PORTAL_Config(&bpp); in bman_portal_setup()
157 if (portal == NULL) in bman_portal_setup()
160 if (BM_PORTAL_Init(portal) != E_OK) in bman_portal_setup()
163 atomic_store_rel_ptr((uintptr_t *)&sc->sc_dp[cpu].dp_ph, (uintptr_t)portal); in bman_portal_setup()
167 return (portal); in bman_portal_setup()
170 if (portal != NULL) in bman_portal_setup()
171 BM_PORTAL_Free(portal); in bman_portal_setup()