1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016 MediaTek Inc.
6 #include <linux/delay.h>
8 #include <linux/gpio/consumer.h>
10 #include <linux/module.h>
11 #include <linux/of_graph.h>
12 #include <linux/regulator/consumer.h>
14 #include <drm/drm_bridge.h>
15 #include <drm/drm_mipi_dsi.h>
16 #include <drm/drm_of.h>
17 #include <drm/drm_panel.h>
18 #include <drm/drm_print.h>
20 #define PAGE2_GPIO_H 0xa7
21 #define PS_GPIO9 BIT(1)
22 #define PAGE2_I2C_BYPASS 0xea
23 #define I2C_BYPASS_EN 0xd0
24 #define PAGE2_MCS_EN 0xf3
26 #define PAGE3_SET_ADD 0xfe
27 #define VDO_CTL_ADD 0x13
30 #define DP_NUM_LANES 4
33 * PS8640 uses multiple addresses:
34 * page[0]: for DP control
35 * page[1]: for VIDEO Bridge
36 * page[2]: for control top
37 * page[3]: for DSI Link Control1
38 * page[4]: for MIPI Phy
40 * page[6]: for DSI Link Control2
41 * page[7]: for SPI ROM mapping
43 enum page_addr_offset
{
55 enum ps8640_vdo_control
{
61 struct drm_bridge bridge
;
62 struct drm_bridge
*panel_bridge
;
63 struct mipi_dsi_device
*dsi
;
64 struct i2c_client
*page
[MAX_DEVS
];
65 struct regulator_bulk_data supplies
[2];
66 struct gpio_desc
*gpio_reset
;
67 struct gpio_desc
*gpio_powerdown
;
71 static inline struct ps8640
*bridge_to_ps8640(struct drm_bridge
*e
)
73 return container_of(e
, struct ps8640
, bridge
);
76 static int ps8640_bridge_vdo_control(struct ps8640
*ps_bridge
,
77 const enum ps8640_vdo_control ctrl
)
79 struct i2c_client
*client
= ps_bridge
->page
[PAGE3_DSI_CNTL1
];
80 u8 vdo_ctrl_buf
[] = { VDO_CTL_ADD
, ctrl
};
83 ret
= i2c_smbus_write_i2c_block_data(client
, PAGE3_SET_ADD
,
87 DRM_ERROR("failed to %sable VDO: %d\n",
88 ctrl
== ENABLE
? "en" : "dis", ret
);
95 static void ps8640_bridge_poweron(struct ps8640
*ps_bridge
)
97 struct i2c_client
*client
= ps_bridge
->page
[PAGE2_TOP_CNTL
];
98 unsigned long timeout
;
101 if (ps_bridge
->powered
)
104 ret
= regulator_bulk_enable(ARRAY_SIZE(ps_bridge
->supplies
),
105 ps_bridge
->supplies
);
107 DRM_ERROR("cannot enable regulators %d\n", ret
);
111 gpiod_set_value(ps_bridge
->gpio_powerdown
, 0);
112 gpiod_set_value(ps_bridge
->gpio_reset
, 1);
113 usleep_range(2000, 2500);
114 gpiod_set_value(ps_bridge
->gpio_reset
, 0);
117 * Wait for the ps8640 embedded MCU to be ready
118 * First wait 200ms and then check the MCU ready flag every 20ms
122 timeout
= jiffies
+ msecs_to_jiffies(200) + 1;
124 while (time_is_after_jiffies(timeout
)) {
125 status
= i2c_smbus_read_byte_data(client
, PAGE2_GPIO_H
);
127 DRM_ERROR("failed read PAGE2_GPIO_H: %d\n", status
);
128 goto err_regulators_disable
;
130 if ((status
& PS_GPIO9
) == PS_GPIO9
)
139 * The Manufacturer Command Set (MCS) is a device dependent interface
140 * intended for factory programming of the display module default
141 * parameters. Once the display module is configured, the MCS shall be
142 * disabled by the manufacturer. Once disabled, all MCS commands are
143 * ignored by the display interface.
145 status
= i2c_smbus_read_byte_data(client
, PAGE2_MCS_EN
);
147 DRM_ERROR("failed read PAGE2_MCS_EN: %d\n", status
);
148 goto err_regulators_disable
;
151 ret
= i2c_smbus_write_byte_data(client
, PAGE2_MCS_EN
,
154 DRM_ERROR("failed write PAGE2_MCS_EN: %d\n", ret
);
155 goto err_regulators_disable
;
158 /* Switch access edp panel's edid through i2c */
159 ret
= i2c_smbus_write_byte_data(client
, PAGE2_I2C_BYPASS
,
162 DRM_ERROR("failed write PAGE2_I2C_BYPASS: %d\n", ret
);
163 goto err_regulators_disable
;
166 ps_bridge
->powered
= true;
170 err_regulators_disable
:
171 regulator_bulk_disable(ARRAY_SIZE(ps_bridge
->supplies
),
172 ps_bridge
->supplies
);
175 static void ps8640_bridge_poweroff(struct ps8640
*ps_bridge
)
179 if (!ps_bridge
->powered
)
182 gpiod_set_value(ps_bridge
->gpio_reset
, 1);
183 gpiod_set_value(ps_bridge
->gpio_powerdown
, 1);
184 ret
= regulator_bulk_disable(ARRAY_SIZE(ps_bridge
->supplies
),
185 ps_bridge
->supplies
);
187 DRM_ERROR("cannot disable regulators %d\n", ret
);
189 ps_bridge
->powered
= false;
192 static void ps8640_pre_enable(struct drm_bridge
*bridge
)
194 struct ps8640
*ps_bridge
= bridge_to_ps8640(bridge
);
197 ps8640_bridge_poweron(ps_bridge
);
199 ret
= ps8640_bridge_vdo_control(ps_bridge
, ENABLE
);
201 ps8640_bridge_poweroff(ps_bridge
);
204 static void ps8640_post_disable(struct drm_bridge
*bridge
)
206 struct ps8640
*ps_bridge
= bridge_to_ps8640(bridge
);
208 ps8640_bridge_vdo_control(ps_bridge
, DISABLE
);
209 ps8640_bridge_poweroff(ps_bridge
);
212 static int ps8640_bridge_attach(struct drm_bridge
*bridge
,
213 enum drm_bridge_attach_flags flags
)
215 struct ps8640
*ps_bridge
= bridge_to_ps8640(bridge
);
216 struct device
*dev
= &ps_bridge
->page
[0]->dev
;
217 struct device_node
*in_ep
, *dsi_node
;
218 struct mipi_dsi_device
*dsi
;
219 struct mipi_dsi_host
*host
;
221 const struct mipi_dsi_device_info info
= { .type
= "ps8640",
226 if (!(flags
& DRM_BRIDGE_ATTACH_NO_CONNECTOR
))
229 /* port@0 is ps8640 dsi input port */
230 in_ep
= of_graph_get_endpoint_by_regs(dev
->of_node
, 0, -1);
234 dsi_node
= of_graph_get_remote_port_parent(in_ep
);
239 host
= of_find_mipi_dsi_host_by_node(dsi_node
);
240 of_node_put(dsi_node
);
244 dsi
= mipi_dsi_device_register_full(host
, &info
);
246 dev_err(dev
, "failed to create dsi device\n");
251 ps_bridge
->dsi
= dsi
;
254 dsi
->mode_flags
= MIPI_DSI_MODE_VIDEO
|
255 MIPI_DSI_MODE_VIDEO_SYNC_PULSE
;
256 dsi
->format
= MIPI_DSI_FMT_RGB888
;
257 dsi
->lanes
= DP_NUM_LANES
;
258 ret
= mipi_dsi_attach(dsi
);
262 /* Attach the panel-bridge to the dsi bridge */
263 return drm_bridge_attach(bridge
->encoder
, ps_bridge
->panel_bridge
,
264 &ps_bridge
->bridge
, flags
);
267 mipi_dsi_device_unregister(dsi
);
271 static struct edid
*ps8640_bridge_get_edid(struct drm_bridge
*bridge
,
272 struct drm_connector
*connector
)
274 struct ps8640
*ps_bridge
= bridge_to_ps8640(bridge
);
275 bool poweroff
= !ps_bridge
->powered
;
279 * When we end calling get_edid() triggered by an ioctl, i.e
281 * drm_mode_getconnector (ioctl)
282 * -> drm_helper_probe_single_connector_modes
283 * -> drm_bridge_connector_get_modes
284 * -> ps8640_bridge_get_edid
286 * We need to make sure that what we need is enabled before reading
287 * EDID, for this chip, we need to do a full poweron, otherwise it will
290 drm_bridge_chain_pre_enable(bridge
);
292 edid
= drm_get_edid(connector
,
293 ps_bridge
->page
[PAGE0_DP_CNTL
]->adapter
);
296 * If we call the get_edid() function without having enabled the chip
297 * before, return the chip to its original power state.
300 drm_bridge_chain_post_disable(bridge
);
305 static const struct drm_bridge_funcs ps8640_bridge_funcs
= {
306 .attach
= ps8640_bridge_attach
,
307 .get_edid
= ps8640_bridge_get_edid
,
308 .post_disable
= ps8640_post_disable
,
309 .pre_enable
= ps8640_pre_enable
,
312 static int ps8640_probe(struct i2c_client
*client
)
314 struct device
*dev
= &client
->dev
;
315 struct device_node
*np
= dev
->of_node
;
316 struct ps8640
*ps_bridge
;
317 struct drm_panel
*panel
;
321 ps_bridge
= devm_kzalloc(dev
, sizeof(*ps_bridge
), GFP_KERNEL
);
325 /* port@1 is ps8640 output port */
326 ret
= drm_of_find_panel_or_bridge(np
, 1, 0, &panel
, NULL
);
332 ps_bridge
->panel_bridge
= devm_drm_panel_bridge_add(dev
, panel
);
333 if (IS_ERR(ps_bridge
->panel_bridge
))
334 return PTR_ERR(ps_bridge
->panel_bridge
);
336 ps_bridge
->supplies
[0].supply
= "vdd33";
337 ps_bridge
->supplies
[1].supply
= "vdd12";
338 ret
= devm_regulator_bulk_get(dev
, ARRAY_SIZE(ps_bridge
->supplies
),
339 ps_bridge
->supplies
);
343 ps_bridge
->gpio_powerdown
= devm_gpiod_get(&client
->dev
, "powerdown",
345 if (IS_ERR(ps_bridge
->gpio_powerdown
))
346 return PTR_ERR(ps_bridge
->gpio_powerdown
);
349 * Assert the reset to avoid the bridge being initialized prematurely
351 ps_bridge
->gpio_reset
= devm_gpiod_get(&client
->dev
, "reset",
353 if (IS_ERR(ps_bridge
->gpio_reset
))
354 return PTR_ERR(ps_bridge
->gpio_reset
);
356 ps_bridge
->bridge
.funcs
= &ps8640_bridge_funcs
;
357 ps_bridge
->bridge
.of_node
= dev
->of_node
;
358 ps_bridge
->bridge
.ops
= DRM_BRIDGE_OP_EDID
;
359 ps_bridge
->bridge
.type
= DRM_MODE_CONNECTOR_eDP
;
361 ps_bridge
->page
[PAGE0_DP_CNTL
] = client
;
363 for (i
= 1; i
< ARRAY_SIZE(ps_bridge
->page
); i
++) {
364 ps_bridge
->page
[i
] = devm_i2c_new_dummy_device(&client
->dev
,
367 if (IS_ERR(ps_bridge
->page
[i
])) {
368 dev_err(dev
, "failed i2c dummy device, address %02x\n",
370 return PTR_ERR(ps_bridge
->page
[i
]);
374 i2c_set_clientdata(client
, ps_bridge
);
376 drm_bridge_add(&ps_bridge
->bridge
);
381 static int ps8640_remove(struct i2c_client
*client
)
383 struct ps8640
*ps_bridge
= i2c_get_clientdata(client
);
385 drm_bridge_remove(&ps_bridge
->bridge
);
390 static const struct of_device_id ps8640_match
[] = {
391 { .compatible
= "parade,ps8640" },
394 MODULE_DEVICE_TABLE(of
, ps8640_match
);
396 static struct i2c_driver ps8640_driver
= {
397 .probe_new
= ps8640_probe
,
398 .remove
= ps8640_remove
,
401 .of_match_table
= ps8640_match
,
404 module_i2c_driver(ps8640_driver
);
406 MODULE_AUTHOR("Jitao Shi <jitao.shi@mediatek.com>");
407 MODULE_AUTHOR("CK Hu <ck.hu@mediatek.com>");
408 MODULE_AUTHOR("Enric Balletbo i Serra <enric.balletbo@collabora.com>");
409 MODULE_DESCRIPTION("PARADE ps8640 DSI-eDP converter driver");
410 MODULE_LICENSE("GPL v2");