2 * NXP PTN3460 DP/LVDS bridge driver
4 * Copyright (C) 2013 Google, Inc.
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/delay.h>
17 #include <linux/gpio.h>
18 #include <linux/gpio/consumer.h>
19 #include <linux/i2c.h>
20 #include <linux/module.h>
22 #include <linux/of_gpio.h>
23 #include <linux/of_graph.h>
25 #include <drm/drm_panel.h>
27 #include "bridge/ptn3460.h"
30 #include "drm_crtc_helper.h"
34 #define PTN3460_EDID_ADDR 0x0
35 #define PTN3460_EDID_EMULATION_ADDR 0x84
36 #define PTN3460_EDID_ENABLE_EMULATION 0
37 #define PTN3460_EDID_EMULATION_SELECTION 1
38 #define PTN3460_EDID_SRAM_LOAD_ADDR 0x85
40 struct ptn3460_bridge
{
41 struct drm_connector connector
;
42 struct i2c_client
*client
;
43 struct drm_bridge bridge
;
45 struct drm_panel
*panel
;
46 struct gpio_desc
*gpio_pd_n
;
47 struct gpio_desc
*gpio_rst_n
;
52 static inline struct ptn3460_bridge
*
53 bridge_to_ptn3460(struct drm_bridge
*bridge
)
55 return container_of(bridge
, struct ptn3460_bridge
, bridge
);
58 static inline struct ptn3460_bridge
*
59 connector_to_ptn3460(struct drm_connector
*connector
)
61 return container_of(connector
, struct ptn3460_bridge
, connector
);
64 static int ptn3460_read_bytes(struct ptn3460_bridge
*ptn_bridge
, char addr
,
69 ret
= i2c_master_send(ptn_bridge
->client
, &addr
, 1);
71 DRM_ERROR("Failed to send i2c command, ret=%d\n", ret
);
75 ret
= i2c_master_recv(ptn_bridge
->client
, buf
, len
);
77 DRM_ERROR("Failed to recv i2c data, ret=%d\n", ret
);
84 static int ptn3460_write_byte(struct ptn3460_bridge
*ptn_bridge
, char addr
,
93 ret
= i2c_master_send(ptn_bridge
->client
, buf
, ARRAY_SIZE(buf
));
95 DRM_ERROR("Failed to send i2c command, ret=%d\n", ret
);
102 static int ptn3460_select_edid(struct ptn3460_bridge
*ptn_bridge
)
107 /* Load the selected edid into SRAM (accessed at PTN3460_EDID_ADDR) */
108 ret
= ptn3460_write_byte(ptn_bridge
, PTN3460_EDID_SRAM_LOAD_ADDR
,
109 ptn_bridge
->edid_emulation
);
111 DRM_ERROR("Failed to transfer EDID to sram, ret=%d\n", ret
);
115 /* Enable EDID emulation and select the desired EDID */
116 val
= 1 << PTN3460_EDID_ENABLE_EMULATION
|
117 ptn_bridge
->edid_emulation
<< PTN3460_EDID_EMULATION_SELECTION
;
119 ret
= ptn3460_write_byte(ptn_bridge
, PTN3460_EDID_EMULATION_ADDR
, val
);
121 DRM_ERROR("Failed to write EDID value, ret=%d\n", ret
);
128 static void ptn3460_pre_enable(struct drm_bridge
*bridge
)
130 struct ptn3460_bridge
*ptn_bridge
= bridge_to_ptn3460(bridge
);
133 if (ptn_bridge
->enabled
)
136 gpiod_set_value(ptn_bridge
->gpio_pd_n
, 1);
138 gpiod_set_value(ptn_bridge
->gpio_rst_n
, 0);
139 usleep_range(10, 20);
140 gpiod_set_value(ptn_bridge
->gpio_rst_n
, 1);
142 if (drm_panel_prepare(ptn_bridge
->panel
)) {
143 DRM_ERROR("failed to prepare panel\n");
148 * There's a bug in the PTN chip where it falsely asserts hotplug before
149 * it is fully functional. We're forced to wait for the maximum start up
150 * time specified in the chip's datasheet to make sure we're really up.
154 ret
= ptn3460_select_edid(ptn_bridge
);
156 DRM_ERROR("Select EDID failed ret=%d\n", ret
);
158 ptn_bridge
->enabled
= true;
161 static void ptn3460_enable(struct drm_bridge
*bridge
)
163 struct ptn3460_bridge
*ptn_bridge
= bridge_to_ptn3460(bridge
);
165 if (drm_panel_enable(ptn_bridge
->panel
)) {
166 DRM_ERROR("failed to enable panel\n");
171 static void ptn3460_disable(struct drm_bridge
*bridge
)
173 struct ptn3460_bridge
*ptn_bridge
= bridge_to_ptn3460(bridge
);
175 if (!ptn_bridge
->enabled
)
178 ptn_bridge
->enabled
= false;
180 if (drm_panel_disable(ptn_bridge
->panel
)) {
181 DRM_ERROR("failed to disable panel\n");
185 gpiod_set_value(ptn_bridge
->gpio_rst_n
, 1);
186 gpiod_set_value(ptn_bridge
->gpio_pd_n
, 0);
189 static void ptn3460_post_disable(struct drm_bridge
*bridge
)
191 struct ptn3460_bridge
*ptn_bridge
= bridge_to_ptn3460(bridge
);
193 if (drm_panel_unprepare(ptn_bridge
->panel
)) {
194 DRM_ERROR("failed to unprepare panel\n");
199 static int ptn3460_get_modes(struct drm_connector
*connector
)
201 struct ptn3460_bridge
*ptn_bridge
;
203 int ret
, num_modes
= 0;
206 ptn_bridge
= connector_to_ptn3460(connector
);
208 if (ptn_bridge
->edid
)
209 return drm_add_edid_modes(connector
, ptn_bridge
->edid
);
211 power_off
= !ptn_bridge
->enabled
;
212 ptn3460_pre_enable(&ptn_bridge
->bridge
);
214 edid
= kmalloc(EDID_LENGTH
, GFP_KERNEL
);
216 DRM_ERROR("Failed to allocate EDID\n");
220 ret
= ptn3460_read_bytes(ptn_bridge
, PTN3460_EDID_ADDR
, edid
,
227 ptn_bridge
->edid
= (struct edid
*)edid
;
228 drm_mode_connector_update_edid_property(connector
, ptn_bridge
->edid
);
230 num_modes
= drm_add_edid_modes(connector
, ptn_bridge
->edid
);
234 ptn3460_disable(&ptn_bridge
->bridge
);
239 static struct drm_encoder
*ptn3460_best_encoder(struct drm_connector
*connector
)
241 struct ptn3460_bridge
*ptn_bridge
= connector_to_ptn3460(connector
);
243 return ptn_bridge
->bridge
.encoder
;
246 static struct drm_connector_helper_funcs ptn3460_connector_helper_funcs
= {
247 .get_modes
= ptn3460_get_modes
,
248 .best_encoder
= ptn3460_best_encoder
,
251 static enum drm_connector_status
ptn3460_detect(struct drm_connector
*connector
,
254 return connector_status_connected
;
257 static void ptn3460_connector_destroy(struct drm_connector
*connector
)
259 drm_connector_cleanup(connector
);
262 static struct drm_connector_funcs ptn3460_connector_funcs
= {
263 .dpms
= drm_helper_connector_dpms
,
264 .fill_modes
= drm_helper_probe_single_connector_modes
,
265 .detect
= ptn3460_detect
,
266 .destroy
= ptn3460_connector_destroy
,
269 static int ptn3460_bridge_attach(struct drm_bridge
*bridge
)
271 struct ptn3460_bridge
*ptn_bridge
= bridge_to_ptn3460(bridge
);
274 if (!bridge
->encoder
) {
275 DRM_ERROR("Parent encoder object not found");
279 ptn_bridge
->connector
.polled
= DRM_CONNECTOR_POLL_HPD
;
280 ret
= drm_connector_init(bridge
->dev
, &ptn_bridge
->connector
,
281 &ptn3460_connector_funcs
, DRM_MODE_CONNECTOR_LVDS
);
283 DRM_ERROR("Failed to initialize connector with drm\n");
286 drm_connector_helper_add(&ptn_bridge
->connector
,
287 &ptn3460_connector_helper_funcs
);
288 drm_connector_register(&ptn_bridge
->connector
);
289 drm_mode_connector_attach_encoder(&ptn_bridge
->connector
,
292 if (ptn_bridge
->panel
)
293 drm_panel_attach(ptn_bridge
->panel
, &ptn_bridge
->connector
);
295 drm_helper_hpd_irq_event(ptn_bridge
->connector
.dev
);
300 static struct drm_bridge_funcs ptn3460_bridge_funcs
= {
301 .pre_enable
= ptn3460_pre_enable
,
302 .enable
= ptn3460_enable
,
303 .disable
= ptn3460_disable
,
304 .post_disable
= ptn3460_post_disable
,
305 .attach
= ptn3460_bridge_attach
,
308 static int ptn3460_probe(struct i2c_client
*client
,
309 const struct i2c_device_id
*id
)
311 struct device
*dev
= &client
->dev
;
312 struct ptn3460_bridge
*ptn_bridge
;
313 struct device_node
*endpoint
, *panel_node
;
316 ptn_bridge
= devm_kzalloc(dev
, sizeof(*ptn_bridge
), GFP_KERNEL
);
321 endpoint
= of_graph_get_next_endpoint(dev
->of_node
, NULL
);
323 panel_node
= of_graph_get_remote_port_parent(endpoint
);
325 ptn_bridge
->panel
= of_drm_find_panel(panel_node
);
326 of_node_put(panel_node
);
327 if (!ptn_bridge
->panel
)
328 return -EPROBE_DEFER
;
332 ptn_bridge
->client
= client
;
334 ptn_bridge
->gpio_pd_n
= devm_gpiod_get(&client
->dev
, "powerdown");
335 if (IS_ERR(ptn_bridge
->gpio_pd_n
)) {
336 ret
= PTR_ERR(ptn_bridge
->gpio_pd_n
);
337 dev_err(dev
, "cannot get gpio_pd_n %d\n", ret
);
341 ret
= gpiod_direction_output(ptn_bridge
->gpio_pd_n
, 1);
343 DRM_ERROR("cannot configure gpio_pd_n\n");
347 ptn_bridge
->gpio_rst_n
= devm_gpiod_get(&client
->dev
, "reset");
348 if (IS_ERR(ptn_bridge
->gpio_rst_n
)) {
349 ret
= PTR_ERR(ptn_bridge
->gpio_rst_n
);
350 DRM_ERROR("cannot get gpio_rst_n %d\n", ret
);
354 * Request the reset pin low to avoid the bridge being
355 * initialized prematurely
357 ret
= gpiod_direction_output(ptn_bridge
->gpio_rst_n
, 0);
359 DRM_ERROR("cannot configure gpio_rst_n\n");
363 ret
= of_property_read_u32(dev
->of_node
, "edid-emulation",
364 &ptn_bridge
->edid_emulation
);
366 dev_err(dev
, "Can't read EDID emulation value\n");
370 ptn_bridge
->bridge
.funcs
= &ptn3460_bridge_funcs
;
371 ptn_bridge
->bridge
.of_node
= dev
->of_node
;
372 ret
= drm_bridge_add(&ptn_bridge
->bridge
);
374 DRM_ERROR("Failed to add bridge\n");
378 i2c_set_clientdata(client
, ptn_bridge
);
383 static int ptn3460_remove(struct i2c_client
*client
)
385 struct ptn3460_bridge
*ptn_bridge
= i2c_get_clientdata(client
);
387 drm_bridge_remove(&ptn_bridge
->bridge
);
392 static const struct i2c_device_id ptn3460_i2c_table
[] = {
396 MODULE_DEVICE_TABLE(i2c
, ptn3460_i2c_table
);
398 static const struct of_device_id ptn3460_match
[] = {
399 { .compatible
= "nxp,ptn3460" },
402 MODULE_DEVICE_TABLE(of
, ptn3460_match
);
404 static struct i2c_driver ptn3460_driver
= {
405 .id_table
= ptn3460_i2c_table
,
406 .probe
= ptn3460_probe
,
407 .remove
= ptn3460_remove
,
409 .name
= "nxp,ptn3460",
410 .owner
= THIS_MODULE
,
411 .of_match_table
= ptn3460_match
,
414 module_i2c_driver(ptn3460_driver
);
416 MODULE_AUTHOR("Sean Paul <seanpaul@chromium.org>");
417 MODULE_DESCRIPTION("NXP ptn3460 eDP-LVDS converter driver");
418 MODULE_LICENSE("GPL v2");