media: cedrus: Add support for H6

H6 has improved VPU. It supports 10-bit HEVC decoding and AFBC output
format for HEVC.

Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
Jernej Skrabec 2019-01-28 15:55:01 -05:00 committed by Mauro Carvalho Chehab
parent 70a4f5cda8
commit dea255334c

View File

@ -396,6 +396,11 @@ static const struct cedrus_variant sun50i_h5_cedrus_variant = {
.capabilities = CEDRUS_CAPABILITY_UNTILED, .capabilities = CEDRUS_CAPABILITY_UNTILED,
}; };
static const struct cedrus_variant sun50i_h6_cedrus_variant = {
.capabilities = CEDRUS_CAPABILITY_UNTILED,
.quirks = CEDRUS_QUIRK_NO_DMA_OFFSET,
};
static const struct of_device_id cedrus_dt_match[] = { static const struct of_device_id cedrus_dt_match[] = {
{ {
.compatible = "allwinner,sun4i-a10-video-engine", .compatible = "allwinner,sun4i-a10-video-engine",
@ -425,6 +430,10 @@ static const struct of_device_id cedrus_dt_match[] = {
.compatible = "allwinner,sun50i-h5-video-engine", .compatible = "allwinner,sun50i-h5-video-engine",
.data = &sun50i_h5_cedrus_variant, .data = &sun50i_h5_cedrus_variant,
}, },
{
.compatible = "allwinner,sun50i-h6-video-engine",
.data = &sun50i_h6_cedrus_variant,
},
{ /* sentinel */ } { /* sentinel */ }
}; };
MODULE_DEVICE_TABLE(of, cedrus_dt_match); MODULE_DEVICE_TABLE(of, cedrus_dt_match);