diff options
author | Thierry Reding <treding@nvidia.com> | 2014-01-29 23:31:17 +0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-06-06 01:09:16 +0400 |
commit | f925390efccb24016a4fafe77721770021ed754a (patch) | |
tree | eb338c23ebcc4d51553ba75003c94b89d35bcec5 /drivers/gpu/drm/tegra/drm.h | |
parent | 688c59afbf74cf729d4f50b0cd862bb30f6de658 (diff) | |
download | linux-f925390efccb24016a4fafe77721770021ed754a.tar.xz |
drm/tegra: dc - Add YUYV support
YUYV is UYVY with swapped bytes. Luckily the Tegra DC hardware can swap
bytes during scan-out, so supporting YUYV is simply a matter of writing
the correct value to the byteswap register.
This patch modifies tegra_dc_format() to return the byte swap parameter
via an output parameter in addition to returning the pixel format. Many
other formats can potentially be supported in a similar way.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.h')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h index 597aa829af1f..302bfee83f0a 100644 --- a/drivers/gpu/drm/tegra/drm.h +++ b/drivers/gpu/drm/tegra/drm.h @@ -156,6 +156,7 @@ struct tegra_dc_window { } dst; unsigned int bits_per_pixel; unsigned int format; + unsigned int swap; unsigned int stride[2]; unsigned long base[3]; bool bottom_up; @@ -163,7 +164,7 @@ struct tegra_dc_window { }; /* from dc.c */ -unsigned int tegra_dc_format(uint32_t format); +unsigned int tegra_dc_format(uint32_t format, unsigned int *swap); int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index, const struct tegra_dc_window *window); void tegra_dc_enable_vblank(struct tegra_dc *dc); |