2009-08-05 21:18:44 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
2018-05-24 19:46:19 +08:00
|
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
2009-08-05 21:18:44 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DSS_SUBSYS_NAME "SDI"
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/err.h>
|
2010-03-17 20:35:21 +08:00
|
|
|
#include <linux/regulator/consumer.h>
|
2011-07-11 01:20:26 +08:00
|
|
|
#include <linux/export.h>
|
2012-02-20 22:57:37 +08:00
|
|
|
#include <linux/platform_device.h>
|
2012-09-28 15:03:03 +08:00
|
|
|
#include <linux/string.h>
|
2013-12-16 21:13:24 +08:00
|
|
|
#include <linux/of.h>
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2016-05-27 19:40:49 +08:00
|
|
|
#include "omapdss.h"
|
2009-08-05 21:18:44 +08:00
|
|
|
#include "dss.h"
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device {
|
2013-03-19 19:46:40 +08:00
|
|
|
struct platform_device *pdev;
|
2018-02-13 20:00:23 +08:00
|
|
|
struct dss_device *dss;
|
2013-03-19 19:46:40 +08:00
|
|
|
|
2009-08-05 21:18:44 +08:00
|
|
|
bool update_enabled;
|
2010-03-17 20:35:21 +08:00
|
|
|
struct regulator *vdds_sdi_reg;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2012-06-29 17:03:18 +08:00
|
|
|
struct dss_lcd_mgr_config mgr_config;
|
2016-09-22 19:07:04 +08:00
|
|
|
struct videomode vm;
|
2012-07-20 19:48:49 +08:00
|
|
|
int datapairs;
|
2012-09-26 19:00:49 +08:00
|
|
|
|
OMAPDSS: combine omap_dss_output into omap_dss_device
We currently have omap_dss_device, which represents an external display
device, sometimes an external encoder, sometimes a panel. Then we have
omap_dss_output, which represents DSS's output encoder.
In the future with new display device model, we construct a video
pipeline from the display blocks. To accomplish this, all the blocks
need to be presented by the same entity.
Thus, this patch combines omap_dss_output into omap_dss_device. Some of
the fields in omap_dss_output are already found in omap_dss_device, but
some are not. This means we'll have DSS output specific fields in
omap_dss_device, which is not very nice. However, it is easier to just
keep those output specific fields there for now, and after transition to
new display device model is made, they can be cleaned up easier than
could be done now.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2013-04-19 20:09:34 +08:00
|
|
|
struct omap_dss_device output;
|
2018-02-13 20:00:47 +08:00
|
|
|
};
|
2013-12-16 21:13:24 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
#define dssdev_to_sdi(dssdev) container_of(dssdev, struct sdi_device, output)
|
2010-12-02 19:27:10 +08:00
|
|
|
|
2013-03-05 23:06:26 +08:00
|
|
|
struct sdi_clk_calc_ctx {
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi;
|
2013-03-05 23:06:26 +08:00
|
|
|
unsigned long pck_min, pck_max;
|
|
|
|
|
2014-01-28 14:50:47 +08:00
|
|
|
unsigned long fck;
|
2013-03-05 23:06:26 +08:00
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool dpi_calc_dispc_cb(int lckd, int pckd, unsigned long lck,
|
|
|
|
unsigned long pck, void *data)
|
|
|
|
{
|
|
|
|
struct sdi_clk_calc_ctx *ctx = data;
|
|
|
|
|
|
|
|
ctx->dispc_cinfo.lck_div = lckd;
|
|
|
|
ctx->dispc_cinfo.pck_div = pckd;
|
|
|
|
ctx->dispc_cinfo.lck = lck;
|
|
|
|
ctx->dispc_cinfo.pck = pck;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-31 20:44:23 +08:00
|
|
|
static bool dpi_calc_dss_cb(unsigned long fck, void *data)
|
2013-03-05 23:06:26 +08:00
|
|
|
{
|
|
|
|
struct sdi_clk_calc_ctx *ctx = data;
|
|
|
|
|
2013-10-31 20:44:23 +08:00
|
|
|
ctx->fck = fck;
|
2013-03-05 23:06:26 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
return dispc_div_calc(ctx->sdi->dss->dispc, fck,
|
2018-02-13 20:00:43 +08:00
|
|
|
ctx->pck_min, ctx->pck_max,
|
|
|
|
dpi_calc_dispc_cb, ctx);
|
2013-03-05 23:06:26 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
static int sdi_calc_clock_div(struct sdi_device *sdi, unsigned long pclk,
|
|
|
|
unsigned long *fck,
|
|
|
|
struct dispc_clock_info *dispc_cinfo)
|
2013-03-05 23:06:26 +08:00
|
|
|
{
|
|
|
|
int i;
|
2018-05-24 15:58:25 +08:00
|
|
|
struct sdi_clk_calc_ctx ctx;
|
2013-03-05 23:06:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* DSS fclk gives us very few possibilities, so finding a good pixel
|
|
|
|
* clock may not be possible. We try multiple times to find the clock,
|
|
|
|
* each time widening the pixel clock range we look for, up to
|
|
|
|
* +/- 1MHz.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = 0; i < 10; ++i) {
|
|
|
|
bool ok;
|
|
|
|
|
|
|
|
memset(&ctx, 0, sizeof(ctx));
|
2018-05-24 15:58:25 +08:00
|
|
|
|
|
|
|
ctx.sdi = sdi;
|
|
|
|
|
2013-03-05 23:06:26 +08:00
|
|
|
if (pclk > 1000 * i * i * i)
|
|
|
|
ctx.pck_min = max(pclk - 1000 * i * i * i, 0lu);
|
|
|
|
else
|
|
|
|
ctx.pck_min = 0;
|
|
|
|
ctx.pck_max = pclk + 1000 * i * i * i;
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
ok = dss_div_calc(sdi->dss, pclk, ctx.pck_min,
|
2018-02-13 20:00:26 +08:00
|
|
|
dpi_calc_dss_cb, &ctx);
|
2013-03-05 23:06:26 +08:00
|
|
|
if (ok) {
|
2013-10-31 20:44:23 +08:00
|
|
|
*fck = ctx.fck;
|
2013-03-05 23:06:26 +08:00
|
|
|
*dispc_cinfo = ctx.dispc_cinfo;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
static void sdi_config_lcd_manager(struct sdi_device *sdi)
|
2009-08-05 21:18:44 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->mgr_config.io_pad_mode = DSS_IO_PAD_MODE_BYPASS;
|
2010-12-02 19:27:10 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->mgr_config.stallmode = false;
|
|
|
|
sdi->mgr_config.fifohandcheck = false;
|
2012-06-29 17:03:18 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->mgr_config.video_port_width = 24;
|
|
|
|
sdi->mgr_config.lcden_sig_polarity = 1;
|
2012-06-29 17:03:18 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
dss_mgr_set_lcd_config(&sdi->output, &sdi->mgr_config);
|
2009-08-05 21:18:44 +08:00
|
|
|
}
|
|
|
|
|
2013-05-22 18:14:37 +08:00
|
|
|
static int sdi_display_enable(struct omap_dss_device *dssdev)
|
2009-08-05 21:18:44 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi = dssdev_to_sdi(dssdev);
|
2009-08-05 21:18:44 +08:00
|
|
|
struct dispc_clock_info dispc_cinfo;
|
2018-06-08 20:59:31 +08:00
|
|
|
unsigned long fck;
|
2009-08-05 21:18:44 +08:00
|
|
|
int r;
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
if (!sdi->output.dispc_channel_connected) {
|
2012-09-04 14:19:30 +08:00
|
|
|
DSSERR("failed to enable display: no output/manager\n");
|
2011-06-23 21:38:21 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
r = regulator_enable(sdi->vdds_sdi_reg);
|
2010-03-17 20:35:21 +08:00
|
|
|
if (r)
|
2011-05-27 15:52:19 +08:00
|
|
|
goto err_reg_enable;
|
2010-03-17 20:35:21 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
r = dispc_runtime_get(sdi->dss->dispc);
|
2011-05-27 15:52:19 +08:00
|
|
|
if (r)
|
|
|
|
goto err_get_dispc;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-06-08 20:59:31 +08:00
|
|
|
r = sdi_calc_clock_div(sdi, sdi->vm.pixelclock, &fck, &dispc_cinfo);
|
2009-08-05 21:18:44 +08:00
|
|
|
if (r)
|
2011-05-27 15:52:19 +08:00
|
|
|
goto err_calc_clock_div;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->mgr_config.clock_info = dispc_cinfo;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
r = dss_set_fck_rate(sdi->dss, fck);
|
2009-08-05 21:18:44 +08:00
|
|
|
if (r)
|
2011-05-27 15:52:19 +08:00
|
|
|
goto err_set_dss_clock_div;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi_config_lcd_manager(sdi);
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2012-08-21 14:09:47 +08:00
|
|
|
/*
|
|
|
|
* LCLK and PCLK divisors are located in shadow registers, and we
|
|
|
|
* normally write them to DISPC registers when enabling the output.
|
|
|
|
* However, SDI uses pck-free as source clock for its PLL, and pck-free
|
|
|
|
* is affected by the divisors. And as we need the PLL before enabling
|
|
|
|
* the output, we need to write the divisors early.
|
|
|
|
*
|
|
|
|
* It seems just writing to the DISPC register is enough, and we don't
|
|
|
|
* need to care about the shadow register mechanism for pck-free. The
|
|
|
|
* exact reason for this is unknown.
|
|
|
|
*/
|
2018-02-13 20:00:47 +08:00
|
|
|
dispc_mgr_set_clock_div(sdi->dss->dispc, sdi->output.dispc_channel,
|
|
|
|
&sdi->mgr_config.clock_info);
|
2012-07-20 19:48:49 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
dss_sdi_init(sdi->dss, sdi->datapairs);
|
|
|
|
r = dss_sdi_enable(sdi->dss);
|
2011-03-02 18:29:27 +08:00
|
|
|
if (r)
|
2011-05-27 15:52:19 +08:00
|
|
|
goto err_sdi_enable;
|
2011-03-02 18:29:27 +08:00
|
|
|
mdelay(2);
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
r = dss_mgr_enable(&sdi->output);
|
2011-11-21 19:42:58 +08:00
|
|
|
if (r)
|
|
|
|
goto err_mgr_enable;
|
2009-08-05 21:18:44 +08:00
|
|
|
|
|
|
|
return 0;
|
2011-05-27 15:52:19 +08:00
|
|
|
|
2011-11-21 19:42:58 +08:00
|
|
|
err_mgr_enable:
|
2018-02-13 20:00:47 +08:00
|
|
|
dss_sdi_disable(sdi->dss);
|
2011-05-27 15:52:19 +08:00
|
|
|
err_sdi_enable:
|
|
|
|
err_set_dss_clock_div:
|
|
|
|
err_calc_clock_div:
|
2018-02-13 20:00:47 +08:00
|
|
|
dispc_runtime_put(sdi->dss->dispc);
|
2011-05-27 15:52:19 +08:00
|
|
|
err_get_dispc:
|
2018-02-13 20:00:47 +08:00
|
|
|
regulator_disable(sdi->vdds_sdi_reg);
|
2011-05-27 15:52:19 +08:00
|
|
|
err_reg_enable:
|
2009-08-05 21:18:44 +08:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-05-22 18:14:37 +08:00
|
|
|
static void sdi_display_disable(struct omap_dss_device *dssdev)
|
2009-08-05 21:18:44 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi = dssdev_to_sdi(dssdev);
|
|
|
|
|
|
|
|
dss_mgr_disable(&sdi->output);
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
dss_sdi_disable(sdi->dss);
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
dispc_runtime_put(sdi->dss->dispc);
|
2009-08-05 21:18:44 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
regulator_disable(sdi->vdds_sdi_reg);
|
2009-08-05 21:18:44 +08:00
|
|
|
}
|
|
|
|
|
2013-05-22 18:14:37 +08:00
|
|
|
static void sdi_set_timings(struct omap_dss_device *dssdev,
|
2018-06-04 23:29:01 +08:00
|
|
|
const struct videomode *vm)
|
2012-07-05 19:41:12 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi = dssdev_to_sdi(dssdev);
|
|
|
|
|
|
|
|
sdi->vm = *vm;
|
2012-07-05 19:41:12 +08:00
|
|
|
}
|
|
|
|
|
2013-05-24 18:19:14 +08:00
|
|
|
static int sdi_check_timings(struct omap_dss_device *dssdev,
|
2016-09-22 19:07:04 +08:00
|
|
|
struct videomode *vm)
|
2013-05-24 18:19:14 +08:00
|
|
|
{
|
2018-06-08 20:59:31 +08:00
|
|
|
struct sdi_device *sdi = dssdev_to_sdi(dssdev);
|
|
|
|
struct dispc_clock_info dispc_cinfo;
|
|
|
|
unsigned long fck;
|
|
|
|
unsigned long pck;
|
|
|
|
int r;
|
|
|
|
|
2016-09-22 19:07:04 +08:00
|
|
|
if (vm->pixelclock == 0)
|
2013-05-24 18:19:14 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-06-08 20:59:31 +08:00
|
|
|
r = sdi_calc_clock_div(sdi, vm->pixelclock, &fck, &dispc_cinfo);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
pck = fck / dispc_cinfo.lck_div / dispc_cinfo.pck_div;
|
|
|
|
|
|
|
|
if (pck != vm->pixelclock) {
|
|
|
|
DSSWARN("Pixel clock adjusted from %lu Hz to %lu Hz\n",
|
|
|
|
vm->pixelclock, pck);
|
|
|
|
|
|
|
|
vm->pixelclock = pck;
|
|
|
|
}
|
|
|
|
|
2013-05-24 18:19:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-05 05:42:36 +08:00
|
|
|
static int sdi_connect(struct omap_dss_device *src,
|
|
|
|
struct omap_dss_device *dst)
|
2013-05-24 18:19:14 +08:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
2018-03-06 07:25:13 +08:00
|
|
|
r = omapdss_device_connect(dst->dss, dst, dst->next);
|
2018-03-07 05:34:53 +08:00
|
|
|
if (r)
|
2018-03-06 07:25:13 +08:00
|
|
|
return r;
|
2013-05-24 18:19:14 +08:00
|
|
|
|
2018-03-07 06:28:18 +08:00
|
|
|
dst->dispc_channel_connected = true;
|
2013-05-24 18:19:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-05 05:42:36 +08:00
|
|
|
static void sdi_disconnect(struct omap_dss_device *src,
|
|
|
|
struct omap_dss_device *dst)
|
2013-05-24 18:19:14 +08:00
|
|
|
{
|
2018-03-07 06:28:18 +08:00
|
|
|
dst->dispc_channel_connected = false;
|
|
|
|
|
2018-03-05 05:42:36 +08:00
|
|
|
omapdss_device_disconnect(dst, dst->next);
|
2013-05-24 18:19:14 +08:00
|
|
|
}
|
|
|
|
|
2018-02-28 21:58:13 +08:00
|
|
|
static const struct omap_dss_device_ops sdi_ops = {
|
2013-05-24 18:19:14 +08:00
|
|
|
.connect = sdi_connect,
|
|
|
|
.disconnect = sdi_disconnect,
|
|
|
|
|
2013-05-22 18:14:37 +08:00
|
|
|
.enable = sdi_display_enable,
|
|
|
|
.disable = sdi_display_disable,
|
2013-05-24 18:19:14 +08:00
|
|
|
|
|
|
|
.check_timings = sdi_check_timings,
|
2013-05-22 18:14:37 +08:00
|
|
|
.set_timings = sdi_set_timings,
|
2013-05-24 18:19:14 +08:00
|
|
|
};
|
|
|
|
|
2018-03-03 04:13:06 +08:00
|
|
|
static int sdi_init_output(struct sdi_device *sdi)
|
2012-09-26 19:00:49 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct omap_dss_device *out = &sdi->output;
|
2018-03-06 07:25:13 +08:00
|
|
|
int r;
|
2012-09-26 19:00:49 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
out->dev = &sdi->pdev->dev;
|
2012-09-26 19:00:49 +08:00
|
|
|
out->id = OMAP_DSS_OUTPUT_SDI;
|
OMAPDSS: combine omap_dss_output into omap_dss_device
We currently have omap_dss_device, which represents an external display
device, sometimes an external encoder, sometimes a panel. Then we have
omap_dss_output, which represents DSS's output encoder.
In the future with new display device model, we construct a video
pipeline from the display blocks. To accomplish this, all the blocks
need to be presented by the same entity.
Thus, this patch combines omap_dss_output into omap_dss_device. Some of
the fields in omap_dss_output are already found in omap_dss_device, but
some are not. This means we'll have DSS output specific fields in
omap_dss_device, which is not very nice. However, it is easier to just
keep those output specific fields there for now, and after transition to
new display device model is made, they can be cleaned up easier than
could be done now.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2013-04-19 20:09:34 +08:00
|
|
|
out->output_type = OMAP_DISPLAY_TYPE_SDI;
|
2013-02-18 19:06:01 +08:00
|
|
|
out->name = "sdi.0";
|
2013-02-13 17:23:54 +08:00
|
|
|
out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
|
2014-12-29 15:57:11 +08:00
|
|
|
/* We have SDI only on OMAP3, where it's on port 1 */
|
2018-03-05 03:49:28 +08:00
|
|
|
out->of_ports = BIT(1);
|
2018-02-28 21:58:13 +08:00
|
|
|
out->ops = &sdi_ops;
|
2013-05-03 16:42:18 +08:00
|
|
|
out->owner = THIS_MODULE;
|
2018-06-06 20:20:01 +08:00
|
|
|
out->bus_flags = DRM_BUS_FLAG_PIXDATA_POSEDGE /* 15.5.9.1.2 */
|
|
|
|
| DRM_BUS_FLAG_SYNC_POSEDGE;
|
2012-09-26 19:00:49 +08:00
|
|
|
|
2018-03-03 04:13:06 +08:00
|
|
|
out->next = omapdss_of_find_connected_device(out->dev->of_node, 1);
|
|
|
|
if (IS_ERR(out->next)) {
|
|
|
|
if (PTR_ERR(out->next) != -EPROBE_DEFER)
|
|
|
|
dev_err(out->dev, "failed to find video sink\n");
|
|
|
|
return PTR_ERR(out->next);
|
|
|
|
}
|
|
|
|
|
2018-03-06 07:25:13 +08:00
|
|
|
r = omapdss_output_validate(out);
|
|
|
|
if (r) {
|
|
|
|
omapdss_device_put(out->next);
|
|
|
|
out->next = NULL;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2018-03-02 07:25:32 +08:00
|
|
|
omapdss_device_register(out);
|
2018-03-03 04:13:06 +08:00
|
|
|
|
|
|
|
return 0;
|
2012-09-26 19:00:49 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
static void sdi_uninit_output(struct sdi_device *sdi)
|
2012-09-26 19:00:49 +08:00
|
|
|
{
|
2018-03-03 04:13:06 +08:00
|
|
|
if (sdi->output.next)
|
|
|
|
omapdss_device_put(sdi->output.next);
|
2018-03-02 07:25:32 +08:00
|
|
|
omapdss_device_unregister(&sdi->output);
|
2012-09-26 19:00:49 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:23 +08:00
|
|
|
int sdi_init_port(struct dss_device *dss, struct platform_device *pdev,
|
|
|
|
struct device_node *port)
|
2013-12-16 21:13:24 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi;
|
2013-12-16 21:13:24 +08:00
|
|
|
struct device_node *ep;
|
|
|
|
u32 datapairs;
|
|
|
|
int r;
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi = kzalloc(sizeof(*sdi), GFP_KERNEL);
|
|
|
|
if (!sdi)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2017-03-22 21:26:08 +08:00
|
|
|
ep = of_get_next_child(port, NULL);
|
2018-02-13 20:00:47 +08:00
|
|
|
if (!ep) {
|
|
|
|
r = 0;
|
|
|
|
goto err_free;
|
|
|
|
}
|
2013-12-16 21:13:24 +08:00
|
|
|
|
|
|
|
r = of_property_read_u32(ep, "datapairs", &datapairs);
|
2018-03-03 03:38:21 +08:00
|
|
|
of_node_put(ep);
|
2013-12-16 21:13:24 +08:00
|
|
|
if (r) {
|
|
|
|
DSSERR("failed to parse datapairs\n");
|
2018-03-03 03:38:21 +08:00
|
|
|
goto err_free;
|
2013-12-16 21:13:24 +08:00
|
|
|
}
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->datapairs = datapairs;
|
|
|
|
sdi->dss = dss;
|
2013-12-16 21:13:24 +08:00
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi->pdev = pdev;
|
|
|
|
port->data = sdi;
|
2013-12-16 21:13:24 +08:00
|
|
|
|
2018-03-05 06:10:55 +08:00
|
|
|
sdi->vdds_sdi_reg = devm_regulator_get(&pdev->dev, "vdds_sdi");
|
|
|
|
if (IS_ERR(sdi->vdds_sdi_reg)) {
|
|
|
|
r = PTR_ERR(sdi->vdds_sdi_reg);
|
|
|
|
if (r != -EPROBE_DEFER)
|
|
|
|
DSSERR("can't get VDDS_SDI regulator\n");
|
|
|
|
goto err_free;
|
|
|
|
}
|
|
|
|
|
2018-03-03 04:13:06 +08:00
|
|
|
r = sdi_init_output(sdi);
|
|
|
|
if (r)
|
|
|
|
goto err_free;
|
2013-12-16 21:13:24 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
err_free:
|
|
|
|
kfree(sdi);
|
2013-12-16 21:13:24 +08:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2015-06-04 19:12:16 +08:00
|
|
|
void sdi_uninit_port(struct device_node *port)
|
2013-12-16 21:13:24 +08:00
|
|
|
{
|
2018-02-13 20:00:47 +08:00
|
|
|
struct sdi_device *sdi = port->data;
|
|
|
|
|
|
|
|
if (!sdi)
|
2013-12-16 21:13:24 +08:00
|
|
|
return;
|
|
|
|
|
2018-02-13 20:00:47 +08:00
|
|
|
sdi_uninit_output(sdi);
|
|
|
|
kfree(sdi);
|
2013-12-16 21:13:24 +08:00
|
|
|
}
|