2 * LCD panel driver for Sharp LS037V7DW01
4 * Copyright (C) 2013 Texas Instruments
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
12 #include <linux/delay.h>
13 #include <linux/gpio.h>
14 #include <linux/module.h>
16 #include <linux/of_gpio.h>
17 #include <linux/platform_device.h>
18 #include <linux/slab.h>
19 #include <linux/regulator/consumer.h>
20 #include <video/omapdss.h>
22 struct panel_drv_data {
23 struct omap_dss_device dssdev;
24 struct omap_dss_device *in;
25 struct regulator *vcc;
29 struct omap_video_timings videomode;
31 struct gpio_desc *resb_gpio; /* low = reset active min 20 us */
32 struct gpio_desc *ini_gpio; /* high = power on */
33 struct gpio_desc *mo_gpio; /* low = 480x640, high = 240x320 */
34 struct gpio_desc *lr_gpio; /* high = conventional horizontal scanning */
35 struct gpio_desc *ud_gpio; /* high = conventional vertical scanning */
38 static const struct omap_video_timings sharp_ls_timings = {
42 .pixelclock = 19200000,
52 .vsync_level = OMAPDSS_SIG_ACTIVE_LOW,
53 .hsync_level = OMAPDSS_SIG_ACTIVE_LOW,
54 .data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE,
55 .de_level = OMAPDSS_SIG_ACTIVE_HIGH,
56 .sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE,
59 #define to_panel_data(p) container_of(p, struct panel_drv_data, dssdev)
61 static int sharp_ls_connect(struct omap_dss_device *dssdev)
63 struct panel_drv_data *ddata = to_panel_data(dssdev);
64 struct omap_dss_device *in = ddata->in;
67 if (omapdss_device_is_connected(dssdev))
70 r = in->ops.dpi->connect(in, dssdev);
77 static void sharp_ls_disconnect(struct omap_dss_device *dssdev)
79 struct panel_drv_data *ddata = to_panel_data(dssdev);
80 struct omap_dss_device *in = ddata->in;
82 if (!omapdss_device_is_connected(dssdev))
85 in->ops.dpi->disconnect(in, dssdev);
88 static int sharp_ls_enable(struct omap_dss_device *dssdev)
90 struct panel_drv_data *ddata = to_panel_data(dssdev);
91 struct omap_dss_device *in = ddata->in;
94 if (!omapdss_device_is_connected(dssdev))
97 if (omapdss_device_is_enabled(dssdev))
100 if (ddata->data_lines)
101 in->ops.dpi->set_data_lines(in, ddata->data_lines);
102 in->ops.dpi->set_timings(in, &ddata->videomode);
105 r = regulator_enable(ddata->vcc);
110 r = in->ops.dpi->enable(in);
112 regulator_disable(ddata->vcc);
116 /* wait couple of vsyncs until enabling the LCD */
119 if (ddata->resb_gpio)
120 gpiod_set_value_cansleep(ddata->resb_gpio, 1);
123 gpiod_set_value_cansleep(ddata->ini_gpio, 1);
125 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
130 static void sharp_ls_disable(struct omap_dss_device *dssdev)
132 struct panel_drv_data *ddata = to_panel_data(dssdev);
133 struct omap_dss_device *in = ddata->in;
135 if (!omapdss_device_is_enabled(dssdev))
139 gpiod_set_value_cansleep(ddata->ini_gpio, 0);
141 if (ddata->resb_gpio)
142 gpiod_set_value_cansleep(ddata->resb_gpio, 0);
144 /* wait at least 5 vsyncs after disabling the LCD */
148 in->ops.dpi->disable(in);
151 regulator_disable(ddata->vcc);
153 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
156 static void sharp_ls_set_timings(struct omap_dss_device *dssdev,
157 struct omap_video_timings *timings)
159 struct panel_drv_data *ddata = to_panel_data(dssdev);
160 struct omap_dss_device *in = ddata->in;
162 ddata->videomode = *timings;
163 dssdev->panel.timings = *timings;
165 in->ops.dpi->set_timings(in, timings);
168 static void sharp_ls_get_timings(struct omap_dss_device *dssdev,
169 struct omap_video_timings *timings)
171 struct panel_drv_data *ddata = to_panel_data(dssdev);
173 *timings = ddata->videomode;
176 static int sharp_ls_check_timings(struct omap_dss_device *dssdev,
177 struct omap_video_timings *timings)
179 struct panel_drv_data *ddata = to_panel_data(dssdev);
180 struct omap_dss_device *in = ddata->in;
182 return in->ops.dpi->check_timings(in, timings);
185 static struct omap_dss_driver sharp_ls_ops = {
186 .connect = sharp_ls_connect,
187 .disconnect = sharp_ls_disconnect,
189 .enable = sharp_ls_enable,
190 .disable = sharp_ls_disable,
192 .set_timings = sharp_ls_set_timings,
193 .get_timings = sharp_ls_get_timings,
194 .check_timings = sharp_ls_check_timings,
196 .get_resolution = omapdss_default_get_resolution,
199 static int sharp_ls_get_gpio_of(struct device *dev, int index, int val,
200 const char *desc, struct gpio_desc **gpiod)
202 struct gpio_desc *gd;
206 gd = devm_gpiod_get_index(dev, desc, index, GPIOD_OUT_LOW);
214 static int sharp_ls_probe_of(struct platform_device *pdev)
216 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
217 struct device_node *node = pdev->dev.of_node;
218 struct omap_dss_device *in;
221 ddata->vcc = devm_regulator_get(&pdev->dev, "envdd");
222 if (IS_ERR(ddata->vcc)) {
223 dev_err(&pdev->dev, "failed to get regulator\n");
224 return PTR_ERR(ddata->vcc);
228 r = sharp_ls_get_gpio_of(&pdev->dev, 0, 0, "enable", &ddata->ini_gpio);
233 r = sharp_ls_get_gpio_of(&pdev->dev, 0, 0, "reset", &ddata->resb_gpio);
238 r = sharp_ls_get_gpio_of(&pdev->dev, 0, 0, "mode", &ddata->mo_gpio);
243 r = sharp_ls_get_gpio_of(&pdev->dev, 1, 1, "mode", &ddata->lr_gpio);
248 r = sharp_ls_get_gpio_of(&pdev->dev, 2, 1, "mode", &ddata->ud_gpio);
252 in = omapdss_of_find_source_for_first_ep(node);
254 dev_err(&pdev->dev, "failed to find video source\n");
263 static int sharp_ls_probe(struct platform_device *pdev)
265 struct panel_drv_data *ddata;
266 struct omap_dss_device *dssdev;
269 ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
273 platform_set_drvdata(pdev, ddata);
275 if (!pdev->dev.of_node)
278 r = sharp_ls_probe_of(pdev);
282 ddata->videomode = sharp_ls_timings;
284 dssdev = &ddata->dssdev;
285 dssdev->dev = &pdev->dev;
286 dssdev->driver = &sharp_ls_ops;
287 dssdev->type = OMAP_DISPLAY_TYPE_DPI;
288 dssdev->owner = THIS_MODULE;
289 dssdev->panel.timings = ddata->videomode;
290 dssdev->phy.dpi.data_lines = ddata->data_lines;
292 r = omapdss_register_display(dssdev);
294 dev_err(&pdev->dev, "Failed to register panel\n");
301 omap_dss_put_device(ddata->in);
305 static int __exit sharp_ls_remove(struct platform_device *pdev)
307 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
308 struct omap_dss_device *dssdev = &ddata->dssdev;
309 struct omap_dss_device *in = ddata->in;
311 omapdss_unregister_display(dssdev);
313 sharp_ls_disable(dssdev);
314 sharp_ls_disconnect(dssdev);
316 omap_dss_put_device(in);
321 static const struct of_device_id sharp_ls_of_match[] = {
322 { .compatible = "omapdss,sharp,ls037v7dw01", },
326 MODULE_DEVICE_TABLE(of, sharp_ls_of_match);
328 static struct platform_driver sharp_ls_driver = {
329 .probe = sharp_ls_probe,
330 .remove = __exit_p(sharp_ls_remove),
332 .name = "panel-sharp-ls037v7dw01",
333 .of_match_table = sharp_ls_of_match,
334 .suppress_bind_attrs = true,
338 module_platform_driver(sharp_ls_driver);
341 MODULE_DESCRIPTION("Sharp LS037V7DW01 Panel Driver");
342 MODULE_LICENSE("GPL");