From patchwork Fri Apr 7 11:51:04 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kumar, Udit" X-Patchwork-Id: 22378 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id C95EBC77B71 for ; Fri, 7 Apr 2023 11:51:24 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web11.5442.1680868278477196180 for ; Fri, 07 Apr 2023 04:51:18 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=RSDlBI+V; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: u-kumar1@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 337BpInQ071164 for ; Fri, 7 Apr 2023 06:51:18 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1680868278; bh=xlMXz8aI6aUBRQiPYOJHmFEQ/34Fu0l1RHBLAPgGFAc=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=RSDlBI+VyabBT3NImdw5e9tcVvSFr3XWLM9Z3JqdE0MZMn7xXl/emV7i6NILzG0l9 aUVkdqQXqhQGLs9vAMUYcsm7sgZzNWzn6L9h5tCYLOYUjUlEu1toVS7IQ3jVjwe9Ph cghFfUXaNERLQuviMDm3fNx+9j/3Zk9eklfrjn1Y= Received: from DFLE108.ent.ti.com (dfle108.ent.ti.com [10.64.6.29]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 337BpIlB008798 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 7 Apr 2023 06:51:18 -0500 Received: from DFLE103.ent.ti.com (10.64.6.24) by DFLE108.ent.ti.com (10.64.6.29) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Fri, 7 Apr 2023 06:51:17 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE103.ent.ti.com (10.64.6.24) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Fri, 7 Apr 2023 06:51:17 -0500 Received: from udit-HP-Z2-Tower-G9-Workstation-Desktop-PC.dhcp.ti.com (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 337BpDVb035857; Fri, 7 Apr 2023 06:51:16 -0500 From: Udit Kumar To: , , CC: , Udit Kumar Subject: [PATCH 1/4] meta-ti-bsp: conf: machine: j7200: Update SPL_BINARY Date: Fri, 7 Apr 2023 17:21:04 +0530 Message-ID: <20230407115107.839204-2-u-kumar1@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230407115107.839204-1-u-kumar1@ti.com> References: <20230407115107.839204-1-u-kumar1@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 07 Apr 2023 11:51:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/16321 u-boot 2023.4 merged SPL build target for HS and GP as tispl.bin_HS. This patch updates SPL_BINARY to align with u-boot. Signed-off-by: Udit Kumar --- meta-ti-bsp/conf/machine/j7200-evm.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-ti-bsp/conf/machine/j7200-evm.conf b/meta-ti-bsp/conf/machine/j7200-evm.conf index b17b65b7..e4a4ca01 100644 --- a/meta-ti-bsp/conf/machine/j7200-evm.conf +++ b/meta-ti-bsp/conf/machine/j7200-evm.conf @@ -14,3 +14,5 @@ KERNEL_DEVICETREE = " \ " UBOOT_MACHINE = "j7200_evm_a72_config" + +SPL_BINARY = "tispl.bin_HS" From patchwork Fri Apr 7 11:51:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kumar, Udit" X-Patchwork-Id: 22379 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id C7A46C76196 for ; Fri, 7 Apr 2023 11:51:24 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web10.5240.1680868281292554681 for ; Fri, 07 Apr 2023 04:51:21 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=kUBwDOxM; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: u-kumar1@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 337BpK5o072547 for ; Fri, 7 Apr 2023 06:51:20 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1680868280; bh=I7uU1LnCjItBRDo91zptVrjIouPViqXaZXJvgS2a5+o=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=kUBwDOxMeBnyIMyObaFDqFNjQN5UGoi9oTP859r5ftNXZ9hNfQuJr3umqpfDKGsZX Vz21hf8LsnNAXPo9Dw4u+uIM5MPBQTOzrRQs2PoJU65oE3czDbbhAApD1liWkx8WLX 9WGn7p5Yo47PcnrF9JJ92I3bhQj00CEJWHyZU1a0= Received: from DLEE114.ent.ti.com (dlee114.ent.ti.com [157.170.170.25]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 337BpJrT046151 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 7 Apr 2023 06:51:20 -0500 Received: from DLEE114.ent.ti.com (157.170.170.25) by DLEE114.ent.ti.com (157.170.170.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Fri, 7 Apr 2023 06:51:20 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DLEE114.ent.ti.com (157.170.170.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Fri, 7 Apr 2023 06:51:20 -0500 Received: from udit-HP-Z2-Tower-G9-Workstation-Desktop-PC.dhcp.ti.com (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 337BpDVc035857; Fri, 7 Apr 2023 06:51:18 -0500 From: Udit Kumar To: , , CC: , Udit Kumar Subject: [PATCH 2/4] meta-ti-bsp: conf: machine: j7200: Update def config Date: Fri, 7 Apr 2023 17:21:05 +0530 Message-ID: <20230407115107.839204-3-u-kumar1@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230407115107.839204-1-u-kumar1@ti.com> References: <20230407115107.839204-1-u-kumar1@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 07 Apr 2023 11:51:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/16322 u-boot 2023.04 merged def configs for HS and GP EVM into one. This patch updates config for J7200 HS EVM for both A72 and R5. Signed-off-by: Udit Kumar --- meta-ti-bsp/conf/machine/j7200-hs-evm-k3r5.conf | 2 +- meta-ti-bsp/conf/machine/j7200-hs-evm.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-ti-bsp/conf/machine/j7200-hs-evm-k3r5.conf b/meta-ti-bsp/conf/machine/j7200-hs-evm-k3r5.conf index 3fe06e74..1922d5c8 100644 --- a/meta-ti-bsp/conf/machine/j7200-hs-evm-k3r5.conf +++ b/meta-ti-bsp/conf/machine/j7200-hs-evm-k3r5.conf @@ -8,4 +8,4 @@ SYSFW_SOC = "j7200_sr2" SYSFW_CONFIG = "evm" SYSFW_SUFFIX = "hs" -UBOOT_MACHINE = "j7200_hs_evm_r5_defconfig" +UBOOT_MACHINE = "j7200_evm_r5_defconfig" diff --git a/meta-ti-bsp/conf/machine/j7200-hs-evm.conf b/meta-ti-bsp/conf/machine/j7200-hs-evm.conf index dc928974..4facbc37 100644 --- a/meta-ti-bsp/conf/machine/j7200-hs-evm.conf +++ b/meta-ti-bsp/conf/machine/j7200-hs-evm.conf @@ -4,7 +4,7 @@ require conf/machine/j7200-evm.conf -UBOOT_MACHINE = "j7200_hs_evm_a72_defconfig" +UBOOT_MACHINE = "j7200_evm_a72_defconfig" SPL_BINARY = "tispl.bin_HS" UBOOT_BINARY = "u-boot.img_HS" From patchwork Fri Apr 7 11:51:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kumar, Udit" X-Patchwork-Id: 22376 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8C1CC77B61 for ; Fri, 7 Apr 2023 11:51:24 +0000 (UTC) Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by mx.groups.io with SMTP id smtpd.web11.5443.1680868282302636421 for ; Fri, 07 Apr 2023 04:51:22 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=UYn0PY86; spf=pass (domain: ti.com, ip: 198.47.19.142, mailfrom: u-kumar1@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 337BpLpq072557 for ; Fri, 7 Apr 2023 06:51:21 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1680868281; bh=IAXxnRA0pry1UCM9tZfmwA9zNqE6faW47T6mhaLBaRw=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=UYn0PY86Okj64iOXUYJSZZxHZ8dohwVcvaWtzfeyoTVYuf/hb/XHVyYKJJG9iOjVB i6QQhMDXJduEoVvsMTjzO4GIp7ZU1tC0tdiFLziH0CzwIXZ8zOQDnitd5ASuORMZCT ATdV3hLegI8GzOuGbq/KMAwpFIs7BzQvWTEbaYik= Received: from DLEE103.ent.ti.com (dlee103.ent.ti.com [157.170.170.33]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 337BpLU2018237 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 7 Apr 2023 06:51:21 -0500 Received: from DLEE103.ent.ti.com (157.170.170.33) by DLEE103.ent.ti.com (157.170.170.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Fri, 7 Apr 2023 06:51:21 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DLEE103.ent.ti.com (157.170.170.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Fri, 7 Apr 2023 06:51:21 -0500 Received: from udit-HP-Z2-Tower-G9-Workstation-Desktop-PC.dhcp.ti.com (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 337BpDVd035857; Fri, 7 Apr 2023 06:51:20 -0500 From: Udit Kumar To: , , CC: , Udit Kumar Subject: [PATCH 3/4] meta-ti-bsp: conf: machine: j721s2: Update SPL_BINARY Date: Fri, 7 Apr 2023 17:21:06 +0530 Message-ID: <20230407115107.839204-4-u-kumar1@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230407115107.839204-1-u-kumar1@ti.com> References: <20230407115107.839204-1-u-kumar1@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 07 Apr 2023 11:51:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/16323 u-boot 2023.4 merged SPL build target for HS and GP as tispl.bin_HS. This patch updates SPL_BINARY to align with u-boot. Signed-off-by: Udit Kumar --- meta-ti-bsp/conf/machine/j721s2-evm.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-ti-bsp/conf/machine/j721s2-evm.conf b/meta-ti-bsp/conf/machine/j721s2-evm.conf index bef5684f..100008f0 100644 --- a/meta-ti-bsp/conf/machine/j721s2-evm.conf +++ b/meta-ti-bsp/conf/machine/j721s2-evm.conf @@ -20,6 +20,8 @@ KERNEL_DEVICETREE = " \ UBOOT_MACHINE = "j721s2_evm_a72_defconfig" +SPL_BINARY = "tispl.bin_HS" + # Default tiboot3.bin on J721S2 is for GP BBMULTICONFIG = "k3r5-gp" do_image_complete[mcdepends] = "mc::k3r5-gp:ti-sci-fw:do_deploy" From patchwork Fri Apr 7 11:51:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kumar, Udit" X-Patchwork-Id: 22377 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id B7804C6FD1D for ; Fri, 7 Apr 2023 11:51:24 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web11.5444.1680868284243717656 for ; Fri, 07 Apr 2023 04:51:24 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=YdKpnS5a; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: u-kumar1@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 337BpN1o014415 for ; Fri, 7 Apr 2023 06:51:23 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1680868283; bh=ug6LJWEsmqxNQKqiEZAypGkFMYY+CMrAVvPbDu8jkuo=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=YdKpnS5aooPNsdecQIVLZQ8ji8olpXGp8Rss6yJMnPszJ//Wq/Bm/9CKjzcYlriM6 yrIl0zvk5wZT2GTgb2CkoKUBccnVRzTz2GvydQ5SvPbteUN4DEhfoUqR4Y/SwINDXv Y0qXp8+1XFkxjEL8hqPhTMbpf7ZPDOTKk5lJvRLs= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 337BpNLK018245 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 7 Apr 2023 06:51:23 -0500 Received: from DFLE110.ent.ti.com (10.64.6.31) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16; Fri, 7 Apr 2023 06:51:23 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE110.ent.ti.com (10.64.6.31) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.16 via Frontend Transport; Fri, 7 Apr 2023 06:51:23 -0500 Received: from udit-HP-Z2-Tower-G9-Workstation-Desktop-PC.dhcp.ti.com (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 337BpDVe035857; Fri, 7 Apr 2023 06:51:22 -0500 From: Udit Kumar To: , , CC: , Udit Kumar Subject: [PATCH 4/4] meta-ti-bsp: conf: machine: j7200: Update def config Date: Fri, 7 Apr 2023 17:21:07 +0530 Message-ID: <20230407115107.839204-5-u-kumar1@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230407115107.839204-1-u-kumar1@ti.com> References: <20230407115107.839204-1-u-kumar1@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 07 Apr 2023 11:51:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/16324 u-boot 2023.04 merged def configs for HS and GP EVM into one. This patch updates config for J7200 HS EVM for both A72 and R5. Signed-off-by: Udit Kumar --- meta-ti-bsp/conf/machine/j721s2-hs-evm-k3r5.conf | 2 +- meta-ti-bsp/conf/machine/j721s2-hs-evm.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-ti-bsp/conf/machine/j721s2-hs-evm-k3r5.conf b/meta-ti-bsp/conf/machine/j721s2-hs-evm-k3r5.conf index a4d51904..58cd92c4 100644 --- a/meta-ti-bsp/conf/machine/j721s2-hs-evm-k3r5.conf +++ b/meta-ti-bsp/conf/machine/j721s2-hs-evm-k3r5.conf @@ -8,4 +8,4 @@ SYSFW_SOC = "j721s2" SYSFW_CONFIG = "evm" SYSFW_SUFFIX = "hs" -UBOOT_MACHINE = "j721s2_hs_evm_r5_defconfig" +UBOOT_MACHINE = "j721s2_evm_r5_defconfig" diff --git a/meta-ti-bsp/conf/machine/j721s2-hs-evm.conf b/meta-ti-bsp/conf/machine/j721s2-hs-evm.conf index 7ce5000a..7d2d6271 100644 --- a/meta-ti-bsp/conf/machine/j721s2-hs-evm.conf +++ b/meta-ti-bsp/conf/machine/j721s2-hs-evm.conf @@ -15,7 +15,7 @@ KERNEL_DEVICETREE = " \ ti/k3-j721s2-gesi-exp-board.dtbo \ " -UBOOT_MACHINE = "j721s2_hs_evm_a72_defconfig" +UBOOT_MACHINE = "j721s2_evm_a72_defconfig" do_image_complete[mcdepends] = "mc::k3r5:ti-sci-fw:do_deploy"