From patchwork Wed Oct 12 10:09:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Manorit Chawdhry X-Patchwork-Id: 13827 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 22CDBC4332F for ; Wed, 12 Oct 2022 10:09:48 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web08.18297.1665569386963322534 for ; Wed, 12 Oct 2022 03:09:47 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=THarUFdp; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: m-chawdhry@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 29CA9keA048757 for ; Wed, 12 Oct 2022 05:09:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1665569386; bh=4sGxcUrjADaImEPib4DqGbBDOAb9LWXlZhxwvwDH8eo=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=THarUFdpXVfDCNChY9pnAMBBMP3e5JXRORkyCtgBSeKoyMdOmC0e82b15xzPsD4UI ZoPIm6gbOX2TWkzHhYoSH15zbf+EJAU1aIyzFgjjn74Jpd1O16ycGuCwLL2+r2BNk9 SLHFCskXCA1Zl6fWoa+yd064wLAbGNmPOI0v97es= Received: from DFLE114.ent.ti.com (dfle114.ent.ti.com [10.64.6.35]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 29CA9k5k065969 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 12 Oct 2022 05:09:46 -0500 Received: from DFLE104.ent.ti.com (10.64.6.25) by DFLE114.ent.ti.com (10.64.6.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.6; Wed, 12 Oct 2022 05:09:45 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE104.ent.ti.com (10.64.6.25) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.6 via Frontend Transport; Wed, 12 Oct 2022 05:09:45 -0500 Received: from uda0497581.dhcp.ti.com (ileaxei01-snat2.itg.ti.com [10.180.69.6]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 29CA9fCK014602; Wed, 12 Oct 2022 05:09:44 -0500 From: Manorit Chawdhry To: CC: Andrew Davis , Ryan Eatmon , Manorit Chawdhry Subject: [meta-ti][RFC dunfell][PATCH v2 1/6] conf: machine: Add J784S4 hs platform Date: Wed, 12 Oct 2022 15:39:36 +0530 Message-ID: <20221012100941.153924-2-m-chawdhry@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221012100941.153924-1-m-chawdhry@ti.com> References: <20221012100941.153924-1-m-chawdhry@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 ; Wed, 12 Oct 2022 10:09:48 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/15150 Machine conf for J784S4 HS platform. Used J721S2 hs as reference. Signed-off-by: Manorit Chawdhry --- conf/machine/j784s4-hs-evm-k3r5.conf | 11 +++++++++++ conf/machine/j784s4-hs-evm.conf | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 conf/machine/j784s4-hs-evm-k3r5.conf create mode 100644 conf/machine/j784s4-hs-evm.conf diff --git a/conf/machine/j784s4-hs-evm-k3r5.conf b/conf/machine/j784s4-hs-evm-k3r5.conf new file mode 100644 index 00000000..b6f2f6f9 --- /dev/null +++ b/conf/machine/j784s4-hs-evm-k3r5.conf @@ -0,0 +1,11 @@ +#@TYPE: Machine +#@NAME: J784S4 HS EVM (R5F) +#@DESCRIPTION: Machine configuration for the TI J784S4 HS EVM (R5F core) + +require conf/machine/include/k3r5.inc + +SYSFW_SOC = "j784s4" +SYSFW_CONFIG = "evm" +SYSFW_SUFFIX = "hs" + +UBOOT_MACHINE = "j784s4_hs_evm_r5_defconfig" diff --git a/conf/machine/j784s4-hs-evm.conf b/conf/machine/j784s4-hs-evm.conf new file mode 100644 index 00000000..31666c78 --- /dev/null +++ b/conf/machine/j784s4-hs-evm.conf @@ -0,0 +1,11 @@ +#@TYPE: Machine +#@NAME: J784S4 HS EVM +#@DESCRIPTION: Machine configuration for the TI J784S4 HS EVM + +require conf/machine/j784s4-evm.conf + +UBOOT_MACHINE = "j784s4_hs_evm_a72_defconfig" + +SPL_BINARY = "tispl.bin_HS" +UBOOT_BINARY = "u-boot.img_HS" +UBOOT_SYMLINK = "u-boot.img"