blob: b62763aa87069fb3eccb9787dfe73f6ae33a45e2 [file] [log] [blame]
Andy Yanb21f4b62014-12-05 14:26:31 +08001/* Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
2 *
3 * derived from imx-hdmi.c(renamed to bridge/dw_hdmi.c now)
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#include <linux/module.h>
10#include <linux/platform_device.h>
11#include <linux/component.h>
12#include <linux/mfd/syscon.h>
13#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
14#include <drm/bridge/dw_hdmi.h>
15#include <video/imx-ipu-v3.h>
16#include <linux/regmap.h>
17#include <drm/drm_of.h>
18#include <drm/drmP.h>
19#include <drm/drm_crtc_helper.h>
20#include <drm/drm_edid.h>
21#include <drm/drm_encoder_slave.h>
22
23#include "imx-drm.h"
24
25struct imx_hdmi {
26 struct device *dev;
Philipp Zabel49f98bc2016-07-06 14:49:24 +020027 struct drm_encoder encoder;
Andy Yanb21f4b62014-12-05 14:26:31 +080028 struct regmap *regmap;
29};
30
Philipp Zabel49f98bc2016-07-06 14:49:24 +020031static inline struct imx_hdmi *enc_to_imx_hdmi(struct drm_encoder *e)
32{
33 return container_of(e, struct imx_hdmi, encoder);
34}
35
Andy Yanb21f4b62014-12-05 14:26:31 +080036static const struct dw_hdmi_mpll_config imx_mpll_cfg[] = {
37 {
38 45250000, {
39 { 0x01e0, 0x0000 },
40 { 0x21e1, 0x0000 },
41 { 0x41e2, 0x0000 }
42 },
43 }, {
44 92500000, {
45 { 0x0140, 0x0005 },
46 { 0x2141, 0x0005 },
47 { 0x4142, 0x0005 },
48 },
49 }, {
50 148500000, {
51 { 0x00a0, 0x000a },
52 { 0x20a1, 0x000a },
53 { 0x40a2, 0x000a },
54 },
55 }, {
Lucas Stacha5f41852015-10-15 15:42:17 +020056 216000000, {
Andy Yanb21f4b62014-12-05 14:26:31 +080057 { 0x00a0, 0x000a },
58 { 0x2001, 0x000f },
59 { 0x4002, 0x000f },
60 },
Lucas Stacha5f41852015-10-15 15:42:17 +020061 }, {
62 ~0UL, {
63 { 0x0000, 0x0000 },
64 { 0x0000, 0x0000 },
65 { 0x0000, 0x0000 },
66 },
Andy Yanb21f4b62014-12-05 14:26:31 +080067 }
68};
69
70static const struct dw_hdmi_curr_ctrl imx_cur_ctr[] = {
71 /* pixelclk bpp8 bpp10 bpp12 */
72 {
73 54000000, { 0x091c, 0x091c, 0x06dc },
74 }, {
75 58400000, { 0x091c, 0x06dc, 0x06dc },
76 }, {
77 72000000, { 0x06dc, 0x06dc, 0x091c },
78 }, {
79 74250000, { 0x06dc, 0x0b5c, 0x091c },
80 }, {
81 118800000, { 0x091c, 0x091c, 0x06dc },
82 }, {
83 216000000, { 0x06dc, 0x0b5c, 0x091c },
Philipp Zabel6e8958e2015-01-07 23:49:41 +010084 }, {
85 ~0UL, { 0x0000, 0x0000, 0x0000 },
86 },
Andy Yanb21f4b62014-12-05 14:26:31 +080087};
88
Russell King36b8ae02015-03-31 18:23:16 +010089/*
90 * Resistance term 133Ohm Cfg
91 * PREEMP config 0.00
92 * TX/CK level 10
93 */
Yakir Yang034705a2015-03-31 23:56:10 -040094static const struct dw_hdmi_phy_config imx_phy_config[] = {
95 /*pixelclk symbol term vlev */
Lucas Stacha5f41852015-10-15 15:42:17 +020096 { 216000000, 0x800d, 0x0005, 0x01ad},
Yakir Yang034705a2015-03-31 23:56:10 -040097 { ~0UL, 0x0000, 0x0000, 0x0000}
Andy Yanb21f4b62014-12-05 14:26:31 +080098};
99
100static int dw_hdmi_imx_parse_dt(struct imx_hdmi *hdmi)
101{
102 struct device_node *np = hdmi->dev->of_node;
103
104 hdmi->regmap = syscon_regmap_lookup_by_phandle(np, "gpr");
105 if (IS_ERR(hdmi->regmap)) {
106 dev_err(hdmi->dev, "Unable to get gpr\n");
107 return PTR_ERR(hdmi->regmap);
108 }
109
110 return 0;
111}
112
113static void dw_hdmi_imx_encoder_disable(struct drm_encoder *encoder)
114{
115}
116
Liu Yingf6e396e2016-07-08 17:41:01 +0800117static void dw_hdmi_imx_encoder_enable(struct drm_encoder *encoder)
Andy Yanb21f4b62014-12-05 14:26:31 +0800118{
Philipp Zabel49f98bc2016-07-06 14:49:24 +0200119 struct imx_hdmi *hdmi = enc_to_imx_hdmi(encoder);
Philipp Zabel53141e42015-02-24 11:41:28 +0100120 int mux = drm_of_encoder_active_port_id(hdmi->dev->of_node, encoder);
Andy Yanb21f4b62014-12-05 14:26:31 +0800121
122 regmap_update_bits(hdmi->regmap, IOMUXC_GPR3,
123 IMX6Q_GPR3_HDMI_MUX_CTL_MASK,
124 mux << IMX6Q_GPR3_HDMI_MUX_CTL_SHIFT);
125}
126
Philipp Zabel49f98bc2016-07-06 14:49:24 +0200127static int dw_hdmi_imx_atomic_check(struct drm_encoder *encoder,
128 struct drm_crtc_state *crtc_state,
129 struct drm_connector_state *conn_state)
130{
131 struct imx_crtc_state *imx_crtc_state = to_imx_crtc_state(crtc_state);
132
133 imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB888_1X24;
134 imx_crtc_state->di_hsync_pin = 2;
135 imx_crtc_state->di_vsync_pin = 3;
136
137 return 0;
138}
139
Ville Syrjälä7ae847d2015-12-15 12:21:09 +0100140static const struct drm_encoder_helper_funcs dw_hdmi_imx_encoder_helper_funcs = {
Liu Yingf6e396e2016-07-08 17:41:01 +0800141 .enable = dw_hdmi_imx_encoder_enable,
Andy Yanb21f4b62014-12-05 14:26:31 +0800142 .disable = dw_hdmi_imx_encoder_disable,
Philipp Zabel49f98bc2016-07-06 14:49:24 +0200143 .atomic_check = dw_hdmi_imx_atomic_check,
Andy Yanb21f4b62014-12-05 14:26:31 +0800144};
145
Ville Syrjälä7ae847d2015-12-15 12:21:09 +0100146static const struct drm_encoder_funcs dw_hdmi_imx_encoder_funcs = {
Andy Yanb21f4b62014-12-05 14:26:31 +0800147 .destroy = drm_encoder_cleanup,
148};
149
Jose Abreub0febde2017-05-25 15:19:19 +0100150static enum drm_mode_status
151imx6q_hdmi_mode_valid(struct drm_connector *con,
152 const struct drm_display_mode *mode)
Philipp Zabel081c80e2015-01-07 23:52:15 +0100153{
154 if (mode->clock < 13500)
155 return MODE_CLOCK_LOW;
Lucas Stacha5f41852015-10-15 15:42:17 +0200156 /* FIXME: Hardware is capable of 266MHz, but setup data is missing. */
157 if (mode->clock > 216000)
Philipp Zabel081c80e2015-01-07 23:52:15 +0100158 return MODE_CLOCK_HIGH;
159
160 return MODE_OK;
161}
162
Jose Abreub0febde2017-05-25 15:19:19 +0100163static enum drm_mode_status
164imx6dl_hdmi_mode_valid(struct drm_connector *con,
165 const struct drm_display_mode *mode)
Philipp Zabel081c80e2015-01-07 23:52:15 +0100166{
167 if (mode->clock < 13500)
168 return MODE_CLOCK_LOW;
Lucas Stacha5f41852015-10-15 15:42:17 +0200169 /* FIXME: Hardware is capable of 270MHz, but setup data is missing. */
170 if (mode->clock > 216000)
Philipp Zabel081c80e2015-01-07 23:52:15 +0100171 return MODE_CLOCK_HIGH;
172
173 return MODE_OK;
174}
175
Andy Yanb21f4b62014-12-05 14:26:31 +0800176static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = {
Philipp Zabel081c80e2015-01-07 23:52:15 +0100177 .mpll_cfg = imx_mpll_cfg,
178 .cur_ctr = imx_cur_ctr,
Yakir Yang034705a2015-03-31 23:56:10 -0400179 .phy_config = imx_phy_config,
Philipp Zabel081c80e2015-01-07 23:52:15 +0100180 .mode_valid = imx6q_hdmi_mode_valid,
Andy Yanb21f4b62014-12-05 14:26:31 +0800181};
182
183static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = {
184 .mpll_cfg = imx_mpll_cfg,
185 .cur_ctr = imx_cur_ctr,
Yakir Yang034705a2015-03-31 23:56:10 -0400186 .phy_config = imx_phy_config,
Philipp Zabel081c80e2015-01-07 23:52:15 +0100187 .mode_valid = imx6dl_hdmi_mode_valid,
Andy Yanb21f4b62014-12-05 14:26:31 +0800188};
189
190static const struct of_device_id dw_hdmi_imx_dt_ids[] = {
191 { .compatible = "fsl,imx6q-hdmi",
192 .data = &imx6q_hdmi_drv_data
193 }, {
194 .compatible = "fsl,imx6dl-hdmi",
195 .data = &imx6dl_hdmi_drv_data
196 },
197 {},
198};
199MODULE_DEVICE_TABLE(of, dw_hdmi_imx_dt_ids);
200
201static int dw_hdmi_imx_bind(struct device *dev, struct device *master,
202 void *data)
203{
204 struct platform_device *pdev = to_platform_device(dev);
205 const struct dw_hdmi_plat_data *plat_data;
206 const struct of_device_id *match;
207 struct drm_device *drm = data;
208 struct drm_encoder *encoder;
209 struct imx_hdmi *hdmi;
Andy Yanb21f4b62014-12-05 14:26:31 +0800210 int ret;
211
212 if (!pdev->dev.of_node)
213 return -ENODEV;
214
215 hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
216 if (!hdmi)
217 return -ENOMEM;
218
219 match = of_match_node(dw_hdmi_imx_dt_ids, pdev->dev.of_node);
220 plat_data = match->data;
221 hdmi->dev = &pdev->dev;
Philipp Zabel49f98bc2016-07-06 14:49:24 +0200222 encoder = &hdmi->encoder;
Andy Yanb21f4b62014-12-05 14:26:31 +0800223
Andy Yanb21f4b62014-12-05 14:26:31 +0800224 encoder->possible_crtcs = drm_of_find_possible_crtcs(drm, dev->of_node);
225 /*
226 * If we failed to find the CRTC(s) which this encoder is
227 * supposed to be connected to, it's because the CRTC has
228 * not been registered yet. Defer probing, and hope that
229 * the required CRTC is added later.
230 */
231 if (encoder->possible_crtcs == 0)
232 return -EPROBE_DEFER;
233
234 ret = dw_hdmi_imx_parse_dt(hdmi);
235 if (ret < 0)
236 return ret;
237
238 drm_encoder_helper_add(encoder, &dw_hdmi_imx_encoder_helper_funcs);
239 drm_encoder_init(drm, encoder, &dw_hdmi_imx_encoder_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +0200240 DRM_MODE_ENCODER_TMDS, NULL);
Andy Yanb21f4b62014-12-05 14:26:31 +0800241
Laurent Pinchartc6081192017-01-17 10:28:57 +0200242 ret = dw_hdmi_bind(pdev, encoder, plat_data);
Douglas Anderson788c8dd2016-03-07 14:00:51 -0800243
244 /*
245 * If dw_hdmi_bind() fails we'll never call dw_hdmi_unbind(),
246 * which would have called the encoder cleanup. Do it manually.
247 */
248 if (ret)
249 drm_encoder_cleanup(encoder);
250
251 return ret;
Andy Yanb21f4b62014-12-05 14:26:31 +0800252}
253
254static void dw_hdmi_imx_unbind(struct device *dev, struct device *master,
255 void *data)
256{
Laurent Pinchartecaa98f2017-01-17 10:28:52 +0200257 return dw_hdmi_unbind(dev);
Andy Yanb21f4b62014-12-05 14:26:31 +0800258}
259
260static const struct component_ops dw_hdmi_imx_ops = {
261 .bind = dw_hdmi_imx_bind,
262 .unbind = dw_hdmi_imx_unbind,
263};
264
265static int dw_hdmi_imx_probe(struct platform_device *pdev)
266{
267 return component_add(&pdev->dev, &dw_hdmi_imx_ops);
268}
269
270static int dw_hdmi_imx_remove(struct platform_device *pdev)
271{
272 component_del(&pdev->dev, &dw_hdmi_imx_ops);
273
274 return 0;
275}
276
277static struct platform_driver dw_hdmi_imx_platform_driver = {
278 .probe = dw_hdmi_imx_probe,
279 .remove = dw_hdmi_imx_remove,
280 .driver = {
281 .name = "dwhdmi-imx",
282 .of_match_table = dw_hdmi_imx_dt_ids,
283 },
284};
285
286module_platform_driver(dw_hdmi_imx_platform_driver);
287
288MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
289MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
290MODULE_DESCRIPTION("IMX6 Specific DW-HDMI Driver Extension");
291MODULE_LICENSE("GPL");
292MODULE_ALIAS("platform:dwhdmi-imx");