forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-03-07 b7c0d7ef5080a876d1e2a044d0a51dcb0e0bcf1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef DW_HDMI_CEC_H
#define DW_HDMI_CEC_H
 
struct dw_hdmi;
 
struct dw_hdmi_cec_ops {
   void (*write)(struct dw_hdmi *hdmi, u8 val, int offset);
   u8 (*read)(struct dw_hdmi *hdmi, int offset);
   void (*enable)(struct dw_hdmi *hdmi);
   void (*disable)(struct dw_hdmi *hdmi);
};
 
struct dw_hdmi_cec_data {
   struct dw_hdmi *hdmi;
   const struct dw_hdmi_cec_ops *ops;
   int irq;
};
 
#endif