public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
* [PATCH] fhandler/proc.cc(format_proc_cpuinfo): add Linux 6.1 cpuinfo
@ 2022-12-17 21:44 Brian Inglis
  0 siblings, 0 replies; 4+ messages in thread
From: Brian Inglis @ 2022-12-17 21:44 UTC (permalink / raw)
  To: Cygwin Patches

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]


Intel 0x00000007:1 EAX:26 lam	Linear Address Masking (& recent entries)
---
 winsup/cygwin/fhandler/proc.cc | 4 ++++
 1 file changed, 4 insertions(+)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-fhandler-proc.cc-format_proc_cpuinfo-add-Linux-6.1-cpuinfo.patch --]
[-- Type: text/x-patch; name="0001-fhandler-proc.cc-format_proc_cpuinfo-add-Linux-6.1-cpuinfo.patch", Size: 743 bytes --]

diff --git a/winsup/cygwin/fhandler/proc.cc b/winsup/cygwin/fhandler/proc.cc
index 6643d1f1aa0f..75a6a85517cd 100644
--- a/winsup/cygwin/fhandler/proc.cc
+++ b/winsup/cygwin/fhandler/proc.cc
@@ -1484,6 +1484,10 @@ format_proc_cpuinfo (void *, char *&destbuf)
 
 	  ftcprint (features1,  4, "avx_vnni");	    /* vex enc NN vec */
 	  ftcprint (features1,  5, "avx512_bf16");  /* vec bfloat16 short */
+/*	  ftcprint (features1,  7, "cmpccxadd"); */ /* CMPccXADD instructions */
+/*	  ftcprint (features1, 21, "amx_fp16");	 */ /* AMX fp16 Support */
+/*	  ftcprint (features1, 23, "avx_ifma");	 */ /* Support for VPMADD52[H,L]UQ */
+	  ftcprint (features1, 26, "lam");	    /* Linear Address Masking */
 	}
 
       /* AMD cpuid 0x80000008 ebx */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fhandler/proc.cc(format_proc_cpuinfo): add Linux 6.1 cpuinfo
  2022-12-22 20:26 Brian Inglis
@ 2022-12-23  9:15 ` Corinna Vinschen
  0 siblings, 0 replies; 4+ messages in thread
From: Corinna Vinschen @ 2022-12-23  9:15 UTC (permalink / raw)
  To: cygwin-patches

On Dec 22 13:26, Brian Inglis wrote:
> 
> Intel 0x00000007:1 EAX:26 lam	Linear Address Masking (& recent entries)
> ---
>  winsup/cygwin/fhandler/proc.cc | 4 ++++
>  1 file changed, 4 insertions(+)
> 

> diff --git a/winsup/cygwin/fhandler/proc.cc b/winsup/cygwin/fhandler/proc.cc
> index 6643d1f1aa0f..75a6a85517cd 100644
> --- a/winsup/cygwin/fhandler/proc.cc
> +++ b/winsup/cygwin/fhandler/proc.cc
> @@ -1484,6 +1484,10 @@ format_proc_cpuinfo (void *, char *&destbuf)
>  
>  	  ftcprint (features1,  4, "avx_vnni");	    /* vex enc NN vec */
>  	  ftcprint (features1,  5, "avx512_bf16");  /* vec bfloat16 short */
> +/*	  ftcprint (features1,  7, "cmpccxadd"); */ /* CMPccXADD instructions */
> +/*	  ftcprint (features1, 21, "amx_fp16");	 */ /* AMX fp16 Support */
> +/*	  ftcprint (features1, 23, "avx_ifma");	 */ /* Support for VPMADD52[H,L]UQ */
> +	  ftcprint (features1, 26, "lam");	    /* Linear Address Masking */
>  	}
>  
>        /* AMD cpuid 0x80000008 ebx */
> 

Pushed.


Thanks,
Corinna

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] fhandler/proc.cc(format_proc_cpuinfo): add Linux 6.1 cpuinfo
@ 2022-12-22 20:26 Brian Inglis
  2022-12-23  9:15 ` Corinna Vinschen
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Inglis @ 2022-12-22 20:26 UTC (permalink / raw)
  To: Cygwin Patches

