blob: 2e27ff9fc58f27f50433e84f4c0bb14a4f87810f [file] [log] [blame]
Maxime Ripard03c4c712015-10-29 09:39:01 +01001/*
2 * Copyright (C) 2015 Free Electrons
3 * Copyright (C) 2015 NextThing Co
4 *
5 * Maxime Ripard <maxime.ripard@free-electrons.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 */
12
13#include <linux/clk.h>
14#include <linux/component.h>
15#include <linux/of_address.h>
16#include <linux/regmap.h>
17#include <linux/reset.h>
18
19#include <drm/drmP.h>
20#include <drm/drm_atomic_helper.h>
21#include <drm/drm_crtc_helper.h>
Chen-Yu Tsai78428d62017-02-23 16:05:40 +080022#include <drm/drm_of.h>
Maxime Ripard03c4c712015-10-29 09:39:01 +010023#include <drm/drm_panel.h>
24
Chen-Yu Tsai279156a2017-03-09 18:05:27 +080025#include "sun4i_crtc.h"
Maxime Ripard03c4c712015-10-29 09:39:01 +010026#include "sun4i_drv.h"
27#include "sun4i_tcon.h"
Icenowy Zheng87969332017-05-17 22:47:17 +080028#include "sunxi_engine.h"
Maxime Ripard03c4c712015-10-29 09:39:01 +010029
30#define SUN4I_TVE_EN_REG 0x000
31#define SUN4I_TVE_EN_DAC_MAP_MASK GENMASK(19, 4)
32#define SUN4I_TVE_EN_DAC_MAP(dac, out) (((out) & 0xf) << (dac + 1) * 4)
33#define SUN4I_TVE_EN_ENABLE BIT(0)
34
35#define SUN4I_TVE_CFG0_REG 0x004
36#define SUN4I_TVE_CFG0_DAC_CONTROL_54M BIT(26)
37#define SUN4I_TVE_CFG0_CORE_DATAPATH_54M BIT(25)
38#define SUN4I_TVE_CFG0_CORE_CONTROL_54M BIT(24)
39#define SUN4I_TVE_CFG0_YC_EN BIT(17)
40#define SUN4I_TVE_CFG0_COMP_EN BIT(16)
41#define SUN4I_TVE_CFG0_RES(x) ((x) & 0xf)
42#define SUN4I_TVE_CFG0_RES_480i SUN4I_TVE_CFG0_RES(0)
43#define SUN4I_TVE_CFG0_RES_576i SUN4I_TVE_CFG0_RES(1)
44
45#define SUN4I_TVE_DAC0_REG 0x008
46#define SUN4I_TVE_DAC0_CLOCK_INVERT BIT(24)
47#define SUN4I_TVE_DAC0_LUMA(x) (((x) & 3) << 20)
48#define SUN4I_TVE_DAC0_LUMA_0_4 SUN4I_TVE_DAC0_LUMA(3)
49#define SUN4I_TVE_DAC0_CHROMA(x) (((x) & 3) << 18)
50#define SUN4I_TVE_DAC0_CHROMA_0_75 SUN4I_TVE_DAC0_CHROMA(3)
51#define SUN4I_TVE_DAC0_INTERNAL_DAC(x) (((x) & 3) << 16)
52#define SUN4I_TVE_DAC0_INTERNAL_DAC_37_5_OHMS SUN4I_TVE_DAC0_INTERNAL_DAC(3)
53#define SUN4I_TVE_DAC0_DAC_EN(dac) BIT(dac)
54
55#define SUN4I_TVE_NOTCH_REG 0x00c
56#define SUN4I_TVE_NOTCH_DAC0_TO_DAC_DLY(dac, x) ((4 - (x)) << (dac * 3))
57
58#define SUN4I_TVE_CHROMA_FREQ_REG 0x010
59
60#define SUN4I_TVE_PORCH_REG 0x014
61#define SUN4I_TVE_PORCH_BACK(x) ((x) << 16)
62#define SUN4I_TVE_PORCH_FRONT(x) (x)
63
64#define SUN4I_TVE_LINE_REG 0x01c
65#define SUN4I_TVE_LINE_FIRST(x) ((x) << 16)
66#define SUN4I_TVE_LINE_NUMBER(x) (x)
67
68#define SUN4I_TVE_LEVEL_REG 0x020
69#define SUN4I_TVE_LEVEL_BLANK(x) ((x) << 16)
70#define SUN4I_TVE_LEVEL_BLACK(x) (x)
71
72#define SUN4I_TVE_DAC1_REG 0x024
73#define SUN4I_TVE_DAC1_AMPLITUDE(dac, x) ((x) << (dac * 8))
74
75#define SUN4I_TVE_DETECT_STA_REG 0x038
76#define SUN4I_TVE_DETECT_STA_DAC(dac) BIT((dac * 8))
77#define SUN4I_TVE_DETECT_STA_UNCONNECTED 0
78#define SUN4I_TVE_DETECT_STA_CONNECTED 1
79#define SUN4I_TVE_DETECT_STA_GROUND 2
80
81#define SUN4I_TVE_CB_CR_LVL_REG 0x10c
82#define SUN4I_TVE_CB_CR_LVL_CR_BURST(x) ((x) << 8)
83#define SUN4I_TVE_CB_CR_LVL_CB_BURST(x) (x)
84
85#define SUN4I_TVE_TINT_BURST_PHASE_REG 0x110
86#define SUN4I_TVE_TINT_BURST_PHASE_CHROMA(x) (x)
87
88#define SUN4I_TVE_BURST_WIDTH_REG 0x114
89#define SUN4I_TVE_BURST_WIDTH_BREEZEWAY(x) ((x) << 16)
90#define SUN4I_TVE_BURST_WIDTH_BURST_WIDTH(x) ((x) << 8)
91#define SUN4I_TVE_BURST_WIDTH_HSYNC_WIDTH(x) (x)
92
93#define SUN4I_TVE_CB_CR_GAIN_REG 0x118
94#define SUN4I_TVE_CB_CR_GAIN_CR(x) ((x) << 8)
95#define SUN4I_TVE_CB_CR_GAIN_CB(x) (x)
96
97#define SUN4I_TVE_SYNC_VBI_REG 0x11c
98#define SUN4I_TVE_SYNC_VBI_SYNC(x) ((x) << 16)
99#define SUN4I_TVE_SYNC_VBI_VBLANK(x) (x)
100
101#define SUN4I_TVE_ACTIVE_LINE_REG 0x124
102#define SUN4I_TVE_ACTIVE_LINE(x) (x)
103
104#define SUN4I_TVE_CHROMA_REG 0x128
105#define SUN4I_TVE_CHROMA_COMP_GAIN(x) ((x) & 3)
106#define SUN4I_TVE_CHROMA_COMP_GAIN_50 SUN4I_TVE_CHROMA_COMP_GAIN(2)
107
108#define SUN4I_TVE_12C_REG 0x12c
109#define SUN4I_TVE_12C_NOTCH_WIDTH_WIDE BIT(8)
110#define SUN4I_TVE_12C_COMP_YUV_EN BIT(0)
111
112#define SUN4I_TVE_RESYNC_REG 0x130
113#define SUN4I_TVE_RESYNC_FIELD BIT(31)
114#define SUN4I_TVE_RESYNC_LINE(x) ((x) << 16)
115#define SUN4I_TVE_RESYNC_PIXEL(x) (x)
116
117#define SUN4I_TVE_SLAVE_REG 0x134
118
119#define SUN4I_TVE_WSS_DATA2_REG 0x244
120
121struct color_gains {
122 u16 cb;
123 u16 cr;
124};
125
126struct burst_levels {
127 u16 cb;
128 u16 cr;
129};
130
131struct video_levels {
132 u16 black;
133 u16 blank;
134};
135
136struct resync_parameters {
137 bool field;
138 u16 line;
139 u16 pixel;
140};
141
142struct tv_mode {
143 char *name;
144
145 u32 mode;
146 u32 chroma_freq;
147 u16 back_porch;
148 u16 front_porch;
149 u16 line_number;
150 u16 vblank_level;
151
152 u32 hdisplay;
153 u16 hfront_porch;
154 u16 hsync_len;
155 u16 hback_porch;
156
157 u32 vdisplay;
158 u16 vfront_porch;
159 u16 vsync_len;
160 u16 vback_porch;
161
162 bool yc_en;
163 bool dac3_en;
164 bool dac_bit25_en;
165
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300166 const struct color_gains *color_gains;
167 const struct burst_levels *burst_levels;
168 const struct video_levels *video_levels;
169 const struct resync_parameters *resync_params;
Maxime Ripard03c4c712015-10-29 09:39:01 +0100170};
171
172struct sun4i_tv {
173 struct drm_connector connector;
174 struct drm_encoder encoder;
175
176 struct clk *clk;
177 struct regmap *regs;
178 struct reset_control *reset;
179
180 struct sun4i_drv *drv;
181};
182
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300183static const struct video_levels ntsc_video_levels = {
Maxime Ripard2ff77b12015-10-29 09:39:56 +0100184 .black = 282, .blank = 240,
185};
186
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300187static const struct video_levels pal_video_levels = {
Maxime Ripard154f6952015-10-29 09:39:41 +0100188 .black = 252, .blank = 252,
189};
190
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300191static const struct burst_levels ntsc_burst_levels = {
Maxime Ripard2ff77b12015-10-29 09:39:56 +0100192 .cb = 79, .cr = 0,
193};
194
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300195static const struct burst_levels pal_burst_levels = {
Maxime Ripard154f6952015-10-29 09:39:41 +0100196 .cb = 40, .cr = 40,
197};
198
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300199static const struct color_gains ntsc_color_gains = {
Maxime Ripard2ff77b12015-10-29 09:39:56 +0100200 .cb = 160, .cr = 160,
201};
202
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300203static const struct color_gains pal_color_gains = {
Maxime Ripard154f6952015-10-29 09:39:41 +0100204 .cb = 224, .cr = 224,
205};
206
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300207static const struct resync_parameters ntsc_resync_parameters = {
Maxime Ripard2ff77b12015-10-29 09:39:56 +0100208 .field = false, .line = 14, .pixel = 12,
209};
210
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300211static const struct resync_parameters pal_resync_parameters = {
Maxime Ripard154f6952015-10-29 09:39:41 +0100212 .field = true, .line = 13, .pixel = 12,
213};
214
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300215static const struct tv_mode tv_modes[] = {
Maxime Ripard154f6952015-10-29 09:39:41 +0100216 {
Maxime Ripard2ff77b12015-10-29 09:39:56 +0100217 .name = "NTSC",
218 .mode = SUN4I_TVE_CFG0_RES_480i,
219 .chroma_freq = 0x21f07c1f,
220 .yc_en = true,
221 .dac3_en = true,
222 .dac_bit25_en = true,
223
224 .back_porch = 118,
225 .front_porch = 32,
226 .line_number = 525,
227
228 .hdisplay = 720,
229 .hfront_porch = 18,
230 .hsync_len = 2,
231 .hback_porch = 118,
232
233 .vdisplay = 480,
234 .vfront_porch = 26,
235 .vsync_len = 2,
236 .vback_porch = 17,
237
238 .vblank_level = 240,
239
240 .color_gains = &ntsc_color_gains,
241 .burst_levels = &ntsc_burst_levels,
242 .video_levels = &ntsc_video_levels,
243 .resync_params = &ntsc_resync_parameters,
244 },
245 {
Maxime Ripard154f6952015-10-29 09:39:41 +0100246 .name = "PAL",
247 .mode = SUN4I_TVE_CFG0_RES_576i,
248 .chroma_freq = 0x2a098acb,
249
250 .back_porch = 138,
251 .front_porch = 24,
252 .line_number = 625,
253
254 .hdisplay = 720,
255 .hfront_porch = 3,
256 .hsync_len = 2,
257 .hback_porch = 139,
258
259 .vdisplay = 576,
260 .vfront_porch = 28,
261 .vsync_len = 2,
262 .vback_porch = 19,
263
264 .vblank_level = 252,
265
266 .color_gains = &pal_color_gains,
267 .burst_levels = &pal_burst_levels,
268 .video_levels = &pal_video_levels,
269 .resync_params = &pal_resync_parameters,
270 },
Maxime Ripard03c4c712015-10-29 09:39:01 +0100271};
272
273static inline struct sun4i_tv *
274drm_encoder_to_sun4i_tv(struct drm_encoder *encoder)
275{
276 return container_of(encoder, struct sun4i_tv,
277 encoder);
278}
279
280static inline struct sun4i_tv *
281drm_connector_to_sun4i_tv(struct drm_connector *connector)
282{
283 return container_of(connector, struct sun4i_tv,
284 connector);
285}
286
287/*
288 * FIXME: If only the drm_display_mode private field was usable, this
289 * could go away...
290 *
291 * So far, it doesn't seem to be preserved when the mode is passed by
292 * to mode_set for some reason.
293 */
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300294static const struct tv_mode *sun4i_tv_find_tv_by_mode(const struct drm_display_mode *mode)
Maxime Ripard03c4c712015-10-29 09:39:01 +0100295{
296 int i;
297
298 /* First try to identify the mode by name */
299 for (i = 0; i < ARRAY_SIZE(tv_modes); i++) {
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300300 const struct tv_mode *tv_mode = &tv_modes[i];
Maxime Ripard03c4c712015-10-29 09:39:01 +0100301
302 DRM_DEBUG_DRIVER("Comparing mode %s vs %s",
303 mode->name, tv_mode->name);
304
305 if (!strcmp(mode->name, tv_mode->name))
306 return tv_mode;
307 }
308
309 /* Then by number of lines */
310 for (i = 0; i < ARRAY_SIZE(tv_modes); i++) {
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300311 const struct tv_mode *tv_mode = &tv_modes[i];
Maxime Ripard03c4c712015-10-29 09:39:01 +0100312
313 DRM_DEBUG_DRIVER("Comparing mode %s vs %s (X: %d vs %d)",
314 mode->name, tv_mode->name,
315 mode->vdisplay, tv_mode->vdisplay);
316
317 if (mode->vdisplay == tv_mode->vdisplay)
318 return tv_mode;
319 }
320
321 return NULL;
322}
323
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300324static void sun4i_tv_mode_to_drm_mode(const struct tv_mode *tv_mode,
Maxime Ripard03c4c712015-10-29 09:39:01 +0100325 struct drm_display_mode *mode)
326{
327 DRM_DEBUG_DRIVER("Creating mode %s\n", mode->name);
328
329 mode->type = DRM_MODE_TYPE_DRIVER;
330 mode->clock = 13500;
331 mode->flags = DRM_MODE_FLAG_INTERLACE;
332
333 mode->hdisplay = tv_mode->hdisplay;
334 mode->hsync_start = mode->hdisplay + tv_mode->hfront_porch;
335 mode->hsync_end = mode->hsync_start + tv_mode->hsync_len;
336 mode->htotal = mode->hsync_end + tv_mode->hback_porch;
337
338 mode->vdisplay = tv_mode->vdisplay;
339 mode->vsync_start = mode->vdisplay + tv_mode->vfront_porch;
340 mode->vsync_end = mode->vsync_start + tv_mode->vsync_len;
341 mode->vtotal = mode->vsync_end + tv_mode->vback_porch;
342}
343
Maxime Ripard03c4c712015-10-29 09:39:01 +0100344static void sun4i_tv_disable(struct drm_encoder *encoder)
345{
346 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder);
Chen-Yu Tsai279156a2017-03-09 18:05:27 +0800347 struct sun4i_crtc *crtc = drm_crtc_to_sun4i_crtc(encoder->crtc);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100348
349 DRM_DEBUG_DRIVER("Disabling the TV Output\n");
350
Maxime Ripard03c4c712015-10-29 09:39:01 +0100351 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG,
352 SUN4I_TVE_EN_ENABLE,
353 0);
Icenowy Zheng87969332017-05-17 22:47:17 +0800354
355 sunxi_engine_disable_color_correction(crtc->engine);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100356}
357
358static void sun4i_tv_enable(struct drm_encoder *encoder)
359{
360 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder);
Chen-Yu Tsai279156a2017-03-09 18:05:27 +0800361 struct sun4i_crtc *crtc = drm_crtc_to_sun4i_crtc(encoder->crtc);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100362
363 DRM_DEBUG_DRIVER("Enabling the TV Output\n");
364
Icenowy Zheng87969332017-05-17 22:47:17 +0800365 sunxi_engine_apply_color_correction(crtc->engine);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100366
367 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG,
368 SUN4I_TVE_EN_ENABLE,
369 SUN4I_TVE_EN_ENABLE);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100370}
371
372static void sun4i_tv_mode_set(struct drm_encoder *encoder,
373 struct drm_display_mode *mode,
374 struct drm_display_mode *adjusted_mode)
375{
376 struct sun4i_tv *tv = drm_encoder_to_sun4i_tv(encoder);
Chen-Yu Tsai279156a2017-03-09 18:05:27 +0800377 struct sun4i_crtc *crtc = drm_crtc_to_sun4i_crtc(encoder->crtc);
378 struct sun4i_tcon *tcon = crtc->tcon;
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300379 const struct tv_mode *tv_mode = sun4i_tv_find_tv_by_mode(mode);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100380
381 sun4i_tcon1_mode_set(tcon, mode);
Maxime Ripardf8c73f42017-05-27 18:09:27 +0200382 sun4i_tcon_set_mux(tcon, 1, encoder);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100383
384 /* Enable and map the DAC to the output */
385 regmap_update_bits(tv->regs, SUN4I_TVE_EN_REG,
386 SUN4I_TVE_EN_DAC_MAP_MASK,
387 SUN4I_TVE_EN_DAC_MAP(0, 1) |
388 SUN4I_TVE_EN_DAC_MAP(1, 2) |
389 SUN4I_TVE_EN_DAC_MAP(2, 3) |
390 SUN4I_TVE_EN_DAC_MAP(3, 4));
391
392 /* Set PAL settings */
393 regmap_write(tv->regs, SUN4I_TVE_CFG0_REG,
394 tv_mode->mode |
395 (tv_mode->yc_en ? SUN4I_TVE_CFG0_YC_EN : 0) |
396 SUN4I_TVE_CFG0_COMP_EN |
397 SUN4I_TVE_CFG0_DAC_CONTROL_54M |
398 SUN4I_TVE_CFG0_CORE_DATAPATH_54M |
399 SUN4I_TVE_CFG0_CORE_CONTROL_54M);
400
401 /* Configure the DAC for a composite output */
402 regmap_write(tv->regs, SUN4I_TVE_DAC0_REG,
403 SUN4I_TVE_DAC0_DAC_EN(0) |
404 (tv_mode->dac3_en ? SUN4I_TVE_DAC0_DAC_EN(3) : 0) |
405 SUN4I_TVE_DAC0_INTERNAL_DAC_37_5_OHMS |
406 SUN4I_TVE_DAC0_CHROMA_0_75 |
407 SUN4I_TVE_DAC0_LUMA_0_4 |
408 SUN4I_TVE_DAC0_CLOCK_INVERT |
409 (tv_mode->dac_bit25_en ? BIT(25) : 0) |
410 BIT(30));
411
412 /* Configure the sample delay between DAC0 and the other DAC */
413 regmap_write(tv->regs, SUN4I_TVE_NOTCH_REG,
414 SUN4I_TVE_NOTCH_DAC0_TO_DAC_DLY(1, 0) |
415 SUN4I_TVE_NOTCH_DAC0_TO_DAC_DLY(2, 0));
416
417 regmap_write(tv->regs, SUN4I_TVE_CHROMA_FREQ_REG,
418 tv_mode->chroma_freq);
419
420 /* Set the front and back porch */
421 regmap_write(tv->regs, SUN4I_TVE_PORCH_REG,
422 SUN4I_TVE_PORCH_BACK(tv_mode->back_porch) |
423 SUN4I_TVE_PORCH_FRONT(tv_mode->front_porch));
424
425 /* Set the lines setup */
426 regmap_write(tv->regs, SUN4I_TVE_LINE_REG,
427 SUN4I_TVE_LINE_FIRST(22) |
428 SUN4I_TVE_LINE_NUMBER(tv_mode->line_number));
429
430 regmap_write(tv->regs, SUN4I_TVE_LEVEL_REG,
431 SUN4I_TVE_LEVEL_BLANK(tv_mode->video_levels->blank) |
432 SUN4I_TVE_LEVEL_BLACK(tv_mode->video_levels->black));
433
434 regmap_write(tv->regs, SUN4I_TVE_DAC1_REG,
435 SUN4I_TVE_DAC1_AMPLITUDE(0, 0x18) |
436 SUN4I_TVE_DAC1_AMPLITUDE(1, 0x18) |
437 SUN4I_TVE_DAC1_AMPLITUDE(2, 0x18) |
438 SUN4I_TVE_DAC1_AMPLITUDE(3, 0x18));
439
440 regmap_write(tv->regs, SUN4I_TVE_CB_CR_LVL_REG,
441 SUN4I_TVE_CB_CR_LVL_CB_BURST(tv_mode->burst_levels->cb) |
442 SUN4I_TVE_CB_CR_LVL_CR_BURST(tv_mode->burst_levels->cr));
443
444 /* Set burst width for a composite output */
445 regmap_write(tv->regs, SUN4I_TVE_BURST_WIDTH_REG,
446 SUN4I_TVE_BURST_WIDTH_HSYNC_WIDTH(126) |
447 SUN4I_TVE_BURST_WIDTH_BURST_WIDTH(68) |
448 SUN4I_TVE_BURST_WIDTH_BREEZEWAY(22));
449
450 regmap_write(tv->regs, SUN4I_TVE_CB_CR_GAIN_REG,
451 SUN4I_TVE_CB_CR_GAIN_CB(tv_mode->color_gains->cb) |
452 SUN4I_TVE_CB_CR_GAIN_CR(tv_mode->color_gains->cr));
453
454 regmap_write(tv->regs, SUN4I_TVE_SYNC_VBI_REG,
455 SUN4I_TVE_SYNC_VBI_SYNC(0x10) |
456 SUN4I_TVE_SYNC_VBI_VBLANK(tv_mode->vblank_level));
457
458 regmap_write(tv->regs, SUN4I_TVE_ACTIVE_LINE_REG,
459 SUN4I_TVE_ACTIVE_LINE(1440));
460
461 /* Set composite chroma gain to 50 % */
462 regmap_write(tv->regs, SUN4I_TVE_CHROMA_REG,
463 SUN4I_TVE_CHROMA_COMP_GAIN_50);
464
465 regmap_write(tv->regs, SUN4I_TVE_12C_REG,
466 SUN4I_TVE_12C_COMP_YUV_EN |
467 SUN4I_TVE_12C_NOTCH_WIDTH_WIDE);
468
469 regmap_write(tv->regs, SUN4I_TVE_RESYNC_REG,
470 SUN4I_TVE_RESYNC_PIXEL(tv_mode->resync_params->pixel) |
471 SUN4I_TVE_RESYNC_LINE(tv_mode->resync_params->line) |
472 (tv_mode->resync_params->field ?
473 SUN4I_TVE_RESYNC_FIELD : 0));
474
475 regmap_write(tv->regs, SUN4I_TVE_SLAVE_REG, 0);
Maxime Ripard03c4c712015-10-29 09:39:01 +0100476}
477
478static struct drm_encoder_helper_funcs sun4i_tv_helper_funcs = {
Maxime Ripard03c4c712015-10-29 09:39:01 +0100479 .disable = sun4i_tv_disable,
480 .enable = sun4i_tv_enable,
481 .mode_set = sun4i_tv_mode_set,
482};
483
484static void sun4i_tv_destroy(struct drm_encoder *encoder)
485{
486 drm_encoder_cleanup(encoder);
487}
488
489static struct drm_encoder_funcs sun4i_tv_funcs = {
490 .destroy = sun4i_tv_destroy,
491};
492
493static int sun4i_tv_comp_get_modes(struct drm_connector *connector)
494{
495 int i;
496
497 for (i = 0; i < ARRAY_SIZE(tv_modes); i++) {
Maxime Riparde4192082016-09-19 22:17:51 +0200498 struct drm_display_mode *mode;
Ville Syrjälä15ae0ea2016-09-19 16:33:54 +0300499 const struct tv_mode *tv_mode = &tv_modes[i];
Maxime Ripard03c4c712015-10-29 09:39:01 +0100500
Maxime Riparde4192082016-09-19 22:17:51 +0200501 mode = drm_mode_create(connector->dev);
502 if (!mode) {
503 DRM_ERROR("Failed to create a new display mode\n");
504 return 0;
505 }
506
Maxime Ripard03c4c712015-10-29 09:39:01 +0100507 strcpy(mode->name, tv_mode->name);
508
509 sun4i_tv_mode_to_drm_mode(tv_mode, mode);
510 drm_mode_probed_add(connector, mode);
511 }
512
513 return i;
514}
515
516static int sun4i_tv_comp_mode_valid(struct drm_connector *connector,
517 struct drm_display_mode *mode)
518{
519 /* TODO */
520 return MODE_OK;
521}
522
Maxime Ripard03c4c712015-10-29 09:39:01 +0100523static struct drm_connector_helper_funcs sun4i_tv_comp_connector_helper_funcs = {
524 .get_modes = sun4i_tv_comp_get_modes,
525 .mode_valid = sun4i_tv_comp_mode_valid,
Maxime Ripard03c4c712015-10-29 09:39:01 +0100526};
527
Maxime Ripard03c4c712015-10-29 09:39:01 +0100528static void
529sun4i_tv_comp_connector_destroy(struct drm_connector *connector)
530{
531 drm_connector_cleanup(connector);
532}
533
Bhumika Goyal32b4d572017-08-08 16:58:31 +0530534static const struct drm_connector_funcs sun4i_tv_comp_connector_funcs = {
Maxime Ripard03c4c712015-10-29 09:39:01 +0100535 .fill_modes = drm_helper_probe_single_connector_modes,
536 .destroy = sun4i_tv_comp_connector_destroy,
537 .reset = drm_atomic_helper_connector_reset,
538 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
539 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
540};
541
542static struct regmap_config sun4i_tv_regmap_config = {
543 .reg_bits = 32,
544 .val_bits = 32,
545 .reg_stride = 4,
546 .max_register = SUN4I_TVE_WSS_DATA2_REG,
547 .name = "tv-encoder",
548};
549
550static int sun4i_tv_bind(struct device *dev, struct device *master,
551 void *data)
552{
553 struct platform_device *pdev = to_platform_device(dev);
554 struct drm_device *drm = data;
555 struct sun4i_drv *drv = drm->dev_private;
556 struct sun4i_tv *tv;
557 struct resource *res;
558 void __iomem *regs;
559 int ret;
560
561 tv = devm_kzalloc(dev, sizeof(*tv), GFP_KERNEL);
562 if (!tv)
563 return -ENOMEM;
564 tv->drv = drv;
565 dev_set_drvdata(dev, tv);
566
567 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
568 regs = devm_ioremap_resource(dev, res);
569 if (IS_ERR(regs)) {
570 dev_err(dev, "Couldn't map the TV encoder registers\n");
571 return PTR_ERR(regs);
572 }
573
574 tv->regs = devm_regmap_init_mmio(dev, regs,
575 &sun4i_tv_regmap_config);
576 if (IS_ERR(tv->regs)) {
577 dev_err(dev, "Couldn't create the TV encoder regmap\n");
578 return PTR_ERR(tv->regs);
579 }
580
581 tv->reset = devm_reset_control_get(dev, NULL);
582 if (IS_ERR(tv->reset)) {
583 dev_err(dev, "Couldn't get our reset line\n");
584 return PTR_ERR(tv->reset);
585 }
586
587 ret = reset_control_deassert(tv->reset);
588 if (ret) {
589 dev_err(dev, "Couldn't deassert our reset line\n");
590 return ret;
591 }
592
593 tv->clk = devm_clk_get(dev, NULL);
594 if (IS_ERR(tv->clk)) {
595 dev_err(dev, "Couldn't get the TV encoder clock\n");
596 ret = PTR_ERR(tv->clk);
597 goto err_assert_reset;
598 }
599 clk_prepare_enable(tv->clk);
600
601 drm_encoder_helper_add(&tv->encoder,
602 &sun4i_tv_helper_funcs);
603 ret = drm_encoder_init(drm,
604 &tv->encoder,
605 &sun4i_tv_funcs,
606 DRM_MODE_ENCODER_TVDAC,
607 NULL);
608 if (ret) {
609 dev_err(dev, "Couldn't initialise the TV encoder\n");
610 goto err_disable_clk;
611 }
612
Chen-Yu Tsai78428d62017-02-23 16:05:40 +0800613 tv->encoder.possible_crtcs = drm_of_find_possible_crtcs(drm,
614 dev->of_node);
615 if (!tv->encoder.possible_crtcs) {
616 ret = -EPROBE_DEFER;
617 goto err_disable_clk;
618 }
Maxime Ripard03c4c712015-10-29 09:39:01 +0100619
620 drm_connector_helper_add(&tv->connector,
621 &sun4i_tv_comp_connector_helper_funcs);
622 ret = drm_connector_init(drm, &tv->connector,
623 &sun4i_tv_comp_connector_funcs,
624 DRM_MODE_CONNECTOR_Composite);
625 if (ret) {
626 dev_err(dev,
627 "Couldn't initialise the Composite connector\n");
628 goto err_cleanup_connector;
629 }
630 tv->connector.interlace_allowed = true;
631
632 drm_mode_connector_attach_encoder(&tv->connector, &tv->encoder);
633
634 return 0;
635
636err_cleanup_connector:
637 drm_encoder_cleanup(&tv->encoder);
638err_disable_clk:
639 clk_disable_unprepare(tv->clk);
640err_assert_reset:
641 reset_control_assert(tv->reset);
642 return ret;
643}
644
645static void sun4i_tv_unbind(struct device *dev, struct device *master,
646 void *data)
647{
648 struct sun4i_tv *tv = dev_get_drvdata(dev);
649
650 drm_connector_cleanup(&tv->connector);
651 drm_encoder_cleanup(&tv->encoder);
652 clk_disable_unprepare(tv->clk);
653}
654
Julia Lawalldfeb6932016-11-12 18:19:58 +0100655static const struct component_ops sun4i_tv_ops = {
Maxime Ripard03c4c712015-10-29 09:39:01 +0100656 .bind = sun4i_tv_bind,
657 .unbind = sun4i_tv_unbind,
658};
659
660static int sun4i_tv_probe(struct platform_device *pdev)
661{
662 return component_add(&pdev->dev, &sun4i_tv_ops);
663}
664
665static int sun4i_tv_remove(struct platform_device *pdev)
666{
667 component_del(&pdev->dev, &sun4i_tv_ops);
668
669 return 0;
670}
671
672static const struct of_device_id sun4i_tv_of_table[] = {
673 { .compatible = "allwinner,sun4i-a10-tv-encoder" },
674 { }
675};
676MODULE_DEVICE_TABLE(of, sun4i_tv_of_table);
677
678static struct platform_driver sun4i_tv_platform_driver = {
679 .probe = sun4i_tv_probe,
680 .remove = sun4i_tv_remove,
681 .driver = {
682 .name = "sun4i-tve",
683 .of_match_table = sun4i_tv_of_table,
684 },
685};
686module_platform_driver(sun4i_tv_platform_driver);
687
688MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
689MODULE_DESCRIPTION("Allwinner A10 TV Encoder Driver");
690MODULE_LICENSE("GPL");