From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4864:20::641; helo=mail-pl1-x641.google.com; envelope-from=ming.huang@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pl1-x641.google.com (mail-pl1-x641.google.com [IPv6:2607:f8b0:4864:20::641]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D4251211BD618 for ; Tue, 19 Feb 2019 23:26:15 -0800 (PST) Received: by mail-pl1-x641.google.com with SMTP id y10so11781873plp.0 for ; Tue, 19 Feb 2019 23:26:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=PPPj+uyVq6qkiXkwG2vyULSvJhCIega4Ows//76avPg=; b=Q5gfJfrak4R6Vmpcruy+QU5OqNi4mYt6QdJdDOv01cy8bTSA6APJmVKycZek3rsSdi nrGA2DxFwWD+snBx/UUtRXmSVPUG8638uj3Q8zKrleaTLwHXNhyYL4/7hqN5o0Ug6fWo 7jTbyj9vQpGi5YRONtnHjwRYoM5mqHe8kn/HZWIV52eA2XNRkD+ndfjVladB3Ldxbjzf kLIXW+6OC8NIBJO0osxcFEGTkQJuuCHKf/+xCk4/pkFLp3opc8QZaXirH2aUnMYPul59 7zkbXq5a+aVhWOZLIxukc/6wqzUbrJivoNduL9Vjofn5YTr+2+Y3kMQMzwqC3EYEq+rS MLTg== 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:in-reply-to :references; bh=PPPj+uyVq6qkiXkwG2vyULSvJhCIega4Ows//76avPg=; b=sxZvxMbxnYCreOdg+ecZNZS1MEYeDf60kIqbKqRFzDF2TbKFIpsysPwtCHL9Fwaoeb eeOZc5fgmiZwuHlruzDPXbYXzdNiVFn4hoAm6k1mqWuTana4HFOZmbBF7+0ScGnXjlfD i/Wd1lfOcIp1kWcdx6PeHEpLX29ld/5/IXanyiPeAhLFCTzaa04bPqL+UarMbCOHQYuE Oar9hKQErUVCj6zCt2th0bcaxOzNiShBzlNza4IBagIYXVKmZiAfmXaIMKhUDMnOsS+v pnkEBISGqW6TT2x5W2EUFdeOPNXpo5EFY0pf72DO6/i/X1e3fYeuCsrapwheO7XnawkG 7L5w== X-Gm-Message-State: AHQUAuYT40fylkgqqiBSLyEoE5Khgweifkn/032v4XKQVPAnBU+qsBro mWbK0CdlsMKAipONeOG/jwJ+oA== X-Google-Smtp-Source: AHgI3IbDSXznqmBDglq16uKLw4Q8rQz59Zfot7FbH3GDEMeaSyMqBAi1yL9GsWeFEiAZg0ufc54lOA== X-Received: by 2002:a17:902:27e6:: with SMTP id i35mr34830183plg.222.1550647575384; Tue, 19 Feb 2019 23:26:15 -0800 (PST) Received: from localhost.localdomain ([203.160.91.226]) by smtp.gmail.com with ESMTPSA id x123sm24656127pfx.94.2019.02.19.23.26.12 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 19 Feb 2019 23:26:14 -0800 (PST) From: Ming Huang To: leif.lindholm@linaro.org, linaro-uefi@lists.linaro.org, edk2-devel@lists.01.org, graeme.gregory@linaro.org Cc: ard.biesheuvel@linaro.org, michael.d.kinney@intel.com, lersek@redhat.com, wanghuiqiang@huawei.com, huangming23@huawei.com, zhangjinsong2@huawei.com, huangdaode@hisilicon.com, john.garry@huawei.com, zhangfeng56@huawei.com, Ming Huang Date: Wed, 20 Feb 2019 15:25:55 +0800 Message-Id: <20190220072601.33859-3-ming.huang@linaro.org> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20190220072601.33859-1-ming.huang@linaro.org> References: <20190220072601.33859-1-ming.huang@linaro.org> Subject: [PATCH edk2-non-osi v2 2/8] Hisilicon/D0x: Update PlatformSysCtrlLib binary X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2019 07:26:16 -0000 As suggestion of community, 'AP' is a bit unfortunate to use in EDK2 context. PI specifies 'BSP' for Boot-strap Processor, as the one executing all of the EDK2 code. It then uses 'AP' to refer to Additional Processors, which can be assigned tasks using the EFI_MP_SERVICES_PROTOCOL. In a TianoCore context, this should be 'BSP'. So, Rename StartupAp() to StartUpBSP. This patch applies to D0x PlatformSysCtrlLib. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ming Huang --- Silicon/Hisilicon/Hi1610/Library/PlatformSysCtrlLibHi1610/PlatformSysCtrlLibHi1610.lib | Bin 297590 -> 229128 bytes Silicon/Hisilicon/Hi1616/Library/PlatformSysCtrlLibHi1616/PlatformSysCtrlLibHi1616.lib | Bin 344310 -> 275312 bytes Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.lib | Bin 356032 -> 375916 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Silicon/Hisilicon/Hi1610/Library/PlatformSysCtrlLibHi1610/PlatformSysCtrlLibHi1610.lib b/Silicon/Hisilicon/Hi1610/Library/PlatformSysCtrlLibHi1610/PlatformSysCtrlLibHi1610.lib index 68be770..4c63a26 100644 Binary files a/Silicon/Hisilicon/Hi1610/Library/PlatformSysCtrlLibHi1610/PlatformSysCtrlLibHi1610.lib and b/Silicon/Hisilicon/Hi1610/Library/PlatformSysCtrlLibHi1610/PlatformSysCtrlLibHi1610.lib differ diff --git a/Silicon/Hisilicon/Hi1616/Library/PlatformSysCtrlLibHi1616/PlatformSysCtrlLibHi1616.lib b/Silicon/Hisilicon/Hi1616/Library/PlatformSysCtrlLibHi1616/PlatformSysCtrlLibHi1616.lib index b3cc88e..cb2c652 100644 Binary files a/Silicon/Hisilicon/Hi1616/Library/PlatformSysCtrlLibHi1616/PlatformSysCtrlLibHi1616.lib and b/Silicon/Hisilicon/Hi1616/Library/PlatformSysCtrlLibHi1616/PlatformSysCtrlLibHi1616.lib differ diff --git a/Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.lib b/Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.lib index 50d453a..d643f7b 100644 Binary files a/Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.lib and b/Silicon/Hisilicon/Hi1620/Library/PlatformSysCtrlLibHi1620/PlatformSysCtrlLibHi1620.lib differ -- 2.9.5