本文整理汇总了C++中MALI_ASSERT_GROUP_LOCKED函数的典型用法代码示例。如果您正苦于以下问题:C++ MALI_ASSERT_GROUP_LOCKED函数的具体用法?C++ MALI_ASSERT_GROUP_LOCKED怎么用?C++ MALI_ASSERT_GROUP_LOCKED使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了MALI_ASSERT_GROUP_LOCKED函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: mali_mmu_activate_fault_flush_page_directory
void mali_mmu_activate_fault_flush_page_directory(struct mali_mmu_core* mmu)
{
mali_bool stall_success;
MALI_DEBUG_ASSERT_POINTER(mmu);
MALI_ASSERT_GROUP_LOCKED(mmu->group);
MALI_DEBUG_PRINT(3, ("Activating the page fault flush page directory on MMU %s\n", mmu->hw_core.description));
stall_success = mali_mmu_enable_stall(mmu);
/* This function is expect to fail the stalling, since it might be in PageFault mode when it is called */
mali_mmu_activate_address_space(mmu, mali_page_fault_flush_page_directory);
if ( MALI_TRUE==stall_success ) mali_mmu_disable_stall(mmu);
}
示例2: mali_group_deactivate_page_directory
static void mali_group_deactivate_page_directory(struct mali_group *group, struct mali_session_data *session)
{
MALI_ASSERT_GROUP_LOCKED(group);
MALI_DEBUG_ASSERT(0 < group->page_dir_ref_count);
MALI_DEBUG_ASSERT(session == group->session);
group->page_dir_ref_count--;
/* As an optimization, the MMU still points to the group->session even if (0 == group->page_dir_ref_count),
and we do not call mali_mmu_activate_empty_page_directory(group->mmu); */
MALI_DEBUG_ASSERT(0 <= group->page_dir_ref_count);
}
示例3: mali_mmu_activate_empty_page_directory
void mali_mmu_activate_empty_page_directory(struct mali_mmu_core* mmu)
{
mali_bool stall_success;
MALI_DEBUG_ASSERT_POINTER(mmu);
MALI_ASSERT_GROUP_LOCKED(mmu->group);
MALI_DEBUG_PRINT(3, ("Activating the empty page directory on MMU %s\n", mmu->hw_core.description));
stall_success = mali_mmu_enable_stall(mmu);
/* This function can only be called when the core is idle, so it could not fail. */
MALI_DEBUG_ASSERT( stall_success );
mali_mmu_activate_address_space(mmu, mali_empty_page_directory);
mali_mmu_disable_stall(mmu);
}
示例4: mali_mmu_activate_page_directory
mali_bool mali_mmu_activate_page_directory(struct mali_mmu_core *mmu, struct mali_page_directory *pagedir)
{
mali_bool stall_success;
MALI_DEBUG_ASSERT_POINTER(mmu);
MALI_ASSERT_GROUP_LOCKED(mmu->group);
MALI_DEBUG_PRINT(5, ("Asked to activate page directory 0x%x on MMU %s\n", pagedir, mmu->hw_core.description));
stall_success = mali_mmu_enable_stall(mmu);
if ( MALI_FALSE==stall_success ) return MALI_FALSE;
mali_mmu_activate_address_space(mmu, pagedir->page_directory);
mali_mmu_disable_stall(mmu);
return MALI_TRUE;
}
示例5: mali_group_other_reschedule_needed
/* Used to check if scheduler for the other core type needs to be called on job completion.
*
* Used only for Mali-200, where job start may fail if the only MMU is busy
* with another session's address space.
*/
static inline mali_bool mali_group_other_reschedule_needed(struct mali_group *group)
{
MALI_ASSERT_GROUP_LOCKED(group);
#if defined(USING_MALI200)
if (group->pagedir_activation_failed)
{
group->pagedir_activation_failed = MALI_FALSE;
return MALI_TRUE;
}
else
#endif
{
return MALI_FALSE;
}
}
示例6: mali_pp_scheduler_can_move_virtual_to_physical
/**
* Checks if the criteria is met for removing a physical core from virtual group
*/
MALI_STATIC_INLINE mali_bool mali_pp_scheduler_can_move_virtual_to_physical(void)
{
MALI_ASSERT_PP_SCHEDULER_LOCKED();
MALI_DEBUG_ASSERT(NULL != virtual_group);
MALI_ASSERT_GROUP_LOCKED(virtual_group);
/*
* The criteria for taking out a physical group from a virtual group are the following:
* - There virtual group is idle
* - There are currently no physical groups (idle and working)
* - There are physical jobs to be scheduled (without a barrier)
*/
return (!virtual_group_working) &&
_mali_osk_list_empty(&group_list_idle) &&
_mali_osk_list_empty(&group_list_working) &&
(NULL != mali_pp_scheduler_get_physical_job());
}
示例7: mali_group_activate_page_directory
static enum mali_group_activate_pd_status mali_group_activate_page_directory(struct mali_group *group, struct mali_session_data *session)
{
enum mali_group_activate_pd_status retval;
MALI_ASSERT_GROUP_LOCKED(group);
MALI_DEBUG_PRINT(5, ("Mali group: Activating page directory 0x%08X from session 0x%08X on group 0x%08X\n", mali_session_get_page_directory(session), session, group));
MALI_DEBUG_ASSERT(0 <= group->page_dir_ref_count);
if (0 != group->page_dir_ref_count)
{
if (group->session != session)
{
MALI_DEBUG_PRINT(4, ("Mali group: Activating session FAILED: 0x%08x on group 0x%08X. Existing session: 0x%08x\n", session, group, group->session));
return MALI_GROUP_ACTIVATE_PD_STATUS_FAILED;
}
else
{
MALI_DEBUG_PRINT(4, ("Mali group: Activating session already activated: 0x%08x on group 0x%08X. New Ref: %d\n", session, group, 1+group->page_dir_ref_count));
retval = MALI_GROUP_ACTIVATE_PD_STATUS_OK_KEPT_PD;
}
}
else
{
/* There might be another session here, but it is ok to overwrite it since group->page_dir_ref_count==0 */
if (group->session != session)
{
mali_bool activate_success;
MALI_DEBUG_PRINT(5, ("Mali group: Activate session: %08x previous: %08x on group 0x%08X. Ref: %d\n", session, group->session, group, 1+group->page_dir_ref_count));
activate_success = mali_mmu_activate_page_directory(group->mmu, mali_session_get_page_directory(session));
MALI_DEBUG_ASSERT(activate_success);
if ( MALI_FALSE== activate_success ) return MALI_FALSE;
group->session = session;
retval = MALI_GROUP_ACTIVATE_PD_STATUS_OK_SWITCHED_PD;
}
else
{
MALI_DEBUG_PRINT(4, ("Mali group: Activate existing session 0x%08X on group 0x%08X. Ref: %d\n", session->page_directory, group, 1+group->page_dir_ref_count));
retval = MALI_GROUP_ACTIVATE_PD_STATUS_OK_KEPT_PD;
}
}
group->page_dir_ref_count++;
return retval;
}
示例8: mali_mmu_zap_tlb
mali_bool mali_mmu_zap_tlb(struct mali_mmu_core *mmu)
{
mali_bool stall_success;
MALI_ASSERT_GROUP_LOCKED(mmu->group);
stall_success = mali_mmu_enable_stall(mmu);
mali_hw_core_register_write(&mmu->hw_core, MALI_MMU_REGISTER_COMMAND, MALI_MMU_COMMAND_ZAP_CACHE);
if (MALI_FALSE == stall_success)
{
/* False means that it is in Pagefault state. Not possible to disable_stall then */
return MALI_FALSE;
}
mali_mmu_disable_stall(mmu);
return MALI_TRUE;
}
示例9: mali_group_remove_session_if_unused
void mali_group_remove_session_if_unused(struct mali_group *group, struct mali_session_data *session)
{
MALI_ASSERT_GROUP_LOCKED(group);
if (0 == group->page_dir_ref_count)
{
MALI_DEBUG_ASSERT(MALI_GROUP_CORE_STATE_IDLE == group->gp_state);
MALI_DEBUG_ASSERT(MALI_GROUP_CORE_STATE_IDLE == group->pp_state);
if (group->session == session)
{
MALI_DEBUG_ASSERT(MALI_TRUE == group->power_is_on);
MALI_DEBUG_PRINT(3, ("Mali group: Deactivating unused session 0x%08X on group %08X\n", session, group));
mali_mmu_activate_empty_page_directory(group->mmu);
group->session = NULL;
}
}
}
示例10: mali_group_bottom_half
/* group lock need to be taken before calling mali_group_bottom_half */
void mali_group_bottom_half(struct mali_group *group, enum mali_group_event_t event)
{
MALI_ASSERT_GROUP_LOCKED(group);
switch (event)
{
case GROUP_EVENT_PP_JOB_COMPLETED:
mali_group_complete_jobs(group, MALI_FALSE, MALI_TRUE, MALI_TRUE); /* PP job SUCCESS */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_PP_JOB_FAILED:
mali_group_complete_jobs(group, MALI_FALSE, MALI_TRUE, MALI_FALSE); /* PP job FAIL */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_PP_JOB_TIMED_OUT:
mali_group_complete_jobs(group, MALI_FALSE, MALI_TRUE, MALI_FALSE); /* PP job TIMEOUT */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_GP_JOB_COMPLETED:
mali_group_complete_jobs(group, MALI_TRUE, MALI_FALSE, MALI_TRUE); /* GP job SUCCESS */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_GP_JOB_FAILED:
mali_group_complete_jobs(group, MALI_TRUE, MALI_FALSE, MALI_FALSE); /* GP job FAIL */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_GP_JOB_TIMED_OUT:
mali_group_complete_jobs(group, MALI_TRUE, MALI_FALSE, MALI_FALSE); /* GP job TIMEOUT */
/* group lock is released by mali_group_complete_jobs() call above */
break;
case GROUP_EVENT_GP_OOM:
group->gp_state = MALI_GROUP_CORE_STATE_OOM;
mali_group_unlock(group); /* Nothing to do on the HW side, so just release group lock right away */
mali_gp_scheduler_oom(group, group->gp_running_job);
break;
case GROUP_EVENT_MMU_PAGE_FAULT:
mali_group_complete_jobs(group, MALI_TRUE, MALI_TRUE, MALI_FALSE); /* GP and PP job FAIL */
/* group lock is released by mali_group_complete_jobs() call above */
break;
default:
break;
}
}
示例11: mali_mmu_disable_stall
void mali_mmu_disable_stall(struct mali_mmu_core *mmu)
{
const int max_loop_count = 100;
const int delay_in_usecs = 1;
int i;
u32 mmu_status;
/* There are no group when it is called from mali_mmu_create */
if ( mmu->group ) MALI_ASSERT_GROUP_LOCKED(mmu->group);
mmu_status = mali_hw_core_register_read(&mmu->hw_core, MALI_MMU_REGISTER_STATUS);
if ( 0 == (mmu_status & MALI_MMU_STATUS_BIT_PAGING_ENABLED ))
{
MALI_DEBUG_PRINT(3, ("MMU disable skipped since it was not enabled.\n"));
return;
}
if (mmu_status & MALI_MMU_STATUS_BIT_PAGE_FAULT_ACTIVE)
{
MALI_DEBUG_PRINT(2, ("Aborting MMU disable stall request since it is in pagefault state.\n"));
return;
}
mali_hw_core_register_write(&mmu->hw_core, MALI_MMU_REGISTER_COMMAND, MALI_MMU_COMMAND_DISABLE_STALL);
for (i = 0; i < max_loop_count; ++i)
{
u32 status = mali_hw_core_register_read(&mmu->hw_core, MALI_MMU_REGISTER_STATUS);
if ( 0 == (status & MALI_MMU_STATUS_BIT_STALL_ACTIVE) )
{
break;
}
if ( status & MALI_MMU_STATUS_BIT_PAGE_FAULT_ACTIVE )
{
break;
}
if ( 0 == (mmu_status & MALI_MMU_STATUS_BIT_PAGING_ENABLED ))
{
break;
}
_mali_osk_time_ubusydelay(delay_in_usecs);
}
if (max_loop_count == i) MALI_DEBUG_PRINT(1,("Disable stall request failed, MMU status is 0x%08X\n", mali_hw_core_register_read(&mmu->hw_core, MALI_MMU_REGISTER_STATUS)));
}
示例12: mali_pp_hard_reset
_mali_osk_errcode_t mali_pp_hard_reset(struct mali_pp_core *core)
{
/* Bus must be stopped before calling this function */
const int reset_finished_loop_count = 15;
const u32 reset_invalid_value = 0xC0FFE000;
const u32 reset_check_value = 0xC01A0000;
int i;
MALI_DEBUG_ASSERT_POINTER(core);
MALI_DEBUG_PRINT(2, ("Mali PP: Hard reset of core %s\n", core->hw_core.description));
MALI_ASSERT_GROUP_LOCKED(core->group);
mali_pp_post_process_job(core); /* @@@@?is there some cases where it is unsafe to post process the job here? */
/* Set register to a bogus value. The register will be used to detect when reset is complete */
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_WRITE_BOUNDARY_LOW, reset_invalid_value);
/* Force core to reset */
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_CTRL_MGMT, MALI200_REG_VAL_CTRL_MGMT_FORCE_RESET);
/* Wait for reset to be complete */
for (i = 0; i < reset_finished_loop_count; i++)
{
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_WRITE_BOUNDARY_LOW, reset_check_value);
if (reset_check_value == mali_hw_core_register_read(&core->hw_core, MALI200_REG_ADDR_MGMT_WRITE_BOUNDARY_LOW))
{
break;
}
_mali_osk_time_ubusydelay(10);
}
if (i == reset_finished_loop_count)
{
MALI_PRINT_ERROR(("Mali PP: The hard reset loop didn't work, unable to recover\n"));
}
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_WRITE_BOUNDARY_LOW, 0x00000000); /* set it back to the default */
/* Re-enable interrupts */
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_INT_CLEAR, MALI200_REG_VAL_IRQ_MASK_ALL);
mali_hw_core_register_write(&core->hw_core, MALI200_REG_ADDR_MGMT_INT_MASK, MALI200_REG_VAL_IRQ_MASK_USED);
return _MALI_OSK_ERR_OK;
}
示例13: mali_group_recovery_reset
static void mali_group_recovery_reset(struct mali_group *group)
{
MALI_ASSERT_GROUP_LOCKED(group);
/* Stop cores, bus stop */
if (NULL != group->pp_core)
{
mali_pp_stop_bus(group->pp_core);
}
if (NULL != group->gp_core)
{
mali_gp_stop_bus(group->gp_core);
}
/* Flush MMU */
mali_mmu_activate_fault_flush_page_directory(group->mmu);
mali_mmu_page_fault_done(group->mmu);
/* Wait for cores to stop bus */
if (NULL != group->pp_core)
{
mali_pp_stop_bus_wait(group->pp_core);
}
if (NULL != group->gp_core)
{
mali_gp_stop_bus_wait(group->gp_core);
}
/* Reset cores */
if (NULL != group->pp_core)
{
mali_pp_hard_reset(group->pp_core);
}
if (NULL != group->gp_core)
{
mali_gp_hard_reset(group->gp_core);
}
/* Reset MMU */
mali_mmu_reset(group->mmu);
group->session = NULL;
}
示例14: mali_mmu_invalidate_page
void mali_mmu_invalidate_page(struct mali_mmu_core *mmu, u32 mali_address)
{
MALI_ASSERT_GROUP_LOCKED(mmu->group);
mali_hw_core_register_write(&mmu->hw_core, MALI_MMU_REGISTER_ZAP_ONE_LINE, MALI_MMU_PDE_ENTRY(mali_address));
}
示例15: mali_mmu_zap_tlb_without_stall
void mali_mmu_zap_tlb_without_stall(struct mali_mmu_core *mmu)
{
MALI_ASSERT_GROUP_LOCKED(mmu->group);
mali_hw_core_register_write(&mmu->hw_core, MALI_MMU_REGISTER_COMMAND, MALI_MMU_COMMAND_ZAP_CACHE);
}