From: Guo Ren <guoren@kernel.org>
To: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Arnd Bergmann <arnd@arndb.de>, Anup Patel <anup@brainfault.org>,
Greg KH <gregkh@linuxfoundation.org>,
liush <liush@allwinnertech.com>, Wei Fu <wefu@redhat.com>,
Drew Fustini <drew@beagleboard.org>,
Wang Junqiang <wangjunqiang@iscas.ac.cn>,
Christoph Hellwig <hch@lst.de>,
linux-arch <linux-arch@vger.kernel.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-riscv <linux-riscv@lists.infradead.org>,
linux-csky@vger.kernel.org,
linux-s390 <linux-s390@vger.kernel.org>,
sparclinux <sparclinux@vger.kernel.org>,
linuxppc-dev <linuxppc-dev@lists.ozlabs.org>,
Parisc List <linux-parisc@vger.kernel.org>,
"open list:BROADCOM NVRAM DRIVER" <linux-mips@vger.kernel.org>,
Linux ARM <linux-arm-kernel@lists.infradead.org>,
"the arch/x86 maintainers" <x86@kernel.org>,
Guo Ren <guoren@linux.alibaba.com>
Subject: Re: [PATCH V5 09/21] riscv: compat: Add basic compat data type implementation
Date: Wed, 23 Feb 2022 16:54:27 +0800 [thread overview]
Message-ID: <CAJF2gTS8EnPeTRj72UE2KehAqFEZ5PFVAQWgBvWRbLkGsOyXCg@mail.gmail.com> (raw)
In-Reply-To: <mhng-c74f1c06-0caa-4a71-82fa-7cf58a1ac0ca@palmer-ri-x1c9>
On Wed, Feb 23, 2022 at 9:42 AM Palmer Dabbelt <palmer@dabbelt.com> wrote:
>
> On Tue, 01 Feb 2022 07:05:33 PST (-0800), guoren@kernel.org wrote:
> > From: Guo Ren <guoren@linux.alibaba.com>
> >
> > Implement riscv asm/compat.h for struct compat_xxx,
> > is_compat_task, compat_user_regset, regset convert.
> >
> > The rv64 compat.h has inherited most of the structs
> > from the generic one.
> >
> > Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
> > Signed-off-by: Guo Ren <guoren@kernel.org>
> > Cc: Arnd Bergmann <arnd@arndb.de>
> > Cc: Palmer Dabbelt <palmer@dabbelt.com>
> > ---
> > arch/riscv/include/asm/compat.h | 129 +++++++++++++++++++++++++++
> > arch/riscv/include/asm/thread_info.h | 1 +
> > 2 files changed, 130 insertions(+)
> > create mode 100644 arch/riscv/include/asm/compat.h
> >
> > diff --git a/arch/riscv/include/asm/compat.h b/arch/riscv/include/asm/compat.h
> > new file mode 100644
> > index 000000000000..2ac955b51148
> > --- /dev/null
> > +++ b/arch/riscv/include/asm/compat.h
> > @@ -0,0 +1,129 @@
> > +/* SPDX-License-Identifier: GPL-2.0-only */
> > +#ifndef __ASM_COMPAT_H
> > +#define __ASM_COMPAT_H
> > +
> > +#define COMPAT_UTS_MACHINE "riscv\0\0"
> > +
> > +/*
> > + * Architecture specific compatibility types
> > + */
> > +#include <linux/types.h>
> > +#include <linux/sched.h>
> > +#include <linux/sched/task_stack.h>
> > +#include <asm-generic/compat.h>
> > +
> > +static inline int is_compat_task(void)
> > +{
> > + return test_thread_flag(TIF_32BIT);
> > +}
> > +
> > +struct compat_user_regs_struct {
> > + compat_ulong_t pc;
> > + compat_ulong_t ra;
> > + compat_ulong_t sp;
> > + compat_ulong_t gp;
> > + compat_ulong_t tp;
> > + compat_ulong_t t0;
> > + compat_ulong_t t1;
> > + compat_ulong_t t2;
> > + compat_ulong_t s0;
> > + compat_ulong_t s1;
> > + compat_ulong_t a0;
> > + compat_ulong_t a1;
> > + compat_ulong_t a2;
> > + compat_ulong_t a3;
> > + compat_ulong_t a4;
> > + compat_ulong_t a5;
> > + compat_ulong_t a6;
> > + compat_ulong_t a7;
> > + compat_ulong_t s2;
> > + compat_ulong_t s3;
> > + compat_ulong_t s4;
> > + compat_ulong_t s5;
> > + compat_ulong_t s6;
> > + compat_ulong_t s7;
> > + compat_ulong_t s8;
> > + compat_ulong_t s9;
> > + compat_ulong_t s10;
> > + compat_ulong_t s11;
> > + compat_ulong_t t3;
> > + compat_ulong_t t4;
> > + compat_ulong_t t5;
> > + compat_ulong_t t6;
> > +};
> > +
> > +static inline void regs_to_cregs(struct compat_user_regs_struct *cregs,
> > + struct pt_regs *regs)
> > +{
> > + cregs->pc = (compat_ulong_t) regs->epc;
> > + cregs->ra = (compat_ulong_t) regs->ra;
> > + cregs->sp = (compat_ulong_t) regs->sp;
> > + cregs->gp = (compat_ulong_t) regs->gp;
> > + cregs->tp = (compat_ulong_t) regs->tp;
> > + cregs->t0 = (compat_ulong_t) regs->t0;
> > + cregs->t1 = (compat_ulong_t) regs->t1;
> > + cregs->t2 = (compat_ulong_t) regs->t2;
> > + cregs->s0 = (compat_ulong_t) regs->s0;
> > + cregs->s1 = (compat_ulong_t) regs->s1;
> > + cregs->a0 = (compat_ulong_t) regs->a0;
> > + cregs->a1 = (compat_ulong_t) regs->a1;
> > + cregs->a2 = (compat_ulong_t) regs->a2;
> > + cregs->a3 = (compat_ulong_t) regs->a3;
> > + cregs->a4 = (compat_ulong_t) regs->a4;
> > + cregs->a5 = (compat_ulong_t) regs->a5;
> > + cregs->a6 = (compat_ulong_t) regs->a6;
> > + cregs->a7 = (compat_ulong_t) regs->a7;
> > + cregs->s2 = (compat_ulong_t) regs->s2;
> > + cregs->s3 = (compat_ulong_t) regs->s3;
> > + cregs->s4 = (compat_ulong_t) regs->s4;
> > + cregs->s5 = (compat_ulong_t) regs->s5;
> > + cregs->s6 = (compat_ulong_t) regs->s6;
> > + cregs->s7 = (compat_ulong_t) regs->s7;
> > + cregs->s8 = (compat_ulong_t) regs->s8;
> > + cregs->s9 = (compat_ulong_t) regs->s9;
> > + cregs->s10 = (compat_ulong_t) regs->s10;
> > + cregs->s11 = (compat_ulong_t) regs->s11;
> > + cregs->t3 = (compat_ulong_t) regs->t3;
> > + cregs->t4 = (compat_ulong_t) regs->t4;
> > + cregs->t5 = (compat_ulong_t) regs->t5;
> > + cregs->t6 = (compat_ulong_t) regs->t6;
> > +};
> > +
> > +static inline void cregs_to_regs(struct compat_user_regs_struct *cregs,
> > + struct pt_regs *regs)
> > +{
> > + regs->epc = (unsigned long) cregs->pc;
> > + regs->ra = (unsigned long) cregs->ra;
> > + regs->sp = (unsigned long) cregs->sp;
> > + regs->gp = (unsigned long) cregs->gp;
> > + regs->tp = (unsigned long) cregs->tp;
> > + regs->t0 = (unsigned long) cregs->t0;
> > + regs->t1 = (unsigned long) cregs->t1;
> > + regs->t2 = (unsigned long) cregs->t2;
> > + regs->s0 = (unsigned long) cregs->s0;
> > + regs->s1 = (unsigned long) cregs->s1;
> > + regs->a0 = (unsigned long) cregs->a0;
> > + regs->a1 = (unsigned long) cregs->a1;
> > + regs->a2 = (unsigned long) cregs->a2;
> > + regs->a3 = (unsigned long) cregs->a3;
> > + regs->a4 = (unsigned long) cregs->a4;
> > + regs->a5 = (unsigned long) cregs->a5;
> > + regs->a6 = (unsigned long) cregs->a6;
> > + regs->a7 = (unsigned long) cregs->a7;
> > + regs->s2 = (unsigned long) cregs->s2;
> > + regs->s3 = (unsigned long) cregs->s3;
> > + regs->s4 = (unsigned long) cregs->s4;
> > + regs->s5 = (unsigned long) cregs->s5;
> > + regs->s6 = (unsigned long) cregs->s6;
> > + regs->s7 = (unsigned long) cregs->s7;
> > + regs->s8 = (unsigned long) cregs->s8;
> > + regs->s9 = (unsigned long) cregs->s9;
> > + regs->s10 = (unsigned long) cregs->s10;
> > + regs->s11 = (unsigned long) cregs->s11;
> > + regs->t3 = (unsigned long) cregs->t3;
> > + regs->t4 = (unsigned long) cregs->t4;
> > + regs->t5 = (unsigned long) cregs->t5;
> > + regs->t6 = (unsigned long) cregs->t6;
> > +};
> > +
> > +#endif /* __ASM_COMPAT_H */
> > diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
> > index 60da0dcacf14..9392e35c689d 100644
> > --- a/arch/riscv/include/asm/thread_info.h
> > +++ b/arch/riscv/include/asm/thread_info.h
> > @@ -91,6 +91,7 @@ struct thread_info {
> > #define TIF_SECCOMP 8 /* syscall secure computing */
> > #define TIF_NOTIFY_SIGNAL 9 /* signal notifications exist */
> > #define TIF_UPROBE 10 /* uprobe breakpoint or singlestep */
> > +#define TIF_32BIT 11 /* 32bit process */
>
> Presumably that's just meant for 32-bit processes on rv64? Probably
> best to have the comment say that explicitly.
/* compat-mode 32bit process */
>
> > #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
> > #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
--
Best Regards
Guo Ren
ML: https://lore.kernel.org/linux-csky/
next prev parent reply other threads:[~2022-02-23 8:54 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-01 15:05 [PATCH V5 00/21] riscv: compat: Add COMPAT mode support for rv64 guoren
2022-02-01 15:05 ` [PATCH V5 01/21] uapi: simplify __ARCH_FLOCK{,64}_PAD a little guoren
2022-02-01 15:05 ` [PATCH V5 02/21] uapi: always define F_GETLK64/F_SETLK64/F_SETLKW64 in fcntl.h guoren
2022-02-01 15:05 ` [PATCH V5 03/21] compat: consolidate the compat_flock{,64} definition guoren
2022-02-01 15:05 ` [PATCH V5 04/21] kconfig: Add SYSVIPC_COMPAT for all architectures guoren
2022-02-01 15:05 ` [PATCH V5 05/21] fs: stat: compat: Add __ARCH_WANT_COMPAT_STAT guoren
2022-02-01 15:05 ` [PATCH V5 06/21] asm-generic: compat: Cleanup duplicate definitions guoren
2022-02-02 7:48 ` Christoph Hellwig
2022-02-01 15:05 ` [PATCH V5 07/21] syscalls: compat: Fix the missing part for __SYSCALL_COMPAT guoren
2022-02-01 15:05 ` [PATCH V5 08/21] riscv: Fixup difference with defconfig guoren
2022-02-01 15:05 ` [PATCH V5 09/21] riscv: compat: Add basic compat data type implementation guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-23 8:54 ` Guo Ren [this message]
2022-02-01 15:05 ` [PATCH V5 10/21] riscv: compat: Re-implement TASK_SIZE for COMPAT_32BIT guoren
2022-02-01 15:05 ` [PATCH V5 11/21] riscv: compat: syscall: Add compat_sys_call_table implementation guoren
2022-02-01 15:05 ` [PATCH V5 12/21] riscv: compat: syscall: Add entry.S implementation guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-01 15:05 ` [PATCH V5 13/21] riscv: compat: process: Add UXL_32 support in start_thread guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-23 9:21 ` Guo Ren
2022-02-01 15:05 ` [PATCH V5 14/21] riscv: compat: Add elf.h implementation guoren
2022-02-01 15:05 ` [PATCH V5 15/21] riscv: compat: Add hw capability check for elf guoren
2022-02-02 2:02 ` Guo Ren
2022-02-02 7:51 ` Christoph Hellwig
2022-02-03 2:44 ` Guo Ren
2022-02-01 15:05 ` [PATCH V5 16/21] riscv: compat: vdso: Add rv32 VDSO base code implementation guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-23 9:55 ` Guo Ren
2022-02-01 15:05 ` [PATCH V5 17/21] riscv: compat: vdso: Add setup additional pages implementation guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-23 11:49 ` Guo Ren
2022-02-24 1:36 ` Guo Ren
2022-02-23 12:12 ` Rolf Eike Beer
2022-02-23 12:42 ` Guo Ren
2022-02-01 15:05 ` [PATCH V5 18/21] riscv: compat: signal: Add rt_frame implementation guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-01 15:05 ` [PATCH V5 19/21] riscv: compat: ptrace: Add compat_arch_ptrace implement guoren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-01 15:05 ` [PATCH V5 20/21] riscv: compat: Add COMPAT Kbuild skeletal support guoren
2022-02-01 15:05 ` [PATCH V5 21/21] KVM: compat: riscv: Prevent KVM_COMPAT from being selected guoren
2022-02-01 15:44 ` Anup Patel
2022-02-01 16:00 ` Paolo Bonzini
2022-02-01 16:11 ` Anup Patel
2022-02-01 16:16 ` Guo Ren
2022-02-23 1:42 ` Palmer Dabbelt
2022-02-08 7:43 ` [PATCH V5 00/21] riscv: compat: Add COMPAT mode support for rv64 Guo Ren
2022-02-23 1:43 ` Palmer Dabbelt
2022-02-23 10:59 ` Arnd Bergmann
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=CAJF2gTS8EnPeTRj72UE2KehAqFEZ5PFVAQWgBvWRbLkGsOyXCg@mail.gmail.com \
--to=guoren@kernel.org \
--cc=anup@brainfault.org \
--cc=arnd@arndb.de \
--cc=drew@beagleboard.org \
--cc=gregkh@linuxfoundation.org \
--cc=guoren@linux.alibaba.com \
--cc=hch@lst.de \
--cc=linux-arch@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-csky@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=linux-parisc@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-s390@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=liush@allwinnertech.com \
--cc=palmer@dabbelt.com \
--cc=sparclinux@vger.kernel.org \
--cc=wangjunqiang@iscas.ac.cn \
--cc=wefu@redhat.com \
--cc=x86@kernel.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).