From: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>
To: Code Kipper <codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>,
Linus Walleij
<linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Maxime Ripard
<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
devicetree <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
linux-arm-kernel
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
"linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
linux-sunxi <linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: [PATCH 4/6] ARM: sun8i: a83t: Add device node for DMA controller
Date: Mon, 22 May 2017 15:20:36 +0800 [thread overview]
Message-ID: <CAGb2v66fHr4uiDfO2dF-ER1fFoxfah4cmiPbsM2VOWkdo_+VuQ@mail.gmail.com> (raw)
In-Reply-To: <CAEKpxB=daPuD0YNToTiEzcD0VAUjVen0nTDY0BhkLfQzcLFoTw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
On Mon, May 22, 2017 at 3:18 PM, Code Kipper <codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On 22 May 2017 at 08:25, Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org> wrote:
>> The A83T SoC has a DMA controller that supports 8 DMA channels
>> to and from various peripherals.
>>
>> Add a device node for it.
>>
>> Signed-off-by: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>
>> ---
>> arch/arm/boot/dts/sun8i-a83t.dtsi | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi
>> index e12dd7170b8f..47196feda26b 100644
>> --- a/arch/arm/boot/dts/sun8i-a83t.dtsi
>> +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi
>> @@ -163,6 +163,15 @@
>> #size-cells = <1>;
>> ranges;
>>
>> + dma: dma-controller@1c02000 {
>> + compatible = "allwinner,sun8i-a83t-dma";
>> + reg = <0x01c02000 0x1000>;
>> + interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
>> + clocks = <&ccu 21>;
>> + resets = <&ccu 7>;
> Hi Wens,
> these should be ccu defines, otherwise everything else looks great.
Correct. Since the CCU bindings was just introduced, I'm saving all the macros
for v4.13-rc2.
ChenYu
> Great Work,
> CK
>> + #dma-cells = <1>;
>> + };
>> +
>> ccu: clock@1c20000 {
>> compatible = "allwinner,sun8i-a83t-ccu";
>> reg = <0x01c20000 0x400>;
>> --
>> 2.11.0
>>
>> --
>> You received this message because you are subscribed to the Google Groups "linux-sunxi" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> For more options, visit https://groups.google.com/d/optout.
next prev parent reply other threads:[~2017-05-22 7:20 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-22 6:25 [PATCH 0/6] ARM: sun8i: a83t: Enable SPDIF output support Chen-Yu Tsai
[not found] ` <20170522062552.19026-1-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 6:25 ` [PATCH 1/6] clk: sunxi-ng: a83t: Fix PLL lock status register offset Chen-Yu Tsai
[not found] ` <20170522062552.19026-2-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:21 ` Maxime Ripard
2017-05-22 6:25 ` [PATCH 2/6] clk: sunxi-ng: a83t: Fix audio PLL divider offset Chen-Yu Tsai
[not found] ` <20170522062552.19026-3-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:20 ` Maxime Ripard
[not found] ` <20170522072047.bffdbwkz2nqvhums-ZC1Zs529Oq4@public.gmane.org>
2017-05-22 7:35 ` Chen-Yu Tsai
[not found] ` <CAGb2v65SUR2NvGOFFgzUpDh_9Dm6SAhzwC31KBOqFZubOhkK9w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-05-22 7:45 ` Maxime Ripard
2017-05-22 6:25 ` [PATCH 3/6] pinctrl: sunxi: Fix SPDIF function name for A83T Chen-Yu Tsai
[not found] ` <20170522062552.19026-4-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:21 ` Maxime Ripard
2017-05-23 9:32 ` Linus Walleij
2017-05-22 6:25 ` [PATCH 4/6] ARM: sun8i: a83t: Add device node for DMA controller Chen-Yu Tsai
2017-05-22 7:18 ` [linux-sunxi] " Code Kipper
[not found] ` <CAEKpxB=daPuD0YNToTiEzcD0VAUjVen0nTDY0BhkLfQzcLFoTw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-05-22 7:20 ` Chen-Yu Tsai [this message]
2017-05-22 7:24 ` Maxime Ripard
[not found] ` <20170522062552.19026-5-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:23 ` Maxime Ripard
2017-05-22 6:25 ` [PATCH 5/6] ARM: sun8i: a83t: Add device node for SPDIF transmitter Chen-Yu Tsai
[not found] ` <20170522062552.19026-6-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:24 ` Maxime Ripard
2017-05-22 6:25 ` [PATCH 6/6] ARM: sun8i: a83t: cubietruck-plus: Enable SPDIF output Chen-Yu Tsai
[not found] ` <20170522062552.19026-7-wens-jdAy2FN1RRM@public.gmane.org>
2017-05-22 7:25 ` Maxime Ripard
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=CAGb2v66fHr4uiDfO2dF-ER1fFoxfah4cmiPbsM2VOWkdo_+VuQ@mail.gmail.com \
--to=wens-jday2fn1rrm@public.gmane.org \
--cc=codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-gpio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
--cc=maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.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;
as well as URLs for NNTP newsgroup(s).