blob: d8ab31f3a8134d517e8b2f31778079c113639292 [file] [log] [blame]
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +03001/*
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +03002 * Copyright (C) 2009 Nokia Corporation
3 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#define DSS_SUBSYS_NAME "SDI"
19
20#include <linux/kernel.h>
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030021#include <linux/delay.h>
22#include <linux/err.h>
Roger Quadros508886c2010-03-17 13:35:21 +010023#include <linux/regulator/consumer.h>
Paul Gortmakera8a35932011-07-10 13:20:26 -040024#include <linux/export.h>
Tomi Valkeinena57dd4f2012-02-20 16:57:37 +020025#include <linux/platform_device.h>
Tomi Valkeinen13b1ba72012-09-28 10:03:03 +030026#include <linux/string.h>
Tomi Valkeinen2ecef242013-12-16 15:13:24 +020027#include <linux/of.h>
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030028
Peter Ujfalusi32043da2016-05-27 14:40:49 +030029#include "omapdss.h"
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030030#include "dss.h"
31
32static struct {
Tomi Valkeinen46c4b642013-03-19 13:46:40 +020033 struct platform_device *pdev;
34
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030035 bool update_enabled;
Roger Quadros508886c2010-03-17 13:35:21 +010036 struct regulator *vdds_sdi_reg;
Archit Taneja37a57992012-06-29 14:33:18 +053037
38 struct dss_lcd_mgr_config mgr_config;
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +030039 struct videomode vm;
Archit Taneja889b4fd2012-07-20 17:18:49 +053040 int datapairs;
Archit Taneja81b87f52012-09-26 16:30:49 +053041
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +030042 struct omap_dss_device output;
Tomi Valkeinen2ecef242013-12-16 15:13:24 +020043
44 bool port_initialized;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +030045} sdi;
46
Tomi Valkeinen36816fa2013-03-05 17:06:26 +020047struct sdi_clk_calc_ctx {
48 unsigned long pck_min, pck_max;
49
Tomi Valkeinenc56812f2014-01-28 08:50:47 +020050 unsigned long fck;
Tomi Valkeinen36816fa2013-03-05 17:06:26 +020051 struct dispc_clock_info dispc_cinfo;
52};
53
54static bool dpi_calc_dispc_cb(int lckd, int pckd, unsigned long lck,
55 unsigned long pck, void *data)
56{
57 struct sdi_clk_calc_ctx *ctx = data;
58
59 ctx->dispc_cinfo.lck_div = lckd;
60 ctx->dispc_cinfo.pck_div = pckd;
61 ctx->dispc_cinfo.lck = lck;
62 ctx->dispc_cinfo.pck = pck;
63
64 return true;
65}
66
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +020067static bool dpi_calc_dss_cb(unsigned long fck, void *data)
Tomi Valkeinen36816fa2013-03-05 17:06:26 +020068{
69 struct sdi_clk_calc_ctx *ctx = data;
70
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +020071 ctx->fck = fck;
Tomi Valkeinen36816fa2013-03-05 17:06:26 +020072
73 return dispc_div_calc(fck, ctx->pck_min, ctx->pck_max,
74 dpi_calc_dispc_cb, ctx);
75}
76
77static int sdi_calc_clock_div(unsigned long pclk,
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +020078 unsigned long *fck,
Tomi Valkeinen36816fa2013-03-05 17:06:26 +020079 struct dispc_clock_info *dispc_cinfo)
80{
81 int i;
82 struct sdi_clk_calc_ctx ctx;
83
84 /*
85 * DSS fclk gives us very few possibilities, so finding a good pixel
86 * clock may not be possible. We try multiple times to find the clock,
87 * each time widening the pixel clock range we look for, up to
88 * +/- 1MHz.
89 */
90
91 for (i = 0; i < 10; ++i) {
92 bool ok;
93
94 memset(&ctx, 0, sizeof(ctx));
95 if (pclk > 1000 * i * i * i)
96 ctx.pck_min = max(pclk - 1000 * i * i * i, 0lu);
97 else
98 ctx.pck_min = 0;
99 ctx.pck_max = pclk + 1000 * i * i * i;
100
Tomi Valkeinen688af022013-10-31 16:41:57 +0200101 ok = dss_div_calc(pclk, ctx.pck_min, dpi_calc_dss_cb, &ctx);
Tomi Valkeinen36816fa2013-03-05 17:06:26 +0200102 if (ok) {
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200103 *fck = ctx.fck;
Tomi Valkeinen36816fa2013-03-05 17:06:26 +0200104 *dispc_cinfo = ctx.dispc_cinfo;
105 return 0;
106 }
107 }
108
109 return -EINVAL;
110}
111
Archit Taneja37a57992012-06-29 14:33:18 +0530112static void sdi_config_lcd_manager(struct omap_dss_device *dssdev)
Sumit Semwal64ba4f72010-12-02 11:27:10 +0000113{
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200114 enum omap_channel channel = dssdev->dispc_channel;
Archit Taneja7d6069e2012-09-04 11:49:30 +0530115
Archit Taneja37a57992012-06-29 14:33:18 +0530116 sdi.mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
117
118 sdi.mgr_config.stallmode = false;
119 sdi.mgr_config.fifohandcheck = false;
120
121 sdi.mgr_config.video_port_width = 24;
122 sdi.mgr_config.lcden_sig_polarity = 1;
123
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200124 dss_mgr_set_lcd_config(channel, &sdi.mgr_config);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300125}
126
Tomi Valkeinencd6e9152013-05-22 13:14:37 +0300127static int sdi_display_enable(struct omap_dss_device *dssdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300128{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300129 struct omap_dss_device *out = &sdi.output;
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200130 enum omap_channel channel = dssdev->dispc_channel;
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300131 struct videomode *vm = &sdi.vm;
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200132 unsigned long fck;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300133 struct dispc_clock_info dispc_cinfo;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300134 unsigned long pck;
135 int r;
136
Tomi Valkeinenf1504ad2015-11-05 09:34:51 +0200137 if (!out->dispc_channel_connected) {
Archit Taneja7d6069e2012-09-04 11:49:30 +0530138 DSSERR("failed to enable display: no output/manager\n");
Tomi Valkeinen05e1d602011-06-23 16:38:21 +0300139 return -ENODEV;
140 }
141
Roger Quadros508886c2010-03-17 13:35:21 +0100142 r = regulator_enable(sdi.vdds_sdi_reg);
143 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300144 goto err_reg_enable;
Roger Quadros508886c2010-03-17 13:35:21 +0100145
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300146 r = dispc_runtime_get();
147 if (r)
148 goto err_get_dispc;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300149
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300150 /* 15.5.9.1.2 */
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300151 vm->flags |= DISPLAY_FLAGS_PIXDATA_POSEDGE | DISPLAY_FLAGS_SYNC_POSEDGE;
Archit Tanejaa8d5e412012-06-25 12:26:38 +0530152
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300153 r = sdi_calc_clock_div(vm->pixelclock, &fck, &dispc_cinfo);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300154 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300155 goto err_calc_clock_div;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300156
Archit Taneja37a57992012-06-29 14:33:18 +0530157 sdi.mgr_config.clock_info = dispc_cinfo;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300158
Tomi Valkeinend8d789412013-04-10 14:12:14 +0300159 pck = fck / dispc_cinfo.lck_div / dispc_cinfo.pck_div;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300160
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300161 if (pck != vm->pixelclock) {
Peter Ujfalusi7aa91e72016-09-22 14:07:02 +0300162 DSSWARN("Could not find exact pixel clock. Requested %lu Hz, got %lu Hz\n",
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300163 vm->pixelclock, pck);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300164
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300165 vm->pixelclock = pck;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300166 }
167
168
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300169 dss_mgr_set_timings(channel, vm);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300170
Tomi Valkeinend0f58bd2013-10-31 14:44:23 +0200171 r = dss_set_fck_rate(fck);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300172 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300173 goto err_set_dss_clock_div;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300174
Archit Taneja37a57992012-06-29 14:33:18 +0530175 sdi_config_lcd_manager(dssdev);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300176
Tomi Valkeinen35d67862012-08-21 09:09:47 +0300177 /*
178 * LCLK and PCLK divisors are located in shadow registers, and we
179 * normally write them to DISPC registers when enabling the output.
180 * However, SDI uses pck-free as source clock for its PLL, and pck-free
181 * is affected by the divisors. And as we need the PLL before enabling
182 * the output, we need to write the divisors early.
183 *
184 * It seems just writing to the DISPC register is enough, and we don't
185 * need to care about the shadow register mechanism for pck-free. The
186 * exact reason for this is unknown.
187 */
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200188 dispc_mgr_set_clock_div(channel, &sdi.mgr_config.clock_info);
Archit Taneja889b4fd2012-07-20 17:18:49 +0530189
Tomi Valkeinen66591452012-09-11 11:28:59 +0300190 dss_sdi_init(sdi.datapairs);
Tomi Valkeinen42c9dee2011-03-02 12:29:27 +0200191 r = dss_sdi_enable();
192 if (r)
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300193 goto err_sdi_enable;
Tomi Valkeinen42c9dee2011-03-02 12:29:27 +0200194 mdelay(2);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300195
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200196 r = dss_mgr_enable(channel);
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200197 if (r)
198 goto err_mgr_enable;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300199
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300200 return 0;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300201
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200202err_mgr_enable:
203 dss_sdi_disable();
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300204err_sdi_enable:
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300205err_set_dss_clock_div:
206err_calc_clock_div:
207 dispc_runtime_put();
208err_get_dispc:
Roger Quadros508886c2010-03-17 13:35:21 +0100209 regulator_disable(sdi.vdds_sdi_reg);
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300210err_reg_enable:
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300211 return r;
212}
213
Tomi Valkeinencd6e9152013-05-22 13:14:37 +0300214static void sdi_display_disable(struct omap_dss_device *dssdev)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300215{
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200216 enum omap_channel channel = dssdev->dispc_channel;
Archit Taneja7d6069e2012-09-04 11:49:30 +0530217
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200218 dss_mgr_disable(channel);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300219
220 dss_sdi_disable();
221
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300222 dispc_runtime_put();
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300223
Roger Quadros508886c2010-03-17 13:35:21 +0100224 regulator_disable(sdi.vdds_sdi_reg);
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300225}
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300226
Tomi Valkeinencd6e9152013-05-22 13:14:37 +0300227static void sdi_set_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300228 struct videomode *vm)
Archit Tanejac7833f72012-07-05 17:11:12 +0530229{
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300230 sdi.vm = *vm;
Archit Tanejac7833f72012-07-05 17:11:12 +0530231}
Archit Tanejac7833f72012-07-05 17:11:12 +0530232
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300233static void sdi_get_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300234 struct videomode *vm)
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300235{
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300236 *vm = sdi.vm;
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300237}
238
239static int sdi_check_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300240 struct videomode *vm)
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300241{
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200242 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300243
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300244 if (!dispc_mgr_timings_ok(channel, vm))
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300245 return -EINVAL;
246
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300247 if (vm->pixelclock == 0)
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300248 return -EINVAL;
249
250 return 0;
251}
252
Tomi Valkeinend37801b2013-05-17 11:00:15 +0300253static int sdi_init_regulator(void)
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300254{
Tomi Valkeinend37801b2013-05-17 11:00:15 +0300255 struct regulator *vdds_sdi;
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300256
Tomi Valkeinend37801b2013-05-17 11:00:15 +0300257 if (sdi.vdds_sdi_reg)
258 return 0;
Tomi Valkeinen5f42f2c2011-02-22 15:53:46 +0200259
Tomi Valkeinen349c3d92013-08-29 10:06:43 +0300260 vdds_sdi = devm_regulator_get(&sdi.pdev->dev, "vdds_sdi");
Tomi Valkeinend37801b2013-05-17 11:00:15 +0300261 if (IS_ERR(vdds_sdi)) {
Tomi Valkeinen40359a92013-12-19 16:15:34 +0200262 if (PTR_ERR(vdds_sdi) != -EPROBE_DEFER)
263 DSSERR("can't get VDDS_SDI regulator\n");
Tomi Valkeinen349c3d92013-08-29 10:06:43 +0300264 return PTR_ERR(vdds_sdi);
Tomi Valkeinen5f42f2c2011-02-22 15:53:46 +0200265 }
266
Tomi Valkeinend37801b2013-05-17 11:00:15 +0300267 sdi.vdds_sdi_reg = vdds_sdi;
268
Tomi Valkeinen23c0a7a2009-08-05 16:18:44 +0300269 return 0;
270}
271
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300272static int sdi_connect(struct omap_dss_device *dssdev,
273 struct omap_dss_device *dst)
274{
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200275 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300276 int r;
277
278 r = sdi_init_regulator();
279 if (r)
280 return r;
281
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200282 r = dss_mgr_connect(channel, dssdev);
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300283 if (r)
284 return r;
285
286 r = omapdss_output_set_device(dssdev, dst);
287 if (r) {
288 DSSERR("failed to connect output to new device: %s\n",
289 dst->name);
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200290 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300291 return r;
292 }
293
294 return 0;
295}
296
297static void sdi_disconnect(struct omap_dss_device *dssdev,
298 struct omap_dss_device *dst)
299{
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200300 enum omap_channel channel = dssdev->dispc_channel;
301
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300302 WARN_ON(dst != dssdev->dst);
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300303
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300304 if (dst != dssdev->dst)
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300305 return;
306
307 omapdss_output_unset_device(dssdev);
308
Tomi Valkeinenc64b79c2015-11-05 09:57:04 +0200309 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300310}
311
312static const struct omapdss_sdi_ops sdi_ops = {
313 .connect = sdi_connect,
314 .disconnect = sdi_disconnect,
315
Tomi Valkeinencd6e9152013-05-22 13:14:37 +0300316 .enable = sdi_display_enable,
317 .disable = sdi_display_disable,
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300318
319 .check_timings = sdi_check_timings,
Tomi Valkeinencd6e9152013-05-22 13:14:37 +0300320 .set_timings = sdi_set_timings,
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300321 .get_timings = sdi_get_timings,
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300322};
323
Tomi Valkeinend23b3352013-05-02 11:56:35 +0300324static void sdi_init_output(struct platform_device *pdev)
Archit Taneja81b87f52012-09-26 16:30:49 +0530325{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300326 struct omap_dss_device *out = &sdi.output;
Archit Taneja81b87f52012-09-26 16:30:49 +0530327
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300328 out->dev = &pdev->dev;
Archit Taneja81b87f52012-09-26 16:30:49 +0530329 out->id = OMAP_DSS_OUTPUT_SDI;
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300330 out->output_type = OMAP_DISPLAY_TYPE_SDI;
Tomi Valkeinen7286a082013-02-18 13:06:01 +0200331 out->name = "sdi.0";
Tomi Valkeinen2eea5ae2013-02-13 11:23:54 +0200332 out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
Tomi Valkeinena32442d2014-12-29 09:57:11 +0200333 /* We have SDI only on OMAP3, where it's on port 1 */
334 out->port_num = 1;
Tomi Valkeinenb1082df2013-05-24 13:19:14 +0300335 out->ops.sdi = &sdi_ops;
Tomi Valkeinenb7328e12013-05-03 11:42:18 +0300336 out->owner = THIS_MODULE;
Archit Taneja81b87f52012-09-26 16:30:49 +0530337
Tomi Valkeinen5d47dbc2013-04-24 13:32:51 +0300338 omapdss_register_output(out);
Archit Taneja81b87f52012-09-26 16:30:49 +0530339}
340
Tomi Valkeinenede92692015-06-04 14:12:16 +0300341static void sdi_uninit_output(struct platform_device *pdev)
Archit Taneja81b87f52012-09-26 16:30:49 +0530342{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300343 struct omap_dss_device *out = &sdi.output;
Archit Taneja81b87f52012-09-26 16:30:49 +0530344
Tomi Valkeinen5d47dbc2013-04-24 13:32:51 +0300345 omapdss_unregister_output(out);
Archit Taneja81b87f52012-09-26 16:30:49 +0530346}
347
Tomi Valkeinenede92692015-06-04 14:12:16 +0300348int sdi_init_port(struct platform_device *pdev, struct device_node *port)
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200349{
350 struct device_node *ep;
351 u32 datapairs;
352 int r;
353
Rob Herring09bffa62017-03-22 08:26:08 -0500354 ep = of_get_next_child(port, NULL);
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200355 if (!ep)
356 return 0;
357
358 r = of_property_read_u32(ep, "datapairs", &datapairs);
359 if (r) {
360 DSSERR("failed to parse datapairs\n");
361 goto err_datapairs;
362 }
363
364 sdi.datapairs = datapairs;
365
366 of_node_put(ep);
367
368 sdi.pdev = pdev;
369
370 sdi_init_output(pdev);
371
372 sdi.port_initialized = true;
373
374 return 0;
375
376err_datapairs:
377 of_node_put(ep);
378
379 return r;
380}
381
Tomi Valkeinenede92692015-06-04 14:12:16 +0300382void sdi_uninit_port(struct device_node *port)
Tomi Valkeinen2ecef242013-12-16 15:13:24 +0200383{
384 if (!sdi.port_initialized)
385 return;
386
387 sdi_uninit_output(sdi.pdev);
388}