[-- Attachment #1: Type: text/plain, Size: 154 bytes --]


Intel 0x00000007:1 EAX:26 lam	Linear Address Masking (& recent entries)
---
  winsup/cygwin/fhandler/proc.cc | 4 ++++
  1 file changed, 4 insertions(+)


[-- Attachment #2: 0001-fhandler-proc.cc-format_proc_cpuinfo-add-Linux-6.1-cpuinfo.patch --]
[-- Type: text/x-patch, Size: 760 bytes --]

diff --git a/winsup/cygwin/fhandler/proc.cc b/winsup/cygwin/fhandler/proc.cc
index 6643d1f1aa0f..75a6a85517cd 100644
--- a/winsup/cygwin/fhandler/proc.cc
+++ b/winsup/cygwin/fhandler/proc.cc
@@ -1484,6 +1484,10 @@ format_proc_cpuinfo (void *, char *&destbuf)
 
 	  ftcprint (features1,  4, "avx_vnni");	    /* vex enc NN vec */
 	  ftcprint (features1,  5, "avx512_bf16");  /* vec bfloat16 short */
+/*	  ftcprint (features1,  7, "cmpccxadd"); */ /* CMPccXADD instructions */
+/*	  ftcprint (features1, 21, "amx_fp16");	 */ /* AMX fp16 Support */
+/*	  ftcprint (features1, 23, "avx_ifma");	 */ /* Support for VPMADD52[H,L]UQ */
+	  ftcprint (features1, 26, "lam");	    /* Linear Address Masking */
 	}
 
       /* AMD cpuid 0x80000008 ebx */


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] fhandler/proc.cc(format_proc_cpuinfo): add Linux 6.1 cpuinfo
@ 2022-12-17 21:14 Brian Inglis
  0 siblings, 0 replies; 4+ messages in thread
From: Brian Inglis @ 2022-12-17 21:14 UTC (permalink / raw)
  To: Cygwin Patches

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]


Intel 0x00000007:1 EAX:26 lam	Linear Address Masking (& recent entries)
---
 winsup/cygwin/fhandler/proc.cc | 4 ++++
 1 file changed, 4 insertions(+)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-fhandler-proc.cc-format_proc_cpuinfo-add-Linux-6.1-cpuinfo.patch --]
[-- Type: text/x-patch; name="0001-fhandler-proc.cc-format_proc_cpuinfo-add-Linux-6.1-cpuinfo.patch", Size: 743 bytes --]

diff --git a/winsup/cygwin/fhandler/proc.cc b/winsup/cygwin/fhandler/proc.cc
index 6643d1f1aa0f..75a6a85517cd 100644
--- a/winsup/cygwin/fhandler/proc.cc
+++ b/winsup/cygwin/fhandler/proc.cc
@@ -1484,6 +1484,10 @@ format_proc_cpuinfo (void *, char *&destbuf)
 
 	  ftcprint (features1,  4, "avx_vnni");	    /* vex enc NN vec */
 	  ftcprint (features1,  5, "avx512_bf16");  /* vec bfloat16 short */
+/*	  ftcprint (features1,  7, "cmpccxadd"); */ /* CMPccXADD instructions */
+/*	  ftcprint (features1, 21, "amx_fp16");	 */ /* AMX fp16 Support */
+/*	  ftcprint (features1, 23, "avx_ifma");	 */ /* Support for VPMADD52[H,L]UQ */
+	  ftcprint (features1, 26, "lam");	    /* Linear Address Masking */
 	}
 
       /* AMD cpuid 0x80000008 ebx */

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-12-23  9:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-17 21:44 [PATCH] fhandler/proc.cc(format_proc_cpuinfo): add Linux 6.1 cpuinfo Brian Inglis
  -- strict thread matches above, loose matches on Subject: below --
2022-12-22 20:26 Brian Inglis
2022-12-23  9:15 ` Corinna Vinschen
2022-12-17 21:14 Brian Inglis

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 read-only IMAP folder(s) and NNTP newsgroup(s).