From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web09.1515.1607644201475943725 for ; Thu, 10 Dec 2020 15:50:01 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=YdFd/LLx; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: nm@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 0BANnxLo038744; Thu, 10 Dec 2020 17:49:59 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1607644199; bh=HF9g1UThXFzguea3enoEK0pQ+3xTvNyQtETvMZ+5KC0=; h=From:To:CC:Subject:Date; b=YdFd/LLx61qJHfMMLrQMWHDrUY0jcPCVmTeA0XBvCPm1SWFjFaSOGKrx7jRm/u+Uz ggoenVuo4dGKdnLQU4M1dLNlTud956ZO/NYSs5WcYb8LRt3KmJZFktJaFOWBOTi/mG jVcgZv5FT/oc9ai8cXzeXGiHioYZfhS1S4N+fwWo= Received: from DLEE100.ent.ti.com (dlee100.ent.ti.com [157.170.170.30]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 0BANnxgT038061 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 10 Dec 2020 17:49:59 -0600 Received: from DLEE104.ent.ti.com (157.170.170.34) by DLEE100.ent.ti.com (157.170.170.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3; Thu, 10 Dec 2020 17:49:58 -0600 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE104.ent.ti.com (157.170.170.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3 via Frontend Transport; Thu, 10 Dec 2020 17:49:58 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 0BANnwaj120654; Thu, 10 Dec 2020 17:49:58 -0600 From: "Nishanth Menon" To: CC: , , , , , Nishanth Menon Subject: [dunfell/master PATCH V4] trusted-firmware-a: Update to v2.4 merge Date: Thu, 10 Dec 2020 17:49:57 -0600 Message-ID: <20201210234957.9412-1-nm@ti.com> X-Mailer: git-send-email 2.25.1.377.g2d2118b814c1 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Content-Transfer-Encoding: 8bit Content-Type: text/plain Update to v2.4 tag merge from upstream to keep TF-A in sync. For major changes in trusted-firmware-a, See: https://trustedfirmware-a.readthedocs.io/en/latest/change-log.html#version-2-4 TI specific fixups include: - stub for shutdown (CPUs enter wfi) - uart console is now configurable. While at it, update to include PV_k3 as 2.4 and provide the license file checksum. NOTE: We use PV_k3 instead of PV since this allows meta-ti to not affect other platforms esp in a multi-BSP configuration. Suggested-by: Dan Murphy Signed-off-by: Nishanth Menon --- Changes since v3: - s/LIC_FILES_CHKSUM/LIC_FILES_CHKSUM_k3 coming right up.. Changes since v2: - Update license file and checksum (Thanks Dan for catching my next blunder) Changes since v1 in v2: - Update for PV_k3 (Thanks Denys) - I was'nt sure to pick a "Reviewed-by" tag for your LGTM :).. so did'nt want to guess. recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend b/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend index 3c1862643086..c561fe2d7e76 100644 --- a/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend +++ b/recipes-bsp/trusted-firmware-a/trusted-firmware-a_%.bbappend @@ -1,6 +1,8 @@ +PV_k3 = "2.4" +LIC_FILES_CHKSUM_k3 = "file://license.rst;md5=1dd070c98a281d18d9eefd938729b031" BRANCH_k3 = "ti-atf" SRC_URI_k3 = "git://git.ti.com/atf/arm-trusted-firmware.git;branch=${BRANCH};name=tfa" -SRCREV_tfa_k3 = "52c334fc361194e3896ea3b2529c10a06e586a5f" +SRCREV_tfa_k3 = "f0a310d000fd6e8a1ed0ccc365b5931390393db1" COMPATIBLE_MACHINE_k3 = "k3" TFA_BUILD_TARGET_k3 = "all" TFA_INSTALL_TARGET_k3 = "bl31" -- 2.25.1.377.g2d2118b814c1