From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 7886ED811B2 for ; Mon, 11 Mar 2024 14:25:37 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=+GtWGsQL8kxBxdLlbkPB0QVqO5/L1Uymv4EqemIEzEM=; c=relaxed/simple; d=groups.io; h=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20240206; t=1710167136; v=1; b=Hk0NQsSrrY9oLeVYGex/aaqZokia833Up0BgNKz/J4sh7+RqNE2Ld+6Hb7MHHnnRWDFOc4+f GHWRWv1CSyi14N0R/2gWYHkPQLqw8Cfm1UfbnyIZSEYQ2ecviJopTIF+2MKSrEva1/4Fu5w+yv8 voi10Y0OOs7pbyf3ABROCyVJeY+VX83DwU7B9/hFIalN7ukflBgVF401c/wxqVCFgN+K5loca7x kah1XUzajqf8xGXs1T2Z1LxhuxJSqx7veB5tzj0GBDHXzdE7IAxpnXnDDKCRx0RXFh9X/PBNRsl cKgwWlFJj2Do5YU4HO+vEU0euQNx2EdY80sRT6QKYV9/Q== X-Received: by 127.0.0.2 with SMTP id rdg2YY7687511xgXlL7N7df4; Mon, 11 Mar 2024 07:25:36 -0700 X-Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web10.64086.1710167135598324110 for ; Mon, 11 Mar 2024 07:25:35 -0700 X-Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 15A6A60E93 for ; Mon, 11 Mar 2024 14:25:35 +0000 (UTC) X-Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD7B8C43390 for ; Mon, 11 Mar 2024 14:25:34 +0000 (UTC) X-Received: by mail-lf1-f41.google.com with SMTP id 2adb3069b0e04-51344bebe2fso2946106e87.2 for ; Mon, 11 Mar 2024 07:25:34 -0700 (PDT) X-Gm-Message-State: xQlx5NOWzc4kbxsCOSwe7aPzx7686176AA= X-Google-Smtp-Source: AGHT+IH9B0NRZyzxEHsoS3mjHjm03lv/qrK/IHIcg18ACPeAaQ6roWYdy9Neo9Z0GzMqu7/U1ZboaxBgAP88Wt3Y3Yk= X-Received: by 2002:a19:3848:0:b0:513:1a38:2406 with SMTP id d8-20020a193848000000b005131a382406mr3884976lfj.13.1710167132944; Mon, 11 Mar 2024 07:25:32 -0700 (PDT) MIME-Version: 1.0 References: <20240117213614.4188518-1-jeremy.linton@arm.com> In-Reply-To: <20240117213614.4188518-1-jeremy.linton@arm.com> From: "Ard Biesheuvel" Date: Mon, 11 Mar 2024 07:25:35 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [PATCH v2 0/5] Platform/RaspberryPi: Various minor fixes To: Jeremy Linton Cc: devel@edk2.groups.io, ardb+tianocore@kernel.org, quic_llindhol@quicinc.com Precedence: Bulk List-Subscribe: List-Help: 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,ardb@kernel.org List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=Hk0NQsSr; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=kernel.org (policy=none) On Wed, 17 Jan 2024 at 22:36, Jeremy Linton wrote: > > This includes a change to always initialize the PL011 to the > configured baud (which should be 115200 for the SBSA UART), which > fixes linux's assumption that SBSA UARTs are pre-programmed for > 115200. This in turn (re)enables the PL011 when the console is on the > miniuart per the config.txt file. > > Also included is another spin with the DT/XHCI reset patch which puts > removal of the DT node that causes linux to reset the XHCI controller, > as well as an additional patch that updates the DT to match the PCIe > MMIO window we have programmed. This cures much of the problem with > the PCIe/XHCI configuration when booted in DT mode on linux. > > There is also a few menu visibility/section tweaks to assure ACPI/DT > specific settings show up at the appropriate time. > > As well as a minor fix to work around a bogus compiler warning. > > v1->v2: Ard's review comments. > Convert PCIe MMIO address to use the fixedPCDs defined elsewhere > Hardcode 115200 for the SBSA UART > > Jeremy Linton (5): > Platform/RaspberryPi/DualSerialPortLib: Always configure the pl011 > Silicon/Broadcom/BcmGenetDxe: Suppress some bogus compiler warnings > Platform/RaspberryPi: Cleanup menu visibility > Platform/RaspberryPi: Give the user control over the XHCI mailbox > Platform/RaspberryPi: Update PCIe MMIO window for DT > Pushed patches #2 - #5. Thanks. -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#116636): https://edk2.groups.io/g/devel/message/116636 Mute This Topic: https://groups.io/mt/103796306/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-