blob: f43bfe17b3b699289152cb9ff195afcb69f137f2 [file] [log] [blame]
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +03001/*
2 * linux/drivers/video/omap2/dss/sdi.c
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6 *
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.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#define DSS_SUBSYS_NAME "SDI"
21
22#include <linux/kernel.h>
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030023#include <linux/delay.h>
24#include <linux/err.h>
Roger Quadros508886c2010-03-17 13:35:21 +010025#include <linux/regulator/consumer.h>
Paul Gortmakera8a35932011-07-10 13:20:26 -040026#include <linux/export.h>
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +020027#include <linux/platform_device.h>
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030028
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030029#include <video/omapdss.h>
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030030#include "dss.h"
31
32static struct {
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030033 bool update_enabled;
Roger Quadros508886c2010-03-17 13:35:21 +010034 struct regulator *vdds_sdi_reg;
Archit Taneja37a57992012-06-29 14:33:18 +053035
36 struct dss_lcd_mgr_config mgr_config;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030037} sdi;
38
Archit Taneja37a57992012-06-29 14:33:18 +053039static void sdi_config_lcd_manager(struct omap_dss_device *dssdev)
Sumit Semwal64ba4f72010-12-02 11:27:10 +000040{
Archit Taneja37a57992012-06-29 14:33:18 +053041 sdi.mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
42
43 sdi.mgr_config.stallmode = false;
44 sdi.mgr_config.fifohandcheck = false;
45
46 sdi.mgr_config.video_port_width = 24;
47 sdi.mgr_config.lcden_sig_polarity = 1;
48
Archit Tanejaf476ae92012-06-29 14:37:03 +053049 dss_mgr_set_lcd_config(dssdev->manager, &sdi.mgr_config);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030050}
51
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +020052int omapdss_sdi_display_enable(struct omap_dss_device *dssdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030053{
54 struct omap_video_timings *t = &dssdev->panel.timings;
55 struct dss_clock_info dss_cinfo;
56 struct dispc_clock_info dispc_cinfo;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030057 unsigned long pck;
58 int r;
59
Tomi Valkeinen05e1d602011-06-23 16:38:21 +030060 if (dssdev->manager == NULL) {
61 DSSERR("failed to enable display: no manager\n");
62 return -ENODEV;
63 }
64
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030065 r = omap_dss_start_device(dssdev);
66 if (r) {
67 DSSERR("failed to start device\n");
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030068 goto err_start_dev;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030069 }
70
Roger Quadros508886c2010-03-17 13:35:21 +010071 r = regulator_enable(sdi.vdds_sdi_reg);
72 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030073 goto err_reg_enable;
Roger Quadros508886c2010-03-17 13:35:21 +010074
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030075 r = dispc_runtime_get();
76 if (r)
77 goto err_get_dispc;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030078
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030079 /* 15.5.9.1.2 */
Archit Tanejaa8d5e412012-06-25 12:26:38 +053080 dssdev->panel.timings.data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE;
81 dssdev->panel.timings.sync_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE;
82
Archit Taneja6d523e72012-06-21 09:33:55 +053083 r = dss_calc_clock_div(t->pixel_clock * 1000, &dss_cinfo, &dispc_cinfo);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030084 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030085 goto err_calc_clock_div;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030086
Archit Taneja37a57992012-06-29 14:33:18 +053087 sdi.mgr_config.clock_info = dispc_cinfo;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030088
Archit Taneja37a57992012-06-29 14:33:18 +053089 pck = dss_cinfo.fck / dispc_cinfo.lck_div / dispc_cinfo.pck_div / 1000;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030090
91 if (pck != t->pixel_clock) {
92 DSSWARN("Could not find exact pixel clock. Requested %d kHz, "
93 "got %lu kHz\n",
94 t->pixel_clock, pck);
95
96 t->pixel_clock = pck;
97 }
98
99
Archit Taneja41721162012-04-26 20:10:46 +0530100 dss_mgr_set_timings(dssdev->manager, t);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300101
102 r = dss_set_clock_div(&dss_cinfo);
103 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300104 goto err_set_dss_clock_div;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300105
Archit Taneja37a57992012-06-29 14:33:18 +0530106 sdi_config_lcd_manager(dssdev);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300107
Tomi Valkeinen35d67862012-08-21 09:09:47 +0300108 /*
109 * LCLK and PCLK divisors are located in shadow registers, and we
110 * normally write them to DISPC registers when enabling the output.
111 * However, SDI uses pck-free as source clock for its PLL, and pck-free
112 * is affected by the divisors. And as we need the PLL before enabling
113 * the output, we need to write the divisors early.
114 *
115 * It seems just writing to the DISPC register is enough, and we don't
116 * need to care about the shadow register mechanism for pck-free. The
117 * exact reason for this is unknown.
118 */
119 dispc_mgr_set_clock_div(dssdev->manager->id,
120 &sdi.mgr_config.clock_info);
121
Tomi Valkeinen42c9dee2011-03-02 12:29:27 +0200122 dss_sdi_init(dssdev->phy.sdi.datapairs);
123 r = dss_sdi_enable();
124 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300125 goto err_sdi_enable;
Tomi Valkeinen42c9dee2011-03-02 12:29:27 +0200126 mdelay(2);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300127
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200128 r = dss_mgr_enable(dssdev->manager);
129 if (r)
130 goto err_mgr_enable;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300131
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300132 return 0;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300133
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200134err_mgr_enable:
135 dss_sdi_disable();
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300136err_sdi_enable:
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300137err_set_dss_clock_div:
138err_calc_clock_div:
139 dispc_runtime_put();
140err_get_dispc:
Roger Quadros508886c2010-03-17 13:35:21 +0100141 regulator_disable(sdi.vdds_sdi_reg);
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300142err_reg_enable:
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300143 omap_dss_stop_device(dssdev);
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300144err_start_dev:
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300145 return r;
146}
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +0200147EXPORT_SYMBOL(omapdss_sdi_display_enable);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300148
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +0200149void omapdss_sdi_display_disable(struct omap_dss_device *dssdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300150{
Tomi Valkeinen7797c6d2011-11-04 10:22:46 +0200151 dss_mgr_disable(dssdev->manager);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300152
153 dss_sdi_disable();
154
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300155 dispc_runtime_put();
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300156
Roger Quadros508886c2010-03-17 13:35:21 +0100157 regulator_disable(sdi.vdds_sdi_reg);
158
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300159 omap_dss_stop_device(dssdev);
160}
Tomi Valkeinen37ac60e2010-01-12 15:12:07 +0200161EXPORT_SYMBOL(omapdss_sdi_display_disable);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300162
Tomi Valkeinen9d8232a2012-03-01 16:58:39 +0200163static int __init sdi_init_display(struct omap_dss_device *dssdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300164{
165 DSSDBG("SDI init\n");
166
Tomi Valkeinen5f42f2c2011-02-22 15:53:46 +0200167 if (sdi.vdds_sdi_reg == NULL) {
168 struct regulator *vdds_sdi;
169
170 vdds_sdi = dss_get_vdds_sdi();
171
172 if (IS_ERR(vdds_sdi)) {
173 DSSERR("can't get VDDS_SDI regulator\n");
174 return PTR_ERR(vdds_sdi);
175 }
176
177 sdi.vdds_sdi_reg = vdds_sdi;
178 }
179
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300180 return 0;
181}
182
Tomi Valkeinen38f3daf2012-05-02 14:55:12 +0300183static void __init sdi_probe_pdata(struct platform_device *pdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300184{
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200185 struct omap_dss_board_info *pdata = pdev->dev.platform_data;
186 int i, r;
187
188 for (i = 0; i < pdata->num_devices; ++i) {
189 struct omap_dss_device *dssdev = pdata->devices[i];
190
191 if (dssdev->type != OMAP_DISPLAY_TYPE_SDI)
192 continue;
193
Tomi Valkeinen9d8232a2012-03-01 16:58:39 +0200194 r = sdi_init_display(dssdev);
195 if (r) {
196 DSSERR("device %s init failed: %d\n", dssdev->name, r);
197 continue;
198 }
199
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200200 r = omap_dss_register_device(dssdev, &pdev->dev, i);
201 if (r)
202 DSSERR("device %s register failed: %d\n",
203 dssdev->name, r);
204 }
Tomi Valkeinen38f3daf2012-05-02 14:55:12 +0300205}
206
207static int __init omap_sdi_probe(struct platform_device *pdev)
208{
209 sdi_probe_pdata(pdev);
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200210
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300211 return 0;
212}
213
Tomi Valkeinen6e7e8f02012-02-17 17:41:13 +0200214static int __exit omap_sdi_remove(struct platform_device *pdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300215{
Tomi Valkeinen35deca32012-03-01 15:45:53 +0200216 omap_dss_unregister_child_devices(&pdev->dev);
217
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +0200218 return 0;
219}
220
221static struct platform_driver omap_sdi_driver = {
Tomi Valkeinen6e7e8f02012-02-17 17:41:13 +0200222 .remove = __exit_p(omap_sdi_remove),
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +0200223 .driver = {
224 .name = "omapdss_sdi",
225 .owner = THIS_MODULE,
226 },
227};
228
Tomi Valkeinen6e7e8f02012-02-17 17:41:13 +0200229int __init sdi_init_platform_driver(void)
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +0200230{
Tomi Valkeinen61055d42012-03-07 12:53:38 +0200231 return platform_driver_probe(&omap_sdi_driver, omap_sdi_probe);
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +0200232}
233
Tomi Valkeinen6e7e8f02012-02-17 17:41:13 +0200234void __exit sdi_uninit_platform_driver(void)
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +0200235{
236 platform_driver_unregister(&omap_sdi_driver);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300237}