• Home
  • Raw
  • Download

Lines Matching refs:cec_adapter

52 struct cec_adapter;
60 struct cec_adapter *adap;
86 struct cec_adapter *adap;
110 int (*adap_enable)(struct cec_adapter *adap, bool enable);
111 int (*adap_monitor_all_enable)(struct cec_adapter *adap, bool enable);
112 int (*adap_monitor_pin_enable)(struct cec_adapter *adap, bool enable);
113 int (*adap_log_addr)(struct cec_adapter *adap, u8 logical_addr);
114 int (*adap_transmit)(struct cec_adapter *adap, u8 attempts,
116 void (*adap_status)(struct cec_adapter *adap, struct seq_file *file);
117 void (*adap_free)(struct cec_adapter *adap);
120 int (*error_inj_show)(struct cec_adapter *adap, struct seq_file *sf);
121 bool (*error_inj_parse_line)(struct cec_adapter *adap, char *line);
124 int (*received)(struct cec_adapter *adap, struct cec_msg *msg);
201 struct cec_adapter { struct
257 static inline void *cec_get_drvdata(const struct cec_adapter *adap) in cec_get_drvdata() argument
262 static inline bool cec_has_log_addr(const struct cec_adapter *adap, u8 log_addr) in cec_has_log_addr()
267 static inline bool cec_is_sink(const struct cec_adapter *adap) in cec_is_sink()
279 static inline bool cec_is_registered(const struct cec_adapter *adap) in cec_is_registered()
291 struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops,
293 int cec_register_adapter(struct cec_adapter *adap, struct device *parent);
294 void cec_unregister_adapter(struct cec_adapter *adap);
295 void cec_delete_adapter(struct cec_adapter *adap);
297 int cec_s_log_addrs(struct cec_adapter *adap, struct cec_log_addrs *log_addrs,
299 void cec_s_phys_addr(struct cec_adapter *adap, u16 phys_addr,
301 void cec_s_phys_addr_from_edid(struct cec_adapter *adap,
303 void cec_s_conn_info(struct cec_adapter *adap,
305 int cec_transmit_msg(struct cec_adapter *adap, struct cec_msg *msg,
309 void cec_transmit_done_ts(struct cec_adapter *adap, u8 status,
313 static inline void cec_transmit_done(struct cec_adapter *adap, u8 status, in cec_transmit_done()
325 void cec_transmit_attempt_done_ts(struct cec_adapter *adap,
328 static inline void cec_transmit_attempt_done(struct cec_adapter *adap, in cec_transmit_attempt_done()
334 void cec_received_msg_ts(struct cec_adapter *adap,
337 static inline void cec_received_msg(struct cec_adapter *adap, in cec_received_msg()
352 void cec_queue_pin_cec_event(struct cec_adapter *adap, bool is_high,
363 void cec_queue_pin_hpd_event(struct cec_adapter *adap, bool is_high, ktime_t ts);
373 void cec_queue_pin_5v_event(struct cec_adapter *adap, bool is_high, ktime_t ts);
394 static inline int cec_register_adapter(struct cec_adapter *adap, in cec_register_adapter()
400 static inline void cec_unregister_adapter(struct cec_adapter *adap) in cec_unregister_adapter()
404 static inline void cec_delete_adapter(struct cec_adapter *adap) in cec_delete_adapter()
408 static inline void cec_s_phys_addr(struct cec_adapter *adap, u16 phys_addr, in cec_s_phys_addr()
413 static inline void cec_s_phys_addr_from_edid(struct cec_adapter *adap, in cec_s_phys_addr_from_edid()
426 static inline void cec_s_conn_info(struct cec_adapter *adap, in cec_s_conn_info()
448 static inline void cec_phys_addr_invalidate(struct cec_adapter *adap) in cec_phys_addr_invalidate()