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 66693D80D0C for ; Wed, 4 Oct 2023 20:01:59 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=84Durdl8HUMM2mZ8QL9Q1y70pCaOmZeEsyLgBRF8WHs=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1696449718; v=1; b=kabWKYtD0x8iTk+4nyC0lIW7I41VRUpoJP0BeHsHM53EZODxbOs4xu/2hPlI4fRU+1HOhimL fgR4rB3h644YeC48D5tY4h2koGPFZW4P5BgkYDp7hcCL+DVaGJAic40RZ8qgCSRQYC2+4vH0tcR ADY8m5x4C2wLDsKTZLYKHoy8= X-Received: by 127.0.0.2 with SMTP id OL27YY7687511xOuFrQ87XsF; Wed, 04 Oct 2023 13:01:58 -0700 X-Received: from mail-pf1-f169.google.com (mail-pf1-f169.google.com [209.85.210.169]) by mx.groups.io with SMTP id smtpd.web11.4798.1696449717498262998 for ; Wed, 04 Oct 2023 13:01:57 -0700 X-Received: by mail-pf1-f169.google.com with SMTP id d2e1a72fcca58-694f3444f94so152767b3a.2 for ; Wed, 04 Oct 2023 13:01:57 -0700 (PDT) X-Gm-Message-State: MhxFdFoFs4l408OIgbwKnnCyx7686176AA= X-Google-Smtp-Source: AGHT+IEt0esUwthYU33+7OlcpZMgOOTSrVRInexw61ljunfNJla2YasEpBlb7GRK4Meo1eqnuXFplQ== X-Received: by 2002:a05:6a00:854:b0:693:3e99:44ee with SMTP id q20-20020a056a00085400b006933e9944eemr3812360pfk.12.1696449716532; Wed, 04 Oct 2023 13:01:56 -0700 (PDT) X-Received: from sh170r6.lan ([74.197.247.87]) by smtp.gmail.com with ESMTPSA id s29-20020a63925d000000b0057825bd3448sm3704057pgn.51.2023.10.04.13.01.55 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 04 Oct 2023 13:01:55 -0700 (PDT) From: "MrChromebox" To: devel@edk2.groups.io Cc: Matt DeVillier Subject: [edk2-devel] [PATCH 1/3] MdeModulePkg: Add ClockRate field to SerialPortInfo Date: Wed, 4 Oct 2023 15:01:33 -0500 Message-Id: <9143994e6a5f37650930abfc4141c6061e5bef98.1696448945.git.matt.devillier@gmail.com> MIME-Version: 1.0 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,matt.devillier@gmail.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=kabWKYtD; 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=gmail.com (policy=none) Add the ClockRate field to the UNIVERSAL_PAYLOAD_SERIAL_PORT_INFO struct, so that the field can be used by UefiPayloadPkg to properly set up the serial port on boards using a non-standard clock rate. Signed-off-by: Matt DeVillier Change-Id: I9bcaf03ab63f6a45d2cf25a580f7a2eba388cbbd --- MdeModulePkg/Include/UniversalPayload/SerialPortInfo.h | 1 + 1 file changed, 1 insertion(+) diff --git a/MdeModulePkg/Include/UniversalPayload/SerialPortInfo.h b/MdeMo= dulePkg/Include/UniversalPayload/SerialPortInfo.h index 3c4459e2c0..e3c9f93654 100644 --- a/MdeModulePkg/Include/UniversalPayload/SerialPortInfo.h +++ b/MdeModulePkg/Include/UniversalPayload/SerialPortInfo.h @@ -19,6 +19,7 @@ typedef struct { BOOLEAN UseMmio;=0D UINT8 RegisterStride;=0D UINT32 BaudRate;=0D + UINT32 ClockRate;=0D EFI_PHYSICAL_ADDRESS RegisterBase;=0D } UNIVERSAL_PAYLOAD_SERIAL_PORT_INFO;=0D #pragma pack()=0D --=20 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#109335): https://edk2.groups.io/g/devel/message/109335 Mute This Topic: https://groups.io/mt/101763374/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-