From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mx.groups.io with SMTP id smtpd.web10.356.1572637877758667182 for ; Fri, 01 Nov 2019 12:51:17 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.65, mailfrom: prince.agyeman@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Nov 2019 12:51:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,256,1569308400"; d="scan'208";a="203952091" Received: from paagyema-desk2.amr.corp.intel.com ([10.24.15.58]) by orsmga003.jf.intel.com with ESMTP; 01 Nov 2019 12:51:16 -0700 From: "Agyeman, Prince" To: devel@edk2.groups.io Subject: [edk2-platforms] [PATCH 0/5] Enable Ps2 keyboard Date: Fri, 1 Nov 2019 12:51:11 -0700 Message-Id: <20191101195116.23212-1-prince.agyeman@intel.com> X-Mailer: git-send-email 2.19.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2228 This patch series enables BIOS Ps2 keyboard in GalagoPro3 What was done: Patch 0001 adds PCDs to BoardModulePkg that will enable/disable, describe Super I/O , Ps2 keyboard/mouse, uart1 and uart2 com ports Patch 0002 moves the generic Super I/O driver from SimicsOpenBoardPkg to BoardModulePkg in order for it to be shared. This driver publishes the gEfiSioProtocolGuid consumed by edk2's MdeModulePkg/Bus/Isa/Ps2KeyboardDxe driver to enable Ps2 keyboard functions in BIOS Patch 0003 adds PCDs defined in patch 0001 to enable/disable devices in the Super I/O driver added in patch 0002 Patch 0004 adds a Null Ps2 Library that adds Ps2 keyboard device path to ConIn and ConInDev Patch 0005 enables Ps2 keyboard in BIOS by setting Ps2 keyboard related PCDs Prince Agyeman (5): Platform/Intel: Add gBoardModulePkgTokenSpaceGuid Platform/Intel: Move Sio Dxe Driver BoardModulePkg: Added Pcds Sio Driver KabylakeOpenBoardPkg: Add Ps2 keyboard Null Library KabylakeOpenBoardPkg: Add Ps2 Keyboard Support .../Intel/BoardModulePkg/BoardModulePkg.dec | 25 +++ .../Intel/BoardModulePkg/BoardModulePkg.dsc | 1 + .../LegacySioDxe/ComponentName.c | 0 .../LegacySioDxe/ComponentName.h | 0 .../LegacySioDxe/LegacySioDxe.inf | 18 +- .../LegacySioDxe/Register.h | 0 .../LegacySioDxe/SioChip.c | 71 +++++- .../LegacySioDxe/SioChip.h | 18 +- .../LegacySioDxe/SioDriver.c | 42 +++- .../LegacySioDxe/SioDriver.h | 1 - .../LegacySioDxe/SioService.c | 0 .../LegacySioDxe/SioService.h | 0 .../BoardAcpiLib/DxeBoardAcpiTableLib.inf | 3 +- .../DxeMultiBoardAcpiSupportLib.inf | 3 +- .../GalagoPro3/Library/Ps2KbcLib/Ps2KbcLib.c | 202 ++++++++++++++++++ .../GalagoPro3/Library/Ps2KbcLib/Ps2KbcLib.h | 65 ++++++ .../Library/Ps2KbcLib/Ps2KbcLib.inf | 39 ++++ .../GalagoPro3/OpenBoardPkg.dsc | 7 + .../GalagoPro3/OpenBoardPkg.fdf | 2 + .../GalagoPro3/OpenBoardPkgPcd.dsc | 6 + .../BoardAcpiLib/DxeBoardAcpiTableLib.inf | 3 +- .../DxeMultiBoardAcpiSupportLib.inf | 3 +- .../KabylakeRvp3/OpenBoardPkgPcd.dsc | 5 + .../KabylakeOpenBoardPkg/OpenBoardPkg.dec | 2 - .../BoardX58Ich10/OpenBoardPkg.dsc | 2 +- .../BoardX58Ich10/OpenBoardPkg.fdf | 2 +- .../BoardX58Ich10/OpenBoardPkgPcd.dsc | 6 + .../WhiskeylakeOpenBoardPkg/OpenBoardPkg.dec | 1 - .../WhiskeylakeURvp/OpenBoardPkgPcd.dsc | 5 + 29 files changed, 499 insertions(+), 33 deletions(-) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/ComponentName.c (100%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/ComponentName.h (100%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/LegacySioDxe.inf (63%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/Register.h (100%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioChip.c (75%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioChip.h (90%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioDriver.c (88%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioDriver.h (95%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioService.c (100%) rename Platform/Intel/{SimicsOpenBoardPkg => BoardModulePkg}/LegacySioDxe/SioService.h (100%) create mode 100644 Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/Ps2KbcLib/Ps2KbcLib.c create mode 100644 Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/Ps2KbcLib/Ps2KbcLib.h create mode 100644 Platform/Intel/KabylakeOpenBoardPkg/GalagoPro3/Library/Ps2KbcLib/Ps2KbcLib.inf -- 2.19.1.windows.1