Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/* Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
  3 *
  4 * derived from imx-hdmi.c(renamed to bridge/dw_hdmi.c now)
 
 
 
 
  5 */
  6
 
  7#include <linux/component.h>
  8#include <linux/mfd/syscon.h>
  9#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
 10#include <linux/module.h>
 11#include <linux/platform_device.h>
 12#include <linux/regmap.h>
 13
 14#include <video/imx-ipu-v3.h>
 15
 16#include <drm/bridge/dw_hdmi.h>
 17#include <drm/drm_atomic_helper.h>
 18#include <drm/drm_bridge.h>
 19#include <drm/drm_edid.h>
 20#include <drm/drm_encoder.h>
 21#include <drm/drm_managed.h>
 22#include <drm/drm_of.h>
 23#include <drm/drm_simple_kms_helper.h>
 
 
 
 24
 25#include "imx-drm.h"
 26
 27struct imx_hdmi;
 28
 29struct imx_hdmi_encoder {
 30	struct drm_encoder encoder;
 31	struct imx_hdmi *hdmi;
 32};
 33
 34struct imx_hdmi {
 35	struct device *dev;
 36	struct drm_bridge *bridge;
 37	struct dw_hdmi *hdmi;
 38	struct regmap *regmap;
 39};
 40
 41static inline struct imx_hdmi *enc_to_imx_hdmi(struct drm_encoder *e)
 42{
 43	return container_of(e, struct imx_hdmi_encoder, encoder)->hdmi;
 44}
 45
 46static const struct dw_hdmi_mpll_config imx_mpll_cfg[] = {
 47	{
 48		45250000, {
 49			{ 0x01e0, 0x0000 },
 50			{ 0x21e1, 0x0000 },
 51			{ 0x41e2, 0x0000 }
 52		},
 53	}, {
 54		92500000, {
 55			{ 0x0140, 0x0005 },
 56			{ 0x2141, 0x0005 },
 57			{ 0x4142, 0x0005 },
 58	},
 59	}, {
 60		148500000, {
 61			{ 0x00a0, 0x000a },
 62			{ 0x20a1, 0x000a },
 63			{ 0x40a2, 0x000a },
 64		},
 65	}, {
 66		216000000, {
 67			{ 0x00a0, 0x000a },
 68			{ 0x2001, 0x000f },
 69			{ 0x4002, 0x000f },
 70		},
 71	}, {
 72		~0UL, {
 73			{ 0x0000, 0x0000 },
 74			{ 0x0000, 0x0000 },
 75			{ 0x0000, 0x0000 },
 76		},
 77	}
 78};
 79
 80static const struct dw_hdmi_curr_ctrl imx_cur_ctr[] = {
 81	/*      pixelclk     bpp8    bpp10   bpp12 */
 82	{
 83		54000000, { 0x091c, 0x091c, 0x06dc },
 84	}, {
 85		58400000, { 0x091c, 0x06dc, 0x06dc },
 86	}, {
 87		72000000, { 0x06dc, 0x06dc, 0x091c },
 88	}, {
 89		74250000, { 0x06dc, 0x0b5c, 0x091c },
 90	}, {
 91		118800000, { 0x091c, 0x091c, 0x06dc },
 92	}, {
 93		216000000, { 0x06dc, 0x0b5c, 0x091c },
 94	}, {
 95		~0UL, { 0x0000, 0x0000, 0x0000 },
 96	},
 97};
 98
 99/*
100 * Resistance term 133Ohm Cfg
101 * PREEMP config 0.00
102 * TX/CK level 10
103 */
104static const struct dw_hdmi_phy_config imx_phy_config[] = {
105	/*pixelclk   symbol   term   vlev */
106	{ 216000000, 0x800d, 0x0005, 0x01ad},
107	{ ~0UL,      0x0000, 0x0000, 0x0000}
108};
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110static void dw_hdmi_imx_encoder_enable(struct drm_encoder *encoder)
111{
112	struct imx_hdmi *hdmi = enc_to_imx_hdmi(encoder);
113	int mux = drm_of_encoder_active_port_id(hdmi->dev->of_node, encoder);
114
115	regmap_update_bits(hdmi->regmap, IOMUXC_GPR3,
116			   IMX6Q_GPR3_HDMI_MUX_CTL_MASK,
117			   mux << IMX6Q_GPR3_HDMI_MUX_CTL_SHIFT);
118}
119
120static int dw_hdmi_imx_atomic_check(struct drm_encoder *encoder,
121				    struct drm_crtc_state *crtc_state,
122				    struct drm_connector_state *conn_state)
123{
124	struct imx_crtc_state *imx_crtc_state = to_imx_crtc_state(crtc_state);
125
126	imx_crtc_state->bus_format = MEDIA_BUS_FMT_RGB888_1X24;
127	imx_crtc_state->di_hsync_pin = 2;
128	imx_crtc_state->di_vsync_pin = 3;
129
130	return 0;
131}
132
133static const struct drm_encoder_helper_funcs dw_hdmi_imx_encoder_helper_funcs = {
134	.enable     = dw_hdmi_imx_encoder_enable,
 
135	.atomic_check = dw_hdmi_imx_atomic_check,
136};
137
138static enum drm_mode_status
139imx6q_hdmi_mode_valid(struct dw_hdmi *hdmi, void *data,
140		      const struct drm_display_info *info,
141		      const struct drm_display_mode *mode)
 
 
142{
143	if (mode->clock < 13500)
144		return MODE_CLOCK_LOW;
145	/* FIXME: Hardware is capable of 266MHz, but setup data is missing. */
146	if (mode->clock > 216000)
147		return MODE_CLOCK_HIGH;
148
149	return MODE_OK;
150}
151
152static enum drm_mode_status
153imx6dl_hdmi_mode_valid(struct dw_hdmi *hdmi, void *data,
154		       const struct drm_display_info *info,
155		       const struct drm_display_mode *mode)
156{
157	if (mode->clock < 13500)
158		return MODE_CLOCK_LOW;
159	/* FIXME: Hardware is capable of 270MHz, but setup data is missing. */
160	if (mode->clock > 216000)
161		return MODE_CLOCK_HIGH;
162
163	return MODE_OK;
164}
165
166static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = {
167	.mpll_cfg   = imx_mpll_cfg,
168	.cur_ctr    = imx_cur_ctr,
169	.phy_config = imx_phy_config,
 
170	.mode_valid = imx6q_hdmi_mode_valid,
171};
172
173static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = {
174	.mpll_cfg = imx_mpll_cfg,
175	.cur_ctr  = imx_cur_ctr,
176	.phy_config = imx_phy_config,
 
177	.mode_valid = imx6dl_hdmi_mode_valid,
178};
179
180static const struct of_device_id dw_hdmi_imx_dt_ids[] = {
181	{ .compatible = "fsl,imx6q-hdmi",
182	  .data = &imx6q_hdmi_drv_data
183	}, {
184	  .compatible = "fsl,imx6dl-hdmi",
185	  .data = &imx6dl_hdmi_drv_data
186	},
187	{},
188};
189MODULE_DEVICE_TABLE(of, dw_hdmi_imx_dt_ids);
190
191static int dw_hdmi_imx_bind(struct device *dev, struct device *master,
192			    void *data)
193{
 
 
 
194	struct drm_device *drm = data;
195	struct imx_hdmi_encoder *hdmi_encoder;
196	struct drm_encoder *encoder;
 
 
 
197	int ret;
198
199	hdmi_encoder = drmm_simple_encoder_alloc(drm, struct imx_hdmi_encoder,
200						 encoder, DRM_MODE_ENCODER_TMDS);
201	if (IS_ERR(hdmi_encoder))
202		return PTR_ERR(hdmi_encoder);
203
204	hdmi_encoder->hdmi = dev_get_drvdata(dev);
205	encoder = &hdmi_encoder->encoder;
 
206
207	ret = imx_drm_encoder_parse_of(drm, encoder, dev->of_node);
208	if (ret)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209		return ret;
210
211	drm_encoder_helper_add(encoder, &dw_hdmi_imx_encoder_helper_funcs);
 
 
212
213	return drm_bridge_attach(encoder, hdmi_encoder->hdmi->bridge, NULL, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214}
215
216static const struct component_ops dw_hdmi_imx_ops = {
217	.bind	= dw_hdmi_imx_bind,
 
218};
219
220static int dw_hdmi_imx_probe(struct platform_device *pdev)
221{
222	struct device_node *np = pdev->dev.of_node;
223	const struct of_device_id *match = of_match_node(dw_hdmi_imx_dt_ids, np);
224	struct imx_hdmi *hdmi;
225	int ret;
226
227	hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
228	if (!hdmi)
229		return -ENOMEM;
230
231	platform_set_drvdata(pdev, hdmi);
232	hdmi->dev = &pdev->dev;
233
234	hdmi->regmap = syscon_regmap_lookup_by_phandle(np, "gpr");
235	if (IS_ERR(hdmi->regmap)) {
236		dev_err(hdmi->dev, "Unable to get gpr\n");
237		return PTR_ERR(hdmi->regmap);
238	}
239
240	hdmi->hdmi = dw_hdmi_probe(pdev, match->data);
241	if (IS_ERR(hdmi->hdmi))
242		return PTR_ERR(hdmi->hdmi);
243
244	hdmi->bridge = of_drm_find_bridge(np);
245	if (!hdmi->bridge) {
246		dev_err(hdmi->dev, "Unable to find bridge\n");
247		dw_hdmi_remove(hdmi->hdmi);
248		return -ENODEV;
249	}
250
251	ret = component_add(&pdev->dev, &dw_hdmi_imx_ops);
252	if (ret)
253		dw_hdmi_remove(hdmi->hdmi);
254
255	return ret;
256}
257
258static int dw_hdmi_imx_remove(struct platform_device *pdev)
259{
260	struct imx_hdmi *hdmi = platform_get_drvdata(pdev);
261
262	component_del(&pdev->dev, &dw_hdmi_imx_ops);
263	dw_hdmi_remove(hdmi->hdmi);
264
265	return 0;
266}
267
268static struct platform_driver dw_hdmi_imx_platform_driver = {
269	.probe  = dw_hdmi_imx_probe,
270	.remove = dw_hdmi_imx_remove,
271	.driver = {
272		.name = "dwhdmi-imx",
273		.of_match_table = dw_hdmi_imx_dt_ids,
274	},
275};
276
277module_platform_driver(dw_hdmi_imx_platform_driver);
278
279MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
280MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
281MODULE_DESCRIPTION("IMX6 Specific DW-HDMI Driver Extension");
282MODULE_LICENSE("GPL");
283MODULE_ALIAS("platform:dwhdmi-imx");
v4.10.11
 
  1/* 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;
 27	struct drm_encoder encoder;
 
 28	struct regmap *regmap;
 29};
 30
 31static inline struct imx_hdmi *enc_to_imx_hdmi(struct drm_encoder *e)
 32{
 33	return container_of(e, struct imx_hdmi, encoder);
 34}
 35
 36static 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	}, {
 56		216000000, {
 57			{ 0x00a0, 0x000a },
 58			{ 0x2001, 0x000f },
 59			{ 0x4002, 0x000f },
 60		},
 61	}, {
 62		~0UL, {
 63			{ 0x0000, 0x0000 },
 64			{ 0x0000, 0x0000 },
 65			{ 0x0000, 0x0000 },
 66		},
 67	}
 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 },
 84	}, {
 85		~0UL, { 0x0000, 0x0000, 0x0000 },
 86	},
 87};
 88
 89/*
 90 * Resistance term 133Ohm Cfg
 91 * PREEMP config 0.00
 92 * TX/CK level 10
 93 */
 94static const struct dw_hdmi_phy_config imx_phy_config[] = {
 95	/*pixelclk   symbol   term   vlev */
 96	{ 216000000, 0x800d, 0x0005, 0x01ad},
 97	{ ~0UL,      0x0000, 0x0000, 0x0000}
 98};
 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
117static void dw_hdmi_imx_encoder_enable(struct drm_encoder *encoder)
118{
119	struct imx_hdmi *hdmi = enc_to_imx_hdmi(encoder);
120	int mux = drm_of_encoder_active_port_id(hdmi->dev->of_node, encoder);
121
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
127static 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
140static const struct drm_encoder_helper_funcs dw_hdmi_imx_encoder_helper_funcs = {
141	.enable     = dw_hdmi_imx_encoder_enable,
142	.disable    = dw_hdmi_imx_encoder_disable,
143	.atomic_check = dw_hdmi_imx_atomic_check,
144};
145
146static const struct drm_encoder_funcs dw_hdmi_imx_encoder_funcs = {
147	.destroy = drm_encoder_cleanup,
148};
149
150static enum drm_mode_status imx6q_hdmi_mode_valid(struct drm_connector *con,
151						  struct drm_display_mode *mode)
152{
153	if (mode->clock < 13500)
154		return MODE_CLOCK_LOW;
155	/* FIXME: Hardware is capable of 266MHz, but setup data is missing. */
156	if (mode->clock > 216000)
157		return MODE_CLOCK_HIGH;
158
159	return MODE_OK;
160}
161
162static enum drm_mode_status imx6dl_hdmi_mode_valid(struct drm_connector *con,
163						   struct drm_display_mode *mode)
 
 
164{
165	if (mode->clock < 13500)
166		return MODE_CLOCK_LOW;
167	/* FIXME: Hardware is capable of 270MHz, but setup data is missing. */
168	if (mode->clock > 216000)
169		return MODE_CLOCK_HIGH;
170
171	return MODE_OK;
172}
173
174static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = {
175	.mpll_cfg   = imx_mpll_cfg,
176	.cur_ctr    = imx_cur_ctr,
177	.phy_config = imx_phy_config,
178	.dev_type   = IMX6Q_HDMI,
179	.mode_valid = imx6q_hdmi_mode_valid,
180};
181
182static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = {
183	.mpll_cfg = imx_mpll_cfg,
184	.cur_ctr  = imx_cur_ctr,
185	.phy_config = imx_phy_config,
186	.dev_type = IMX6DL_HDMI,
187	.mode_valid = imx6dl_hdmi_mode_valid,
188};
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;
210	struct resource *iores;
211	int irq;
212	int ret;
213
214	if (!pdev->dev.of_node)
215		return -ENODEV;
 
 
216
217	hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
218	if (!hdmi)
219		return -ENOMEM;
220
221	match = of_match_node(dw_hdmi_imx_dt_ids, pdev->dev.of_node);
222	plat_data = match->data;
223	hdmi->dev = &pdev->dev;
224	encoder = &hdmi->encoder;
225
226	irq = platform_get_irq(pdev, 0);
227	if (irq < 0)
228		return irq;
229
230	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
231	if (!iores)
232		return -ENXIO;
233
234	encoder->possible_crtcs = drm_of_find_possible_crtcs(drm, dev->of_node);
235	/*
236	 * If we failed to find the CRTC(s) which this encoder is
237	 * supposed to be connected to, it's because the CRTC has
238	 * not been registered yet.  Defer probing, and hope that
239	 * the required CRTC is added later.
240	 */
241	if (encoder->possible_crtcs == 0)
242		return -EPROBE_DEFER;
243
244	ret = dw_hdmi_imx_parse_dt(hdmi);
245	if (ret < 0)
246		return ret;
247
248	drm_encoder_helper_add(encoder, &dw_hdmi_imx_encoder_helper_funcs);
249	drm_encoder_init(drm, encoder, &dw_hdmi_imx_encoder_funcs,
250			 DRM_MODE_ENCODER_TMDS, NULL);
251
252	ret = dw_hdmi_bind(dev, master, data, encoder, iores, irq, plat_data);
253
254	/*
255	 * If dw_hdmi_bind() fails we'll never call dw_hdmi_unbind(),
256	 * which would have called the encoder cleanup.  Do it manually.
257	 */
258	if (ret)
259		drm_encoder_cleanup(encoder);
260
261	return ret;
262}
263
264static void dw_hdmi_imx_unbind(struct device *dev, struct device *master,
265			       void *data)
266{
267	return dw_hdmi_unbind(dev, master, data);
268}
269
270static const struct component_ops dw_hdmi_imx_ops = {
271	.bind	= dw_hdmi_imx_bind,
272	.unbind	= dw_hdmi_imx_unbind,
273};
274
275static int dw_hdmi_imx_probe(struct platform_device *pdev)
276{
277	return component_add(&pdev->dev, &dw_hdmi_imx_ops);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278}
279
280static int dw_hdmi_imx_remove(struct platform_device *pdev)
281{
 
 
282	component_del(&pdev->dev, &dw_hdmi_imx_ops);
 
283
284	return 0;
285}
286
287static struct platform_driver dw_hdmi_imx_platform_driver = {
288	.probe  = dw_hdmi_imx_probe,
289	.remove = dw_hdmi_imx_remove,
290	.driver = {
291		.name = "dwhdmi-imx",
292		.of_match_table = dw_hdmi_imx_dt_ids,
293	},
294};
295
296module_platform_driver(dw_hdmi_imx_platform_driver);
297
298MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
299MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
300MODULE_DESCRIPTION("IMX6 Specific DW-HDMI Driver Extension");
301MODULE_LICENSE("GPL");
302MODULE_ALIAS("platform:dwhdmi-imx");