public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [patch] Update list of e_machine values
@ 2022-02-03 16:40 ccoutant
  2022-02-03 16:42 ` H.J. Lu
  2022-02-03 22:52 ` Cary Coutant
  0 siblings, 2 replies; 6+ messages in thread
From: ccoutant @ 2022-02-03 16:40 UTC (permalink / raw)
  To: binutils

I've added three recently allocated e_machine values
to include/elf/common.h.

-cary


    Add new e_machine values.
    
    include/elf:
            * common.h: Add EM_U16_U8CORE, EM_TACHYUM, EM_56800V4.

diff --git a/include/elf/common.h b/include/elf/common.h
index b1bfa9162b5..fe252e9368f 100644
--- a/include/elf/common.h
+++ b/include/elf/common.h
@@ -354,6 +354,9 @@
 #define EM_65816       257     /* WDC 65816/65C816 */
 #define EM_LOONGARCH   258     /* LoongArch */
 #define EM_KF32                259     /* ChipON KungFu32 */
+#define EM_U16_U8CORE  260     /* LAPIS nX-U16/U8 */
+#define EM_TACHYUM     261     /* Tachyum */
+#define EM_56800V4     262     /* NXP 56800V4 Digital Signal Controller (DSC) */
 
 /* If it is necessary to assign new unofficial EM_* values, please pick large
    random numbers (0x8523, 0xa7f2, etc.) to minimize the chances of collision

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

* Re: [patch] Update list of e_machine values
  2022-02-03 16:40 [patch] Update list of e_machine values ccoutant
@ 2022-02-03 16:42 ` H.J. Lu
  2022-02-03 16:57   ` Cary Coutant
  2022-02-03 22:52 ` Cary Coutant
  1 sibling, 1 reply; 6+ messages in thread
From: H.J. Lu @ 2022-02-03 16:42 UTC (permalink / raw)
  To: Cary Coutant; +Cc: Binutils

On Thu, Feb 3, 2022 at 8:41 AM ccoutant--- via Binutils
<binutils@sourceware.org> wrote:
>
> I've added three recently allocated e_machine values
> to include/elf/common.h.

Hi Cary,

Is psABI git repo available to the public?

Thanks.

> -cary
>
>
>     Add new e_machine values.
>
>     include/elf:
>             * common.h: Add EM_U16_U8CORE, EM_TACHYUM, EM_56800V4.
>
> diff --git a/include/elf/common.h b/include/elf/common.h
> index b1bfa9162b5..fe252e9368f 100644
> --- a/include/elf/common.h
> +++ b/include/elf/common.h
> @@ -354,6 +354,9 @@
>  #define EM_65816       257     /* WDC 65816/65C816 */
>  #define EM_LOONGARCH   258     /* LoongArch */
>  #define EM_KF32                259     /* ChipON KungFu32 */
> +#define EM_U16_U8CORE  260     /* LAPIS nX-U16/U8 */
> +#define EM_TACHYUM     261     /* Tachyum */
> +#define EM_56800V4     262     /* NXP 56800V4 Digital Signal Controller (DSC) */
>
>  /* If it is necessary to assign new unofficial EM_* values, please pick large
>     random numbers (0x8523, 0xa7f2, etc.) to minimize the chances of collision



-- 
H.J.

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

* Re: [patch] Update list of e_machine values
  2022-02-03 16:42 ` H.J. Lu
@ 2022-02-03 16:57   ` Cary Coutant
  2022-02-03 16:59     ` H.J. Lu
  0 siblings, 1 reply; 6+ messages in thread
From: Cary Coutant @ 2022-02-03 16:57 UTC (permalink / raw)
  To: H.J. Lu; +Cc: Binutils

> Is psABI git repo available to the public?

You mean the gABI? Not yet, but I'm working on it. The conversion of
the documentation to RST is mostly complete, and we're working on
setting up a github repo now.

-cary

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

* Re: [patch] Update list of e_machine values
  2022-02-03 16:57   ` Cary Coutant
@ 2022-02-03 16:59     ` H.J. Lu
  2022-02-03 20:20       ` Fangrui Song
  0 siblings, 1 reply; 6+ messages in thread
From: H.J. Lu @ 2022-02-03 16:59 UTC (permalink / raw)
  To: Cary Coutant; +Cc: Binutils

On Thu, Feb 3, 2022 at 8:57 AM Cary Coutant <ccoutant@gmail.com> wrote:
>
> > Is psABI git repo available to the public?
>
> You mean the gABI? Not yet, but I'm working on it. The conversion of

Yes, gABI.

> the documentation to RST is mostly complete, and we're working on
> setting up a github repo now.
>

Thanks for the update.

-- 
H.J.

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

* Re: [patch] Update list of e_machine values
  2022-02-03 16:59     ` H.J. Lu
@ 2022-02-03 20:20       ` Fangrui Song
  0 siblings, 0 replies; 6+ messages in thread
From: Fangrui Song @ 2022-02-03 20:20 UTC (permalink / raw)
  To: Cary Coutant; +Cc: H.J. Lu, Binutils


On 2022-02-03, H.J. Lu via Binutils wrote:
>On Thu, Feb 3, 2022 at 8:57 AM Cary Coutant <ccoutant@gmail.com> wrote:
>>
>> > Is psABI git repo available to the public?
>>
>> You mean the gABI? Not yet, but I'm working on it. The conversion of
>
>Yes, gABI.
>
>> the documentation to RST is mostly complete, and we're working on
>> setting up a github repo now.
>>
>
>Thanks for the update.

Thanks!

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

* Re: [patch] Update list of e_machine values
  2022-02-03 16:40 [patch] Update list of e_machine values ccoutant
  2022-02-03 16:42 ` H.J. Lu
@ 2022-02-03 22:52 ` Cary Coutant
  1 sibling, 0 replies; 6+ messages in thread
From: Cary Coutant @ 2022-02-03 22:52 UTC (permalink / raw)
  To: Binutils

>     Add new e_machine values.
>
>     include/elf:
>             * common.h: Add EM_U16_U8CORE, EM_TACHYUM, EM_56800V4.

I've just committed a minor update to this patch. NXP has finalized
the name of the 56800V4 processor as 56800EF, so I've updated the EM_
constant and comment.

-cary

diff --git a/include/elf/common.h b/include/elf/common.h
index fe252e9368f..def04c323d3 100644
--- a/include/elf/common.h
+++ b/include/elf/common.h
@@ -356,7 +356,7 @@
 #define EM_KF32                259     /* ChipON KungFu32 */
 #define EM_U16_U8CORE  260     /* LAPIS nX-U16/U8 */
 #define EM_TACHYUM     261     /* Tachyum */
-#define EM_56800V4     262     /* NXP 56800V4 Digital Signal
Controller (DSC) */
+#define EM_56800EF     262     /* NXP 56800EF Digital Signal
Controller (DSC) */

 /* If it is necessary to assign new unofficial EM_* values, please pick large
    random numbers (0x8523, 0xa7f2, etc.) to minimize the chances of collision

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

end of thread, other threads:[~2022-02-03 22:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-03 16:40 [patch] Update list of e_machine values ccoutant
2022-02-03 16:42 ` H.J. Lu
2022-02-03 16:57   ` Cary Coutant
2022-02-03 16:59     ` H.J. Lu
2022-02-03 20:20       ` Fangrui Song
2022-02-03 22:52 ` Cary Coutant

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).