All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Zhangjian (Bamvor)" <bamvor.zhangjian@huawei.com>
To: Yury Norov <ynorov@caviumnetworks.com>, <arnd@arndb.de>,
	<catalin.marinas@arm.com>, <linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>
Cc: <pinskia@gmail.com>, <ddaney.cavm@gmail.com>,
	<jan.dakinevich@gmail.com>, <Prasun.Kapoor@caviumnetworks.com>,
	<christoph.muellner@theobroma-systems.com>,
	<philipp.tomsich@theobroma-systems.com>, <broonie@kernel.org>,
	<andrey.konovalov@linaro.org>, <Nathan_Lynch@mentor.com>,
	<agraf@suse.de>, <klimov.linux@gmail.com>,
	<joseph@codesourcery.com>, <schwab@suse.de>,
	"bamvor.zhangjian@hua >> Bamvor Jian Zhang" 
	<bamvor.zhangjian@huawei.com>
Subject: Re: [PATCH v6 01/19] arm64:ilp32: add documentation on the ILP32 ABI for ARM64
Date: Wed, 18 Nov 2015 16:09:03 +0800	[thread overview]
Message-ID: <564C321F.5050707@huawei.com> (raw)
In-Reply-To: <1447795019-30176-2-git-send-email-ynorov@caviumnetworks.com>

Hi, Yury

On 2015/11/18 5:16, Yury Norov wrote:
> From: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> 
> Based on Andrew Pinski's original patch-series and adapted with changes
> to reduce the duplication of code-paths and resolve issue found during
> LTP testing.
> 
> Reviewed-by: David Daney <ddaney@caviumnetworks.com>
> 
> 
> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>
> Signed-off-by: Andrew Pinski <Andrew.Pinski@caviumnetworks.com>
> ---
>  Documentation/arm64/ilp32.txt | 47 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 47 insertions(+)
>  create mode 100644 Documentation/arm64/ilp32.txt
> 
> diff --git a/Documentation/arm64/ilp32.txt b/Documentation/arm64/ilp32.txt
> new file mode 100644
> index 0000000..93c09f2
> --- /dev/null
> +++ b/Documentation/arm64/ilp32.txt
> @@ -0,0 +1,47 @@
> +ILP32 AARCH64 SYSCALL ABI
> +=========================
> +Written by Andrew Pinski <apinski@cavium.com>
> +Updated by Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> +Updated by Yury Norov <ynorov@caviumnetworks.com>
> +
> +
> +This document describes the ILP32 syscall ABI and where it differs
> +from the generic linux syscall interface.
> +
> +Some structures are changed to reduce the difference in the code path
> +for both ILP32 and LP64 ABIs for signal handling.
Given that user may upgrade from aarch32 to ILP32. How about add abi
comparison between aarch32 and aarch64 ilp32?

Regards

Bamvor



WARNING: multiple messages have this Message-ID (diff)
From: bamvor.zhangjian@huawei.com (Zhangjian (Bamvor))
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 01/19] arm64:ilp32: add documentation on the ILP32 ABI for ARM64
Date: Wed, 18 Nov 2015 16:09:03 +0800	[thread overview]
Message-ID: <564C321F.5050707@huawei.com> (raw)
In-Reply-To: <1447795019-30176-2-git-send-email-ynorov@caviumnetworks.com>

Hi, Yury

On 2015/11/18 5:16, Yury Norov wrote:
> From: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> 
> Based on Andrew Pinski's original patch-series and adapted with changes
> to reduce the duplication of code-paths and resolve issue found during
> LTP testing.
> 
> Reviewed-by: David Daney <ddaney@caviumnetworks.com>
> 
> 
> Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
> Signed-off-by: Yury Norov <ynorov@caviumnetworks.com>
> Signed-off-by: Andrew Pinski <Andrew.Pinski@caviumnetworks.com>
> ---
>  Documentation/arm64/ilp32.txt | 47 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 47 insertions(+)
>  create mode 100644 Documentation/arm64/ilp32.txt
> 
> diff --git a/Documentation/arm64/ilp32.txt b/Documentation/arm64/ilp32.txt
> new file mode 100644
> index 0000000..93c09f2
> --- /dev/null
> +++ b/Documentation/arm64/ilp32.txt
> @@ -0,0 +1,47 @@
> +ILP32 AARCH64 SYSCALL ABI
> +=========================
> +Written by Andrew Pinski <apinski@cavium.com>
> +Updated by Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> +Updated by Yury Norov <ynorov@caviumnetworks.com>
> +
> +
> +This document describes the ILP32 syscall ABI and where it differs
> +from the generic linux syscall interface.
> +
> +Some structures are changed to reduce the difference in the code path
> +for both ILP32 and LP64 ABIs for signal handling.
Given that user may upgrade from aarch32 to ILP32. How about add abi
comparison between aarch32 and aarch64 ilp32?

Regards

Bamvor

  reply	other threads:[~2015-11-18  8:16 UTC|newest]

