From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=pass header.i=@akeo-ie.20150623.gappssmtp.com header.s=20150623 header.b=SFCM8KrQ; spf=none, err=permanent DNS error (domain: akeo.ie, ip: 209.85.208.66, mailfrom: pete@akeo.ie) Received: from mail-ed1-f66.google.com (mail-ed1-f66.google.com [209.85.208.66]) by groups.io with SMTP; Thu, 04 Jul 2019 09:51:35 -0700 Received: by mail-ed1-f66.google.com with SMTP id e3so5931203edr.10 for ; Thu, 04 Jul 2019 09:51:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akeo-ie.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=8/mqLdrdMKljM8tWaOxmlr9RO8xjRdSi+aBbJYrPYjs=; b=SFCM8KrQUWiGZY/FYgi3g/BqWuLitnkSasROAmACReLCbWFpHjV3DXnWPLUZF2ljlW nKFeOZNip0mkgCsNFsv3ZDuAJ9eMp94i87qv2IlHfVQhmfe/yM//2zhNertuJRIc3VNf pm5osByuAlrNqs2P8XjP5sdvav2G0gGyuS0FRuCHr6Kr+LN5O8OjQ/YW2lJRd/IPQA7k doo8rSdxyCb3dnh+6vGUvvTQR1zWu11VKQTWjLc1tiK6G/DxawMCExsFCF78LQ1u2gE2 MIdYatx0XcrDh3HzHIwZn2EntHbvuj2hzooyOP04JJDrWbP9IfePC+8w2svk8AZxHZ++ iStg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=8/mqLdrdMKljM8tWaOxmlr9RO8xjRdSi+aBbJYrPYjs=; b=aBQq6+rYAXmjzFzdPKbMHu+x56vLemo4xzsD0HLZbv+OrsoH0G4zwywpuEj3eV+TEb A4h2ql3sxdAGTQcwCGLtopL5ujkkvH5mQJKyWqSFeYvQJWtoeupPSsZUHgbovtjw/ZMz GPK2w+INJjoYugaRmh+i5922qSwBZxq1SQS8Z77dJS65DxwxHuxnM8/WQO8PmHlu8U5F TNBAc/19xPTSY7RN+oEI/Fw+TQ6+j5qhQNBd9IBPXiWgnk1RpA1r7o1VdHTvOP6pV6jm C1aqa2lLVPHghwlrTUGoqqy7NUBSbMppGS9PMT0/H62VQEb/MIHZJvu8d/+0sh+EBOG2 eRxQ== X-Gm-Message-State: APjAAAUIqtm2lkSxVfUOoXzvrI6zXijLbMMM0m+u6enfqwsawxLYW0rk wi64p6h4AsAM0yABZ8NbXwR5RTUmcJI= X-Google-Smtp-Source: APXvYqysUa1zJK1pLEwdKiO2aEFU2oLAPdZZ4G1d1J1sHS05waI4qVIKAoweImheJAoqLUyXtFtH3g== X-Received: by 2002:a17:906:7d52:: with SMTP id l18mr23524807ejp.290.1562259093078; Thu, 04 Jul 2019 09:51:33 -0700 (PDT) Return-Path: Received: from localhost.localdomain ([84.203.93.8]) by smtp.gmail.com with ESMTPSA id i18sm1838063ede.65.2019.07.04.09.51.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 04 Jul 2019 09:51:31 -0700 (PDT) From: "Pete Batard" To: devel@edk2.groups.io Cc: ard.biesheuvel@linaro.org, leif.lindholm@linaro.org Subject: [edk2-platforms: PATCH v2 0/2] Platform/RPi3: Improve boot order and add custom freqs Date: Thu, 4 Jul 2019 17:51:18 +0100 Message-Id: <20190704165120.8800-1-pete@akeo.ie> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit v2 to: - Break a long line PlatformBm.c. - Use a BOOLEAN for the SkipTurbo parameter. - Keep already defined gRaspberryPiTokenSpaceGuid.### values as they are. Note that, as opposed to what was discussed, EFI_VARIABLE_RUNTIME_ACCESS was not removed because doing so effectively prevents the custom value to be applied in the firmware menu. Without EFI_VARIABLE_RUNTIME_ACCESS you will get the following notice when trying to save your changes: Submit Fail For Form: Chipset Configuration. Press D(d) to discard changes for this form, Press G(g) to go to this form So I guess EFI_VARIABLE_RUNTIME_ACCESS applies to more than OS access. Regards, /Pete Pete Batard (2): Platform/RPi3: Set the boot option of UEFI Shell as non-active Platform/Rpi3: Add custom CPU frequency support Platform/RaspberryPi/RPi3/Drivers/ConfigDxe/ConfigDxe.c | 13 +++++++++++- Platform/RaspberryPi/RPi3/Drivers/ConfigDxe/ConfigDxe.inf | 1 + Platform/RaspberryPi/RPi3/Drivers/ConfigDxe/ConfigDxeHii.uni | 4 ++++ Platform/RaspberryPi/RPi3/Drivers/ConfigDxe/ConfigDxeHii.vfr | 22 ++++++++++++++++++++ Platform/RaspberryPi/RPi3/Drivers/RpiFirmwareDxe/RpiFirmwareDxe.c | 6 ++++-- Platform/RaspberryPi/RPi3/Include/Protocol/RpiFirmware.h | 3 ++- Platform/RaspberryPi/RPi3/Library/PlatformBootManagerLib/PlatformBm.c | 3 ++- Platform/RaspberryPi/RPi3/RPi3.dec | 1 + Platform/RaspberryPi/RPi3/RPi3.dsc | 1 + Platform/RaspberryPi/RPi3/Readme.md | 6 +++--- 10 files changed, 52 insertions(+), 8 deletions(-) -- 2.21.0.windows.1