mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
media: qcom: venus: Add msm8939 resource struct
Add msm8939 configuration data and related compatible. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Reviewed-by: Bryan O'Donoghue <bod@kernel.org> Signed-off-by: André Apitzsch <git@apitzsch.eu> Signed-off-by: Erikas Bitovtas <xerikasxx@gmail.com> Signed-off-by: Bryan O'Donoghue <bod@kernel.org>
This commit is contained in:
parent
cc41341d12
commit
197789c60a
|
|
@ -693,6 +693,45 @@ static const struct venus_resources msm8916_res = {
|
|||
.enc_nodename = "video-encoder",
|
||||
};
|
||||
|
||||
static const struct freq_tbl msm8939_freq_table[] = {
|
||||
{ 489600, 266670000 }, /* 1080p @ 60 */
|
||||
{ 244800, 133330000 }, /* 1080p @ 30 */
|
||||
{ 220800, 133330000 }, /* 720p @ 60 */
|
||||
{ 108000, 133330000 }, /* 720p @ 30 */
|
||||
{ 72000, 133330000 }, /* VGA @ 60 */
|
||||
{ 36000, 133330000 }, /* VGA @ 30 */
|
||||
};
|
||||
|
||||
static const struct reg_val msm8939_reg_preset[] = {
|
||||
{ 0xe0020, 0x0aaaaaaa },
|
||||
{ 0xe0024, 0x0aaaaaaa },
|
||||
{ 0x80124, 0x00000003 },
|
||||
};
|
||||
|
||||
static const struct venus_resources msm8939_res = {
|
||||
.freq_tbl = msm8939_freq_table,
|
||||
.freq_tbl_size = ARRAY_SIZE(msm8939_freq_table),
|
||||
.reg_tbl = msm8939_reg_preset,
|
||||
.reg_tbl_size = ARRAY_SIZE(msm8939_reg_preset),
|
||||
.clks = { "core", "iface", "bus", },
|
||||
.clks_num = 3,
|
||||
.vcodec_clks = { "vcodec0_core", "vcodec1_core" },
|
||||
.vcodec_clks_num = 2,
|
||||
.vcodec_pmdomains = (const char *[]) { "venus", "vcodec0", "vcodec1" },
|
||||
.vcodec_pmdomains_num = 3,
|
||||
.max_load = 489600, /* 1080p@30 + 1080p@30 */
|
||||
.hfi_version = HFI_VERSION_1XX,
|
||||
.vmem_id = VIDC_RESOURCE_NONE,
|
||||
.vmem_size = 0,
|
||||
.vmem_addr = 0,
|
||||
.dma_mask = 0xddc00000 - 1,
|
||||
.fwname = "qcom/venus-1.8/venus.mbn",
|
||||
.dec_codec_blacklist = HFI_VIDEO_CODEC_SPARK,
|
||||
.enc_codec_blacklist = HFI_VIDEO_CODEC_HEVC,
|
||||
.dec_nodename = "video-decoder",
|
||||
.enc_nodename = "video-encoder",
|
||||
};
|
||||
|
||||
static const struct freq_tbl msm8996_freq_table[] = {
|
||||
{ 1944000, 520000000 }, /* 4k UHD @ 60 (decode only) */
|
||||
{ 972000, 520000000 }, /* 4k UHD @ 30 */
|
||||
|
|
@ -1133,6 +1172,7 @@ static const struct venus_resources qcm2290_res = {
|
|||
|
||||
static const struct of_device_id venus_dt_match[] = {
|
||||
{ .compatible = "qcom,msm8916-venus", .data = &msm8916_res, },
|
||||
{ .compatible = "qcom,msm8939-venus", .data = &msm8939_res, },
|
||||
{ .compatible = "qcom,msm8996-venus", .data = &msm8996_res, },
|
||||
{ .compatible = "qcom,msm8998-venus", .data = &msm8998_res, },
|
||||
{ .compatible = "qcom,qcm2290-venus", .data = &qcm2290_res, },
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user