1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Texas Instruments
7 #include <linux/gpio.h>
8 #include <linux/mod_devicetable.h>
9 #include <linux/of_gpio.h>
10 #include <linux/platform_device.h>
12 #include <drm/drm_atomic_helper.h>
13 #include <drm/drm_encoder.h>
14 #include <drm/drm_modeset_helper_vtables.h>
15 #include <drm/drm_probe_helper.h>
17 #include "tilcdc_drv.h"
18 #include "tilcdc_tfp410.h"
20 struct tfp410_module {
21 struct tilcdc_module base;
22 struct i2c_adapter *i2c;
25 #define to_tfp410_module(x) container_of(x, struct tfp410_module, base)
28 static const struct tilcdc_panel_info dvi_info = {
44 struct tfp410_encoder {
45 struct drm_encoder base;
46 struct tfp410_module *mod;
49 #define to_tfp410_encoder(x) container_of(x, struct tfp410_encoder, base)
51 static void tfp410_encoder_dpms(struct drm_encoder *encoder, int mode)
53 struct tfp410_encoder *tfp410_encoder = to_tfp410_encoder(encoder);
55 if (tfp410_encoder->dpms == mode)
58 if (mode == DRM_MODE_DPMS_ON) {
60 gpio_direction_output(tfp410_encoder->mod->gpio, 1);
63 gpio_direction_output(tfp410_encoder->mod->gpio, 0);
66 tfp410_encoder->dpms = mode;
69 static void tfp410_encoder_prepare(struct drm_encoder *encoder)
71 tfp410_encoder_dpms(encoder, DRM_MODE_DPMS_OFF);
74 static void tfp410_encoder_commit(struct drm_encoder *encoder)
76 tfp410_encoder_dpms(encoder, DRM_MODE_DPMS_ON);
79 static void tfp410_encoder_mode_set(struct drm_encoder *encoder,
80 struct drm_display_mode *mode,
81 struct drm_display_mode *adjusted_mode)
86 static const struct drm_encoder_funcs tfp410_encoder_funcs = {
87 .destroy = drm_encoder_cleanup,
90 static const struct drm_encoder_helper_funcs tfp410_encoder_helper_funcs = {
91 .dpms = tfp410_encoder_dpms,
92 .prepare = tfp410_encoder_prepare,
93 .commit = tfp410_encoder_commit,
94 .mode_set = tfp410_encoder_mode_set,
97 static struct drm_encoder *tfp410_encoder_create(struct drm_device *dev,
98 struct tfp410_module *mod)
100 struct tfp410_encoder *tfp410_encoder;
101 struct drm_encoder *encoder;
104 tfp410_encoder = devm_kzalloc(dev->dev, sizeof(*tfp410_encoder),
109 tfp410_encoder->dpms = DRM_MODE_DPMS_OFF;
110 tfp410_encoder->mod = mod;
112 encoder = &tfp410_encoder->base;
113 encoder->possible_crtcs = 1;
115 ret = drm_encoder_init(dev, encoder, &tfp410_encoder_funcs,
116 DRM_MODE_ENCODER_TMDS, NULL);
120 drm_encoder_helper_add(encoder, &tfp410_encoder_helper_funcs);
125 drm_encoder_cleanup(encoder);
133 struct tfp410_connector {
134 struct drm_connector base;
136 struct drm_encoder *encoder; /* our connected encoder */
137 struct tfp410_module *mod;
139 #define to_tfp410_connector(x) container_of(x, struct tfp410_connector, base)
142 static void tfp410_connector_destroy(struct drm_connector *connector)
144 drm_connector_unregister(connector);
145 drm_connector_cleanup(connector);
148 static enum drm_connector_status tfp410_connector_detect(
149 struct drm_connector *connector,
152 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector);
154 if (drm_probe_ddc(tfp410_connector->mod->i2c))
155 return connector_status_connected;
157 return connector_status_unknown;
160 static int tfp410_connector_get_modes(struct drm_connector *connector)
162 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector);
166 edid = drm_get_edid(connector, tfp410_connector->mod->i2c);
168 drm_connector_update_edid_property(connector, edid);
171 ret = drm_add_edid_modes(connector, edid);
178 static struct drm_encoder *tfp410_connector_best_encoder(
179 struct drm_connector *connector)
181 struct tfp410_connector *tfp410_connector = to_tfp410_connector(connector);
182 return tfp410_connector->encoder;
185 static const struct drm_connector_funcs tfp410_connector_funcs = {
186 .destroy = tfp410_connector_destroy,
187 .detect = tfp410_connector_detect,
188 .fill_modes = drm_helper_probe_single_connector_modes,
189 .reset = drm_atomic_helper_connector_reset,
190 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
191 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
194 static const struct drm_connector_helper_funcs tfp410_connector_helper_funcs = {
195 .get_modes = tfp410_connector_get_modes,
196 .best_encoder = tfp410_connector_best_encoder,
199 static struct drm_connector *tfp410_connector_create(struct drm_device *dev,
200 struct tfp410_module *mod, struct drm_encoder *encoder)
202 struct tfp410_connector *tfp410_connector;
203 struct drm_connector *connector;
206 tfp410_connector = devm_kzalloc(dev->dev, sizeof(*tfp410_connector),
208 if (!tfp410_connector)
211 tfp410_connector->encoder = encoder;
212 tfp410_connector->mod = mod;
214 connector = &tfp410_connector->base;
216 drm_connector_init(dev, connector, &tfp410_connector_funcs,
217 DRM_MODE_CONNECTOR_DVID);
218 drm_connector_helper_add(connector, &tfp410_connector_helper_funcs);
220 connector->polled = DRM_CONNECTOR_POLL_CONNECT |
221 DRM_CONNECTOR_POLL_DISCONNECT;
223 connector->interlace_allowed = 0;
224 connector->doublescan_allowed = 0;
226 ret = drm_connector_attach_encoder(connector, encoder);
233 tfp410_connector_destroy(connector);
241 static int tfp410_modeset_init(struct tilcdc_module *mod, struct drm_device *dev)
243 struct tfp410_module *tfp410_mod = to_tfp410_module(mod);
244 struct tilcdc_drm_private *priv = dev->dev_private;
245 struct drm_encoder *encoder;
246 struct drm_connector *connector;
248 encoder = tfp410_encoder_create(dev, tfp410_mod);
252 connector = tfp410_connector_create(dev, tfp410_mod, encoder);
256 priv->encoders[priv->num_encoders++] = encoder;
257 priv->connectors[priv->num_connectors++] = connector;
259 tilcdc_crtc_set_panel_info(priv->crtc, &dvi_info);
263 static const struct tilcdc_module_ops tfp410_module_ops = {
264 .modeset_init = tfp410_modeset_init,
271 static int tfp410_probe(struct platform_device *pdev)
273 struct device_node *node = pdev->dev.of_node;
274 struct device_node *i2c_node;
275 struct tfp410_module *tfp410_mod;
276 struct tilcdc_module *mod;
277 struct pinctrl *pinctrl;
278 uint32_t i2c_phandle;
281 /* bail out early if no DT data: */
283 dev_err(&pdev->dev, "device-tree data is missing\n");
287 tfp410_mod = devm_kzalloc(&pdev->dev, sizeof(*tfp410_mod), GFP_KERNEL);
291 mod = &tfp410_mod->base;
292 pdev->dev.platform_data = mod;
294 tilcdc_module_init(mod, "tfp410", &tfp410_module_ops);
296 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
298 dev_warn(&pdev->dev, "pins are not configured\n");
300 if (of_property_read_u32(node, "i2c", &i2c_phandle)) {
301 dev_err(&pdev->dev, "could not get i2c bus phandle\n");
305 i2c_node = of_find_node_by_phandle(i2c_phandle);
307 dev_err(&pdev->dev, "could not get i2c bus node\n");
311 tfp410_mod->i2c = of_find_i2c_adapter_by_node(i2c_node);
312 if (!tfp410_mod->i2c) {
313 dev_err(&pdev->dev, "could not get i2c\n");
314 of_node_put(i2c_node);
318 of_node_put(i2c_node);
320 tfp410_mod->gpio = of_get_named_gpio_flags(node, "powerdn-gpio",
322 if (tfp410_mod->gpio < 0) {
323 dev_warn(&pdev->dev, "No power down GPIO\n");
325 ret = gpio_request(tfp410_mod->gpio, "DVI_PDn");
327 dev_err(&pdev->dev, "could not get DVI_PDn gpio\n");
335 i2c_put_adapter(tfp410_mod->i2c);
338 tilcdc_module_cleanup(mod);
342 static int tfp410_remove(struct platform_device *pdev)
344 struct tilcdc_module *mod = dev_get_platdata(&pdev->dev);
345 struct tfp410_module *tfp410_mod = to_tfp410_module(mod);
347 i2c_put_adapter(tfp410_mod->i2c);
348 gpio_free(tfp410_mod->gpio);
350 tilcdc_module_cleanup(mod);
355 static const struct of_device_id tfp410_of_match[] = {
356 { .compatible = "ti,tilcdc,tfp410", },
360 struct platform_driver tfp410_driver = {
361 .probe = tfp410_probe,
362 .remove = tfp410_remove,
364 .owner = THIS_MODULE,
366 .of_match_table = tfp410_of_match,
370 int __init tilcdc_tfp410_init(void)
372 return platform_driver_register(&tfp410_driver);
375 void __exit tilcdc_tfp410_fini(void)
377 platform_driver_unregister(&tfp410_driver);