mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/exynos: convert clock_enable crtc callback to pipeline clock
clock_enable callback is used only by FIMD->DP pipeline. Similar but more universal functionality provides pipeline clock. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Inki Dae <daeinki@gmail.com>
This commit is contained in:
parent
a121d17956
commit
196e059a8a
3 changed files with 16 additions and 25 deletions
|
@ -48,14 +48,11 @@ int exynos_dp_crtc_clock_enable(struct analogix_dp_plat_data *plat_data,
|
||||||
{
|
{
|
||||||
struct exynos_dp_device *dp = to_dp(plat_data);
|
struct exynos_dp_device *dp = to_dp(plat_data);
|
||||||
struct drm_encoder *encoder = &dp->encoder;
|
struct drm_encoder *encoder = &dp->encoder;
|
||||||
struct exynos_drm_crtc *crtc;
|
|
||||||
|
|
||||||
if (!encoder)
|
if (!encoder->crtc)
|
||||||
return -1;
|
return -EPERM;
|
||||||
|
|
||||||
crtc = to_exynos_crtc(encoder->crtc);
|
exynos_drm_pipe_clk_enable(to_exynos_crtc(encoder->crtc), enable);
|
||||||
if (crtc && crtc->ops && crtc->ops->clock_enable)
|
|
||||||
crtc->ops->clock_enable(crtc, enable);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,10 +129,6 @@ struct exynos_drm_plane_config {
|
||||||
* @disable_plane: disable hardware specific overlay.
|
* @disable_plane: disable hardware specific overlay.
|
||||||
* @te_handler: trigger to transfer video image at the tearing effect
|
* @te_handler: trigger to transfer video image at the tearing effect
|
||||||
* synchronization signal if there is a page flip request.
|
* synchronization signal if there is a page flip request.
|
||||||
* @clock_enable: optional function enabling/disabling display domain clock,
|
|
||||||
* called from exynos-dp driver before powering up (with
|
|
||||||
* 'enable' argument as true) and after powering down (with
|
|
||||||
* 'enable' as false).
|
|
||||||
*/
|
*/
|
||||||
struct exynos_drm_crtc;
|
struct exynos_drm_crtc;
|
||||||
struct exynos_drm_crtc_ops {
|
struct exynos_drm_crtc_ops {
|
||||||
|
@ -151,7 +147,6 @@ struct exynos_drm_crtc_ops {
|
||||||
struct exynos_drm_plane *plane);
|
struct exynos_drm_plane *plane);
|
||||||
void (*atomic_flush)(struct exynos_drm_crtc *crtc);
|
void (*atomic_flush)(struct exynos_drm_crtc *crtc);
|
||||||
void (*te_handler)(struct exynos_drm_crtc *crtc);
|
void (*te_handler)(struct exynos_drm_crtc *crtc);
|
||||||
void (*clock_enable)(struct exynos_drm_crtc *crtc, bool enable);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct exynos_drm_clk {
|
struct exynos_drm_clk {
|
||||||
|
|
|
@ -102,6 +102,7 @@ struct fimd_driver_data {
|
||||||
unsigned int has_vidoutcon:1;
|
unsigned int has_vidoutcon:1;
|
||||||
unsigned int has_vtsel:1;
|
unsigned int has_vtsel:1;
|
||||||
unsigned int has_mic_bypass:1;
|
unsigned int has_mic_bypass:1;
|
||||||
|
unsigned int has_dp_clk:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct fimd_driver_data s3c64xx_fimd_driver_data = {
|
static struct fimd_driver_data s3c64xx_fimd_driver_data = {
|
||||||
|
@ -145,6 +146,7 @@ static struct fimd_driver_data exynos5_fimd_driver_data = {
|
||||||
.has_shadowcon = 1,
|
.has_shadowcon = 1,
|
||||||
.has_vidoutcon = 1,
|
.has_vidoutcon = 1,
|
||||||
.has_vtsel = 1,
|
.has_vtsel = 1,
|
||||||
|
.has_dp_clk = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct fimd_driver_data exynos5420_fimd_driver_data = {
|
static struct fimd_driver_data exynos5420_fimd_driver_data = {
|
||||||
|
@ -157,6 +159,7 @@ static struct fimd_driver_data exynos5420_fimd_driver_data = {
|
||||||
.has_vidoutcon = 1,
|
.has_vidoutcon = 1,
|
||||||
.has_vtsel = 1,
|
.has_vtsel = 1,
|
||||||
.has_mic_bypass = 1,
|
.has_mic_bypass = 1,
|
||||||
|
.has_dp_clk = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct fimd_context {
|
struct fimd_context {
|
||||||
|
@ -184,6 +187,7 @@ struct fimd_context {
|
||||||
|
|
||||||
struct fimd_driver_data *driver_data;
|
struct fimd_driver_data *driver_data;
|
||||||
struct drm_encoder *encoder;
|
struct drm_encoder *encoder;
|
||||||
|
struct exynos_drm_clk dp_clk;
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct of_device_id fimd_driver_dt_match[] = {
|
static const struct of_device_id fimd_driver_dt_match[] = {
|
||||||
|
@ -878,21 +882,12 @@ static void fimd_te_handler(struct exynos_drm_crtc *crtc)
|
||||||
drm_crtc_handle_vblank(&ctx->crtc->base);
|
drm_crtc_handle_vblank(&ctx->crtc->base);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fimd_dp_clock_enable(struct exynos_drm_crtc *crtc, bool enable)
|
static void fimd_dp_clock_enable(struct exynos_drm_clk *clk, bool enable)
|
||||||
{
|
{
|
||||||
struct fimd_context *ctx = crtc->ctx;
|
struct fimd_context *ctx = container_of(clk, struct fimd_context,
|
||||||
u32 val;
|
dp_clk);
|
||||||
|
u32 val = enable ? DP_MIE_CLK_DP_ENABLE : DP_MIE_CLK_DISABLE;
|
||||||
|
|
||||||
/*
|
|
||||||
* Only Exynos 5250, 5260, 5410 and 542x requires enabling DP/MIE
|
|
||||||
* clock. On these SoCs the bootloader may enable it but any
|
|
||||||
* power domain off/on will reset it to disable state.
|
|
||||||
*/
|
|
||||||
if (ctx->driver_data != &exynos5_fimd_driver_data &&
|
|
||||||
ctx->driver_data != &exynos5420_fimd_driver_data)
|
|
||||||
return;
|
|
||||||
|
|
||||||
val = enable ? DP_MIE_CLK_DP_ENABLE : DP_MIE_CLK_DISABLE;
|
|
||||||
writel(val, ctx->regs + DP_MIE_CLKCON);
|
writel(val, ctx->regs + DP_MIE_CLKCON);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -908,7 +903,6 @@ static const struct exynos_drm_crtc_ops fimd_crtc_ops = {
|
||||||
.disable_plane = fimd_disable_plane,
|
.disable_plane = fimd_disable_plane,
|
||||||
.atomic_flush = fimd_atomic_flush,
|
.atomic_flush = fimd_atomic_flush,
|
||||||
.te_handler = fimd_te_handler,
|
.te_handler = fimd_te_handler,
|
||||||
.clock_enable = fimd_dp_clock_enable,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static irqreturn_t fimd_irq_handler(int irq, void *dev_id)
|
static irqreturn_t fimd_irq_handler(int irq, void *dev_id)
|
||||||
|
@ -987,6 +981,11 @@ static int fimd_bind(struct device *dev, struct device *master, void *data)
|
||||||
if (IS_ERR(ctx->crtc))
|
if (IS_ERR(ctx->crtc))
|
||||||
return PTR_ERR(ctx->crtc);
|
return PTR_ERR(ctx->crtc);
|
||||||
|
|
||||||
|
if (ctx->driver_data->has_dp_clk) {
|
||||||
|
ctx->dp_clk.enable = fimd_dp_clock_enable;
|
||||||
|
ctx->crtc->pipe_clk = &ctx->dp_clk;
|
||||||
|
}
|
||||||
|
|
||||||
if (ctx->encoder)
|
if (ctx->encoder)
|
||||||
exynos_dpi_bind(drm_dev, ctx->encoder);
|
exynos_dpi_bind(drm_dev, ctx->encoder);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue