From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: hao.a.wu@intel.com) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by groups.io with SMTP; Sun, 26 May 2019 23:37:01 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 May 2019 23:36:59 -0700 X-ExtLoop1: 1 Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.8]) by orsmga004.jf.intel.com with ESMTP; 26 May 2019 23:36:57 -0700 From: "Wu, Hao A" To: devel@edk2.groups.io Cc: Hao A Wu , Ray Ni , Andrew Fish , Laszlo Ersek , Leif Lindholm , Michael D Kinney Subject: [RFC][PATCH v1 0/1] PcAtChipsetPkg: Remove framework modules Date: Mon, 27 May 2019 14:36:56 +0800 Message-Id: <20190527063656.9996-1-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 ''' Please note that this patch will be hold until all the below requirements are met: A. edk2-stable201905 is created; B. OvmfPkg has drop its usage of the legacy ISA stack (which includes the IsaAcpiDxe driver); C. UefiPayloadPkg has been updated to drop its consume to the 8259InterruptControllerDxe driver. ''' This patch itself will not be sent to the mailing list and is only available at: https://github.com/hwu25/edk2/tree/delete_framework (https://github.com/hwu25/edk2/commit/84e58f89f6d03f9cc3399cced9d5d5529e06a416) Below modules will be removed from PcAtChipsetPkg: * PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf * PcAtChipsetPkg/8254TimerDxe/8254Timer.inf * PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf They are considered legacy framework components and will no longer be used after the removal of IntelFramework[Module]Pkg. Also, the unused (after the modules being removed) PCDs will be deleted in package level DEC/UNI files. Cc: Ray Ni Cc: Andrew Fish Cc: Laszlo Ersek Cc: Leif Lindholm Cc: Michael D Kinney Hao A Wu (1): PcAtChipsetPkg: Remove framework modules PcAtChipsetPkg/PcAtChipsetPkg.dec | 58 -- PcAtChipsetPkg/PcAtChipsetPkg.dsc | 5 +- PcAtChipsetPkg/8254TimerDxe/8254Timer.inf | 42 -- PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf | 46 -- PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf | 50 -- PcAtChipsetPkg/8254TimerDxe/Timer.h | 185 ------ PcAtChipsetPkg/8259InterruptControllerDxe/8259.h | 220 ------- PcAtChipsetPkg/IsaAcpiDxe/PcatIsaAcpi.h | 269 --------- PcAtChipsetPkg/8254TimerDxe/Timer.c | 401 ------------- PcAtChipsetPkg/8259InterruptControllerDxe/8259.c | 622 -------------------- PcAtChipsetPkg/IsaAcpiDxe/ComponentName.c | 301 ---------- PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.c | 353 ----------- PcAtChipsetPkg/IsaAcpiDxe/PcatIsaAcpi.c | 386 ------------ PcAtChipsetPkg/8254TimerDxe/Timer.uni | 16 - PcAtChipsetPkg/8254TimerDxe/TimerExtra.uni | 14 - PcAtChipsetPkg/8259InterruptControllerDxe/Legacy8259.uni | 16 - PcAtChipsetPkg/8259InterruptControllerDxe/Legacy8259Extra.uni | 14 - PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.uni | 16 - PcAtChipsetPkg/IsaAcpiDxe/IsaAcpiExtra.uni | 14 - PcAtChipsetPkg/PcAtChipsetPkg.uni | 52 +- 20 files changed, 2 insertions(+), 3078 deletions(-) delete mode 100644 PcAtChipsetPkg/8254TimerDxe/8254Timer.inf delete mode 100644 PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf delete mode 100644 PcAtChipsetPkg/8254TimerDxe/Timer.h delete mode 100644 PcAtChipsetPkg/8259InterruptControllerDxe/8259.h delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/PcatIsaAcpi.h delete mode 100644 PcAtChipsetPkg/8254TimerDxe/Timer.c delete mode 100644 PcAtChipsetPkg/8259InterruptControllerDxe/8259.c delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/ComponentName.c delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.c delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/PcatIsaAcpi.c delete mode 100644 PcAtChipsetPkg/8254TimerDxe/Timer.uni delete mode 100644 PcAtChipsetPkg/8254TimerDxe/TimerExtra.uni delete mode 100644 PcAtChipsetPkg/8259InterruptControllerDxe/Legacy8259.uni delete mode 100644 PcAtChipsetPkg/8259InterruptControllerDxe/Legacy8259Extra.uni delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.uni delete mode 100644 PcAtChipsetPkg/IsaAcpiDxe/IsaAcpiExtra.uni -- 2.12.0.windows.1