Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / drivers / gpu / drm / sun4i / sun4i_rgb.c
blobf5bbac6efb4c8c01e5f7cd709de037f168a92eb6
1 /*
2 * Copyright (C) 2015 Free Electrons
3 * Copyright (C) 2015 NextThing Co
5 * Maxime Ripard <maxime.ripard@free-electrons.com>
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.
13 #include <linux/clk.h>
15 #include <drm/drmP.h>
16 #include <drm/drm_atomic_helper.h>
17 #include <drm/drm_crtc_helper.h>
18 #include <drm/drm_panel.h>
20 #include "sun4i_drv.h"
21 #include "sun4i_tcon.h"
23 struct sun4i_rgb {
24 struct drm_connector connector;
25 struct drm_encoder encoder;
27 struct sun4i_drv *drv;
30 static inline struct sun4i_rgb *
31 drm_connector_to_sun4i_rgb(struct drm_connector *connector)
33 return container_of(connector, struct sun4i_rgb,
34 connector);
37 static inline struct sun4i_rgb *
38 drm_encoder_to_sun4i_rgb(struct drm_encoder *encoder)
40 return container_of(encoder, struct sun4i_rgb,
41 encoder);
44 static int sun4i_rgb_get_modes(struct drm_connector *connector)
46 struct sun4i_rgb *rgb =
47 drm_connector_to_sun4i_rgb(connector);
48 struct sun4i_drv *drv = rgb->drv;
49 struct sun4i_tcon *tcon = drv->tcon;
51 return drm_panel_get_modes(tcon->panel);
54 static int sun4i_rgb_mode_valid(struct drm_connector *connector,
55 struct drm_display_mode *mode)
57 struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
58 struct sun4i_drv *drv = rgb->drv;
59 struct sun4i_tcon *tcon = drv->tcon;
60 u32 hsync = mode->hsync_end - mode->hsync_start;
61 u32 vsync = mode->vsync_end - mode->vsync_start;
62 unsigned long rate = mode->clock * 1000;
63 long rounded_rate;
65 DRM_DEBUG_DRIVER("Validating modes...\n");
67 if (hsync < 1)
68 return MODE_HSYNC_NARROW;
70 if (hsync > 0x3ff)
71 return MODE_HSYNC_WIDE;
73 if ((mode->hdisplay < 1) || (mode->htotal < 1))
74 return MODE_H_ILLEGAL;
76 if ((mode->hdisplay > 0x7ff) || (mode->htotal > 0xfff))
77 return MODE_BAD_HVALUE;
79 DRM_DEBUG_DRIVER("Horizontal parameters OK\n");
81 if (vsync < 1)
82 return MODE_VSYNC_NARROW;
84 if (vsync > 0x3ff)
85 return MODE_VSYNC_WIDE;
87 if ((mode->vdisplay < 1) || (mode->vtotal < 1))
88 return MODE_V_ILLEGAL;
90 if ((mode->vdisplay > 0x7ff) || (mode->vtotal > 0xfff))
91 return MODE_BAD_VVALUE;
93 DRM_DEBUG_DRIVER("Vertical parameters OK\n");
95 rounded_rate = clk_round_rate(tcon->dclk, rate);
96 if (rounded_rate < rate)
97 return MODE_CLOCK_LOW;
99 if (rounded_rate > rate)
100 return MODE_CLOCK_HIGH;
102 DRM_DEBUG_DRIVER("Clock rate OK\n");
104 return MODE_OK;
107 static struct drm_connector_helper_funcs sun4i_rgb_con_helper_funcs = {
108 .get_modes = sun4i_rgb_get_modes,
109 .mode_valid = sun4i_rgb_mode_valid,
112 static enum drm_connector_status
113 sun4i_rgb_connector_detect(struct drm_connector *connector, bool force)
115 return connector_status_connected;
118 static void
119 sun4i_rgb_connector_destroy(struct drm_connector *connector)
121 struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
122 struct sun4i_drv *drv = rgb->drv;
123 struct sun4i_tcon *tcon = drv->tcon;
125 drm_panel_detach(tcon->panel);
126 drm_connector_cleanup(connector);
129 static struct drm_connector_funcs sun4i_rgb_con_funcs = {
130 .dpms = drm_atomic_helper_connector_dpms,
131 .detect = sun4i_rgb_connector_detect,
132 .fill_modes = drm_helper_probe_single_connector_modes,
133 .destroy = sun4i_rgb_connector_destroy,
134 .reset = drm_atomic_helper_connector_reset,
135 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
136 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
139 static int sun4i_rgb_atomic_check(struct drm_encoder *encoder,
140 struct drm_crtc_state *crtc_state,
141 struct drm_connector_state *conn_state)
143 return 0;
146 static void sun4i_rgb_encoder_enable(struct drm_encoder *encoder)
148 struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
149 struct sun4i_drv *drv = rgb->drv;
150 struct sun4i_tcon *tcon = drv->tcon;
152 DRM_DEBUG_DRIVER("Enabling RGB output\n");
154 drm_panel_enable(tcon->panel);
155 sun4i_tcon_channel_enable(tcon, 0);
158 static void sun4i_rgb_encoder_disable(struct drm_encoder *encoder)
160 struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
161 struct sun4i_drv *drv = rgb->drv;
162 struct sun4i_tcon *tcon = drv->tcon;
164 DRM_DEBUG_DRIVER("Disabling RGB output\n");
166 sun4i_tcon_channel_disable(tcon, 0);
167 drm_panel_disable(tcon->panel);
170 static void sun4i_rgb_encoder_mode_set(struct drm_encoder *encoder,
171 struct drm_display_mode *mode,
172 struct drm_display_mode *adjusted_mode)
174 struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
175 struct sun4i_drv *drv = rgb->drv;
176 struct sun4i_tcon *tcon = drv->tcon;
178 sun4i_tcon0_mode_set(tcon, mode);
180 clk_set_rate(tcon->dclk, mode->crtc_clock * 1000);
182 /* FIXME: This seems to be board specific */
183 clk_set_phase(tcon->dclk, 120);
186 static struct drm_encoder_helper_funcs sun4i_rgb_enc_helper_funcs = {
187 .atomic_check = sun4i_rgb_atomic_check,
188 .mode_set = sun4i_rgb_encoder_mode_set,
189 .disable = sun4i_rgb_encoder_disable,
190 .enable = sun4i_rgb_encoder_enable,
193 static void sun4i_rgb_enc_destroy(struct drm_encoder *encoder)
195 drm_encoder_cleanup(encoder);
198 static struct drm_encoder_funcs sun4i_rgb_enc_funcs = {
199 .destroy = sun4i_rgb_enc_destroy,
202 int sun4i_rgb_init(struct drm_device *drm)
204 struct sun4i_drv *drv = drm->dev_private;
205 struct sun4i_tcon *tcon = drv->tcon;
206 struct sun4i_rgb *rgb;
207 int ret;
209 /* If we don't have a panel, there's no point in going on */
210 if (IS_ERR(tcon->panel))
211 return -ENODEV;
213 rgb = devm_kzalloc(drm->dev, sizeof(*rgb), GFP_KERNEL);
214 if (!rgb)
215 return -ENOMEM;
216 rgb->drv = drv;
218 drm_encoder_helper_add(&rgb->encoder,
219 &sun4i_rgb_enc_helper_funcs);
220 ret = drm_encoder_init(drm,
221 &rgb->encoder,
222 &sun4i_rgb_enc_funcs,
223 DRM_MODE_ENCODER_NONE,
224 NULL);
225 if (ret) {
226 dev_err(drm->dev, "Couldn't initialise the rgb encoder\n");
227 goto err_out;
230 /* The RGB encoder can only work with the TCON channel 0 */
231 rgb->encoder.possible_crtcs = BIT(0);
233 drm_connector_helper_add(&rgb->connector,
234 &sun4i_rgb_con_helper_funcs);
235 ret = drm_connector_init(drm, &rgb->connector,
236 &sun4i_rgb_con_funcs,
237 DRM_MODE_CONNECTOR_Unknown);
238 if (ret) {
239 dev_err(drm->dev, "Couldn't initialise the rgb connector\n");
240 goto err_cleanup_connector;
243 drm_mode_connector_attach_encoder(&rgb->connector, &rgb->encoder);
245 drm_panel_attach(tcon->panel, &rgb->connector);
247 return 0;
249 err_cleanup_connector:
250 drm_encoder_cleanup(&rgb->encoder);
251 err_out:
252 return ret;
254 EXPORT_SYMBOL(sun4i_rgb_init);