Message ID | ce66a86285e966700acb13521851aca5b764a56e.1673009740.git.oleksii.kurochko@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Basic early_printk and smoke test implementation | expand |
On 06.01.2023 14:14, Oleksii Kurochko wrote: > Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> > --- > xen/arch/riscv/include/asm/types.h | 73 ++++++++++++++++++++++++++++++ > 1 file changed, 73 insertions(+) > create mode 100644 xen/arch/riscv/include/asm/types.h > > diff --git a/xen/arch/riscv/include/asm/types.h b/xen/arch/riscv/include/asm/types.h > new file mode 100644 > index 0000000000..48f27f97ba > --- /dev/null > +++ b/xen/arch/riscv/include/asm/types.h > @@ -0,0 +1,73 @@ > +#ifndef __RISCV_TYPES_H__ > +#define __RISCV_TYPES_H__ > + > +#ifndef __ASSEMBLY__ > + > +typedef __signed__ char __s8; > +typedef unsigned char __u8; > + > +typedef __signed__ short __s16; > +typedef unsigned short __u16; > + > +typedef __signed__ int __s32; > +typedef unsigned int __u32; > + > +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) > +#if defined(CONFIG_RISCV_32) > +typedef __signed__ long long __s64; > +typedef unsigned long long __u64; > +#elif defined (CONFIG_RISCV_64) > +typedef __signed__ long __s64; > +typedef unsigned long __u64; > +#endif > +#endif Of these, only the ones actually needed should be introduced. We're in the process of phasing out especially the above, but also ... > +typedef signed char s8; > +typedef unsigned char u8; > + > +typedef signed short s16; > +typedef unsigned short u16; > + > +typedef signed int s32; > +typedef unsigned int u32; > + > +#if defined(CONFIG_RISCV_32) > +typedef signed long long s64; > +typedef unsigned long long u64; ... all of these. > +typedef u32 vaddr_t; (New) consumers of such types should therefore use {u,}int<N>_t instead. Jan
On Fri, 2023-01-06 at 15:12 +0100, Jan Beulich wrote: > On 06.01.2023 14:14, Oleksii Kurochko wrote: > > Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> > > --- > > xen/arch/riscv/include/asm/types.h | 73 > > ++++++++++++++++++++++++++++++ > > 1 file changed, 73 insertions(+) > > create mode 100644 xen/arch/riscv/include/asm/types.h > > > > diff --git a/xen/arch/riscv/include/asm/types.h > > b/xen/arch/riscv/include/asm/types.h > > new file mode 100644 > > index 0000000000..48f27f97ba > > --- /dev/null > > +++ b/xen/arch/riscv/include/asm/types.h > > @@ -0,0 +1,73 @@ > > +#ifndef __RISCV_TYPES_H__ > > +#define __RISCV_TYPES_H__ > > + > > +#ifndef __ASSEMBLY__ > > + > > +typedef __signed__ char __s8; > > +typedef unsigned char __u8; > > + > > +typedef __signed__ short __s16; > > +typedef unsigned short __u16; > > + > > +typedef __signed__ int __s32; > > +typedef unsigned int __u32; > > + > > +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) > > +#if defined(CONFIG_RISCV_32) > > +typedef __signed__ long long __s64; > > +typedef unsigned long long __u64; > > +#elif defined (CONFIG_RISCV_64) > > +typedef __signed__ long __s64; > > +typedef unsigned long __u64; > > +#endif > > +#endif > > Of these, only the ones actually needed should be introduced. We're > in the process of phasing out especially the above, but also ... > Got it. I will take it into account when the next version of patch series will be ready. > > +typedef signed char s8; > > +typedef unsigned char u8; > > + > > +typedef signed short s16; > > +typedef unsigned short u16; > > + > > +typedef signed int s32; > > +typedef unsigned int u32; > > + > > +#if defined(CONFIG_RISCV_32) > > +typedef signed long long s64; > > +typedef unsigned long long u64; > > ... all of these. > > > +typedef u32 vaddr_t; > > (New) consumers of such types should therefore use {u,}int<N>_t > instead. > > Jan
diff --git a/xen/arch/riscv/include/asm/types.h b/xen/arch/riscv/include/asm/types.h new file mode 100644 index 0000000000..48f27f97ba --- /dev/null +++ b/xen/arch/riscv/include/asm/types.h @@ -0,0 +1,73 @@ +#ifndef __RISCV_TYPES_H__ +#define __RISCV_TYPES_H__ + +#ifndef __ASSEMBLY__ + +typedef __signed__ char __s8; +typedef unsigned char __u8; + +typedef __signed__ short __s16; +typedef unsigned short __u16; + +typedef __signed__ int __s32; +typedef unsigned int __u32; + +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) +#if defined(CONFIG_RISCV_32) +typedef __signed__ long long __s64; +typedef unsigned long long __u64; +#elif defined (CONFIG_RISCV_64) +typedef __signed__ long __s64; +typedef unsigned long __u64; +#endif +#endif + +typedef signed char s8; +typedef unsigned char u8; + +typedef signed short s16; +typedef unsigned short u16; + +typedef signed int s32; +typedef unsigned int u32; + +#if defined(CONFIG_RISCV_32) +typedef signed long long s64; +typedef unsigned long long u64; +typedef u32 vaddr_t; +#define PRIvaddr PRIx32 +typedef u64 paddr_t; +#define INVALID_PADDR (~0ULL) +#define PRIpaddr "016llx" +typedef u32 register_t; +#define PRIregister "x" +#elif defined (CONFIG_RISCV_64) +typedef signed long s64; +typedef unsigned long u64; +typedef u64 vaddr_t; +#define PRIvaddr PRIx64 +typedef u64 paddr_t; +#define INVALID_PADDR (~0UL) +#define PRIpaddr "016lx" +typedef u64 register_t; +#define PRIregister "lx" +#endif + +#if defined(__SIZE_TYPE__) +typedef __SIZE_TYPE__ size_t; +#else +typedef unsigned long size_t; +#endif +typedef signed long ssize_t; + +#endif /* __ASSEMBLY__ */ + +#endif /* __RISCV_TYPES_H__ */ +/* + * Local variables: + * mode: C + * c-file-style: "BSD" + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */
Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> --- xen/arch/riscv/include/asm/types.h | 73 ++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 xen/arch/riscv/include/asm/types.h