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;
70 static inline struct ps8640 *bridge_to_ps8640(struct drm_bridge *e)
72 return container_of(e, struct ps8640, bridge);
75 static int ps8640_bridge_vdo_control(struct ps8640 *ps_bridge,
76 const enum ps8640_vdo_control ctrl)
78 struct i2c_client *client = ps_bridge->page[PAGE3_DSI_CNTL1];
79 u8 vdo_ctrl_buf[] = { VDO_CTL_ADD, ctrl };
82 ret = i2c_smbus_write_i2c_block_data(client, PAGE3_SET_ADD,
91 static void ps8640_pre_enable(struct drm_bridge *bridge)
93 struct ps8640 *ps_bridge = bridge_to_ps8640(bridge);
94 struct i2c_client *client = ps_bridge->page[PAGE2_TOP_CNTL];
95 unsigned long timeout;
98 ret = regulator_bulk_enable(ARRAY_SIZE(ps_bridge->supplies),
101 DRM_ERROR("cannot enable regulators %d\n", ret);
105 gpiod_set_value(ps_bridge->gpio_powerdown, 0);
106 gpiod_set_value(ps_bridge->gpio_reset, 1);
107 usleep_range(2000, 2500);
108 gpiod_set_value(ps_bridge->gpio_reset, 0);
111 * Wait for the ps8640 embedded MCU to be ready
112 * First wait 200ms and then check the MCU ready flag every 20ms
116 timeout = jiffies + msecs_to_jiffies(200) + 1;
118 while (time_is_after_jiffies(timeout)) {
119 status = i2c_smbus_read_byte_data(client, PAGE2_GPIO_H);
121 DRM_ERROR("failed read PAGE2_GPIO_H: %d\n", status);
122 goto err_regulators_disable;
124 if ((status & PS_GPIO9) == PS_GPIO9)
133 * The Manufacturer Command Set (MCS) is a device dependent interface
134 * intended for factory programming of the display module default
135 * parameters. Once the display module is configured, the MCS shall be
136 * disabled by the manufacturer. Once disabled, all MCS commands are
137 * ignored by the display interface.
139 status = i2c_smbus_read_byte_data(client, PAGE2_MCS_EN);
141 DRM_ERROR("failed read PAGE2_MCS_EN: %d\n", status);
142 goto err_regulators_disable;
145 ret = i2c_smbus_write_byte_data(client, PAGE2_MCS_EN,
148 DRM_ERROR("failed write PAGE2_MCS_EN: %d\n", ret);
149 goto err_regulators_disable;
152 ret = ps8640_bridge_vdo_control(ps_bridge, ENABLE);
154 DRM_ERROR("failed to enable VDO: %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;
168 err_regulators_disable:
169 regulator_bulk_disable(ARRAY_SIZE(ps_bridge->supplies),
170 ps_bridge->supplies);
173 static void ps8640_post_disable(struct drm_bridge *bridge)
175 struct ps8640 *ps_bridge = bridge_to_ps8640(bridge);
178 ret = ps8640_bridge_vdo_control(ps_bridge, DISABLE);
180 DRM_ERROR("failed to disable VDO: %d\n", ret);
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);
190 static int ps8640_bridge_attach(struct drm_bridge *bridge,
191 enum drm_bridge_attach_flags flags)
193 struct ps8640 *ps_bridge = bridge_to_ps8640(bridge);
194 struct device *dev = &ps_bridge->page[0]->dev;
195 struct device_node *in_ep, *dsi_node;
196 struct mipi_dsi_device *dsi;
197 struct mipi_dsi_host *host;
199 const struct mipi_dsi_device_info info = { .type = "ps8640",
203 /* port@0 is ps8640 dsi input port */
204 in_ep = of_graph_get_endpoint_by_regs(dev->of_node, 0, -1);
208 dsi_node = of_graph_get_remote_port_parent(in_ep);
213 host = of_find_mipi_dsi_host_by_node(dsi_node);
214 of_node_put(dsi_node);
218 dsi = mipi_dsi_device_register_full(host, &info);
220 dev_err(dev, "failed to create dsi device\n");
225 ps_bridge->dsi = dsi;
228 dsi->mode_flags = MIPI_DSI_MODE_VIDEO |
229 MIPI_DSI_MODE_VIDEO_SYNC_PULSE;
230 dsi->format = MIPI_DSI_FMT_RGB888;
231 dsi->lanes = DP_NUM_LANES;
232 ret = mipi_dsi_attach(dsi);
236 /* Attach the panel-bridge to the dsi bridge */
237 return drm_bridge_attach(bridge->encoder, ps_bridge->panel_bridge,
238 &ps_bridge->bridge, flags);
241 mipi_dsi_device_unregister(dsi);
245 static const struct drm_bridge_funcs ps8640_bridge_funcs = {
246 .attach = ps8640_bridge_attach,
247 .post_disable = ps8640_post_disable,
248 .pre_enable = ps8640_pre_enable,
251 static int ps8640_probe(struct i2c_client *client)
253 struct device *dev = &client->dev;
254 struct device_node *np = dev->of_node;
255 struct ps8640 *ps_bridge;
256 struct drm_panel *panel;
260 ps_bridge = devm_kzalloc(dev, sizeof(*ps_bridge), GFP_KERNEL);
264 /* port@1 is ps8640 output port */
265 ret = drm_of_find_panel_or_bridge(np, 1, 0, &panel, NULL);
271 ps_bridge->panel_bridge = devm_drm_panel_bridge_add(dev, panel);
272 if (IS_ERR(ps_bridge->panel_bridge))
273 return PTR_ERR(ps_bridge->panel_bridge);
275 ps_bridge->supplies[0].supply = "vdd33";
276 ps_bridge->supplies[1].supply = "vdd12";
277 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(ps_bridge->supplies),
278 ps_bridge->supplies);
282 ps_bridge->gpio_powerdown = devm_gpiod_get(&client->dev, "powerdown",
284 if (IS_ERR(ps_bridge->gpio_powerdown))
285 return PTR_ERR(ps_bridge->gpio_powerdown);
288 * Assert the reset to avoid the bridge being initialized prematurely
290 ps_bridge->gpio_reset = devm_gpiod_get(&client->dev, "reset",
292 if (IS_ERR(ps_bridge->gpio_reset))
293 return PTR_ERR(ps_bridge->gpio_reset);
295 ps_bridge->bridge.funcs = &ps8640_bridge_funcs;
296 ps_bridge->bridge.of_node = dev->of_node;
298 ps_bridge->page[PAGE0_DP_CNTL] = client;
300 for (i = 1; i < ARRAY_SIZE(ps_bridge->page); i++) {
301 ps_bridge->page[i] = devm_i2c_new_dummy_device(&client->dev,
304 if (IS_ERR(ps_bridge->page[i])) {
305 dev_err(dev, "failed i2c dummy device, address %02x\n",
307 return PTR_ERR(ps_bridge->page[i]);
311 i2c_set_clientdata(client, ps_bridge);
313 drm_bridge_add(&ps_bridge->bridge);
318 static int ps8640_remove(struct i2c_client *client)
320 struct ps8640 *ps_bridge = i2c_get_clientdata(client);
322 drm_bridge_remove(&ps_bridge->bridge);
327 static const struct of_device_id ps8640_match[] = {
328 { .compatible = "parade,ps8640" },
331 MODULE_DEVICE_TABLE(of, ps8640_match);
333 static struct i2c_driver ps8640_driver = {
334 .probe_new = ps8640_probe,
335 .remove = ps8640_remove,
338 .of_match_table = ps8640_match,
341 module_i2c_driver(ps8640_driver);
346 MODULE_DESCRIPTION("PARADE ps8640 DSI-eDP converter driver");
347 MODULE_LICENSE("GPL v2");