From: Rob Herring <robh@kernel.org>
To: Frank Lee <frank@allwinnertech.com>
Cc: linux-arm-kernel@lists.infradead.org, sboyd@kernel.org,
mturquette@baylibre.com, robh+dt@kernel.org, wens@csie.org,
liyong@allwinnertech.com, mripard@kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
p.zabel@pengutronix.de, linux-clk@vger.kernel.org,
huangshuosheng@allwinnertech.com, tiny.windzz@gmail.com
Subject: Re: [PATCH v5 02/16] clk: sunxi-ng: add support for the Allwinner A100 CCU
Date: Mon, 27 Jul 2020 13:57:42 -0600 [thread overview]
Message-ID: <20200727195742.GA780202@bogus> (raw)
In-Reply-To: <1eb41bf6c966a0e54820200650d27a5d4f2ac160.1595572867.git.frank@allwinnertech.com>
On Fri, 24 Jul 2020 14:58:43 +0800, Frank Lee wrote:
> From: Yangtao Li <frank@allwinnertech.com>
>
> Add support for a100 in the sunxi-ng CCU framework.
>
> Signed-off-by: Yangtao Li <frank@allwinnertech.com>
> ---
> drivers/clk/sunxi-ng/Kconfig | 10 +
> drivers/clk/sunxi-ng/Makefile | 2 +
> drivers/clk/sunxi-ng/ccu-sun50i-a100-r.c | 214 +++
> drivers/clk/sunxi-ng/ccu-sun50i-a100-r.h | 21 +
> drivers/clk/sunxi-ng/ccu-sun50i-a100.c | 1276 +++++++++++++++++
> drivers/clk/sunxi-ng/ccu-sun50i-a100.h | 56 +
> include/dt-bindings/clock/sun50i-a100-ccu.h | 116 ++
> include/dt-bindings/clock/sun50i-a100-r-ccu.h | 23 +
> include/dt-bindings/reset/sun50i-a100-ccu.h | 68 +
> include/dt-bindings/reset/sun50i-a100-r-ccu.h | 18 +
> 10 files changed, 1804 insertions(+)
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun50i-a100-r.c
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun50i-a100-r.h
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun50i-a100.c
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun50i-a100.h
> create mode 100644 include/dt-bindings/clock/sun50i-a100-ccu.h
> create mode 100644 include/dt-bindings/clock/sun50i-a100-r-ccu.h
> create mode 100644 include/dt-bindings/reset/sun50i-a100-ccu.h
> create mode 100644 include/dt-bindings/reset/sun50i-a100-r-ccu.h
>
Acked-by: Rob Herring <robh@kernel.org>
next prev parent reply other threads:[~2020-07-27 19:57 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-24 6:52 [PATCH v5 00/16] Allwinner A100 Initial support Frank Lee
2020-07-24 6:56 ` [PATCH v5 01/16] dt-bindings: clk: sunxi-ccu: add compatible string for A100 CCU and R-CCU Frank Lee
2020-08-25 8:52 ` Maxime Ripard
2020-07-24 6:58 ` [PATCH v5 02/16] clk: sunxi-ng: add support for the Allwinner A100 CCU Frank Lee
2020-07-27 19:57 ` Rob Herring [this message]
2020-08-25 8:53 ` Maxime Ripard
2020-07-24 7:00 ` [PATCH v5 03/16] dt-bindings: pinctrl: sunxi: Get rid of continual nesting Frank Lee
2020-08-25 8:44 ` Maxime Ripard
2020-07-24 7:02 ` [PATCH v5 04/16] dt-bindings: pinctrl: sunxi: Add A100 pinctrl bindings Frank Lee
2020-08-25 8:44 ` Maxime Ripard
2020-07-24 7:09 ` [PATCH v5 06/16] dt-bindings: nvmem: SID: add binding for A100's SID controller Frank Lee
2020-07-24 7:10 ` [PATCH v5 07/16] dt-bindings: thermal: sun8i: Add binding for A100's THS controller Frank Lee
2020-08-25 8:45 ` Maxime Ripard
2020-07-24 7:11 ` [PATCH v5 08/16] thermal: sun8i: add TEMP_CALIB_MASK for calibration data in sun50i_h6_ths_calibrate Frank Lee
2020-08-25 8:46 ` Maxime Ripard
2020-07-24 7:11 ` [PATCH v5 09/16] thermal: sun8i: Add A100's THS controller support Frank Lee
2020-08-25 8:46 ` Maxime Ripard
2020-07-24 7:14 ` [PATCH v5 11/16] dt-bindings: irq: sun7i-nmi: fix dt-binding for a80 nmi Frank Lee
2020-08-25 8:49 ` Maxime Ripard
2020-07-24 7:15 ` [PATCH v5 12/16] dt-bindings: irq: sun7i-nmi: Add binding for A100's NMI controller Frank Lee
2020-08-25 8:49 ` Maxime Ripard
2020-07-24 7:17 ` [PATCH v5 13/16] dt-bindings: i2c: mv64xxx: Add compatible for the A100 i2c node Frank Lee
2020-08-25 8:02 ` Wolfram Sang
2020-07-24 7:18 ` [PATCH v5 14/16] arm64: allwinner: A100: add the basical Allwinner A100 DTSI file Frank Lee
2020-08-25 8:50 ` Maxime Ripard
2020-07-24 7:20 ` [PATCH v5 15/16] dt-bindings: arm: sunxi: Add Allwinner A100 Perf1 Board bindings Frank Lee
2020-08-25 8:50 ` Maxime Ripard
2020-07-24 7:21 ` [PATCH v5 16/16] arm64: allwinner: A100: add support for Allwinner Perf1 board Frank Lee
2020-08-25 8:51 ` Maxime Ripard
2020-07-30 1:20 ` [PATCH v5 00/16] Allwinner A100 Initial support Frank Lee
2020-08-24 7:44 ` Frank Lee
2020-08-24 8:03 ` Lee Jones
2020-08-25 8:55 ` Maxime Ripard
2020-08-25 13:51 ` Wolfram Sang
2020-08-25 13:53 ` Lee Jones
2020-08-28 10:02 ` Linus Walleij
2020-08-28 11:20 ` Frank Lee
2020-09-01 9:35 ` Maxime Ripard
2020-09-12 10:36 ` Linus Walleij
2020-09-22 15:37 ` Daniel Lezcano
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=20200727195742.GA780202@bogus \
--to=robh@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=frank@allwinnertech.com \
--cc=huangshuosheng@allwinnertech.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liyong@allwinnertech.com \
--cc=mripard@kernel.org \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=tiny.windzz@gmail.com \
--cc=wens@csie.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).