From nobody Sun Sep 22 01:43:04 2024 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 318B6C433EF for ; Wed, 1 Jun 2022 11:23:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352758AbiFALXh (ORCPT ); Wed, 1 Jun 2022 07:23:37 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60640 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352542AbiFALWS (ORCPT ); Wed, 1 Jun 2022 07:22:18 -0400 Received: from mailgw01.mediatek.com (unknown [60.244.123.138]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D0C834199F; Wed, 1 Jun 2022 04:22:16 -0700 (PDT) X-UUID: 432b53617dc04d8dbd1be94df7adfb3c-20220601 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.5,REQID:fffaa3e9-abb4-4101-a970-403a9ff13232,OB:0,LO B:0,IP:0,URL:0,TC:0,Content:-5,EDM:0,RT:0,SF:0,FILE:0,RULE:Release_Ham,ACT ION:release,TS:-5 X-CID-META: VersionHash:2a19b09,CLOUDID:98648f14-f88c-475e-badf-d9ee54230b8f,C OID:IGNORED,Recheck:0,SF:nil,TC:nil,Content:0,EDM:-3,IP:nil,URL:0,File:nil ,QS:0,BEC:nil X-UUID: 432b53617dc04d8dbd1be94df7adfb3c-20220601 Received: from mtkmbs11n1.mediatek.inc [(172.21.101.185)] by mailgw01.mediatek.com (envelope-from ) (Generic MTA with TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384 256/256) with ESMTP id 1619438567; Wed, 01 Jun 2022 19:22:05 +0800 Received: from mtkmbs11n2.mediatek.inc (172.21.101.187) by mtkmbs10n2.mediatek.inc (172.21.101.183) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.792.3; Wed, 1 Jun 2022 19:22:04 +0800 Received: from mtksdccf07.mediatek.inc (172.21.84.99) by mtkmbs11n2.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.2.792.3 via Frontend Transport; Wed, 1 Jun 2022 19:22:04 +0800 From: Tinghan Shen To: Bjorn Andersson , Mathieu Poirier , Rob Herring , "Krzysztof Kozlowski" , Matthias Brugger , Lee Jones , Benson Leung , Guenter Roeck , Daisuke Nojiri , Sebastian Reichel , "Dustin L. Howett" , Tzung-Bi Shih , Tinghan Shen , "Gustavo A. R. Silva" , Prashant Malani , "Enric Balletbo i Serra" , Brian Norris CC: , , , , , , , Subject: [PATCH v1 05/15] remoteproc: mediatek: Add SCP core 1 driver for dual-core scp Date: Wed, 1 Jun 2022 19:21:51 +0800 Message-ID: <20220601112201.15510-6-tinghan.shen@mediatek.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20220601112201.15510-1-tinghan.shen@mediatek.com> References: <20220601112201.15510-1-tinghan.shen@mediatek.com> MIME-Version: 1.0 X-MTK: N Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" MT8195 SCP is a dual-core processor. The mtk_scp.c driver only controls SCP core 0. This patch adds a basic driver to control the another core. Core 1 and core 0 of the SCP are housed in the same subsys.They see registers and memory in the same way. Core 1 of the SCP features its own set of core configuration registers, interrupt controller, timers, and DMAs. The rest of the peripherals in this subsystem are shared by core 0 and core 1. As for memory, core 1 has its own cache memory, and the SCP SRAM is shared by core 0 and core 1. Signed-off-by: Tinghan Shen --- drivers/remoteproc/Makefile | 1 + drivers/remoteproc/mtk_scp_dual.c | 97 +++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 drivers/remoteproc/mtk_scp_dual.c diff --git a/drivers/remoteproc/Makefile b/drivers/remoteproc/Makefile index 5478c7cb9e07..84cb687d28da 100644 --- a/drivers/remoteproc/Makefile +++ b/drivers/remoteproc/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_IMX_REMOTEPROC) +=3D imx_rproc.o obj-$(CONFIG_IMX_DSP_REMOTEPROC) +=3D imx_dsp_rproc.o obj-$(CONFIG_INGENIC_VPU_RPROC) +=3D ingenic_rproc.o obj-$(CONFIG_MTK_SCP) +=3D mtk_scp.o mtk_scp_ipi.o +obj-$(CONFIG_MTK_SCP_DUALCORE) +=3D mtk_scp_dual.o obj-$(CONFIG_OMAP_REMOTEPROC) +=3D omap_remoteproc.o obj-$(CONFIG_WKUP_M3_RPROC) +=3D wkup_m3_rproc.o obj-$(CONFIG_DA8XX_REMOTEPROC) +=3D da8xx_remoteproc.o diff --git a/drivers/remoteproc/mtk_scp_dual.c b/drivers/remoteproc/mtk_scp= _dual.c new file mode 100644 index 000000000000..7bc08d26f208 --- /dev/null +++ b/drivers/remoteproc/mtk_scp_dual.c @@ -0,0 +1,97 @@ +// SPDX-License-Identifier: GPL-2.0 +// +// Copyright (c) 2022 MediaTek Inc. + +#include +#include +#include +#include +#include +#include + +#include "mtk_common.h" +#include "remoteproc_internal.h" + +static const struct rproc_ops scp_ops; + +static int scp_dual_probe(struct platform_device *pdev) +{ + struct device *dev =3D &pdev->dev; + struct device_node *np =3D dev->of_node; + struct mtk_scp *scp; + struct rproc *rproc; + const char *fw_name =3D "scp-dual.img"; + int ret, i; + struct resource *res; + + ret =3D rproc_of_parse_firmware(dev, 0, &fw_name); + if (ret < 0 && ret !=3D -EINVAL) + return ret; + + rproc =3D devm_rproc_alloc(dev, np->name, &scp_ops, fw_name, sizeof(*scp)= ); + if (!rproc) { + dev_err(dev, "unable to allocate remoteproc\n"); + return -ENOMEM; + } + + scp =3D (struct mtk_scp *)rproc->priv; + scp->rproc =3D rproc; + scp->dev =3D dev; + platform_set_drvdata(pdev, scp); + + res =3D platform_get_resource_byname(pdev, IORESOURCE_MEM, "sram"); + scp->sram_base =3D devm_ioremap(dev, res->start, resource_size(res)); + if (IS_ERR(scp->sram_base)) + return dev_err_probe(dev, PTR_ERR(scp->sram_base), + "Failed to parse and map sram memory\n"); + + scp->sram_size =3D resource_size(res); + scp->sram_phys =3D res->start; + + res =3D platform_get_resource_byname(pdev, IORESOURCE_MEM, "cfg"); + scp->reg_base =3D devm_ioremap(dev, res->start, resource_size(res)); + if (IS_ERR(scp->reg_base)) + return dev_err_probe(dev, PTR_ERR(scp->reg_base), + "Failed to parse and map cfg memory\n"); + + mutex_init(&scp->send_lock); + for (i =3D 0; i < SCP_IPI_MAX; i++) + mutex_init(&scp->ipi_desc[i].lock); + + init_waitqueue_head(&scp->run.wq); + init_waitqueue_head(&scp->ack_wq); + + return 0; +} + +static int scp_dual_remove(struct platform_device *pdev) +{ + struct mtk_scp *scp =3D platform_get_drvdata(pdev); + int i; + + for (i =3D 0; i < SCP_IPI_MAX; i++) + mutex_destroy(&scp->ipi_desc[i].lock); + mutex_destroy(&scp->send_lock); + + return 0; +} + +static const struct of_device_id mtk_scp_dual_of_match[] =3D { + { .compatible =3D "mediatek,mt8195-scp-dual" }, + {}, +}; +MODULE_DEVICE_TABLE(of, mtk_scp_dual_of_match); + +static struct platform_driver mtk_scp_dual_driver =3D { + .probe =3D scp_dual_probe, + .remove =3D scp_dual_remove, + .driver =3D { + .name =3D "mtk-scp-dual", + .of_match_table =3D mtk_scp_dual_of_match, + }, +}; + +module_platform_driver(mtk_scp_dual_driver); + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("MediaTek SCP dualcore control driver"); --=20 2.18.0