Commit 8620fc62 authored by Thierry Reding's avatar Thierry Reding

drm/tegra: Add Tegra124 DC support

Tegra124 and later support interlacing, but the driver doesn't support
it yet. Make sure interlacing stays disabled on hardware that supports
it.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 6b7c79d1
...@@ -15,6 +15,10 @@ ...@@ -15,6 +15,10 @@
#include "drm.h" #include "drm.h"
#include "gem.h" #include "gem.h"
struct tegra_dc_soc_info {
bool supports_interlacing;
};
struct tegra_plane { struct tegra_plane {
struct drm_plane base; struct drm_plane base;
unsigned int index; unsigned int index;
...@@ -658,6 +662,13 @@ static int tegra_crtc_mode_set(struct drm_crtc *crtc, ...@@ -658,6 +662,13 @@ static int tegra_crtc_mode_set(struct drm_crtc *crtc,
/* program display mode */ /* program display mode */
tegra_dc_set_timings(dc, mode); tegra_dc_set_timings(dc, mode);
/* interlacing isn't supported yet, so disable it */
if (dc->soc->supports_interlacing) {
value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL);
value &= ~INTERLACE_ENABLE;
tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL);
}
value = DE_SELECT_ACTIVE | DE_CONTROL_NORMAL; value = DE_SELECT_ACTIVE | DE_CONTROL_NORMAL;
tegra_dc_writel(dc, value, DC_DISP_DATA_ENABLE_OPTIONS); tegra_dc_writel(dc, value, DC_DISP_DATA_ENABLE_OPTIONS);
...@@ -1167,8 +1178,36 @@ static const struct host1x_client_ops dc_client_ops = { ...@@ -1167,8 +1178,36 @@ static const struct host1x_client_ops dc_client_ops = {
.exit = tegra_dc_exit, .exit = tegra_dc_exit,
}; };
static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
.supports_interlacing = false,
};
static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
.supports_interlacing = false,
};
static const struct tegra_dc_soc_info tegra124_dc_soc_info = {
.supports_interlacing = true,
};
static const struct of_device_id tegra_dc_of_match[] = {
{
.compatible = "nvidia,tegra124-dc",
.data = &tegra124_dc_soc_info,
}, {
.compatible = "nvidia,tegra30-dc",
.data = &tegra30_dc_soc_info,
}, {
.compatible = "nvidia,tegra20-dc",
.data = &tegra20_dc_soc_info,
}, {
/* sentinel */
}
};
static int tegra_dc_probe(struct platform_device *pdev) static int tegra_dc_probe(struct platform_device *pdev)
{ {
const struct of_device_id *id;
struct resource *regs; struct resource *regs;
struct tegra_dc *dc; struct tegra_dc *dc;
int err; int err;
...@@ -1177,9 +1216,14 @@ static int tegra_dc_probe(struct platform_device *pdev) ...@@ -1177,9 +1216,14 @@ static int tegra_dc_probe(struct platform_device *pdev)
if (!dc) if (!dc)
return -ENOMEM; return -ENOMEM;
id = of_match_node(tegra_dc_of_match, pdev->dev.of_node);
if (!id)
return -ENODEV;
spin_lock_init(&dc->lock); spin_lock_init(&dc->lock);
INIT_LIST_HEAD(&dc->list); INIT_LIST_HEAD(&dc->list);
dc->dev = &pdev->dev; dc->dev = &pdev->dev;
dc->soc = id->data;
dc->clk = devm_clk_get(&pdev->dev, NULL); dc->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(dc->clk)) { if (IS_ERR(dc->clk)) {
...@@ -1253,12 +1297,6 @@ static int tegra_dc_remove(struct platform_device *pdev) ...@@ -1253,12 +1297,6 @@ static int tegra_dc_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id tegra_dc_of_match[] = {
{ .compatible = "nvidia,tegra30-dc", },
{ .compatible = "nvidia,tegra20-dc", },
{ },
};
struct platform_driver tegra_dc_driver = { struct platform_driver tegra_dc_driver = {
.driver = { .driver = {
.name = "tegra-dc", .name = "tegra-dc",
......
...@@ -294,6 +294,11 @@ ...@@ -294,6 +294,11 @@
#define DC_DISP_SD_HW_K_VALUES 0x4dd #define DC_DISP_SD_HW_K_VALUES 0x4dd
#define DC_DISP_SD_MAN_K_VALUES 0x4de #define DC_DISP_SD_MAN_K_VALUES 0x4de
#define DC_DISP_INTERLACE_CONTROL 0x4e5
#define INTERLACE_STATUS (1 << 2)
#define INTERLACE_START (1 << 1)
#define INTERLACE_ENABLE (1 << 0)
#define DC_WIN_CSC_YOF 0x611 #define DC_WIN_CSC_YOF 0x611
#define DC_WIN_CSC_KYRGB 0x612 #define DC_WIN_CSC_KYRGB 0x612
#define DC_WIN_CSC_KUR 0x613 #define DC_WIN_CSC_KUR 0x613
......
...@@ -658,6 +658,7 @@ static const struct of_device_id host1x_drm_subdevs[] = { ...@@ -658,6 +658,7 @@ static const struct of_device_id host1x_drm_subdevs[] = {
{ .compatible = "nvidia,tegra114-dsi", }, { .compatible = "nvidia,tegra114-dsi", },
{ .compatible = "nvidia,tegra114-hdmi", }, { .compatible = "nvidia,tegra114-hdmi", },
{ .compatible = "nvidia,tegra114-gr3d", }, { .compatible = "nvidia,tegra114-gr3d", },
{ .compatible = "nvidia,tegra124-dc", },
{ /* sentinel */ } { /* sentinel */ }
}; };
......
...@@ -88,6 +88,7 @@ extern int tegra_drm_unregister_client(struct tegra_drm *tegra, ...@@ -88,6 +88,7 @@ extern int tegra_drm_unregister_client(struct tegra_drm *tegra,
extern int tegra_drm_init(struct tegra_drm *tegra, struct drm_device *drm); extern int tegra_drm_init(struct tegra_drm *tegra, struct drm_device *drm);
extern int tegra_drm_exit(struct tegra_drm *tegra); extern int tegra_drm_exit(struct tegra_drm *tegra);
struct tegra_dc_soc_info;
struct tegra_output; struct tegra_output;
struct tegra_dc { struct tegra_dc {
...@@ -113,6 +114,8 @@ struct tegra_dc { ...@@ -113,6 +114,8 @@ struct tegra_dc {
/* page-flip handling */ /* page-flip handling */
struct drm_pending_vblank_event *event; struct drm_pending_vblank_event *event;
const struct tegra_dc_soc_info *soc;
}; };
static inline struct tegra_dc * static inline struct tegra_dc *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment