From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23065 invoked by alias); 30 Apr 2009 18:58:43 -0000 Received: (qmail 23056 invoked by uid 22791); 30 Apr 2009 18:58:42 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx2.redhat.com (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 30 Apr 2009 18:58:36 +0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3UIwYcR001623 for ; Thu, 30 Apr 2009 14:58:34 -0400 Received: from greed.delorie.com (vpn-12-167.rdu.redhat.com [10.11.12.167]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n3UIwX8f007977 for ; Thu, 30 Apr 2009 14:58:34 -0400 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1] (may be forged)) by greed.delorie.com (8.14.3/8.14.3) with ESMTP id n3UIwW4p016230 for ; Thu, 30 Apr 2009 14:58:33 -0400 Received: (from dj@localhost) by greed.delorie.com (8.14.3/8.14.3/Submit) id n3UIwW92016227; Thu, 30 Apr 2009 14:58:32 -0400 Date: Thu, 30 Apr 2009 18:58:00 -0000 Message-Id: <200904301858.n3UIwW92016227@greed.delorie.com> From: DJ Delorie To: binutils@sourceware.org Subject: [mep] add coprocessor flags X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2009-04/txt/msg00450.txt.bz2 Committed. 2009-04-30 DJ Delorie * mep.h (EF_MEP_COP_*): New. (EF_MEP_ALL_FLAGS): Add them. Index: mep.h =================================================================== RCS file: /cvs/src/src/include/elf/mep.h,v retrieving revision 1.2 diff -p -U3 -r1.2 mep.h --- mep.h 8 Apr 2009 02:24:19 -0000 1.2 +++ mep.h 30 Apr 2009 18:49:07 -0000 @@ -77,10 +77,18 @@ END_RELOC_NUMBERS(R_MEP_max) #define EF_MEP_CPU_C5 0x08000000 /* MEP c5 */ #define EF_MEP_CPU_H1 0x10000000 /* MEP h1 */ +#define EF_MEP_COP_MASK 0x00ff0000 +#define EF_MEP_COP_NONE 0x00000000 +#define EF_MEP_COP_AVC 0x00010000 +#define EF_MEP_COP_AVC2 0x00020000 +#define EF_MEP_COP_FMAX 0x00030000 +/* 4..5 are reserved. */ +#define EF_MEP_COP_IVC2 0x00060000 + #define EF_MEP_LIBRARY 0x00000100 /* Built as a library */ #define EF_MEP_INDEX_MASK 0x000000ff /* Configuration index */ -#define EF_MEP_ALL_FLAGS 0xff0001ff +#define EF_MEP_ALL_FLAGS 0xffff01ff #endif /* _ELF_MEP_H */