2 * linux/drivers/video/omap2/dss/sdi.c
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
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.
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
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/>.
20 #define DSS_SUBSYS_NAME "SDI"
22 #include <linux/kernel.h>
23 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/export.h>
28 #include <video/omapdss.h>
33 struct regulator *vdds_sdi_reg;
36 static void sdi_basic_init(struct omap_dss_device *dssdev)
39 dispc_mgr_set_io_pad_mode(DSS_IO_PAD_MODE_BYPASS);
40 dispc_mgr_enable_stallmode(dssdev->manager->id, false);
42 dispc_mgr_set_lcd_display_type(dssdev->manager->id,
43 OMAP_DSS_LCD_DISPLAY_TFT);
45 dispc_mgr_set_tft_data_lines(dssdev->manager->id, 24);
46 dispc_lcd_enable_signal_polarity(1);
49 int omapdss_sdi_display_enable(struct omap_dss_device *dssdev)
51 struct omap_video_timings *t = &dssdev->panel.timings;
52 struct dss_clock_info dss_cinfo;
53 struct dispc_clock_info dispc_cinfo;
59 if (dssdev->manager == NULL) {
60 DSSERR("failed to enable display: no manager\n");
64 r = omap_dss_start_device(dssdev);
66 DSSERR("failed to start device\n");
70 r = regulator_enable(sdi.vdds_sdi_reg);
74 r = dss_runtime_get();
78 r = dispc_runtime_get();
82 sdi_basic_init(dssdev);
85 dssdev->panel.config |= OMAP_DSS_LCD_RF | OMAP_DSS_LCD_ONOFF;
87 dispc_mgr_set_pol_freq(dssdev->manager->id, dssdev->panel.config,
88 dssdev->panel.acbi, dssdev->panel.acb);
90 r = dss_calc_clock_div(1, t->pixel_clock * 1000,
91 &dss_cinfo, &dispc_cinfo);
93 goto err_calc_clock_div;
96 lck_div = dispc_cinfo.lck_div;
97 pck_div = dispc_cinfo.pck_div;
99 pck = fck / lck_div / pck_div / 1000;
101 if (pck != t->pixel_clock) {
102 DSSWARN("Could not find exact pixel clock. Requested %d kHz, "
104 t->pixel_clock, pck);
106 t->pixel_clock = pck;
110 dispc_mgr_set_lcd_timings(dssdev->manager->id, t);
112 r = dss_set_clock_div(&dss_cinfo);
114 goto err_set_dss_clock_div;
116 r = dispc_mgr_set_clock_div(dssdev->manager->id, &dispc_cinfo);
118 goto err_set_dispc_clock_div;
120 dss_sdi_init(dssdev->phy.sdi.datapairs);
121 r = dss_sdi_enable();
126 r = dss_mgr_enable(dssdev->manager);
135 err_set_dispc_clock_div:
136 err_set_dss_clock_div:
142 regulator_disable(sdi.vdds_sdi_reg);
144 omap_dss_stop_device(dssdev);
148 EXPORT_SYMBOL(omapdss_sdi_display_enable);
150 void omapdss_sdi_display_disable(struct omap_dss_device *dssdev)
152 dss_mgr_disable(dssdev->manager);
159 regulator_disable(sdi.vdds_sdi_reg);
161 omap_dss_stop_device(dssdev);
163 EXPORT_SYMBOL(omapdss_sdi_display_disable);
165 int sdi_init_display(struct omap_dss_device *dssdev)
167 DSSDBG("SDI init\n");
169 if (sdi.vdds_sdi_reg == NULL) {
170 struct regulator *vdds_sdi;
172 vdds_sdi = dss_get_vdds_sdi();
174 if (IS_ERR(vdds_sdi)) {
175 DSSERR("can't get VDDS_SDI regulator\n");
176 return PTR_ERR(vdds_sdi);
179 sdi.vdds_sdi_reg = vdds_sdi;