Lines Matching full:hpd
61 bool hpd; member
62 void (*hpd_event)(bool hpd, struct device *dev);
99 void (*hpd_event)(bool hpd, struct device *dev), in mtk_cec_set_hpd_event() argument
156 static void mtk_cec_hpd_event(struct mtk_cec *cec, bool hpd) in mtk_cec_hpd_event() argument
158 void (*hpd_event)(bool hpd, struct device *dev); in mtk_cec_hpd_event()
168 hpd_event(hpd, hdmi_dev); in mtk_cec_hpd_event()
175 bool hpd; in mtk_cec_htplg_isr_thread() local
178 hpd = mtk_cec_hpd_high(dev); in mtk_cec_htplg_isr_thread()
180 if (cec->hpd != hpd) { in mtk_cec_htplg_isr_thread()
181 dev_dbg(dev, "hotplug event! cur hpd = %d, hpd = %d\n", in mtk_cec_htplg_isr_thread()
182 cec->hpd, hpd); in mtk_cec_htplg_isr_thread()
183 cec->hpd = hpd; in mtk_cec_htplg_isr_thread()
184 mtk_cec_hpd_event(cec, hpd); in mtk_cec_htplg_isr_thread()
227 IRQF_ONESHOT, "hdmi hpd", dev); in mtk_cec_probe()