video: driver: refine core state machine

introduced core error state and added changes
to refine core state machine.

Change-Id: Ib3b94fd3798e902b7a6cfc5de45820558c89806e
Signed-off-by: Govindaraj Rajagopal <quic_grajagop@quicinc.com>
This commit is contained in:
Govindaraj Rajagopal
2022-11-23 21:39:11 +05:30
parent 3fd67c1274
commit c4982fbf1a
14 changed files with 572 additions and 160 deletions

View File

@@ -636,6 +636,17 @@ struct msm_vidc_inst_cap_entry {
enum msm_vidc_inst_capability_type cap_id;
};
struct msm_vidc_event_data {
union {
bool bval;
u32 uval;
u64 uval64;
s32 val;
s64 val64;
void *ptr;
} edata;
};
struct debug_buf_count {
u64 etb;
u64 ftb;