From: Ganapatrao Kulkarni <gpkulkarni-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Ganapatrao Kulkarni
<gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
Cc: "linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
Will Deacon <Will.Deacon-5wv7dgnIgG8@public.gmane.org>,
Catalin Marinas <catalin.marinas-5wv7dgnIgG8@public.gmane.org>,
Grant Likely
<grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
"devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Leif Lindholm
<leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Roy Franz <roy.franz-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Ard Biesheuvel
<ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
"msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org"
<msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Steve Capper
<steve.capper-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Hanjun Guo <hanjun.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
"jchandra-dY08KVG/lbpWk0Htik3J/w@public.gmane.org"
<jchandra-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Al Stone <al.stone-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
"jcm-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org"
<jcm-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
"ddutile-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org"
<ddutile-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
Prasun Kapoor
<Prasun.Kapoor-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>,
ddaney-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org
Subject: Re: [RFC PATCH v4 0/4] arm64:numa: Add numa support for arm64 platforms.
Date: Mon, 29 Jun 2015 16:27:49 +0530 [thread overview]
Message-ID: <CAFpQJXXZc0sop601wrmTe5Ng0SiSGfT9AA2Dpf=X9bgGN9srrA@mail.gmail.com> (raw)
In-Reply-To: <1421924755-26029-1-git-send-email-gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>
Hi Catalin, Will, Mark,
can you please have a look of numa patches and share your review comments.
thanks
Ganapat
On Thu, Jan 22, 2015 at 4:35 PM, Ganapatrao Kulkarni
<gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org> wrote:
> v4:
> done changes as per Arnd review comments.
>
> v3:
> Added changes to support numa on arm64 based platforms.
> Tested these patches on cavium's multinode(2 node topology) platform.
> In this patchset, defined and implemented dt bindings for numa mapping
> for core and memory using device node property arm,associativity.
>
> v2:
> Defined and implemented numa map for memory, cores to node and
> proximity distance matrix of nodes to each other.
>
> v1:
> Initial patchset to support numa on arm64 platforms.
>
> Hi Arnd,
> there are not many common functions to pull to of driver from
> powerpc and arm.
>
> thanks
> Ganapat
>
> Ganapatrao Kulkarni (4):
> arm64: defconfig: increase NR_CPUS range to 2-4096.
> Documentation: arm64/arm: dt bindings for numa.
> arm64:thunder: Add initial dts for Cavium's Thunder SoC in 2 Node
> topology.
> arm64:numa: adding numa support for arm64 platforms.
>
> Documentation/devicetree/bindings/arm/numa.txt | 212 +++++++
> arch/arm64/Kconfig | 36 +-
> arch/arm64/boot/dts/thunder-88xx-2n.dts | 78 +++
> arch/arm64/boot/dts/thunder-88xx-2n.dtsi | 790 +++++++++++++++++++++++++
> arch/arm64/include/asm/mmzone.h | 32 +
> arch/arm64/include/asm/numa.h | 43 ++
> arch/arm64/kernel/Makefile | 1 +
> arch/arm64/kernel/dt_numa.c | 302 ++++++++++
> arch/arm64/kernel/setup.c | 8 +
> arch/arm64/kernel/smp.c | 2 +
> arch/arm64/mm/Makefile | 1 +
> arch/arm64/mm/init.c | 34 +-
> arch/arm64/mm/numa.c | 522 ++++++++++++++++
> 13 files changed, 2053 insertions(+), 8 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/arm/numa.txt
> create mode 100644 arch/arm64/boot/dts/thunder-88xx-2n.dts
> create mode 100644 arch/arm64/boot/dts/thunder-88xx-2n.dtsi
> create mode 100644 arch/arm64/include/asm/mmzone.h
> create mode 100644 arch/arm64/include/asm/numa.h
> create mode 100644 arch/arm64/kernel/dt_numa.c
> create mode 100644 arch/arm64/mm/numa.c
>
> --
> 1.8.1.4
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2015-06-29 10:57 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-22 11:05 [RFC PATCH v4 0/4] arm64:numa: Add numa support for arm64 platforms Ganapatrao Kulkarni
[not found] ` <1421924755-26029-1-git-send-email-gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>
2015-01-22 11:05 ` [RFC PATCH v4 1/4] arm64: defconfig: increase NR_CPUS range to 2-4096 Ganapatrao Kulkarni
2015-01-22 11:05 ` [RFC PATCH v4 2/4] Documentation: arm64/arm: dt bindings for numa Ganapatrao Kulkarni
2015-01-22 11:05 ` [RFC PATCH v4 3/4] arm64:thunder: Add initial dts for Cavium's Thunder SoC in 2 Node topology Ganapatrao Kulkarni
[not found] ` <1421924755-26029-4-git-send-email-gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>
2015-01-22 16:47 ` Arnd Bergmann
2015-01-22 18:26 ` Arnd Bergmann
2015-01-23 12:37 ` Ganapatrao Kulkarni
[not found] ` <CAFpQJXUvux+b9hYx_ZY-1hor0HRFFgh=e4vCYyJiDHrDC9Y=tQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-24 8:52 ` Ganapatrao Kulkarni
[not found] ` <CAFpQJXXkXatxRcfpA1DjuuiUf3vup3DV+dACyGxT=TDkrO8rNQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-10 8:42 ` Ganapatrao Kulkarni
[not found] ` <CAFpQJXVc5c=YRLw3uS5RiSR13veo_SUiM-aV6hf+diQuWxdfYQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-18 4:02 ` Ganapatrao Kulkarni
[not found] ` <CAFpQJXWL-NM+WndfB5pLj6TmdVngACR9YCr_ahaUTqAO3DaX1g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-18 10:00 ` Will Deacon
[not found] ` <20150318100004.GC18951-5wv7dgnIgG8@public.gmane.org>
2015-03-18 10:39 ` Ganapatrao Kulkarni
[not found] ` <CAFpQJXWzhn=sFKOdbPGXGfQNr5outJodTH72RoC1VVYqt8jmdQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-18 10:47 ` Will Deacon
2015-06-29 10:57 ` Ganapatrao Kulkarni [this message]
[not found] ` <CAFpQJXXZc0sop601wrmTe5Ng0SiSGfT9AA2Dpf=X9bgGN9srrA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-06-30 14:01 ` [RFC PATCH v4 0/4] arm64:numa: Add numa support for arm64 platforms Will Deacon
[not found] ` <20150630140123.GL27725-5wv7dgnIgG8@public.gmane.org>
2015-06-30 14:22 ` Ganapatrao Kulkarni
2015-01-22 11:05 ` [RFC PATCH v4 4/4] arm64:numa: adding " Ganapatrao Kulkarni
[not found] ` <1421924755-26029-5-git-send-email-gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>
2015-02-27 9:08 ` Hanjun Guo
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='CAFpQJXXZc0sop601wrmTe5Ng0SiSGfT9AA2Dpf=X9bgGN9srrA@mail.gmail.com' \
--to=gpkulkarni-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=Prasun.Kapoor-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org \
--cc=Will.Deacon-5wv7dgnIgG8@public.gmane.org \
--cc=al.stone-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=ard.biesheuvel-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=arnd-r2nGTMty4D4@public.gmane.org \
--cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
--cc=ddaney-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org \
--cc=ddutile-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=gkulkarni-M3mlKVOIwJVv6pq1l3V1OdBPR1lH4CV8@public.gmane.org \
--cc=grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=hanjun.guo-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=jchandra-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=jcm-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=leif.lindholm-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=msalter-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=roy.franz-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=steve.capper-QSEj5FYQhm4dnm+yROfE0A@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).