Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 010dffd2 authored by Murthy Nidadavolu's avatar Murthy Nidadavolu Committed by Gerrit - the friendly Code Review server
Browse files

media/dvb: Migrate mpq demux and TSPP driver from kernel 4.14 to 4.19



This change migrates all the relevant files consisting of the mpq
demux driver, its plugins, including the addition of TSPPv1 HW driver.
The snapshot is taken from msm-4.14:
'commit 745112 ("Migrate mpq demux driver from kernel 4.9 to 4.14")'.
In addition, introduce a few code changes to fix warnings,
typos and other style issues.

Change-Id: I2cfbf2af4f55e9327bebd10a27e390a692c6f368
Signed-off-by: default avatarMurthy Nidadavolu <mnssr@codeaurora.org>
parent cc8cf81b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -12,3 +12,5 @@ menuconfig SPECTRA_CAMERA
source "drivers/media/platform/msm/cvp/Kconfig"
source "drivers/media/platform/msm/npu/Kconfig"
source "drivers/media/platform/msm/synx/Kconfig"
source "drivers/media/platform/msm/dvb/Kconfig"
source "drivers/media/platform/msm/broadcast/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -8,3 +8,5 @@ obj-$(CONFIG_MSM_CVP_V4L2) += cvp/
obj-$(CONFIG_MSM_NPU) += npu/
obj-$(CONFIG_MSM_GLOBAL_SYNX) += synx/
obj-$(CONFIG_SPECTRA_CAMERA) += camera/
obj-$(CONFIG_TSPP) += broadcast/
obj-$(CONFIG_DVB_MPQ) += dvb/
+16 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

#
# MSM Broadcast subsystem drivers
#

config TSPP
	depends on ARCH_QCOM
	tristate "TSPP (Transport Stream Packet Processor) Support"
	help
	Transport Stream Packet Processor v1 is used to offload the
	processing of MPEG transport streams from the main processor.
	It is used to process incoming transport streams from TSIF
	to supports use-cases such as transport stream live play
	and recording.
	This can also be compiled as a loadable module.
+6 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

#
# Makefile for MSM Broadcast subsystem drivers.
#
obj-$(CONFIG_TSPP) += tspp.o
+3280 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading