From nobody Tue Nov 26 06:43:39 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+58556+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+58556+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1588600658; cv=none; d=zohomail.com; s=zohoarc; b=mQ6ox8+qWskD+d8FKCPcb083QeOFcVABLjWUGR9SjR2iZhC785RU0JPV6xGp1JIGOm6qVEObeYElVpkfpQnjxNrlbTNCUIV7251FoB3UVfZJW178LV4ynqHHtupXSF/j5btTeWdTdZfdptpCXu0/WWPPcGSd8qHJY3BDJ7msiMc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1588600658; h=Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:Message-ID:Reply-To:References:Sender:Subject:To; bh=8UvP0aLjmZR7kgRjE1oKGh1uEs+pTj07B6BL2EYXOhc=; b=Y0PlQgmdIQ4P8rEtZe+cEXfGdRvrxFSBI8e9jrUXwkFoieUZ0Cv2A/UVrZ+N+Lc6xClEQW4nSp0IKKl/R1En63qwdLX/1b2ghMmyWxrLMFHy7Kj1mJm2KhDtKGUw4ztV+IO2K6c6ZPCp8V9RTHNwEr6v1gCV9Omq2QNAdehtT78= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+58556+1787277+3901457@groups.io Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1588600658386711.1947765976035; Mon, 4 May 2020 06:57:38 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id vaSjYY1788612x1s683usyFP; Mon, 04 May 2020 06:57:38 -0700 X-Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web12.6664.1588600657137653497 for ; Mon, 04 May 2020 06:57:37 -0700 X-Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B75E31045; Mon, 4 May 2020 06:57:36 -0700 (PDT) X-Received: from e123331-lin.nice.arm.com (unknown [10.37.8.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id B0D323F305; Mon, 4 May 2020 06:57:35 -0700 (PDT) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: leif@nuviainc.com, philmd@redhat.com, Ard Biesheuvel Subject: [edk2-devel] [PATCH 1/5] EmbeddedPkg: remove DwEmmcDxe host controller driver Date: Mon, 4 May 2020 15:57:23 +0200 Message-Id: <20200504135727.18406-2-ard.biesheuvel@arm.com> In-Reply-To: <20200504135727.18406-1-ard.biesheuvel@arm.com> References: <20200504135727.18406-1-ard.biesheuvel@arm.com> Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,ard.biesheuvel@arm.com X-Gm-Message-State: 5WivjJp3A7JJCn7oinA6TjpGx1787277AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1588600658; bh=J2ngz/4ywPN8mJN/+B9GPuqgUUiVNoU6jGXROr6OqP4=; h=Cc:Date:From:Reply-To:Subject:To; b=CqOixrVugEum0jjnhOgVt98Ns8sJR11IhmOSqLsIx2Iw8mEljY9kNaQc6p9uC/pPmY9 WiSrAEysN9TGWDw+5mY+SC8LnrCWdnZzQ7QV6i6BcpyHZCRd7+/zQrnlzb3TEa650z0ob Man4IbAozCo54mvBD7M3OkwdEzxj1Twsx74= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The Synopsys DesignWare eMMC host controller driver does not implement that SD/MMC host controller protocol that the UEFI spec defines, but an obsolete EDK2-specific one that predates it. It also does not implement the UEFI driver model. Due to this, it has been moved into the edk2-platforms repository, alongside its remaining users, which have been updated to refer to it in its new location. So drop this version from EmbeddedPkg. Signed-off-by: Ard Biesheuvel --- EmbeddedPkg/EmbeddedPkg.dec | 6 - EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmcDxe.inf | 49 -- EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmc.h | 127 ---- EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmcDxe.c | 688 -------------------- 4 files changed, 870 deletions(-) diff --git a/EmbeddedPkg/EmbeddedPkg.dec b/EmbeddedPkg/EmbeddedPkg.dec index 7e0f692d6fc1..11e9f4f57731 100644 --- a/EmbeddedPkg/EmbeddedPkg.dec +++ b/EmbeddedPkg/EmbeddedPkg.dec @@ -144,12 +144,6 @@ [PcdsFixedAtBuild.common] # LAN91x Ethernet Driver PCDs gEmbeddedTokenSpaceGuid.PcdLan91xDxeBaseAddress|0x0|UINT32|0x00000029 =20 - # DwEmmc Driver PCDs - gEmbeddedTokenSpaceGuid.PcdDwEmmcDxeBaseAddress|0x0|UINT32|0x00000035 - gEmbeddedTokenSpaceGuid.PcdDwEmmcDxeClockFrequencyInHz|0x0|UINT32|0x0000= 0036 - gEmbeddedTokenSpaceGuid.PcdDwEmmcDxeMaxClockFreqInHz|0x0|UINT32|0x000000= 37 - gEmbeddedTokenSpaceGuid.PcdDwEmmcDxeFifoDepth|0x0|UINT32|0x00000038 - # # Android FastBoot # diff --git a/EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmcDxe.inf b/EmbeddedPkg/Driv= ers/DwEmmcDxe/DwEmmcDxe.inf deleted file mode 100644 index cf8e2422134d..000000000000 diff --git a/EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmc.h b/EmbeddedPkg/Drivers/D= wEmmcDxe/DwEmmc.h deleted file mode 100644 index 2f3659718a39..000000000000 diff --git a/EmbeddedPkg/Drivers/DwEmmcDxe/DwEmmcDxe.c b/EmbeddedPkg/Driver= s/DwEmmcDxe/DwEmmcDxe.c deleted file mode 100644 index b95917bd7aa5..000000000000 --=20 2.17.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#58556): https://edk2.groups.io/g/devel/message/58556 Mute This Topic: https://groups.io/mt/73975411/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-