Lines Matching full:portal
67 /* Map bman portal to physical address space */ in qman_portals_attach()
72 /* Set portal properties for XX_VirtToPhys() */ in qman_portals_attach()
124 t_Handle portal; in qman_portal_setup() local
133 portal = NULL; in qman_portal_setup()
136 /* Check if portal is ready */ in qman_portal_setup()
141 /* Return if portal is already initialized */ in qman_portal_setup()
151 /* Map portal registers */ in qman_portal_setup()
154 /* Configure and initialize portal */ in qman_portal_setup()
165 portal = QM_PORTAL_Config(&qpp); in qman_portal_setup()
166 if (portal == NULL) in qman_portal_setup()
169 if (QM_PORTAL_Init(portal) != E_OK) in qman_portal_setup()
172 if (QM_PORTAL_AddPoolChannel(portal, QMAN_COMMON_POOL_CHANNEL) != E_OK) in qman_portal_setup()
176 (uintptr_t)portal); in qman_portal_setup()
179 return (portal); in qman_portal_setup()
182 if (portal != NULL) in qman_portal_setup()
183 QM_PORTAL_Free(portal); in qman_portal_setup()