m88rs6060 was added to CE 5.4/5.15 kernel to support TBS 5930. A working m88rs6060 driver is not enough to make the internal tuner of that mecool box work.
Posts by smp
-
-
/usr/lib/kodi/kodi.bin -v
-
DVB was broken in 6.1.52 and fixed in 6.1.53. LE 11.0.4 use kernel 6.1.68. So this must be something else.
-
but it seemingly affects these TV tuners in TVHeadend
This was fixed by https://github.com/torvalds/linux…4c05c89f46e41d1
-
LE can be built with Wayland. It would miss some crucial features like refresh rate switching. Also Kodi does not support HDR passthrough on Wayland.
-
It's better we think how (and when) we can drop it too.
It was dropped since LE 11 and now used only in Generic-legacy.
-
-
-
-
wondering if we could disable this option at the kodi gui as it just creates problems ?
IMO this should be done upstream in Kodi, e.g. if platform supports VAAPI then DRM PRIME option should not be present in GUI.
-
What are the chances that the 11gen intel chips get fixed?
As you can see on this block diagram, NUC11PAxxx does not have a native HDMI port. It is using a DP->HDMI protocol converter (PCON) chip. It is more than likely the source of your audio passthrough issues. So this is not a gen11 issue but an issue specific to that NUC model. There is nothing to fix from LE/Kodi side.
-
No. DRM PRIME was never properly implemented for x86.
-
I simply downloaded the needed files and created the patch files with git diff.
e.g. for av201x .c:
git diff emptyfile av201x.c > 1.patch
then fixed the path/file name in .patch file.
There are probably better ways to do this (e.g. git cherry-pick) but it works for me.
-
Disable debug logging?
-
but sadly this is no longer available on dropbox
PostRE: [RPi4] TBS 5520SE Drivers for LE11, LE12, LE13
For those who only use the satellite tuner I modded the driver to disable the DVB-T/C tuner.
TBS 5520SE has 2 tuners attached to a single demod. DVB core apparently does not support 2 tuners on 1 demod so the driver used a hacky way to split the adapter in 2 virtual frontends. This cause all sorts of issues with tvheadend (e.g. "no free adapter available"). I modded the driver so si2157 DVB-T tuner is not attached and only 1 DVB-S frontend is created.
linux-tbs5520se-k66-no-ter.zipsmpDecember 17, 2023 at 4:05 AM Looks like PCI-E cards are handled by tbsecp3 driver. You will also need to add av201x tuner driver and gx1133 demod driver.
-
-
Diff
Display Morediff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c index bc97591..3da321f 100644 --- a/drivers/gpu/drm/i915/display/intel_hdmi.c +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c @@ -1895,7 +1895,7 @@ static bool intel_hdmi_source_bpc_possible(struct drm_i915_private *i915, int bp { switch (bpc) { case 12: - return !HAS_GMCH(i915); + return !HAS_GMCH(i915) && DISPLAY_VER(i915) <= 10; case 10: return DISPLAY_VER(i915) >= 11; case 8:
^ This can be used to force 10-bit instead of proptest. This will disable 12-bit for newer Intel hw that can support 10-bit. 10-bit is only supported since Ice Lake.
-
What impact has it to only use 10 bit instead of 12?
None whatsoever.
Has anybody any pointers where i could open a bug for that?
Issues · drm / intel · GitLabIntel Graphics for Linux - drm/i915 kernel driver repository. For issues only for now.gitlab.freedesktop.org