From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:400e:c01::241; helo=mail-pl0-x241.google.com; envelope-from=haojian.zhuang@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pl0-x241.google.com (mail-pl0-x241.google.com [IPv6:2607:f8b0:400e:c01::241]) (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 50B13223DB787 for ; Fri, 9 Feb 2018 09:25:44 -0800 (PST) Received: by mail-pl0-x241.google.com with SMTP id 36so1752854ple.13 for ; Fri, 09 Feb 2018 09:31:30 -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; bh=CozOXF5ow9hIfVAAN9BXL3KaAHwo9u1FgcE/k0B2rVo=; b=kY/Zlf2nqwXZBuDHfDrKtrtKLJ7VVoMZ8vfJeR25iuw4K0JrNqib2a0Kjnkr5/iaV9 KMJRxUEb3gqHr1YHC28QxXq8KEwuqjdE6J5B1b8cmjH9WVBGPZpwzBs3IQnX4I41YZhA 4fkdJjlxj8T7rw2tl1zliLYw5m8bjhnBPOC2k= 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; bh=CozOXF5ow9hIfVAAN9BXL3KaAHwo9u1FgcE/k0B2rVo=; b=ns5B+zrMe3PCuj7547+FQ3YaWOsTUGW/DIDORb0q8sFpXn+Y+AG1lUNjszb8cTjXKc cKTr8TOpM5eNuDTTrPTG6RLF6RYj/TqaGthL6maxmr230pS3lTKgHzti81V0cdGTpg3N ndo5lruzh74CGpaGWMGAC4EQP08u/7BqbUNlqq0auiR6uhCSLKmBHEu93hbrd2QBjLxq KtZGyMYWT/xKbGaSIyvUPC/gDnWikW43VwsudmFjovQCv3e6W+Whrk7k8paZJJAjNRft xM/huULNDwr9mecw7hfhS3LSAG70eVTAbe/EA7tW6UCwBPq2wRys13ikaMM2v34XgL+w +Gqw== X-Gm-Message-State: APf1xPCJWsxOUrm2o7rdmIh1kvxS0OGNT57L9KRFndJh3XKYa2GWr7rC 4WzNrhvUObjBunrrrQ7CLvLjpQqddd0= X-Google-Smtp-Source: AH8x226x4kFAXpV9W5y1yTWzghg8VZexVZRCFgY1H7CvOVD0/xZwZtenvYElYBeqwRcMdRlFAadEWw== X-Received: by 2002:a17:902:9683:: with SMTP id n3-v6mr3171693plp.177.1518197488469; Fri, 09 Feb 2018 09:31:28 -0800 (PST) Received: from localhost.localdomain ([64.64.108.141]) by smtp.gmail.com with ESMTPSA id b123sm7001993pfb.179.2018.02.09.09.31.21 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 09 Feb 2018 09:31:27 -0800 (PST) From: Haojian Zhuang To: edk2-devel@lists.01.org, linaro-uefi@lists.linaro.org, leif.lindholm@linaro.org, ard.sheuvel@linaro.org, heyi.guo@linaro.org Cc: Haojian Zhuang Date: Sat, 10 Feb 2018 01:31:03 +0800 Message-Id: <1518197467-32526-1-git-send-email-haojian.zhuang@linaro.org> X-Mailer: git-send-email 2.7.4 Subject: [PATCH v2 0/4] support HiKey960 X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Feb 2018 17:25:44 -0000 v2: * Use Hisilicon common file. * Move SerialPorLib & DebugLib of DXE_RUNTIME out of Hisilicon.dsc.inc. * Remove unused PCD values from HiKey960 dsc file. * Fix to enter boot manager on HiKey. v1: * Support the skeleton of HiKey960. Haojian Zhuang (4): Platform/Hisilicon/HiKey: include DxePcdLib for HiiDatabase Platform/Hisilicon/HiKey: use Hisilicon common file Platform/Hisilicon: move out dxe runtime lib from common file Platform/Hisilicon/HiKey960: add skeleton of HiKey960 Platform/Hisilicon/D02/Pv660D02.dsc | 2 + Platform/Hisilicon/D03/D03.dsc | 1 + Platform/Hisilicon/D05/D05.dsc | 1 + Platform/Hisilicon/HiKey/HiKey.dsc | 211 ++--------------- Platform/Hisilicon/HiKey/HiKey.fdf | 141 +---------- Platform/Hisilicon/HiKey960/HiKey960.dsc | 260 +++++++++++++++++++++ Platform/Hisilicon/HiKey960/HiKey960.fdf | 214 +++++++++++++++++ .../HiKey960/Library/HiKey960Lib/HiKey960.c | 144 ++++++++++++ .../HiKey960/Library/HiKey960Lib/HiKey960Helper.S | 52 +++++ .../HiKey960/Library/HiKey960Lib/HiKey960Lib.inf | 44 ++++ .../HiKey960/Library/HiKey960Lib/HiKey960Mem.c | 163 +++++++++++++ Silicon/Hisilicon/Hisilicon.dsc.inc | 2 - 12 files changed, 905 insertions(+), 330 deletions(-) create mode 100644 Platform/Hisilicon/HiKey960/HiKey960.dsc create mode 100644 Platform/Hisilicon/HiKey960/HiKey960.fdf create mode 100644 Platform/Hisilicon/HiKey960/Library/HiKey960Lib/HiKey960.c create mode 100644 Platform/Hisilicon/HiKey960/Library/HiKey960Lib/HiKey960Helper.S create mode 100644 Platform/Hisilicon/HiKey960/Library/HiKey960Lib/HiKey960Lib.inf create mode 100644 Platform/Hisilicon/HiKey960/Library/HiKey960Lib/HiKey960Mem.c -- 2.7.4