Lines Matching full:hpd
54 bool hpd; member
55 void (*hpd_event)(bool hpd, struct device *dev);
92 void (*hpd_event)(bool hpd, struct device *dev), in mtk_cec_set_hpd_event() argument
149 static void mtk_cec_hpd_event(struct mtk_cec *cec, bool hpd) in mtk_cec_hpd_event() argument
151 void (*hpd_event)(bool hpd, struct device *dev); in mtk_cec_hpd_event()
161 hpd_event(hpd, hdmi_dev); in mtk_cec_hpd_event()
168 bool hpd; in mtk_cec_htplg_isr_thread() local
171 hpd = mtk_cec_hpd_high(dev); in mtk_cec_htplg_isr_thread()
173 if (cec->hpd != hpd) { in mtk_cec_htplg_isr_thread()
174 dev_dbg(dev, "hotplug event! cur hpd = %d, hpd = %d\n", in mtk_cec_htplg_isr_thread()
175 cec->hpd, hpd); in mtk_cec_htplg_isr_thread()
176 cec->hpd = hpd; in mtk_cec_htplg_isr_thread()
177 mtk_cec_hpd_event(cec, hpd); in mtk_cec_htplg_isr_thread()
218 IRQF_ONESHOT, "hdmi hpd", dev); in mtk_cec_probe()