blob: 78e3cb1529d0709d4329c09de34c1f8959496929 [file] [log] [blame]
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
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 */
9
10#include <linux/clk.h>
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000011
Thierry Reding4aa3df72014-11-24 16:27:13 +010012#include <drm/drm_atomic_helper.h>
Thierry Reding3b0e5852014-12-16 18:30:16 +010013#include <drm/drm_panel.h>
14
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000015#include "drm.h"
16#include "dc.h"
17
18struct tegra_rgb {
19 struct tegra_output output;
Thierry Reding7602fa12013-10-30 09:55:33 +010020 struct tegra_dc *dc;
Dmitry Osipenkob1891532014-02-11 21:12:27 +040021 bool enabled;
Thierry Reding7602fa12013-10-30 09:55:33 +010022
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000023 struct clk *clk_parent;
24 struct clk *clk;
25};
26
27static inline struct tegra_rgb *to_rgb(struct tegra_output *output)
28{
29 return container_of(output, struct tegra_rgb, output);
30}
31
32struct reg_entry {
33 unsigned long offset;
34 unsigned long value;
35};
36
37static 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 },
57};
58
59static 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 },
79};
80
81static void tegra_dc_write_regs(struct tegra_dc *dc,
82 const struct reg_entry *table,
83 unsigned int num)
84{
85 unsigned int i;
86
87 for (i = 0; i < num; i++)
88 tegra_dc_writel(dc, table[i].value, table[i].offset);
89}
90
Thierry Reding3b0e5852014-12-16 18:30:16 +010091static void tegra_rgb_connector_dpms(struct drm_connector *connector,
92 int mode)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000093{
Thierry Reding3b0e5852014-12-16 18:30:16 +010094}
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000095
Thierry Reding3b0e5852014-12-16 18:30:16 +010096static const struct drm_connector_funcs tegra_rgb_connector_funcs = {
97 .dpms = tegra_rgb_connector_dpms,
Thierry Reding9d441892014-11-24 17:02:53 +010098 .reset = drm_atomic_helper_connector_reset,
Thierry Reding3b0e5852014-12-16 18:30:16 +010099 .detect = tegra_output_connector_detect,
100 .fill_modes = drm_helper_probe_single_connector_modes,
101 .destroy = tegra_output_connector_destroy,
Thierry Reding9d441892014-11-24 17:02:53 +0100102 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100103 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Thierry Reding3b0e5852014-12-16 18:30:16 +0100104};
105
106static enum drm_mode_status
107tegra_rgb_connector_mode_valid(struct drm_connector *connector,
108 struct drm_display_mode *mode)
109{
110 /*
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.
114 */
115 return MODE_OK;
116}
117
118static 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,
122};
123
124static const struct drm_encoder_funcs tegra_rgb_encoder_funcs = {
125 .destroy = tegra_output_encoder_destroy,
126};
127
128static void tegra_rgb_encoder_dpms(struct drm_encoder *encoder, int mode)
129{
130}
131
132static bool tegra_rgb_encoder_mode_fixup(struct drm_encoder *encoder,
133 const struct drm_display_mode *mode,
134 struct drm_display_mode *adjusted)
135{
136 struct tegra_output *output = encoder_to_output(encoder);
137 unsigned long pclk = mode->clock * 1000;
138 struct tegra_rgb *rgb = to_rgb(output);
139 unsigned int div;
140 int err;
141
142 /*
143 * We may not want to change the frequency of the parent clock, since
144 * it may be a parent for other peripherals. This is due to the fact
145 * that on Tegra20 there's only a single clock dedicated to display
146 * (pll_d_out0), whereas later generations have a second one that can
147 * be used to independently drive a second output (pll_d2_out0).
148 *
149 * As a way to support multiple outputs on Tegra20 as well, pll_p is
150 * typically used as the parent clock for the display controllers.
151 * But this comes at a cost: pll_p is the parent of several other
152 * peripherals, so its frequency shouldn't change out of the blue.
153 *
154 * The best we can do at this point is to use the shift clock divider
155 * and hope that the desired frequency can be matched (or at least
156 * matched sufficiently close that the panel will still work).
157 */
158 div = ((clk_get_rate(rgb->clk) * 2) / pclk) - 2;
159
160 err = tegra_dc_setup_clock(rgb->dc, rgb->clk_parent, pclk, div);
161 if (err < 0) {
162 dev_err(output->dev, "failed to setup DC clock: %d\n", err);
163 return false;
164 }
165
166 return true;
167}
168
169static void tegra_rgb_encoder_prepare(struct drm_encoder *encoder)
170{
171}
172
173static void tegra_rgb_encoder_commit(struct drm_encoder *encoder)
174{
175}
176
177static void tegra_rgb_encoder_mode_set(struct drm_encoder *encoder,
178 struct drm_display_mode *mode,
179 struct drm_display_mode *adjusted)
180{
181 struct tegra_output *output = encoder_to_output(encoder);
182 struct tegra_rgb *rgb = to_rgb(output);
183 u32 value;
184
185 if (output->panel)
186 drm_panel_prepare(output->panel);
Dmitry Osipenkob1891532014-02-11 21:12:27 +0400187
Thierry Reding7602fa12013-10-30 09:55:33 +0100188 tegra_dc_write_regs(rgb->dc, rgb_enable, ARRAY_SIZE(rgb_enable));
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000189
Thierry Reding72d30282013-12-12 11:06:55 +0100190 value = DE_SELECT_ACTIVE | DE_CONTROL_NORMAL;
191 tegra_dc_writel(rgb->dc, value, DC_DISP_DATA_ENABLE_OPTIONS);
192
193 /* XXX: parameterize? */
194 value = tegra_dc_readl(rgb->dc, DC_COM_PIN_OUTPUT_POLARITY(1));
195 value &= ~LVS_OUTPUT_POLARITY_LOW;
196 value &= ~LHS_OUTPUT_POLARITY_LOW;
197 tegra_dc_writel(rgb->dc, value, DC_COM_PIN_OUTPUT_POLARITY(1));
198
199 /* XXX: parameterize? */
200 value = DISP_DATA_FORMAT_DF1P1C | DISP_ALIGNMENT_MSB |
201 DISP_ORDER_RED_BLUE;
202 tegra_dc_writel(rgb->dc, value, DC_DISP_DISP_INTERFACE_CONTROL);
203
204 /* XXX: parameterize? */
205 value = SC0_H_QUALIFIER_NONE | SC1_H_QUALIFIER_NONE;
206 tegra_dc_writel(rgb->dc, value, DC_DISP_SHIFT_CLOCK_OPTIONS);
207
208 value = tegra_dc_readl(rgb->dc, DC_CMD_DISPLAY_COMMAND);
209 value &= ~DISP_CTRL_MODE_MASK;
210 value |= DISP_CTRL_MODE_C_DISPLAY;
211 tegra_dc_writel(rgb->dc, value, DC_CMD_DISPLAY_COMMAND);
212
213 value = tegra_dc_readl(rgb->dc, DC_CMD_DISPLAY_POWER_CONTROL);
214 value |= PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
215 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE;
216 tegra_dc_writel(rgb->dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
217
Thierry Reding62b9e062014-11-21 17:33:33 +0100218 tegra_dc_commit(rgb->dc);
Thierry Reding72d30282013-12-12 11:06:55 +0100219
Thierry Reding3b0e5852014-12-16 18:30:16 +0100220 if (output->panel)
221 drm_panel_enable(output->panel);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000222}
223
Thierry Reding3b0e5852014-12-16 18:30:16 +0100224static void tegra_rgb_encoder_disable(struct drm_encoder *encoder)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000225{
Thierry Reding3b0e5852014-12-16 18:30:16 +0100226 struct tegra_output *output = encoder_to_output(encoder);
Thierry Reding7602fa12013-10-30 09:55:33 +0100227 struct tegra_rgb *rgb = to_rgb(output);
Thierry Reding72d30282013-12-12 11:06:55 +0100228
Thierry Reding3b0e5852014-12-16 18:30:16 +0100229 if (output->panel)
230 drm_panel_disable(output->panel);
Thierry Reding72d30282013-12-12 11:06:55 +0100231
Thierry Reding7602fa12013-10-30 09:55:33 +0100232 tegra_dc_write_regs(rgb->dc, rgb_disable, ARRAY_SIZE(rgb_disable));
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000233
Thierry Reding3b0e5852014-12-16 18:30:16 +0100234 if (output->panel)
235 drm_panel_unprepare(output->panel);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000236}
237
Thierry Reding3b0e5852014-12-16 18:30:16 +0100238static const struct drm_encoder_helper_funcs tegra_rgb_encoder_helper_funcs = {
239 .dpms = tegra_rgb_encoder_dpms,
240 .mode_fixup = tegra_rgb_encoder_mode_fixup,
241 .prepare = tegra_rgb_encoder_prepare,
242 .commit = tegra_rgb_encoder_commit,
243 .mode_set = tegra_rgb_encoder_mode_set,
244 .disable = tegra_rgb_encoder_disable,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000245};
246
247int tegra_dc_rgb_probe(struct tegra_dc *dc)
248{
249 struct device_node *np;
250 struct tegra_rgb *rgb;
251 int err;
252
253 np = of_get_child_by_name(dc->dev->of_node, "rgb");
254 if (!np || !of_device_is_available(np))
255 return -ENODEV;
256
257 rgb = devm_kzalloc(dc->dev, sizeof(*rgb), GFP_KERNEL);
258 if (!rgb)
259 return -ENOMEM;
260
Thierry Reding03da0e72013-08-30 15:27:16 +0200261 rgb->output.dev = dc->dev;
262 rgb->output.of_node = np;
Thierry Reding7602fa12013-10-30 09:55:33 +0100263 rgb->dc = dc;
Thierry Reding03da0e72013-08-30 15:27:16 +0200264
Thierry Reding59d29c02013-10-14 14:26:42 +0200265 err = tegra_output_probe(&rgb->output);
Thierry Reding03da0e72013-08-30 15:27:16 +0200266 if (err < 0)
267 return err;
268
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000269 rgb->clk = devm_clk_get(dc->dev, NULL);
270 if (IS_ERR(rgb->clk)) {
271 dev_err(dc->dev, "failed to get clock\n");
272 return PTR_ERR(rgb->clk);
273 }
274
275 rgb->clk_parent = devm_clk_get(dc->dev, "parent");
276 if (IS_ERR(rgb->clk_parent)) {
277 dev_err(dc->dev, "failed to get parent clock\n");
278 return PTR_ERR(rgb->clk_parent);
279 }
280
281 err = clk_set_parent(rgb->clk, rgb->clk_parent);
282 if (err < 0) {
283 dev_err(dc->dev, "failed to set parent clock: %d\n", err);
284 return err;
285 }
286
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000287 dc->rgb = &rgb->output;
288
289 return 0;
290}
291
Thierry Reding59d29c02013-10-14 14:26:42 +0200292int tegra_dc_rgb_remove(struct tegra_dc *dc)
293{
Thierry Reding59d29c02013-10-14 14:26:42 +0200294 if (!dc->rgb)
295 return 0;
296
Thierry Reding328ec692014-12-19 15:55:08 +0100297 tegra_output_remove(dc->rgb);
Thierry Reding3b0e5852014-12-16 18:30:16 +0100298 dc->rgb = NULL;
299
Thierry Reding59d29c02013-10-14 14:26:42 +0200300 return 0;
301}
302
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000303int tegra_dc_rgb_init(struct drm_device *drm, struct tegra_dc *dc)
304{
Thierry Reding3b0e5852014-12-16 18:30:16 +0100305 struct tegra_output *output = dc->rgb;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000306 int err;
307
308 if (!dc->rgb)
309 return -ENODEV;
310
Thierry Reding3b0e5852014-12-16 18:30:16 +0100311 drm_connector_init(drm, &output->connector, &tegra_rgb_connector_funcs,
312 DRM_MODE_CONNECTOR_LVDS);
313 drm_connector_helper_add(&output->connector,
314 &tegra_rgb_connector_helper_funcs);
315 output->connector.dpms = DRM_MODE_DPMS_OFF;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000316
Thierry Reding3b0e5852014-12-16 18:30:16 +0100317 drm_encoder_init(drm, &output->encoder, &tegra_rgb_encoder_funcs,
318 DRM_MODE_ENCODER_LVDS);
319 drm_encoder_helper_add(&output->encoder,
320 &tegra_rgb_encoder_helper_funcs);
321
322 drm_mode_connector_attach_encoder(&output->connector,
323 &output->encoder);
324 drm_connector_register(&output->connector);
325
Thierry Redingea130b22014-12-19 15:51:35 +0100326 err = tegra_output_init(drm, output);
327 if (err < 0) {
328 dev_err(output->dev, "failed to initialize output: %d\n", err);
329 return err;
330 }
331
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000332 /*
Thierry Reding3b0e5852014-12-16 18:30:16 +0100333 * Other outputs can be attached to either display controller. The RGB
334 * outputs are an exception and work only with their parent display
335 * controller.
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000336 */
Thierry Reding3b0e5852014-12-16 18:30:16 +0100337 output->encoder.possible_crtcs = drm_crtc_mask(&dc->base);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000338
339 return 0;
340}
341
342int tegra_dc_rgb_exit(struct tegra_dc *dc)
343{
Thierry Reding328ec692014-12-19 15:55:08 +0100344 if (dc->rgb)
345 tegra_output_exit(dc->rgb);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000346
Thierry Reding328ec692014-12-19 15:55:08 +0100347 return 0;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000348}