Linux 4.2.1
[linux/fpc-iii.git] / drivers / gpu / drm / tegra / rgb.c
blob7cd833f5b5b591257da40c04efc209057ec62549
1 /*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
10 #include <linux/clk.h>
12 #include <drm/drm_atomic_helper.h>
13 #include <drm/drm_panel.h>
15 #include "drm.h"
16 #include "dc.h"
18 struct tegra_rgb {
19 struct tegra_output output;
20 struct tegra_dc *dc;
21 bool enabled;
23 struct clk *clk_parent;
24 struct clk *clk;
27 static inline struct tegra_rgb *to_rgb(struct tegra_output *output)
29 return container_of(output, struct tegra_rgb, output);
32 struct reg_entry {
33 unsigned long offset;
34 unsigned long value;
37 static const struct reg_entry rgb_enable[] = {
38 { DC_COM_PIN_OUTPUT_ENABLE(0), 0x00000000 },
39 { DC_COM_PIN_OUTPUT_ENABLE(1), 0x00000000 },
40 { DC_COM_PIN_OUTPUT_ENABLE(2), 0x00000000 },
41 { DC_COM_PIN_OUTPUT_ENABLE(3), 0x00000000 },
42 { DC_COM_PIN_OUTPUT_POLARITY(0), 0x00000000 },
43 { DC_COM_PIN_OUTPUT_POLARITY(1), 0x01000000 },
44 { DC_COM_PIN_OUTPUT_POLARITY(2), 0x00000000 },
45 { DC_COM_PIN_OUTPUT_POLARITY(3), 0x00000000 },
46 { DC_COM_PIN_OUTPUT_DATA(0), 0x00000000 },
47 { DC_COM_PIN_OUTPUT_DATA(1), 0x00000000 },
48 { DC_COM_PIN_OUTPUT_DATA(2), 0x00000000 },
49 { DC_COM_PIN_OUTPUT_DATA(3), 0x00000000 },
50 { DC_COM_PIN_OUTPUT_SELECT(0), 0x00000000 },
51 { DC_COM_PIN_OUTPUT_SELECT(1), 0x00000000 },
52 { DC_COM_PIN_OUTPUT_SELECT(2), 0x00000000 },
53 { DC_COM_PIN_OUTPUT_SELECT(3), 0x00000000 },
54 { DC_COM_PIN_OUTPUT_SELECT(4), 0x00210222 },
55 { DC_COM_PIN_OUTPUT_SELECT(5), 0x00002200 },
56 { DC_COM_PIN_OUTPUT_SELECT(6), 0x00020000 },
59 static const struct reg_entry rgb_disable[] = {
60 { DC_COM_PIN_OUTPUT_SELECT(6), 0x00000000 },
61 { DC_COM_PIN_OUTPUT_SELECT(5), 0x00000000 },
62 { DC_COM_PIN_OUTPUT_SELECT(4), 0x00000000 },
63 { DC_COM_PIN_OUTPUT_SELECT(3), 0x00000000 },
64 { DC_COM_PIN_OUTPUT_SELECT(2), 0x00000000 },
65 { DC_COM_PIN_OUTPUT_SELECT(1), 0x00000000 },
66 { DC_COM_PIN_OUTPUT_SELECT(0), 0x00000000 },
67 { DC_COM_PIN_OUTPUT_DATA(3), 0xaaaaaaaa },
68 { DC_COM_PIN_OUTPUT_DATA(2), 0xaaaaaaaa },
69 { DC_COM_PIN_OUTPUT_DATA(1), 0xaaaaaaaa },
70 { DC_COM_PIN_OUTPUT_DATA(0), 0xaaaaaaaa },
71 { DC_COM_PIN_OUTPUT_POLARITY(3), 0x00000000 },
72 { DC_COM_PIN_OUTPUT_POLARITY(2), 0x00000000 },
73 { DC_COM_PIN_OUTPUT_POLARITY(1), 0x00000000 },
74 { DC_COM_PIN_OUTPUT_POLARITY(0), 0x00000000 },
75 { DC_COM_PIN_OUTPUT_ENABLE(3), 0x55555555 },
76 { DC_COM_PIN_OUTPUT_ENABLE(2), 0x55555555 },
77 { DC_COM_PIN_OUTPUT_ENABLE(1), 0x55150005 },
78 { DC_COM_PIN_OUTPUT_ENABLE(0), 0x55555555 },
81 static void tegra_dc_write_regs(struct tegra_dc *dc,
82 const struct reg_entry *table,
83 unsigned int num)
85 unsigned int i;
87 for (i = 0; i < num; i++)
88 tegra_dc_writel(dc, table[i].value, table[i].offset);
91 static void tegra_rgb_connector_dpms(struct drm_connector *connector,
92 int mode)
96 static const struct drm_connector_funcs tegra_rgb_connector_funcs = {
97 .dpms = tegra_rgb_connector_dpms,
98 .reset = drm_atomic_helper_connector_reset,
99 .detect = tegra_output_connector_detect,
100 .fill_modes = drm_helper_probe_single_connector_modes,
101 .destroy = tegra_output_connector_destroy,
102 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
103 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
106 static enum drm_mode_status
107 tegra_rgb_connector_mode_valid(struct drm_connector *connector,
108 struct drm_display_mode *mode)
111 * FIXME: For now, always assume that the mode is okay. There are
112 * unresolved issues with clk_round_rate(), which doesn't always
113 * reliably report whether a frequency can be set or not.
115 return MODE_OK;
118 static const struct drm_connector_helper_funcs tegra_rgb_connector_helper_funcs = {
119 .get_modes = tegra_output_connector_get_modes,
120 .mode_valid = tegra_rgb_connector_mode_valid,
121 .best_encoder = tegra_output_connector_best_encoder,
124 static const struct drm_encoder_funcs tegra_rgb_encoder_funcs = {
125 .destroy = tegra_output_encoder_destroy,
128 static void tegra_rgb_encoder_dpms(struct drm_encoder *encoder, int mode)
132 static void tegra_rgb_encoder_prepare(struct drm_encoder *encoder)
136 static void tegra_rgb_encoder_commit(struct drm_encoder *encoder)
140 static void tegra_rgb_encoder_mode_set(struct drm_encoder *encoder,
141 struct drm_display_mode *mode,
142 struct drm_display_mode *adjusted)
144 struct tegra_output *output = encoder_to_output(encoder);
145 struct tegra_rgb *rgb = to_rgb(output);
146 u32 value;
148 if (output->panel)
149 drm_panel_prepare(output->panel);
151 tegra_dc_write_regs(rgb->dc, rgb_enable, ARRAY_SIZE(rgb_enable));
153 value = DE_SELECT_ACTIVE | DE_CONTROL_NORMAL;
154 tegra_dc_writel(rgb->dc, value, DC_DISP_DATA_ENABLE_OPTIONS);
156 /* XXX: parameterize? */
157 value = tegra_dc_readl(rgb->dc, DC_COM_PIN_OUTPUT_POLARITY(1));
158 value &= ~LVS_OUTPUT_POLARITY_LOW;
159 value &= ~LHS_OUTPUT_POLARITY_LOW;
160 tegra_dc_writel(rgb->dc, value, DC_COM_PIN_OUTPUT_POLARITY(1));
162 /* XXX: parameterize? */
163 value = DISP_DATA_FORMAT_DF1P1C | DISP_ALIGNMENT_MSB |
164 DISP_ORDER_RED_BLUE;
165 tegra_dc_writel(rgb->dc, value, DC_DISP_DISP_INTERFACE_CONTROL);
167 /* XXX: parameterize? */
168 value = SC0_H_QUALIFIER_NONE | SC1_H_QUALIFIER_NONE;
169 tegra_dc_writel(rgb->dc, value, DC_DISP_SHIFT_CLOCK_OPTIONS);
171 tegra_dc_commit(rgb->dc);
173 if (output->panel)
174 drm_panel_enable(output->panel);
177 static void tegra_rgb_encoder_disable(struct drm_encoder *encoder)
179 struct tegra_output *output = encoder_to_output(encoder);
180 struct tegra_rgb *rgb = to_rgb(output);
182 if (output->panel)
183 drm_panel_disable(output->panel);
185 tegra_dc_write_regs(rgb->dc, rgb_disable, ARRAY_SIZE(rgb_disable));
186 tegra_dc_commit(rgb->dc);
188 if (output->panel)
189 drm_panel_unprepare(output->panel);
192 static int
193 tegra_rgb_encoder_atomic_check(struct drm_encoder *encoder,
194 struct drm_crtc_state *crtc_state,
195 struct drm_connector_state *conn_state)
197 struct tegra_output *output = encoder_to_output(encoder);
198 struct tegra_dc *dc = to_tegra_dc(conn_state->crtc);
199 unsigned long pclk = crtc_state->mode.clock * 1000;
200 struct tegra_rgb *rgb = to_rgb(output);
201 unsigned int div;
202 int err;
205 * We may not want to change the frequency of the parent clock, since
206 * it may be a parent for other peripherals. This is due to the fact
207 * that on Tegra20 there's only a single clock dedicated to display
208 * (pll_d_out0), whereas later generations have a second one that can
209 * be used to independently drive a second output (pll_d2_out0).
211 * As a way to support multiple outputs on Tegra20 as well, pll_p is
212 * typically used as the parent clock for the display controllers.
213 * But this comes at a cost: pll_p is the parent of several other
214 * peripherals, so its frequency shouldn't change out of the blue.
216 * The best we can do at this point is to use the shift clock divider
217 * and hope that the desired frequency can be matched (or at least
218 * matched sufficiently close that the panel will still work).
220 div = ((clk_get_rate(rgb->clk) * 2) / pclk) - 2;
221 pclk = 0;
223 err = tegra_dc_state_setup_clock(dc, crtc_state, rgb->clk_parent,
224 pclk, div);
225 if (err < 0) {
226 dev_err(output->dev, "failed to setup CRTC state: %d\n", err);
227 return err;
230 return err;
233 static const struct drm_encoder_helper_funcs tegra_rgb_encoder_helper_funcs = {
234 .dpms = tegra_rgb_encoder_dpms,
235 .prepare = tegra_rgb_encoder_prepare,
236 .commit = tegra_rgb_encoder_commit,
237 .mode_set = tegra_rgb_encoder_mode_set,
238 .disable = tegra_rgb_encoder_disable,
239 .atomic_check = tegra_rgb_encoder_atomic_check,
242 int tegra_dc_rgb_probe(struct tegra_dc *dc)
244 struct device_node *np;
245 struct tegra_rgb *rgb;
246 int err;
248 np = of_get_child_by_name(dc->dev->of_node, "rgb");
249 if (!np || !of_device_is_available(np))
250 return -ENODEV;
252 rgb = devm_kzalloc(dc->dev, sizeof(*rgb), GFP_KERNEL);
253 if (!rgb)
254 return -ENOMEM;
256 rgb->output.dev = dc->dev;
257 rgb->output.of_node = np;
258 rgb->dc = dc;
260 err = tegra_output_probe(&rgb->output);
261 if (err < 0)
262 return err;
264 rgb->clk = devm_clk_get(dc->dev, NULL);
265 if (IS_ERR(rgb->clk)) {
266 dev_err(dc->dev, "failed to get clock\n");
267 return PTR_ERR(rgb->clk);
270 rgb->clk_parent = devm_clk_get(dc->dev, "parent");
271 if (IS_ERR(rgb->clk_parent)) {
272 dev_err(dc->dev, "failed to get parent clock\n");
273 return PTR_ERR(rgb->clk_parent);
276 err = clk_set_parent(rgb->clk, rgb->clk_parent);
277 if (err < 0) {
278 dev_err(dc->dev, "failed to set parent clock: %d\n", err);
279 return err;
282 dc->rgb = &rgb->output;
284 return 0;
287 int tegra_dc_rgb_remove(struct tegra_dc *dc)
289 if (!dc->rgb)
290 return 0;
292 tegra_output_remove(dc->rgb);
293 dc->rgb = NULL;
295 return 0;
298 int tegra_dc_rgb_init(struct drm_device *drm, struct tegra_dc *dc)
300 struct tegra_output *output = dc->rgb;
301 int err;
303 if (!dc->rgb)
304 return -ENODEV;
306 drm_connector_init(drm, &output->connector, &tegra_rgb_connector_funcs,
307 DRM_MODE_CONNECTOR_LVDS);
308 drm_connector_helper_add(&output->connector,
309 &tegra_rgb_connector_helper_funcs);
310 output->connector.dpms = DRM_MODE_DPMS_OFF;
312 drm_encoder_init(drm, &output->encoder, &tegra_rgb_encoder_funcs,
313 DRM_MODE_ENCODER_LVDS);
314 drm_encoder_helper_add(&output->encoder,
315 &tegra_rgb_encoder_helper_funcs);
317 drm_mode_connector_attach_encoder(&output->connector,
318 &output->encoder);
319 drm_connector_register(&output->connector);
321 err = tegra_output_init(drm, output);
322 if (err < 0) {
323 dev_err(output->dev, "failed to initialize output: %d\n", err);
324 return err;
328 * Other outputs can be attached to either display controller. The RGB
329 * outputs are an exception and work only with their parent display
330 * controller.
332 output->encoder.possible_crtcs = drm_crtc_mask(&dc->base);
334 return 0;
337 int tegra_dc_rgb_exit(struct tegra_dc *dc)
339 if (dc->rgb)
340 tegra_output_exit(dc->rgb);
342 return 0;