Lines Matching refs:bridge
32 struct drm_bridge bridge; member
36 static inline struct thc63_dev *to_thc63(struct drm_bridge *bridge) in to_thc63() argument
38 return container_of(bridge, struct thc63_dev, bridge); in to_thc63()
41 static int thc63_attach(struct drm_bridge *bridge) in thc63_attach() argument
43 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_attach()
45 return drm_bridge_attach(bridge->encoder, thc63->next, bridge); in thc63_attach()
48 static void thc63_enable(struct drm_bridge *bridge) in thc63_enable() argument
50 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_enable()
64 static void thc63_disable(struct drm_bridge *bridge) in thc63_disable() argument
66 struct thc63_dev *thc63 = to_thc63(bridge); in thc63_disable()
170 thc63->bridge.driver_private = thc63; in thc63_probe()
171 thc63->bridge.of_node = pdev->dev.of_node; in thc63_probe()
172 thc63->bridge.funcs = &thc63_bridge_func; in thc63_probe()
174 drm_bridge_add(&thc63->bridge); in thc63_probe()
183 drm_bridge_remove(&thc63->bridge); in thc63_remove()