Lines Matching refs:panel
24 * If the panel provides one or more modes, use them exclusively and
27 if (output->panel) {
28 err = drm_panel_get_modes(output->panel, connector);
61 if (!output->panel)
96 struct device_node *ddc, *panel;
104 &output->panel, &output->bridge);
108 panel = of_parse_phandle(output->of_node, "nvidia,panel", 0);
109 if (panel) {
111 * Don't mix nvidia,panel phandle with the graph in a
114 WARN_ON(output->panel || output->bridge);
116 output->panel = of_drm_find_panel(panel);
117 of_node_put(panel);
119 if (IS_ERR(output->panel))
120 return PTR_ERR(output->panel);