From: "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com>
To: Russell King <rmk+kernel@arm.linux.org.uk>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Will Deacon <will.deacon@arm.com>,
"Haojian Zhuang" <haojian.zhuang@gmail.com>,
Arnd Bergmann <arnd@arndb.de>, Rob Herring <robh+dt@kernel.org>,
Wei Xu <xuwei5@hisilicon.com>,
devicetree <devicetree@vger.kernel.org>,
linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v5 0/4] ARM: Add support for Hisilicon Kunpeng L3 cache controller
Date: Thu, 28 Jan 2021 09:30:17 +0800 [thread overview]
Message-ID: <036c026a-f6ec-e029-95b4-e715c93f2c21@huawei.com> (raw)
In-Reply-To: <20210116032740.873-1-thunder.leizhen@huawei.com>
Hi Russell and Arnd:
Do you have time to review it?
On 2021/1/16 11:27, Zhen Lei wrote:
> v4 --> v5:
> 1. Add SoC macro ARCH_KUNPENG50X, and the Kunpeng L3 cache controller only enabled
> on that platform.
> 2. Require the compatible string of the Kunpeng L3 cache controller must have a
> relevant name on a specific SoC. For example:
> compatible = "hisilicon,kunpeng509-l3cache", "hisilicon,kunpeng-l3cache";
>
> v3 --> v4:
> Rename the compatible string from "hisilicon,l3cache" to "hisilicon,kunpeng-l3cache".
> Then adjust the file name, configuration option name, and description accordingly.
>
> v2 --> v3:
> Add Hisilicon L3 cache controller driver and its document. That's: patch 2-3.
>
> v1 --> v2:
> Discard the middle-tier functions and do silent narrowing cast in the outcache
> hook functions. For example:
> -static void l2c220_inv_range(unsigned long start, unsigned long end)
> +static void l2c220_inv_range(phys_addr_t pa_start, phys_addr_t pa_end)
> {
> + unsigned long start = pa_start;
> + unsigned long end = pa_end;
>
>
> v1:
> Do cast phys_addr_t to unsigned long by adding a middle-tier function.
> For example:
> -static void l2c220_inv_range(unsigned long start, unsigned long end)
> +static void __l2c220_inv_range(unsigned long start, unsigned long end)
> {
> ...
> }
> +static void l2c220_inv_range(phys_addr_t start, phys_addr_t end)
> +{
> + __l2c220_inv_range(start, end);
> +}
>
>
> Zhen Lei (4):
> ARM: LPAE: Use phys_addr_t instead of unsigned long in outercache
> hooks
> ARM: hisi: add support for Kunpeng50x SoC
> dt-bindings: arm: hisilicon: Add binding for Kunpeng L3 cache
> controller
> ARM: Add support for Hisilicon Kunpeng L3 cache controller
>
> .../arm/hisilicon/kunpeng-l3cache.yaml | 40 +++++
> arch/arm/include/asm/outercache.h | 6 +-
> arch/arm/mach-hisi/Kconfig | 8 +
> arch/arm/mm/Kconfig | 10 ++
> arch/arm/mm/Makefile | 1 +
> arch/arm/mm/cache-feroceon-l2.c | 15 +-
> arch/arm/mm/cache-kunpeng-l3.c | 153 ++++++++++++++++++
> arch/arm/mm/cache-kunpeng-l3.h | 30 ++++
> arch/arm/mm/cache-l2x0.c | 50 ++++--
> arch/arm/mm/cache-tauros2.c | 15 +-
> arch/arm/mm/cache-uniphier.c | 6 +-
> arch/arm/mm/cache-xsc3l2.c | 12 +-
> 12 files changed, 317 insertions(+), 29 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/arm/hisilicon/kunpeng-l3cache.yaml
> create mode 100644 arch/arm/mm/cache-kunpeng-l3.c
> create mode 100644 arch/arm/mm/cache-kunpeng-l3.h
>
prev parent reply other threads:[~2021-01-28 1:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-16 3:27 Zhen Lei
2021-01-16 3:27 ` [PATCH v5 1/4] ARM: LPAE: Use phys_addr_t instead of unsigned long in outercache hooks Zhen Lei
2021-01-28 14:29 ` Arnd Bergmann
2021-01-16 3:27 ` [PATCH v5 2/4] ARM: hisi: add support for Kunpeng50x SoC Zhen Lei
2021-01-28 14:28 ` Arnd Bergmann
2021-01-16 3:27 ` [PATCH v5 3/4] dt-bindings: arm: hisilicon: Add binding for Kunpeng L3 cache controller Zhen Lei
2021-01-28 14:25 ` Arnd Bergmann
2021-01-16 3:27 ` [PATCH v5 4/4] ARM: Add support for Hisilicon " Zhen Lei
2021-01-28 14:24 ` Arnd Bergmann
2021-01-29 7:23 ` Leizhen (ThunderTown)
[not found] ` <CAK8P3a3Hj0Hyc8mVdGYhB7AEuHCYbhGxHnhNk1xWonEmxZOxRw@mail.gmail.com>
[not found] ` <CAK8P3a1j+mr3bCp2uCuuYzW0ygjTmGv9vELuNy7v-iQ=WoDMOw@mail.gmail.com>
2021-01-29 10:33 ` Russell King - ARM Linux admin
2021-01-30 2:51 ` Leizhen (ThunderTown)
[not found] ` <6c4d3650-0040-06d4-4342-79392738877b@huawei.com>
2021-01-30 3:00 ` Leizhen (ThunderTown)
2021-01-28 1:30 ` Leizhen (ThunderTown) [this message]
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=036c026a-f6ec-e029-95b4-e715c93f2c21@huawei.com \
--to=thunder.leizhen@huawei.com \
--cc=arnd@arndb.de \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=haojian.zhuang@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rmk+kernel@arm.linux.org.uk \
--cc=robh+dt@kernel.org \
--cc=will.deacon@arm.com \
--cc=xuwei5@hisilicon.com \
/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®