Lines Matching refs:bridge
34 struct drm_bridge bridge; member
40 static inline struct thc63_dev *to_thc63(struct drm_bridge *bridge) in to_thc63() argument
42 return container_of(bridge, struct thc63_dev, bridge); in to_thc63()
45 static int thc63_attach(struct drm_bridge *bridge) in thc63_attach() argument
47 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_attach()
49 return drm_bridge_attach(bridge->encoder, thc63->next, bridge); in thc63_attach()
52 static enum drm_mode_status thc63_mode_valid(struct drm_bridge *bridge, in thc63_mode_valid() argument
55 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_mode_valid()
82 static void thc63_enable(struct drm_bridge *bridge) in thc63_enable() argument
84 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_enable()
98 static void thc63_disable(struct drm_bridge *bridge) in thc63_disable() argument
100 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_disable()
221 thc63->bridge.driver_private = thc63; in thc63_probe()
222 thc63->bridge.of_node = pdev->dev.of_node; in thc63_probe()
223 thc63->bridge.funcs = &thc63_bridge_func; in thc63_probe()
224 thc63->bridge.timings = &thc63->timings; in thc63_probe()
226 drm_bridge_add(&thc63->bridge); in thc63_probe()
235 drm_bridge_remove(&thc63->bridge); in thc63_remove()