drm/msm: add sde hdmi bridge implementation
Add a private HDMI bridge implementation for SDE. This is intended to support new HDMI features specific to SDE driver. CRs-Fixed: 2010135 Change-Id: I0269b1ff79d8be4f48643a9e4e904427791ac1ac Signed-off-by: Ray Zhang <rayz@codeaurora.org>
This commit is contained in:
parent
811c7691bd
commit
618520c133
4 changed files with 290 additions and 5 deletions
|
@ -94,7 +94,8 @@ msm_drm-$(CONFIG_DRM_MSM_DSI_STAGING) += dsi-staging/dsi_phy.o \
|
|||
dsi-staging/dsi_display_test.o
|
||||
|
||||
msm_drm-$(CONFIG_DRM_SDE_HDMI) += \
|
||||
hdmi-staging/sde_hdmi.o
|
||||
hdmi-staging/sde_hdmi.o \
|
||||
hdmi-staging/sde_hdmi_bridge.o
|
||||
|
||||
msm_drm-$(CONFIG_DRM_MSM_DSI_PLL) += dsi/pll/dsi_pll.o \
|
||||
dsi/pll/dsi_pll_28nm.o
|
||||
|
|
|
@ -325,9 +325,9 @@ static int _sde_hdmi_hpd_enable(struct sde_hdmi *sde_hdmi)
|
|||
}
|
||||
}
|
||||
|
||||
hdmi_set_mode(hdmi, false);
|
||||
sde_hdmi_set_mode(hdmi, false);
|
||||
_sde_hdmi_phy_reset(hdmi);
|
||||
hdmi_set_mode(hdmi, true);
|
||||
sde_hdmi_set_mode(hdmi, true);
|
||||
|
||||
hdmi_write(hdmi, REG_HDMI_USEC_REFTIMER, 0x0001001b);
|
||||
|
||||
|
@ -367,7 +367,7 @@ static void _sde_hdmi_hdp_disable(struct sde_hdmi *sde_hdmi)
|
|||
/* Disable HPD interrupt */
|
||||
hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL, 0);
|
||||
|
||||
hdmi_set_mode(hdmi, false);
|
||||
sde_hdmi_set_mode(hdmi, false);
|
||||
|
||||
for (i = 0; i < config->hpd_clk_cnt; i++)
|
||||
clk_disable_unprepare(hdmi->hpd_clks[i]);
|
||||
|
@ -460,6 +460,32 @@ static irqreturn_t _sde_hdmi_irq(int irq, void *dev_id)
|
|||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
void sde_hdmi_set_mode(struct hdmi *hdmi, bool power_on)
|
||||
{
|
||||
uint32_t ctrl = 0;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&hdmi->reg_lock, flags);
|
||||
ctrl = hdmi_read(hdmi, REG_HDMI_CTRL);
|
||||
if (power_on) {
|
||||
ctrl |= HDMI_CTRL_ENABLE;
|
||||
if (!hdmi->hdmi_mode) {
|
||||
ctrl |= HDMI_CTRL_HDMI;
|
||||
hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
|
||||
ctrl &= ~HDMI_CTRL_HDMI;
|
||||
} else {
|
||||
ctrl |= HDMI_CTRL_HDMI;
|
||||
}
|
||||
} else {
|
||||
ctrl &= ~HDMI_CTRL_HDMI;
|
||||
}
|
||||
|
||||
hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
|
||||
spin_unlock_irqrestore(&hdmi->reg_lock, flags);
|
||||
DRM_DEBUG("HDMI Core: %s, HDMI_CTRL=0x%08x\n",
|
||||
power_on ? "Enable" : "Disable", ctrl);
|
||||
}
|
||||
|
||||
int sde_hdmi_get_info(struct msm_display_info *info,
|
||||
void *display)
|
||||
{
|
||||
|
@ -1087,7 +1113,7 @@ int sde_hdmi_drm_init(struct sde_hdmi *display, struct drm_encoder *enc)
|
|||
|
||||
hdmi_audio_infoframe_init(&hdmi->audio.infoframe);
|
||||
|
||||
hdmi->bridge = hdmi_bridge_init(hdmi);
|
||||
hdmi->bridge = sde_hdmi_bridge_init(hdmi);
|
||||
if (IS_ERR(hdmi->bridge)) {
|
||||
rc = PTR_ERR(hdmi->bridge);
|
||||
SDE_ERROR("failed to create HDMI bridge: %d\n", rc);
|
||||
|
|
|
@ -224,6 +224,23 @@ int sde_hdmi_drm_deinit(struct sde_hdmi *display);
|
|||
int sde_hdmi_get_info(struct msm_display_info *info,
|
||||
void *display);
|
||||
|
||||
/**
|
||||
* sde_hdmi_bridge_init() - init sde hdmi bridge
|
||||
* @hdmi: Handle to the hdmi.
|
||||
*
|
||||
* Return: struct drm_bridge *.
|
||||
*/
|
||||
struct drm_bridge *sde_hdmi_bridge_init(struct hdmi *hdmi);
|
||||
|
||||
/**
|
||||
* sde_hdmi_set_mode() - Set HDMI mode API.
|
||||
* @hdmi: Handle to the hdmi.
|
||||
* @power_on: Power on/off request.
|
||||
*
|
||||
* Return: void.
|
||||
*/
|
||||
void sde_hdmi_set_mode(struct hdmi *hdmi, bool power_on);
|
||||
|
||||
#else /*#ifdef CONFIG_DRM_SDE_HDMI*/
|
||||
|
||||
static inline u32 sde_hdmi_get_num_of_displays(void)
|
||||
|
|
241
drivers/gpu/drm/msm/hdmi-staging/sde_hdmi_bridge.c
Normal file
241
drivers/gpu/drm/msm/hdmi-staging/sde_hdmi_bridge.c
Normal file
|
@ -0,0 +1,241 @@
|
|||
/*
|
||||
* Copyright (c) 2016-2017, The Linux Foundation. All rights reserved.
|
||||
* Copyright (C) 2013 Red Hat
|
||||
* Author: Rob Clark <robdclark@gmail.com>
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#include "sde_kms.h"
|
||||
#include "sde_hdmi.h"
|
||||
#include "hdmi.h"
|
||||
|
||||
struct sde_hdmi_bridge {
|
||||
struct drm_bridge base;
|
||||
struct hdmi *hdmi;
|
||||
};
|
||||
#define to_hdmi_bridge(x) container_of(x, struct sde_hdmi_bridge, base)
|
||||
|
||||
void _sde_hdmi_bridge_destroy(struct drm_bridge *bridge)
|
||||
{
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_power_on(struct drm_bridge *bridge)
|
||||
{
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge = to_hdmi_bridge(bridge);
|
||||
struct hdmi *hdmi = sde_hdmi_bridge->hdmi;
|
||||
const struct hdmi_platform_config *config = hdmi->config;
|
||||
int i, ret;
|
||||
|
||||
for (i = 0; i < config->pwr_reg_cnt; i++) {
|
||||
ret = regulator_enable(hdmi->pwr_regs[i]);
|
||||
if (ret) {
|
||||
SDE_ERROR("failed to enable pwr regulator: %s (%d)\n",
|
||||
config->pwr_reg_names[i], ret);
|
||||
}
|
||||
}
|
||||
|
||||
if (config->pwr_clk_cnt > 0) {
|
||||
DRM_DEBUG("pixclock: %lu", hdmi->pixclock);
|
||||
ret = clk_set_rate(hdmi->pwr_clks[0], hdmi->pixclock);
|
||||
if (ret) {
|
||||
SDE_ERROR("failed to set pixel clk: %s (%d)\n",
|
||||
config->pwr_clk_names[0], ret);
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < config->pwr_clk_cnt; i++) {
|
||||
ret = clk_prepare_enable(hdmi->pwr_clks[i]);
|
||||
if (ret) {
|
||||
SDE_ERROR("failed to enable pwr clk: %s (%d)\n",
|
||||
config->pwr_clk_names[i], ret);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_power_off(struct drm_bridge *bridge)
|
||||
{
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge = to_hdmi_bridge(bridge);
|
||||
struct hdmi *hdmi = sde_hdmi_bridge->hdmi;
|
||||
const struct hdmi_platform_config *config = hdmi->config;
|
||||
int i, ret;
|
||||
|
||||
/* Wait for vsync */
|
||||
msleep(20);
|
||||
|
||||
for (i = 0; i < config->pwr_clk_cnt; i++)
|
||||
clk_disable_unprepare(hdmi->pwr_clks[i]);
|
||||
|
||||
for (i = 0; i < config->pwr_reg_cnt; i++) {
|
||||
ret = regulator_disable(hdmi->pwr_regs[i]);
|
||||
if (ret) {
|
||||
SDE_ERROR("failed to disable pwr regulator: %s (%d)\n",
|
||||
config->pwr_reg_names[i], ret);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_pre_enable(struct drm_bridge *bridge)
|
||||
{
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge = to_hdmi_bridge(bridge);
|
||||
struct hdmi *hdmi = sde_hdmi_bridge->hdmi;
|
||||
struct hdmi_phy *phy = hdmi->phy;
|
||||
|
||||
DRM_DEBUG("power up");
|
||||
|
||||
if (!hdmi->power_on) {
|
||||
_sde_hdmi_bridge_power_on(bridge);
|
||||
hdmi->power_on = true;
|
||||
hdmi_audio_update(hdmi);
|
||||
}
|
||||
|
||||
if (phy)
|
||||
phy->funcs->powerup(phy, hdmi->pixclock);
|
||||
|
||||
sde_hdmi_set_mode(hdmi, true);
|
||||
|
||||
if (hdmi->hdcp_ctrl && hdmi->is_hdcp_supported)
|
||||
hdmi_hdcp_ctrl_on(hdmi->hdcp_ctrl);
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_enable(struct drm_bridge *bridge)
|
||||
{
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_disable(struct drm_bridge *bridge)
|
||||
{
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_post_disable(struct drm_bridge *bridge)
|
||||
{
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge = to_hdmi_bridge(bridge);
|
||||
struct hdmi *hdmi = sde_hdmi_bridge->hdmi;
|
||||
struct hdmi_phy *phy = hdmi->phy;
|
||||
|
||||
if (hdmi->hdcp_ctrl && hdmi->is_hdcp_supported)
|
||||
hdmi_hdcp_ctrl_off(hdmi->hdcp_ctrl);
|
||||
|
||||
DRM_DEBUG("power down");
|
||||
sde_hdmi_set_mode(hdmi, false);
|
||||
|
||||
if (phy)
|
||||
phy->funcs->powerdown(phy);
|
||||
|
||||
if (hdmi->power_on) {
|
||||
_sde_hdmi_bridge_power_off(bridge);
|
||||
hdmi->power_on = false;
|
||||
hdmi_audio_update(hdmi);
|
||||
}
|
||||
}
|
||||
|
||||
static void _sde_hdmi_bridge_mode_set(struct drm_bridge *bridge,
|
||||
struct drm_display_mode *mode,
|
||||
struct drm_display_mode *adjusted_mode)
|
||||
{
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge = to_hdmi_bridge(bridge);
|
||||
struct hdmi *hdmi = sde_hdmi_bridge->hdmi;
|
||||
int hstart, hend, vstart, vend;
|
||||
uint32_t frame_ctrl;
|
||||
|
||||
mode = adjusted_mode;
|
||||
|
||||
hdmi->pixclock = mode->clock * 1000;
|
||||
|
||||
hstart = mode->htotal - mode->hsync_start;
|
||||
hend = mode->htotal - mode->hsync_start + mode->hdisplay;
|
||||
|
||||
vstart = mode->vtotal - mode->vsync_start - 1;
|
||||
vend = mode->vtotal - mode->vsync_start + mode->vdisplay - 1;
|
||||
|
||||
DRM_DEBUG(
|
||||
"htotal=%d, vtotal=%d, hstart=%d, hend=%d, vstart=%d, vend=%d",
|
||||
mode->htotal, mode->vtotal, hstart, hend, vstart, vend);
|
||||
|
||||
hdmi_write(hdmi, REG_HDMI_TOTAL,
|
||||
HDMI_TOTAL_H_TOTAL(mode->htotal - 1) |
|
||||
HDMI_TOTAL_V_TOTAL(mode->vtotal - 1));
|
||||
|
||||
hdmi_write(hdmi, REG_HDMI_ACTIVE_HSYNC,
|
||||
HDMI_ACTIVE_HSYNC_START(hstart) |
|
||||
HDMI_ACTIVE_HSYNC_END(hend));
|
||||
hdmi_write(hdmi, REG_HDMI_ACTIVE_VSYNC,
|
||||
HDMI_ACTIVE_VSYNC_START(vstart) |
|
||||
HDMI_ACTIVE_VSYNC_END(vend));
|
||||
|
||||
if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
|
||||
hdmi_write(hdmi, REG_HDMI_VSYNC_TOTAL_F2,
|
||||
HDMI_VSYNC_TOTAL_F2_V_TOTAL(mode->vtotal));
|
||||
hdmi_write(hdmi, REG_HDMI_VSYNC_ACTIVE_F2,
|
||||
HDMI_VSYNC_ACTIVE_F2_START(vstart + 1) |
|
||||
HDMI_VSYNC_ACTIVE_F2_END(vend + 1));
|
||||
} else {
|
||||
hdmi_write(hdmi, REG_HDMI_VSYNC_TOTAL_F2,
|
||||
HDMI_VSYNC_TOTAL_F2_V_TOTAL(0));
|
||||
hdmi_write(hdmi, REG_HDMI_VSYNC_ACTIVE_F2,
|
||||
HDMI_VSYNC_ACTIVE_F2_START(0) |
|
||||
HDMI_VSYNC_ACTIVE_F2_END(0));
|
||||
}
|
||||
|
||||
frame_ctrl = 0;
|
||||
if (mode->flags & DRM_MODE_FLAG_NHSYNC)
|
||||
frame_ctrl |= HDMI_FRAME_CTRL_HSYNC_LOW;
|
||||
if (mode->flags & DRM_MODE_FLAG_NVSYNC)
|
||||
frame_ctrl |= HDMI_FRAME_CTRL_VSYNC_LOW;
|
||||
if (mode->flags & DRM_MODE_FLAG_INTERLACE)
|
||||
frame_ctrl |= HDMI_FRAME_CTRL_INTERLACED_EN;
|
||||
DRM_DEBUG("frame_ctrl=%08x\n", frame_ctrl);
|
||||
hdmi_write(hdmi, REG_HDMI_FRAME_CTRL, frame_ctrl);
|
||||
|
||||
hdmi_audio_update(hdmi);
|
||||
}
|
||||
|
||||
static const struct drm_bridge_funcs _sde_hdmi_bridge_funcs = {
|
||||
.pre_enable = _sde_hdmi_bridge_pre_enable,
|
||||
.enable = _sde_hdmi_bridge_enable,
|
||||
.disable = _sde_hdmi_bridge_disable,
|
||||
.post_disable = _sde_hdmi_bridge_post_disable,
|
||||
.mode_set = _sde_hdmi_bridge_mode_set,
|
||||
};
|
||||
|
||||
|
||||
/* initialize bridge */
|
||||
struct drm_bridge *sde_hdmi_bridge_init(struct hdmi *hdmi)
|
||||
{
|
||||
struct drm_bridge *bridge = NULL;
|
||||
struct sde_hdmi_bridge *sde_hdmi_bridge;
|
||||
int ret;
|
||||
|
||||
sde_hdmi_bridge = devm_kzalloc(hdmi->dev->dev,
|
||||
sizeof(*sde_hdmi_bridge), GFP_KERNEL);
|
||||
if (!sde_hdmi_bridge) {
|
||||
ret = -ENOMEM;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
sde_hdmi_bridge->hdmi = hdmi;
|
||||
|
||||
bridge = &sde_hdmi_bridge->base;
|
||||
bridge->funcs = &_sde_hdmi_bridge_funcs;
|
||||
|
||||
ret = drm_bridge_attach(hdmi->dev, bridge);
|
||||
if (ret)
|
||||
goto fail;
|
||||
|
||||
return bridge;
|
||||
|
||||
fail:
|
||||
if (bridge)
|
||||
_sde_hdmi_bridge_destroy(bridge);
|
||||
|
||||
return ERR_PTR(ret);
|
||||
}
|
Loading…
Add table
Reference in a new issue