From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web11.9217.1666192345563511123 for ; Wed, 19 Oct 2022 08:12:25 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=ZYDGXlNv; spf=pass (domain: kernel.org, ip: 139.178.84.217, mailfrom: ardb@kernel.org) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C6FFD61920 for ; Wed, 19 Oct 2022 15:12:24 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CCDCC433B5 for ; Wed, 19 Oct 2022 15:12:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1666192344; bh=57p8a7zQUiDLzc8wT58m8buouByTa0gyjCSxyihgY4U=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=ZYDGXlNvKkyLBN8QvmYPIiD+25M6qmXR84Rg/NTvJv75+9/srzydbwAXdOmws9e8u oxxYAVcogEPdfMwN8Ui2+/+ypaqY4obouTJ8b5SZys2aOm4cKdzJo3eySBH+Ibo1hr WGEjcQGhK1jwNdSzyz5fQYl0zUNjmosHFokmEeSeCymNOqTmsqheScbMEscu7zP0dA uVydGbofCT0paPRkNH8N+AF6agXi5ALMKG0QLBu2UDX1c5PlVECiHqvqXmikQpDVFY J0ZoWFIfPz7gCvLYkJfIHlmRBlWEAsqDLz5FHw0L0m+2zO6a5TSxdOwktPS9ztJ80z Hh71aLZd37K6Q== Received: by mail-lf1-f50.google.com with SMTP id bu25so28702706lfb.3 for ; Wed, 19 Oct 2022 08:12:24 -0700 (PDT) X-Gm-Message-State: ACrzQf0Lzm7XRYJq+dZx0gaMt2l6JYQ24ke4ttWZLVoiRt4AdONxFBdQ LA3p10ebZ99ABU+phW0tacpC8M+Bj7dm3f4rJak= X-Google-Smtp-Source: AMsMyM6G6prkmOKvAZG/xYHBEI8wQ8GJG/LWD587IUL4Jnh8UruSJoErwe8jch3jOzOLaksjBoHm97EaZf3hWKoDEVY= X-Received: by 2002:a05:6512:314a:b0:4a2:d0b9:aa20 with SMTP id s10-20020a056512314a00b004a2d0b9aa20mr3431888lfi.110.1666192342231; Wed, 19 Oct 2022 08:12:22 -0700 (PDT) MIME-Version: 1.0 References: <20221019103555.493477-1-ardb@kernel.org> In-Reply-To: <20221019103555.493477-1-ardb@kernel.org> From: "Ard Biesheuvel" Date: Wed, 19 Oct 2022 17:12:11 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH edk2-platforms 0/4] Platform/ARM: clone ArmPlatformPkg's NorFlashDxe To: devel@edk2.groups.io Cc: Leif Lindholm , Thomas Abraham , Sami Mujawar Content-Type: text/plain; charset="UTF-8" On Wed, 19 Oct 2022 at 12:36, Ard Biesheuvel wrote: > > NorFlashDxe in ArmPlatformPkg is used in two different ways: > - by emulated QEMU based platforms that use its NOR flash emulation > which is based on versatile express > - by physical ARM platforms under Platform/ARM in edk2-platforms. > > In order to improve support for the former use case, let's first split > off the latter and give them their own version of the driver. > > Cc: Leif Lindholm > Cc: Thomas Abraham > Cc: Sami Mujawar > > Ard Biesheuvel (4): > Platform/ARM/BootMonFs: drop spurious dependency on ArmPlatformPkg > Platform/ARM: create local definition of NorFlashPlatformLib > Platform/ARM: clone NorFlashDxe from ArmPlatformPkg > Platform/ARM: switch to local version of NorFlashDxe drivers > Series pushed as 85280b124e5a..0286233f3bfa Thanks all