Thread overview: 158+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-17 21:16 [RFC2 PATCH v6 00/19] ILP32 for ARM64 Yury Norov
2015-11-17 21:16 ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 01/19] arm64:ilp32: add documentation on the ILP32 ABI " Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-18  8:09   ` Zhangjian (Bamvor) [this message]
2015-11-18  8:09     ` Zhangjian (Bamvor)
2015-11-17 21:16 ` [PATCH v6 02/19] arm64: ensure the kernel is compiled for LP64 Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 03/19] arm64: rename COMPAT to AARCH32_EL0 in Kconfig Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 04/19] arm64: change some CONFIG_COMPAT over to use CONFIG_AARCH32_EL0 instead Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-12-03 12:02   ` Catalin Marinas
2015-12-03 12:02     ` Catalin Marinas
2015-12-04 21:58     ` Yury Norov
2015-12-04 21:58       ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 05/19] arm64:uapi: set __BITS_PER_LONG correctly for ILP32 and LP64 Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-12-03 11:31   ` Catalin Marinas
2015-12-03 11:31     ` Catalin Marinas
2015-12-03 11:36     ` Dr. Philipp Tomsich
2015-12-03 11:36       ` Dr. Philipp Tomsich
2015-11-17 21:16 ` [PATCH v6 06/19] arm64:ilp32: share signal structures between ILP32 and LP64 ABIs Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 22:14   ` Arnd Bergmann
2015-11-17 22:14     ` Arnd Bergmann
2015-11-17 21:16 ` [PATCH v6 07/19] arm64: introduce is_a32_task and is_a32_thread (for AArch32 compat) Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-12-03 12:13   ` Catalin Marinas
2015-12-03 12:13     ` Catalin Marinas
2015-12-04 17:05     ` Yury Norov
2015-12-04 17:05       ` Yury Norov
2015-12-05 11:00       ` Catalin Marinas
2015-12-05 11:00         ` Catalin Marinas
2015-11-17 21:16 ` [PATCH v6 08/19] arm64:ilp32: add is_ilp32_compat_{task,thread} and TIF_32BIT_AARCH64 Yury Norov
2015-11-17 21:16   ` [PATCH v6 08/19] arm64:ilp32: add is_ilp32_compat_{task, thread} " Yury Norov
2015-11-17 21:16 ` [PATCH v6 09/19] arm64:ilp32: share HWCAP between LP64 and ILP32 Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 10/19] arm64:ilp32 use the native LP64 'start_thread' for ILP32 threads Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-12-03 12:20   ` Catalin Marinas
2015-12-03 12:20     ` Catalin Marinas
2015-11-17 21:16 ` [PATCH v6 11/19] arm64:ilp32: support core dump generation for ILP32 Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-12-03 16:39   ` Catalin Marinas
2015-12-03 16:39     ` Catalin Marinas
2015-11-17 21:16 ` [PATCH v6 12/19] ptrace: Allow compat to use the native siginfo Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 13/19] arm64: ilp32: common 32-bit wrappers Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 14/19] arm64:ilp32: add sys_ilp32.c and a separate table (in entry.S) to use it Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:57   ` Arnd Bergmann
2015-11-17 21:57     ` Arnd Bergmann
2015-11-18  8:14     ` Arnd Bergmann
2015-11-18  8:14       ` Arnd Bergmann
2015-11-19 13:21     ` Andreas Schwab
2015-11-19 13:21       ` Andreas Schwab
2015-11-19 13:32       ` Arnd Bergmann
2015-11-19 13:32         ` Arnd Bergmann
2015-11-30 15:34     ` Arnd Bergmann
2015-11-30 15:34       ` Arnd Bergmann
2015-11-30 20:21       ` Yury Norov
2015-11-30 20:21         ` Yury Norov
2015-11-30 21:49         ` Arnd Bergmann
2015-11-30 21:49           ` Arnd Bergmann
2015-12-01  0:20           ` Andrew Pinski
2015-12-01  0:20             ` Andrew Pinski
2015-12-01  0:40           ` Yury Norov
2015-12-01  0:40             ` Yury Norov
2015-12-01 10:26             ` Arnd Bergmann
2015-12-01 10:26               ` Arnd Bergmann
2015-12-01  9:20         ` Andreas Schwab
2015-12-01  9:20           ` Andreas Schwab
2015-12-01 10:22           ` Arnd Bergmann
2015-12-01 10:22             ` Arnd Bergmann
2015-12-01 11:01             ` Andreas Schwab
2015-12-01 11:01               ` Andreas Schwab
2015-12-01 11:30               ` Arnd Bergmann
2015-12-01 11:30                 ` Arnd Bergmann
2015-12-02  0:24                 ` Yury Norov
2015-12-02  0:24                   ` Yury Norov
2015-12-02 10:03                   ` Arnd Bergmann
2015-12-02 10:03                     ` Arnd Bergmann
2015-12-03 17:17                   ` Catalin Marinas
2015-12-03 17:17                     ` Catalin Marinas
2015-12-01 21:29     ` Yury Norov
2015-12-01 21:29       ` Yury Norov
2015-12-01 22:39       ` Arnd Bergmann
2015-12-01 22:39         ` Arnd Bergmann
2015-12-01 23:35         ` Yury Norov
2015-12-01 23:35           ` Yury Norov
2015-12-02  8:37           ` Arnd Bergmann
2015-12-02  8:37             ` Arnd Bergmann
2015-12-02  9:15             ` Yury Norov
2015-12-02  9:15               ` Yury Norov
2015-12-02 10:35             ` Yury Norov
2015-12-02 10:35               ` Yury Norov
2015-12-02 13:46               ` Arnd Bergmann
2015-12-02 13:46                 ` Arnd Bergmann
2015-12-02 13:54                 ` Arnd Bergmann
2015-12-02 13:54                   ` Arnd Bergmann
2015-12-02 13:57                   ` Will Deacon
2015-12-02 13:57                     ` Will Deacon
2015-12-03 17:47       ` Catalin Marinas
2015-12-03 17:47         ` Catalin Marinas
2015-12-03 18:14         ` Yury Norov
2015-12-03 18:14           ` Yury Norov
2015-12-03 20:42           ` Arnd Bergmann
2015-12-03 20:42             ` Arnd Bergmann
2015-12-02 10:01     ` Yury Norov
2015-12-02 10:01       ` Yury Norov
2015-12-02 11:03       ` Arnd Bergmann
2015-12-02 11:03         ` Arnd Bergmann
2015-11-17 21:16 ` [PATCH v6 15/19] arm64: ilp32: force IPC_64 in msgctl, shmctl, semctl Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 22:07   ` Arnd Bergmann
2015-11-17 22:07     ` Arnd Bergmann
2015-11-18  8:25     ` Andreas Schwab
2015-11-18  8:25       ` Andreas Schwab
2015-11-18  9:23       ` Arnd Bergmann
2015-11-18  9:23         ` Arnd Bergmann
2015-11-18 10:07         ` Geert Uytterhoeven
2015-11-18 10:07           ` Geert Uytterhoeven
2015-11-18 12:04           ` Arnd Bergmann
2015-11-18 12:04             ` Arnd Bergmann
2015-11-17 21:16 ` [PATCH v6 16/19] aarch64: ilp32: use generic stat64 structure Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 22:09   ` Arnd Bergmann
2015-11-17 22:09     ` Arnd Bergmann
2015-11-18 20:36     ` Yury Norov
2015-11-18 20:36       ` Yury Norov
2015-11-18 20:45       ` Arnd Bergmann
2015-11-18 20:45         ` Arnd Bergmann
2015-11-17 21:16 ` [PATCH v6 17/19] arm64:ilp32: use the native siginfo instead of the compat siginfo Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-17 21:16 ` [PATCH v6 18/19] arm64:ilp32: change COMPAT_ELF_PLATFORM to report a a subplatform for ILP32 Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-18  8:11   ` Zhangjian (Bamvor)
2015-11-18  8:11     ` Zhangjian (Bamvor)
2015-11-18 11:21     ` pinskia
2015-11-18 11:21       ` pinskia at gmail.com
2015-11-18 20:25       ` Yury Norov
2015-11-18 20:25         ` Yury Norov
2015-11-18 21:47         ` Dr. Philipp Tomsich
2015-11-18 21:47           ` Dr. Philipp Tomsich
2015-11-17 21:16 ` [PATCH v6 19/19] arm64:ilp32: add ARM64_ILP32 to Kconfig Yury Norov
2015-11-17 21:16   ` Yury Norov
2015-11-18  8:00 ` [RFC2 PATCH v6 00/19] ILP32 for ARM64 Zhangjian (Bamvor)
2015-11-18  8:00   ` Zhangjian (Bamvor)
2015-11-23 16:49 ` Andreas Schwab
2015-11-23 16:49   ` Andreas Schwab
2015-12-03 17:59 ` Catalin Marinas
2015-12-03 17:59   ` Catalin Marinas
2015-12-04 15:35   ` Yury Norov
2015-12-04 15:35     ` Yury Norov
2015-12-04 17:18     ` Catalin Marinas
2015-12-04 17:18       ` Catalin Marinas

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=564C321F.5050707@huawei.com \
    --to=bamvor.zhangjian@huawei.com \
    --cc=Nathan_Lynch@mentor.com \
    --cc=Prasun.Kapoor@caviumnetworks.com \
    --cc=agraf@suse.de \
    --cc=andrey.konovalov@linaro.org \
    --cc=arnd@arndb.de \
    --cc=broonie@kernel.org \
    --cc=catalin.marinas@arm.com \
    --cc=christoph.muellner@theobroma-systems.com \
    --cc=ddaney.cavm@gmail.com \
    --cc=jan.dakinevich@gmail.com \
    --cc=joseph@codesourcery.com \
    --cc=klimov.linux@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=philipp.tomsich@theobroma-systems.com \
    --cc=pinskia@gmail.com \
    --cc=schwab@suse.de \
    --cc=ynorov@caviumnetworks.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.