Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / drivers / gpu / drm / sun4i / sun4i_rgb.c
blob832f8f9bc47fd046baebde3af7c4d406b301a40c
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_of.h>
19 #include <drm/drm_panel.h>
21 #include "sun4i_crtc.h"
22 #include "sun4i_tcon.h"
23 #include "sun4i_rgb.h"
25 struct sun4i_rgb {
26 struct drm_connector connector;
27 struct drm_encoder encoder;
29 struct sun4i_tcon *tcon;
32 static inline struct sun4i_rgb *
33 drm_connector_to_sun4i_rgb(struct drm_connector *connector)
35 return container_of(connector, struct sun4i_rgb,
36 connector);
39 static inline struct sun4i_rgb *
40 drm_encoder_to_sun4i_rgb(struct drm_encoder *encoder)
42 return container_of(encoder, struct sun4i_rgb,
43 encoder);
46 static int sun4i_rgb_get_modes(struct drm_connector *connector)
48 struct sun4i_rgb *rgb =
49 drm_connector_to_sun4i_rgb(connector);
50 struct sun4i_tcon *tcon = rgb->tcon;
52 return drm_panel_get_modes(tcon->panel);
55 static int sun4i_rgb_mode_valid(struct drm_connector *connector,
56 struct drm_display_mode *mode)
58 struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
59 struct sun4i_tcon *tcon = rgb->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 void
113 sun4i_rgb_connector_destroy(struct drm_connector *connector)
115 struct sun4i_rgb *rgb = drm_connector_to_sun4i_rgb(connector);
116 struct sun4i_tcon *tcon = rgb->tcon;
118 drm_panel_detach(tcon->panel);
119 drm_connector_cleanup(connector);
122 static const struct drm_connector_funcs sun4i_rgb_con_funcs = {
123 .fill_modes = drm_helper_probe_single_connector_modes,
124 .destroy = sun4i_rgb_connector_destroy,
125 .reset = drm_atomic_helper_connector_reset,
126 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
127 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
130 static void sun4i_rgb_encoder_enable(struct drm_encoder *encoder)
132 struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
133 struct sun4i_tcon *tcon = rgb->tcon;
135 DRM_DEBUG_DRIVER("Enabling RGB output\n");
137 if (!IS_ERR(tcon->panel)) {
138 drm_panel_prepare(tcon->panel);
139 drm_panel_enable(tcon->panel);
143 static void sun4i_rgb_encoder_disable(struct drm_encoder *encoder)
145 struct sun4i_rgb *rgb = drm_encoder_to_sun4i_rgb(encoder);
146 struct sun4i_tcon *tcon = rgb->tcon;
148 DRM_DEBUG_DRIVER("Disabling RGB output\n");
150 if (!IS_ERR(tcon->panel)) {
151 drm_panel_disable(tcon->panel);
152 drm_panel_unprepare(tcon->panel);
156 static struct drm_encoder_helper_funcs sun4i_rgb_enc_helper_funcs = {
157 .disable = sun4i_rgb_encoder_disable,
158 .enable = sun4i_rgb_encoder_enable,
161 static void sun4i_rgb_enc_destroy(struct drm_encoder *encoder)
163 drm_encoder_cleanup(encoder);
166 static struct drm_encoder_funcs sun4i_rgb_enc_funcs = {
167 .destroy = sun4i_rgb_enc_destroy,
170 int sun4i_rgb_init(struct drm_device *drm, struct sun4i_tcon *tcon)
172 struct drm_encoder *encoder;
173 struct drm_bridge *bridge;
174 struct sun4i_rgb *rgb;
175 int ret;
177 rgb = devm_kzalloc(drm->dev, sizeof(*rgb), GFP_KERNEL);
178 if (!rgb)
179 return -ENOMEM;
180 rgb->tcon = tcon;
181 encoder = &rgb->encoder;
183 ret = drm_of_find_panel_or_bridge(tcon->dev->of_node, 1, 0,
184 &tcon->panel, &bridge);
185 if (ret) {
186 dev_info(drm->dev, "No panel or bridge found... RGB output disabled\n");
187 return 0;
190 drm_encoder_helper_add(&rgb->encoder,
191 &sun4i_rgb_enc_helper_funcs);
192 ret = drm_encoder_init(drm,
193 &rgb->encoder,
194 &sun4i_rgb_enc_funcs,
195 DRM_MODE_ENCODER_NONE,
196 NULL);
197 if (ret) {
198 dev_err(drm->dev, "Couldn't initialise the rgb encoder\n");
199 goto err_out;
202 /* The RGB encoder can only work with the TCON channel 0 */
203 rgb->encoder.possible_crtcs = BIT(drm_crtc_index(&tcon->crtc->crtc));
205 if (tcon->panel) {
206 drm_connector_helper_add(&rgb->connector,
207 &sun4i_rgb_con_helper_funcs);
208 ret = drm_connector_init(drm, &rgb->connector,
209 &sun4i_rgb_con_funcs,
210 DRM_MODE_CONNECTOR_Unknown);
211 if (ret) {
212 dev_err(drm->dev, "Couldn't initialise the rgb connector\n");
213 goto err_cleanup_connector;
216 drm_mode_connector_attach_encoder(&rgb->connector,
217 &rgb->encoder);
219 ret = drm_panel_attach(tcon->panel, &rgb->connector);
220 if (ret) {
221 dev_err(drm->dev, "Couldn't attach our panel\n");
222 goto err_cleanup_connector;
226 if (bridge) {
227 ret = drm_bridge_attach(encoder, bridge, NULL);
228 if (ret) {
229 dev_err(drm->dev, "Couldn't attach our bridge\n");
230 goto err_cleanup_connector;
234 return 0;
236 err_cleanup_connector:
237 drm_encoder_cleanup(&rgb->encoder);
238 err_out:
239 return ret;
241 EXPORT_SYMBOL(sun4i_rgb_init);