Re: [PATCH v5 2/4] staging: media: Introduce NVIDIA Tegra video decoder driver

2020-11-21 Thread Dmitry Osipenko
22.11.2020 04:02, Ezequiel Garcia пишет: > Hi Dmitry, > ... >> +++ b/drivers/staging/media/tegra-vde/TODO >> @@ -0,0 +1,4 @@ >> +TODO: >> + - Implement V4L2 API once it gains support for stateless decoders. >> + >> +Contact: Dmitry Osipenko > > The API for H264 stateless decoding is ready.

Re: [PATCH v5 2/4] staging: media: Introduce NVIDIA Tegra video decoder driver

2020-11-21 Thread Ezequiel Garcia
Hi Dmitry, On Mon, 11 Dec 2017 at 21:27, Dmitry Osipenko wrote: > > NVIDIA Tegra20/30/114/124/132 SoC's have video decoder engine that > supports standard set of video formats like H.264 / MPEG-4 / WMV / VC1. > > Signed-off-by: Dmitry Osipenko > --- > MAINTAINERS

Re: [PATCH v3 2/5] dt: bindings: add mt7621-clk device tree binding documentation

2020-11-21 Thread Sergio Paracuellos
On Sat, Nov 21, 2020 at 3:50 PM Sergio Paracuellos wrote: > > Hi Rob, > > Thanks for the review. > > On Sat, Nov 21, 2020 at 2:34 PM Rob Herring wrote: > > > > On Fri, Nov 13, 2020 at 04:46:29PM +0100, Sergio Paracuellos wrote: > > > Adds device tree binding documentation for clocks in the > > >

[PATCH v6 4/4] staging: mt7621-pci-phy: remove driver from staging

2020-11-21 Thread Sergio Paracuellos
Remove this driver from staging because it has been moved into its properly place in the kernel. Signed-off-by: Sergio Paracuellos Acked-by: Greg Kroah-Hartman --- drivers/staging/Kconfig | 2 - drivers/staging/Makefile | 1 - drivers/staging/mt762

[PATCH v6 3/4] MAINTAINERS: add MT7621 PHY PCI maintainer

2020-11-21 Thread Sergio Paracuellos
Adding myself as maintainer for mt7621 pci phy driver. Signed-off-by: Sergio Paracuellos --- MAINTAINERS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index f01ce8f451c8..c07967b9a654 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -11108,6 +11108,12 @@ S:

[PATCH v6 2/4] phy: ralink: Add PHY driver for MT7621 PCIe PHY

2020-11-21 Thread Sergio Paracuellos
This patch adds a driver for the PCIe PHY of MT7621 SoC. Signed-off-by: Sergio Paracuellos --- drivers/phy/ralink/Kconfig | 8 + drivers/phy/ralink/Makefile | 1 + drivers/phy/ralink/phy-mt7621-pci.c | 352 3 files changed, 361 insertions(+) cre

[PATCH v6 0/4] MT7621 PCIe PHY

2020-11-21 Thread Sergio Paracuellos
This series adds support for the PCIe PHY found in the Mediatek MT7621 SoC. There is also a 'mt7621-pci' driver which is the controller part which is still in staging and is a client of this phy. Both drivers have been tested together in a gnubee1 board. This series are rebased on the top of lin

[PATCH v6 1/4] dt-bindings: phy: Add binding for Mediatek MT7621 PCIe PHY

2020-11-21 Thread Sergio Paracuellos
Add bindings to describe Mediatek MT7621 PCIe PHY. Signed-off-by: Sergio Paracuellos Reviewed-by: Rob Herring --- .../bindings/phy/mediatek,mt7621-pci-phy.yaml | 36 +++ 1 file changed, 36 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/mediatek,mt7621-p

Re: [PATCH v3 2/5] dt: bindings: add mt7621-clk device tree binding documentation

2020-11-21 Thread Sergio Paracuellos
Hi Rob, Thanks for the review. On Sat, Nov 21, 2020 at 2:34 PM Rob Herring wrote: > > On Fri, Nov 13, 2020 at 04:46:29PM +0100, Sergio Paracuellos wrote: > > Adds device tree binding documentation for clocks in the > > MT7621 SOC. > > > > Signed-off-by: Sergio Paracuellos > > --- > > .../bindi

Re: [PATCH v3 2/5] dt: bindings: add mt7621-clk device tree binding documentation

2020-11-21 Thread Rob Herring
On Fri, Nov 13, 2020 at 04:46:29PM +0100, Sergio Paracuellos wrote: > Adds device tree binding documentation for clocks in the > MT7621 SOC. > > Signed-off-by: Sergio Paracuellos > --- > .../bindings/clock/mediatek,mt7621-clk.yaml | 61 +++ > 1 file changed, 61 insertions(+) >

Re: [PATCH v3 1/5] dt-bindings: clock: add dt binding header for mt7621 clocks

2020-11-21 Thread Rob Herring
On Fri, 13 Nov 2020 16:46:28 +0100, Sergio Paracuellos wrote: > Adds dt binding header for 'mediatek,mt7621-clk' clocks. > > Signed-off-by: Sergio Paracuellos > --- > include/dt-bindings/clock/mt7621-clk.h | 41 ++ > 1 file changed, 41 insertions(+) > create mode 100644

[PATCH] staging: rtl8723bs: remove redundant statements

2020-11-21 Thread xiakaixu1987
From: Kaixu Xia The bool variable is2T is true, so the if statement is redundant. we can directly set the variable bound to 8 and remove the if statement. Reported-by: Tosk Robot Signed-off-by: Kaixu Xia --- drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.c | 7 +-- 1 file changed, 1 inserti

Re: [PATCH v5 0/4] MT7621 PCIe PHY

2020-11-21 Thread Vinod Koul
On 20-11-20, 17:20, Sergio Paracuellos wrote: > Hi Vinod, > > On Thu, Nov 19, 2020 at 4:43 PM Sergio Paracuellos > wrote: > > > > This series adds support for the PCIe PHY found in the Mediatek > > MT7621 SoC. > > > > There is also a 'mt7621-pci' driver which is the controller part > > which is s