Message ID | 20230825115310.39993-1-zelong.dong@amlogic.com (mailing list archive) |
---|---|
Headers | show |
Series | This patchset adds IR controller driver support for | expand |
Hi, On Fri, 25 Aug 2023 19:53:07 +0800, zelong dong wrote: > From: Zelong Dong <zelong.dong@amlogic.com> > > Meson IR Controller supports hardware decoder in Meson-S4 and later > SoC. So far, protocol NEC could be decoded by hardware decoder. > > Zelong Dong (3): > media: rc: meson-ir: support rc driver type RC_DRIVER_SCANCODE > dt-bindings: media: Add compatible for Meson-S4 IR Controller > arm64: dts: meson: add IR controller for Meson-S4 SoC > > [...] Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v6.7/arm64-dt) [3/3] arm64: dts: meson: add IR controller for Meson-S4 SoC https://git.kernel.org/amlogic/c/dc8bc779feb5e855421215384f23de90a4fcd622 These changes has been applied on the intermediate git tree [1]. The v6.7/arm64-dt branch will then be sent via a formal Pull Request to the Linux SoC maintainers for inclusion in their intermediate git branches in order to be sent to Linus during the next merge window, or sooner if it's a set of fixes. In the cases of fixes, those will be merged in the current release candidate kernel and as soon they appear on the Linux master branch they will be backported to the previous Stable and Long-Stable kernels [2]. The intermediate git branches are merged daily in the linux-next tree [3], people are encouraged testing these pre-release kernels and report issues on the relevant mailing-lists. If problems are discovered on those changes, please submit a signed-off-by revert patch followed by a corrective changeset. [1] https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git [2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git [3] https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
On Mon, Sep 11, 2023 at 11:46:33AM +0200, Neil Armstrong wrote: > On Fri, 25 Aug 2023 19:53:07 +0800, zelong dong wrote: > > From: Zelong Dong <zelong.dong@amlogic.com> > > > > Meson IR Controller supports hardware decoder in Meson-S4 and later > > SoC. So far, protocol NEC could be decoded by hardware decoder. > > > > Zelong Dong (3): > > media: rc: meson-ir: support rc driver type RC_DRIVER_SCANCODE > > dt-bindings: media: Add compatible for Meson-S4 IR Controller > > arm64: dts: meson: add IR controller for Meson-S4 SoC > > > > [...] > > Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v6.7/arm64-dt) > > [3/3] arm64: dts: meson: add IR controller for Meson-S4 SoC > https://git.kernel.org/amlogic/c/dc8bc779feb5e855421215384f23de90a4fcd622 Would make more sense to have all three patches go in together through a single tree? I was about to apply all three of these patches to the media_stage tree. Sean
On 11/09/2023 12:30, Sean Young wrote: > On Mon, Sep 11, 2023 at 11:46:33AM +0200, Neil Armstrong wrote: >> On Fri, 25 Aug 2023 19:53:07 +0800, zelong dong wrote: >>> From: Zelong Dong <zelong.dong@amlogic.com> >>> >>> Meson IR Controller supports hardware decoder in Meson-S4 and later >>> SoC. So far, protocol NEC could be decoded by hardware decoder. >>> >>> Zelong Dong (3): >>> media: rc: meson-ir: support rc driver type RC_DRIVER_SCANCODE >>> dt-bindings: media: Add compatible for Meson-S4 IR Controller >>> arm64: dts: meson: add IR controller for Meson-S4 SoC >>> >>> [...] >> >> Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v6.7/arm64-dt) >> >> [3/3] arm64: dts: meson: add IR controller for Meson-S4 SoC >> https://git.kernel.org/amlogic/c/dc8bc779feb5e855421215384f23de90a4fcd622 > > Would make more sense to have all three patches go in together through a single > tree? I was about to apply all three of these patches to the media_stage > tree. There's a lot of changes in the S4 dtsi, it would create some merge conflicts if it went into the media tree, if you can take the 2 first patches it would be perfect. It won't break anything to have the DT merged separately anyway Neil > > > Sean
On 11/09/2023 12:30, Sean Young wrote: > On Mon, Sep 11, 2023 at 11:46:33AM +0200, Neil Armstrong wrote: >> On Fri, 25 Aug 2023 19:53:07 +0800, zelong dong wrote: >>> From: Zelong Dong <zelong.dong@amlogic.com> >>> >>> Meson IR Controller supports hardware decoder in Meson-S4 and later >>> SoC. So far, protocol NEC could be decoded by hardware decoder. >>> >>> Zelong Dong (3): >>> media: rc: meson-ir: support rc driver type RC_DRIVER_SCANCODE >>> dt-bindings: media: Add compatible for Meson-S4 IR Controller >>> arm64: dts: meson: add IR controller for Meson-S4 SoC >>> >>> [...] >> >> Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v6.7/arm64-dt) >> >> [3/3] arm64: dts: meson: add IR controller for Meson-S4 SoC >> https://git.kernel.org/amlogic/c/dc8bc779feb5e855421215384f23de90a4fcd622 > > Would make more sense to have all three patches go in together through a single > tree? I was about to apply all three of these patches to the media_stage No, DTS should not go via driver (non-SoC) tree. If you insist on that, it would be a sign your patchset is not bisectable or have ABI break. Best regards, Krzysztof
From: Zelong Dong <zelong.dong@amlogic.com> Meson IR Controller supports hardware decoder in Meson-S4 and later SoC. So far, protocol NEC could be decoded by hardware decoder. Zelong Dong (3): media: rc: meson-ir: support rc driver type RC_DRIVER_SCANCODE dt-bindings: media: Add compatible for Meson-S4 IR Controller arm64: dts: meson: add IR controller for Meson-S4 SoC .../bindings/media/amlogic,meson6-ir.yaml | 1 + .../dts/amlogic/meson-s4-s805x2-aq222.dts | 6 + arch/arm64/boot/dts/amlogic/meson-s4.dtsi | 15 + drivers/media/rc/meson-ir.c | 522 +++++++++++++++--- 4 files changed, 473 insertions(+), 71 deletions(-)