From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cam-smtp0.cambridge.arm.com (fw-tnat.cambridge.arm.com [217.140.96.140]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 612118038E for ; Thu, 9 Mar 2017 15:49:54 -0800 (PST) Received: from E111747.Emea.Arm.com (e111747.emea.arm.com [10.1.30.67]) by cam-smtp0.cambridge.arm.com (8.13.8/8.13.8) with ESMTP id v29Nnlcn010779; Thu, 9 Mar 2017 23:49:48 GMT From: evan.lloyd@arm.com To: edk2-devel@ml01.01.org Cc: Jaben Carsey , Ruiyu Ni Leif Lindholm , Michael D Kinney , Jiewen Yao , Dong Wei Date: Thu, 9 Mar 2017 23:49:40 +0000 Message-Id: <20170309234942.11956-1-evan.lloyd@arm.com> X-Mailer: git-send-email 2.8.3 Subject: [edk2-staging][PATCH 0/2] Create new acpiview branch X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Mar 2017 23:49:54 -0000 From: Evan Lloyd I am requesting this acpiview staging branch following suggestions from Jiewen Yao in response to a patch submitted previously. The aim is to allow collaborative development of acpiview for all platforms. Evan Lloyd (1): ShellPkg: acpiview branch on edk2-staging Sami Mujawar (1): ShellPkg: Add acpiview tool to dump ACPI tables ShellPkg/ShellPkg.dec | 2 + ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf | 73 +++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h | 418 +++++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h | 347 +++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h | 84 +++ ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.h | 34 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c | 628 +++++++++++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.c | 173 ++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.c | 595 ++++++++++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/BgrtParser.c | 61 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/Dbg2Parser.c | 244 ++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/DsdtParser.c | 45 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/FadtParser.c | 151 +++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/GtdtParser.c | 295 +++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/IortParser.c | 643 ++++++++++++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/MadtParser.c | 280 +++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/McfgParser.c | 88 +++ ShellPkg/Library/UefiShellAcpiViewCommandLib/RsdpParser.c | 183 ++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/SlitParser.c | 142 +++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/SpcrParser.c | 148 +++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/SratParser.c | 307 ++++++++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/SsdtParser.c | 43 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c | 106 ++++ ShellPkg/Library/UefiShellAcpiViewCommandLib/XsdtParser.c | 145 +++++ Readme.md | 53 ++ ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni | 125 ++++ 26 files changed, 5413 insertions(+) create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.h create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/BgrtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Dbg2Parser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/DsdtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/FadtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/GtdtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/IortParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/MadtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/McfgParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/RsdpParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SlitParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SpcrParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SratParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SsdtParser.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/XsdtParser.c create mode 100755 Readme.md create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni -- Guid("CE165669-3EF3-493F-B85D-6190EE5B9759")