From patchwork Fri Apr 1 15:20:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joel Holdsworth X-Patchwork-Id: 1612297 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: bilbo.ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.a=rsa-sha256 header.s=default header.b=IUiwCj7e; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4KVP6z2Ss1z9sV6 for ; Sat, 2 Apr 2022 02:22:35 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 38741394740F for ; Fri, 1 Apr 2022 15:22:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 38741394740F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1648826553; bh=CRL8tyxyePfSL3z5wKKiNUC7MHcOpxjJ0EdiTdlEBus=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=IUiwCj7e97TGdIjqZXZHfP97KgEkbJ656sxMcnMLUmek3GvdeH//W2ZLc9Xq9DHsm DBHHPPmppJaIycv3gZqiCKwD7QWf0JQmm9ap0kLp2r3R69knEDLEwgNzyg08Vax4wX XfXVzXW/9aE7icgYfWvyB9QgD0SQABX8aWAFPFQw= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from authenticated.a-painless.mh.aa.net.uk (painless-a.thn.aa.net.uk [IPv6:2001:8b0:0:62::26]) by sourceware.org (Postfix) with ESMTPS id BDD0D3858427; Fri, 1 Apr 2022 15:21:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BDD0D3858427 Received: from [195.110.77.193] (helo=red.nvidia.com) by painless-a.thn.aa.net.uk with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1naJ5S-00BrQs-JV; Fri, 01 Apr 2022 16:21:17 +0100 To: gcc-patches@gcc.gnu.org Subject: [PATCH 0/2] avr: Add support AVR-DA and DB series devices Date: Fri, 1 Apr 2022 16:20:27 +0100 Message-Id: <20220401152029.63853-1-jholdsworth@nvidia.com> X-Mailer: git-send-email 2.35.GIT MIME-Version: 1.0 X-Spam-Status: No, score=2.1 required=5.0 tests=BAYES_00, KAM_DMARC_REJECT, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Joel Holdsworth via Gcc-patches From: Joel Holdsworth Reply-To: Joel Holdsworth Cc: Jakub Jelinek , Joel Holdsworth , Pitchumani Sivanupandi , Richard Sandiford , Senthil Kumar Selvaraj , Joern Rennecke , Georg-Johann Lay , "Matwey V . Kornilov" , Denis Chertykov , Sivanupandi Pitchumani , Joseph Myers Errors-To: gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org Sender: "Gcc-patches" In 2021, Microchip launched two new series of AVR microcontrollers: AVR-DA and AVR-DB. This patch-set contains patches to add support for the full set of both series of devices, by listing the memory layouts in avr-mcus.def. There is an open GitHub Pull Request to add support for these devices to avr-libc here: https://github.com/avrdudes/avr-libc/pull/881 In addition, this patch-set includes a patch to remove non-printable characters from avr-devices.cc. Joel Holdsworth (2): avr: Added AVR-DA and DB MCU series avr: Removed errant control characters gcc/config/avr/avr-devices.cc | 2 -- gcc/config/avr/avr-mcus.def | 22 ++++++++++++++++++++++ gcc/config/avr/gen-avr-mmcu-specs.cc | 2 +- gcc/config/avr/gen-avr-mmcu-texi.cc | 2 +- gcc/doc/avr-mmcu.texi | 6 +++--- 5 files changed, 27 insertions(+), 7 deletions(-)