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.web10.8195.1655909535081123910 for ; Wed, 22 Jun 2022 07:52:15 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=HjgSaxC1; 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 682E961CC4 for ; Wed, 22 Jun 2022 14:52:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D3599C3411B for ; Wed, 22 Jun 2022 14:52:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655909533; bh=81pkx7po/VdxrppCPF6WGtKXbyG+/zfA2w6wsDH5s6I=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=HjgSaxC1L7Y9bnGjHfjByKWRgVXPF5aCaHHwHs96p11J9Ci6D9jp5MIdDANcIGp9o wVOoFBokH2mXznMdiDchV0h73oFQ1ehOu4ZFFN13lsZPSyZfO2i/r0tm3MHOX/L62k 5ThlMT3B02RKTK14riw/Tlx/JMU23FDSekTQKX7o40eKsxiGSlOftoZm7RTBVdzOAZ UKrKHc13Tz3ufW067fnAFgzVM4vE0y4vXLwO1GLpOWdZxBRYtd3eQKLtg5O4cDDAfq SRcfD3tb6RSJnC653x3G2VU5lg1Sp8RDJIPwcB2MJE86ltbKjiOtP97JEqhCoWgivn 0p1mttLAbqLHg== Received: by mail-lf1-f45.google.com with SMTP id a2so28213954lfg.5 for ; Wed, 22 Jun 2022 07:52:13 -0700 (PDT) X-Gm-Message-State: AJIora+AQg35VnpoMRNtjko6u89R/sQeXKBrc3xJs3LbP/r6Ap8B9ZDN 4YxhBwM9vZV91aCJXE+VZZWA2XaIE96AlyCVTXE= X-Google-Smtp-Source: AGRyM1uhQhSUkVPSMdtahYa8v3q9N8HAtKj/nPA4UZBhADEptSWGYLOV2/gprkPNsiZEhJla/+gMTCPHHTm1HLIka/4= X-Received: by 2002:a05:6512:25ac:b0:47f:86f2:811f with SMTP id bf44-20020a05651225ac00b0047f86f2811fmr2365525lfb.305.1655909531888; Wed, 22 Jun 2022 07:52:11 -0700 (PDT) MIME-Version: 1.0 References: <20220622115632.20490-1-rohit.mathew@arm.com> <09c9abe6-446f-2ce9-baff-a43c4af13ec4@arm.com> In-Reply-To: <09c9abe6-446f-2ce9-baff-a43c4af13ec4@arm.com> From: "Ard Biesheuvel" Date: Wed, 22 Jun 2022 16:52:00 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [edk2-platforms][PATCH V3 0/2] Uart segregation patch series To: Thomas Abraham Cc: edk2-devel-groups-io , Rohit Mathew , Ard Biesheuvel , Sami Mujawar Content-Type: text/plain; charset="UTF-8" On Wed, 22 Jun 2022 at 14:10, Thomas Abraham wrote: > > > > On 22/06/2022 12:56, Rohit Mathew via groups.io wrote: > > Changes since V1: > > - Rebased on top of latest master branch. > > - Updated copyright and date. > > > > Changes since V2: > > - Addressed comments from Thomas. > > > > This patch series aims at routing uart logs via different sets of uart ports, > > namely secure port for secure partition logs and non-secure port for all other > > logs. > > > > The first patch deals with removing redundant DSDT descriptions. For sgi575, > > a hardcoded uart base address was being used within the DSDT which hindered > > migration to the required uart ports. The addition of this patch solves this > > issue. > > > > The second patch deals with the migration and grouping of uart related PCDs for > > all Neoverese reference design platforms > > > > Dependency: > > https://edk2.groups.io/g/devel/message/90674 > > > > Link to github branch with the patches in this series - > > https://github.com/rohit-arm/edk2-platforms/tree/uart_segregation > > > > Rohit Mathew (2): > > Platform/Sgi: Remove redundant platform description from DSDT > > Platform/Sgi: Route logs to different sets of consoles > > > > Platform/ARM/SgiPkg/SgiMemoryMap.dsc.inc | 8 +-- > > Platform/ARM/SgiPkg/SgiMemoryMap2.dsc.inc | 6 +- > > Platform/ARM/SgiPkg/SgiPlatform.dsc.inc | 3 +- > > Platform/ARM/SgiPkg/SgiPlatformMm.dsc.inc | 3 +- > > Platform/ARM/SgiPkg/PlatformStandaloneMm.dsc | 4 +- > > Platform/ARM/SgiPkg/PlatformStandaloneMm2.dsc | 4 +- > > Platform/ARM/SgiPkg/AcpiTables/Sgi575/Dsdt.asl | 66 +------------------- > > 7 files changed, 14 insertions(+), 80 deletions(-) > > > > For this series - > Reviewed-by: Thomas Abraham Pushed as 14c218dd05ef..433b5b1b0f7f Thanks all,