Lines Matching refs:panel
27 * If the panel provides one or more modes, use them exclusively and
30 if (output->panel) {
31 err = drm_panel_get_modes(output->panel, connector);
64 if (!output->panel)
99 struct device_node *ddc, *panel;
107 &output->panel, &output->bridge);
111 panel = of_parse_phandle(output->of_node, "nvidia,panel", 0);
112 if (panel) {
114 * Don't mix nvidia,panel phandle with the graph in a
117 WARN_ON(output->panel || output->bridge);
119 output->panel = of_drm_find_panel(panel);
120 of_node_put(panel);
122 if (IS_ERR(output->panel))
123 return PTR_ERR(output->panel);