Lines Matching full:hpd
53 bool hpd; member
54 void (*hpd_event)(bool hpd, struct device *dev);
91 void (*hpd_event)(bool hpd, struct device *dev), in mtk_cec_set_hpd_event() argument
148 static void mtk_cec_hpd_event(struct mtk_cec *cec, bool hpd) in mtk_cec_hpd_event() argument
150 void (*hpd_event)(bool hpd, struct device *dev); in mtk_cec_hpd_event()
160 hpd_event(hpd, hdmi_dev); in mtk_cec_hpd_event()
167 bool hpd; in mtk_cec_htplg_isr_thread() local
170 hpd = mtk_cec_hpd_high(dev); in mtk_cec_htplg_isr_thread()
172 if (cec->hpd != hpd) { in mtk_cec_htplg_isr_thread()
173 dev_dbg(dev, "hotplug event! cur hpd = %d, hpd = %d\n", in mtk_cec_htplg_isr_thread()
174 cec->hpd, hpd); in mtk_cec_htplg_isr_thread()
175 cec->hpd = hpd; in mtk_cec_htplg_isr_thread()
176 mtk_cec_hpd_event(cec, hpd); in mtk_cec_htplg_isr_thread()
219 IRQF_ONESHOT, "hdmi hpd", dev); in mtk_cec_probe()