From patchwork Wed Aug 17 07:13:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Schocher X-Patchwork-Id: 659969 X-Patchwork-Delegate: andreas.biessmann@googlemail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3sDggZ3qNWz9t1Y for ; Wed, 17 Aug 2016 17:23:22 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C81B7A7577; Wed, 17 Aug 2016 09:22:49 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ncZIBEjzoBWI; Wed, 17 Aug 2016 09:22:49 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5EAE94B71E; Wed, 17 Aug 2016 09:22:28 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3FC774B9F9 for ; Wed, 17 Aug 2016 09:22:14 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8zzr23W5lgT1 for ; Wed, 17 Aug 2016 09:22:14 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from pollux.denx.de (host-82-135-33-74.customer.m-online.net [82.135.33.74]) by theia.denx.de (Postfix) with ESMTP id 2D1E94B71E for ; Wed, 17 Aug 2016 09:22:11 +0200 (CEST) Received: by pollux.denx.de (Postfix, from userid 515) id 4B4A35561; Wed, 17 Aug 2016 09:13:33 +0200 (CEST) From: Heiko Schocher To: U-Boot Mailing List Date: Wed, 17 Aug 2016 09:13:26 +0200 Message-Id: <1471418009-12660-5-git-send-email-hs@denx.de> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1471418009-12660-1-git-send-email-hs@denx.de> References: <1471418009-12660-1-git-send-email-hs@denx.de> Cc: Bo Shen Subject: [U-Boot] [PATCH 4/6] arm, at91: add some missing fields in PIO struct X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" add missing u32 io_delay; /* 0x110 I/O delay register */ u32 io_driver1; /* 0x114 I/O driver register 1 */ u32 io_driver2; /* 0x118 I/O driver register 2 */ fields in struct at91_port. Signed-off-by: Heiko Schocher Acked-by: Wenyou Yang --- arch/arm/mach-at91/include/mach/at91_pio.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-at91/include/mach/at91_pio.h b/arch/arm/mach-at91/include/mach/at91_pio.h index 3012278..8e054e1 100644 --- a/arch/arm/mach-at91/include/mach/at91_pio.h +++ b/arch/arm/mach-at91/include/mach/at91_pio.h @@ -103,7 +103,11 @@ typedef struct at91_port { u32 wpsr; /* 0xE8 Write Protect Status Register */ u32 reserved11[5]; /* */ u32 schmitt; /* 0x100 Schmitt Trigger Register */ - u32 reserved12[63]; + u32 reserved12[3]; + u32 io_delay; /* 0x110 I/O delay register */ + u32 io_driver1; /* 0x114 I/O driver register 1 */ + u32 io_driver2; /* 0x118 I/O driver register 2 */ + u32 reserved13[57]; #else u32 reserved6[85]; #endif