return vchiq_dump(dump_context, buf, len + 1);
}
-enum vchiq_status
-vchiq_platform_suspend(struct vchiq_state *state)
-{
- return VCHIQ_ERROR;
-}
-
-enum vchiq_status
-vchiq_platform_resume(struct vchiq_state *state)
-{
- return VCHIQ_SUCCESS;
-}
-
int
vchiq_platform_videocore_wanted(struct vchiq_state *state)
{
vchiq_platform_check_suspend(struct vchiq_state *state)
{
struct vchiq_arm_state *arm_state = vchiq_platform_get_arm_state(state);
- int susp = 0;
if (!arm_state)
goto out;
write_lock_bh(&arm_state->susp_res_lock);
if (arm_state->vc_suspend_state == VC_SUSPEND_REQUESTED &&
- arm_state->vc_resume_state == VC_RESUME_RESUMED) {
+ arm_state->vc_resume_state == VC_RESUME_RESUMED)
set_suspend_state(arm_state, VC_SUSPEND_IN_PROGRESS);
- susp = 1;
- }
write_unlock_bh(&arm_state->susp_res_lock);
- if (susp)
- vchiq_platform_suspend(state);
-
out:
vchiq_log_trace(vchiq_susp_log_level, "%s exit", __func__);
return;
extern enum vchiq_status
vchiq_check_service(struct vchiq_service *service);
-extern enum vchiq_status
-vchiq_platform_suspend(struct vchiq_state *state);
-
extern int
vchiq_platform_videocore_wanted(struct vchiq_state *state);
}
break;
- case VCHIQ_CONNSTATE_PAUSED:
- vchiq_platform_resume(state);
- break;
-
case VCHIQ_CONNSTATE_RESUMING:
if (queue_message(state, NULL,
VCHIQ_MAKE_MSG(VCHIQ_MSG_RESUME, 0, 0),
void
vchiq_platform_check_suspend(struct vchiq_state *state);
-extern enum vchiq_status
-vchiq_platform_resume(struct vchiq_state *state);
-
extern int
vchiq_dump(void *dump_context, const char *str, int len);