From: Zhang Ning <zhangn1985@qq.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: martin.blumenstingl@googlemail.com, narmstrong@baylibre.com,
linux-amlogic@lists.infradead.org, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, sean@mess.org,
devicetree@vger.kernel.org, linux-media@vger.kernel.org
Subject: Re: [v5 4/4] arm64: dts: meson: Add MagicBox M16S support
Date: Tue, 26 Jul 2022 08:04:16 +0800 [thread overview]
Message-ID: <tencent_1B5B069917D86370ED4136BDD2C413240D08@qq.com> (raw)
In-Reply-To: <677c9314-593e-3512-539a-fd74f634c470@linaro.org>
On Mon, Jul 25, 2022 at 06:32:17PM +0200, Krzysztof Kozlowski wrote:
> On 25/07/2022 01:17, Zhang Ning wrote:
> > MagicBox M16S or MagicBox 3Pro is popular Tv box in China.
> > with spec:
> >
> > - Amlogic S912-H (S912 with dolby and dts)
> > - 2G ddr3
> > - 16G emmc
> > - Marvell sd8897 BT/wifi module
> > - 100M ethernet
> > - IR reciever
> > - 4K HDMI
> > - AV out
> > - Rest hole
> > - 5V2A power input
> > - white LED
> >
> > it's q201_v1 according u-boot log.
> > and it's almost same as Q201 reference design.
> >
> > add a simple dts to support this Tv box.
> >
> > Signed-off-by: Zhang Ning <zhangn1985@qq.com>
> > ---
> > arch/arm64/boot/dts/amlogic/Makefile | 1 +
> > .../dts/amlogic/meson-gxm-magicbox-m16s.dts | 40 +++++++++++++++++++
> > 2 files changed, 41 insertions(+)
> > create mode 100644 arch/arm64/boot/dts/amlogic/meson-gxm-magicbox-m16s.dts
> >
> > diff --git a/arch/arm64/boot/dts/amlogic/Makefile b/arch/arm64/boot/dts/amlogic/Makefile
> > index 8773211df50e..e0907fb41829 100644
> > --- a/arch/arm64/boot/dts/amlogic/Makefile
> > +++ b/arch/arm64/boot/dts/amlogic/Makefile
> > @@ -44,6 +44,7 @@ dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-libretech-cc.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-nexbox-a95x.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxl-s905x-p212.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxm-khadas-vim2.dtb
> > +dtb-$(CONFIG_ARCH_MESON) += meson-gxm-magicbox-m16s.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxm-mecool-kiii-pro.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxm-minix-neo-u9h.dtb
> > dtb-$(CONFIG_ARCH_MESON) += meson-gxm-nexbox-a1.dtb
> > diff --git a/arch/arm64/boot/dts/amlogic/meson-gxm-magicbox-m16s.dts b/arch/arm64/boot/dts/amlogic/meson-gxm-magicbox-m16s.dts
> > new file mode 100644
> > index 000000000000..69e72687ac9c
> > --- /dev/null
> > +++ b/arch/arm64/boot/dts/amlogic/meson-gxm-magicbox-m16s.dts
> > @@ -0,0 +1,40 @@
> > +// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
> > +/*
> > + * Copyright (c) 2022 Zhang Ning <zhangn1985@qq.com>
> > + */
> > +
> > +/dts-v1/;
> > +
> > +#include "meson-gxm.dtsi"
> > +#include "meson-gx-p23x-q20x.dtsi"
> > +#include <dt-bindings/input/input.h>
> > +
> > +/ {
> > + compatible = "magicbox,m16s", "amlogic,s912", "amlogic,meson-gxm";
> > + model = "MagicBox M16S";
> > +
> > + gpio-keys-polled {
>
> Just gpio-keys (or even "keys").
I see all dts for amlogic platform are using gpio-keys-polled, could I
keep current name?
>
> > + compatible = "gpio-keys-polled";
> > + #address-cells = <1>;
> > + #size-cells = <0>;
>
> Address/size cells are not correct.
Yes, this has been already pointed out in V3's review, but I forgot to
delete these 2 lines.
thank you review it again.
>
> > + poll-interval = <100>;
> > +
> > + button-power {
> > + label = "power";
> > + linux,code = <KEY_POWER>;
> > + gpios = <&gpio_ao GPIOAO_2 GPIO_ACTIVE_LOW>;
> > + };
> > + };
> > +};
>
> Missing blank line.
thank you, will add it in next version.
>
> > +ðmac {
>
>
> Best regards,
> Krzysztof
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2022-07-26 0:04 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220724231704.132472-1-zhangn1985@qq.com>
2022-07-24 23:17 ` [v5 1/4] media: rc: add keymap for MagicBox M16S remote Zhang Ning
2022-07-26 0:31 ` Zhang Ning
2022-07-24 23:17 ` [v5 2/4] " Zhang Ning
2022-07-26 7:42 ` Sean Young
2022-07-26 8:53 ` Zhang Ning
2022-07-24 23:17 ` [v5 3/4] dt-bindings: arm: add Magicbox M16S bindings Zhang Ning
2022-07-25 16:31 ` Krzysztof Kozlowski
2022-07-26 0:00 ` Zhang Ning
2022-07-24 23:17 ` [v5 4/4] arm64: dts: meson: Add MagicBox M16S support Zhang Ning
2022-07-25 16:32 ` Krzysztof Kozlowski
2022-07-26 0:04 ` Zhang Ning [this message]
2022-07-26 6:48 ` Krzysztof Kozlowski
2022-07-26 8:51 ` Zhang Ning
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=tencent_1B5B069917D86370ED4136BDD2C413240D08@qq.com \
--to=zhangn1985@qq.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-media@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=narmstrong@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sean@mess.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®