From patchwork Tue Aug 8 13:01:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: MD Danish Anwar X-Patchwork-Id: 712206 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 70615C001B0 for ; Tue, 8 Aug 2023 17:50:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234992AbjHHRuT (ORCPT ); Tue, 8 Aug 2023 13:50:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58500 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232180AbjHHRtx (ORCPT ); Tue, 8 Aug 2023 13:49:53 -0400 Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2267A26E75; Tue, 8 Aug 2023 09:22:09 -0700 (PDT) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 378D1god092296; Tue, 8 Aug 2023 08:01:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1691499702; bh=R3zerq9nODVi0XA4kBDsD9dXj9JRrwEm+jQuwFr4OMU=; h=From:To:CC:Subject:Date; b=ol7xLBKPWOauOoiOAyflqQtRIH4WTX4CrPbhTZ4aRo4MDKLu/y/Q0jmkaQxTQd6F7 OJUAVZKXAPidQOKG+1Azkj+HJdBOQZ2PF11oDgINhgrh97b7/Y3/iNvWVvRPamfIkN lmXCSPTraJEjlqrOzW5VHcxtSYHqEikyXdBz7zNw= Received: from DLEE112.ent.ti.com (dlee112.ent.ti.com [157.170.170.23]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 378D1g6k089299 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 8 Aug 2023 08:01:42 -0500 Received: from DLEE102.ent.ti.com (157.170.170.32) by DLEE112.ent.ti.com (157.170.170.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Tue, 8 Aug 2023 08:01:41 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DLEE102.ent.ti.com (157.170.170.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Tue, 8 Aug 2023 08:01:41 -0500 Received: from lelv0854.itg.ti.com (lelv0854.itg.ti.com [10.181.64.140]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 378D1fD8019028; Tue, 8 Aug 2023 08:01:41 -0500 Received: from localhost (uda0501179.dhcp.ti.com [172.24.227.217]) by lelv0854.itg.ti.com (8.14.7/8.14.7) with ESMTP id 378D1fDA012689; Tue, 8 Aug 2023 08:01:41 -0500 From: MD Danish Anwar To: , CC: Peng Fan , =?utf-8?b?UmFmYcWCIE1pxYJlY2tp?= , =?utf-8?b?TsOtY29sYXMg?= =?utf-8?b?Ri4gUi4gQS4gUHJhZG8=?= , Konrad Dybcio , Krzysztof Kozlowski , Geert Uytterhoeven , Arnd Bergmann , Bjorn Andersson , Will Deacon , Catalin Marinas , , , , , MD Danish Anwar , Christian Gmeiner Subject: [PATCH v4] arm64: defconfig: Enable TI PRUSS Date: Tue, 8 Aug 2023 18:31:31 +0530 Message-ID: <20230808130131.3081482-1-danishanwar@ti.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org The Programmable Realtime Unit - Industrial Communication Subsystem (PRU-ICSS) known as PRUSS, is a low-latency microcontroller subsystem used for industrial networking and other hard real-time functions in the TI K3 SoCs such as AM654x, AM64x. AM654x-EVM, AM64xx-EVM, and iot2050 use the PRUSS driver. Reviewed-by: Christian Gmeiner Signed-off-by: MD Danish Anwar --- Cc: Konrad Dybcio Changes from v3 to v4: *) Rebased on the latest next-20230808 linux-next. *) Modified commit-message to add details on PRUSS driver and the SoCs supported. (address comments from v2 - Konard's and v3 - Nishanth's) v3: https://lore.kernel.org/all/20230807105919.2611138-1-danishanwar@ti.com/ v2: https://lore.kernel.org/all/20230804061811.3999129-1-danishanwar@ti.com/ v1: https://lore.kernel.org/all/20230419095051.3269777-1-danishanwar@ti.com/ arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index bf13d5c46578..0aecdf43a5d1 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -1339,6 +1339,7 @@ CONFIG_ARCH_TEGRA_186_SOC=y CONFIG_ARCH_TEGRA_194_SOC=y CONFIG_ARCH_TEGRA_234_SOC=y CONFIG_TI_SCI_PM_DOMAINS=y +CONFIG_TI_PRUSS=m CONFIG_ARM_IMX_BUS_DEVFREQ=y CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m CONFIG_ARM_MEDIATEK_CCI_DEVFREQ=m