From patchwork Wed Sep 6 15:12:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Preudhomme X-Patchwork-Id: 810665 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-461617-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="BHjbNhUt"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xnRsm3ZzGz9t50 for ; Thu, 7 Sep 2017 01:12:58 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :references:subject:to:from:message-id:date:mime-version :in-reply-to:content-type; q=dns; s=default; b=i0THGAOuVFwaJvxix AP1YY2Dn5NtLQKo9yYi2LyfkeMpnOQVUvDpd7D+hKOVg9Up0lJ7kAWuNE+AWwuB9 XXlU9vzuphVv8xu6YX6xSgixYgn+QpYAD2DARKfP417Vzoefo+4gq3KksRcJyG4H yZvp9RtwO8CKWXd/yqQkY8otsc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :references:subject:to:from:message-id:date:mime-version :in-reply-to:content-type; s=default; bh=pT+2ddohZKvZTZGYMjVxl9R ZKBc=; b=BHjbNhUtkbdgrH/Oreu4sjbDJFEAUFjxMCNH8GqGf6tSEAes/SkusuX evjyBl08xUkRb7Lv8HfA9ijg4cTqnRXj41caGMOy15wqfIFF2pACBqJaEao5LZj0 foDIOzaUasKFbl6W16pJYFwewvngAV4sKT8uCpCHkhAQYnMMR3oU= Received: (qmail 129160 invoked by alias); 6 Sep 2017 15:12:50 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 129150 invoked by uid 89); 6 Sep 2017 15:12:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=processors, Best X-HELO: foss.arm.com Received: from usa-sjc-mx-foss1.foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 06 Sep 2017 15:12:48 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id AFE0415AD for ; Wed, 6 Sep 2017 08:12:46 -0700 (PDT) Received: from [10.2.206.52] (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 116743F578 for ; Wed, 6 Sep 2017 08:12:45 -0700 (PDT) References: <88ba1e93-952e-0759-9bca-ad120fff18f4@foss.arm.com> Subject: [arm-embedded] [PATCH 1/3, GCC/ARM, ping] Add MIDR info for ARM Cortex-R7 and Cortex-R8 To: "gcc-patches@gcc.gnu.org" From: Thomas Preudhomme X-Forwarded-Message-Id: <88ba1e93-952e-0759-9bca-ad120fff18f4@foss.arm.com> Message-ID: <059cae6c-9591-9dd1-6a73-773e70fbc8d6@foss.arm.com> Date: Wed, 6 Sep 2017 16:12:44 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <88ba1e93-952e-0759-9bca-ad120fff18f4@foss.arm.com> X-IsSubscribed: yes Hi, We have decided to apply the following patch to the embedded-7-branch as a dependency patch to enable ARMv8-R support. ChangeLog entry is as follows: *** gcc/ChangeLog.arm *** 2017-09-04 Thomas Preud'homme Backport from mainline 2017-07-04 Thomas Preud'homme * config/arm/driver-arm.c (arm_cpu_table): Add entry for ARM Cortex-R7 and Cortex-R8 processors. Best regards, Thomas Ping? Best regards, Thomas On 29/06/17 14:55, Thomas Preudhomme wrote: > Hi, > > The driver is missing MIDR information for processors ARM Cortex-R7 and > Cortex-R8 to support -march/-mcpu/-mtune=native on the command line. > This patch adds the missing information. > > ChangeLog entry is as follows: > > *** gcc/ChangeLog *** > > 2017-01-31 Thomas Preud'homme > > * config/arm/driver-arm.c (arm_cpu_table): Add entry for ARM > Cortex-R7 and Cortex-R8 processors. > > Is this ok for master? > > Best regards, > > Thomas diff --git a/gcc/config/arm/driver-arm.c b/gcc/config/arm/driver-arm.c index b034f13fda63f5892bbd9879d72f4b02e2632d69..29873d57a1e45fd989f6ff01dd4a2ae7320d93bb 100644 --- a/gcc/config/arm/driver-arm.c +++ b/gcc/config/arm/driver-arm.c @@ -54,6 +54,8 @@ static struct vendor_cpu arm_cpu_table[] = { {"0xd09", "armv8-a+crc", "cortex-a73"}, {"0xc14", "armv7-r", "cortex-r4"}, {"0xc15", "armv7-r", "cortex-r5"}, + {"0xc17", "armv7-r", "cortex-r7"}, + {"0xc18", "armv7-r", "cortex-r8"}, {"0xc20", "armv6-m", "cortex-m0"}, {"0xc21", "armv6-m", "cortex-m1"}, {"0xc23", "armv7-m", "cortex-m3"},