From patchwork Wed Oct 6 08:21:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Krzysztof_Ha=C5=82asa?= X-Patchwork-Id: 12538811 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 709F6C433EF for ; Wed, 6 Oct 2021 08:23:52 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3F7AE61029 for ; Wed, 6 Oct 2021 08:23:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 3F7AE61029 Authentication-Results: mail.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=piap.pl Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=MTWXUNWyC29KSAUhd5mmLDUyGxRQ7AhLqMF/ZK0BY8c=; b=RdVhS8o10Ab55E OnhIHoffZpO4+ykxj6v3mqxdfx2usfuG+44hwDaDq4RawgWV8aYrmym7aSxqtIzzBRCsqMBzbaKKZ lLbD6+JpErEjg3We81/ztR9Ta+mcPgXyx6+3EZw+q0hv4+JT/+gZ/H2eKfjsyqPUJHwwwz4rCXSQg VS4YzLFerSsBzFRjGI2U4nM9M7wKbS9Ruqd1TDaZ3a9/wPcXo5Fp1mdbo+y44s2FTYXai8iAvfshz f4g6l1LtVqmUdXY/kmEnIeSQCQmL8yAaOLPmsDV/LwSDyQiMV+07ySrKTyaWQB3JdQbOVctBY81wq bI29sgdqiQ1ysgHOuNPA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mY2BW-00DRvV-H5; Wed, 06 Oct 2021 08:21:54 +0000 Received: from ni.piap.pl ([195.187.100.5]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mY2BS-00DRtM-5H for linux-arm-kernel@lists.infradead.org; Wed, 06 Oct 2021 08:21:51 +0000 From: Krzysztof =?utf-8?q?Ha=C5=82asa?= To: Shawn Guo , Sascha Hauer Cc: Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH v2] CONFIG_SOC_IMX6Q = i.MX6 Quad/Dual/DualLite/Solo Date: Wed, 06 Oct 2021 10:21:48 +0200 Message-ID: MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211006_012150_415558_9242A1EF X-CRM114-Status: UNSURE ( 5.57 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Print i.MX6 "Dual" and "Solo" names in addition to the "Quad" and "DualLite" for SOC_IMX6Q. Signed-off-by: Krzysztof HaƂasa diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index b407b024dde3..b6f2f2ea8e65 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -143,7 +143,7 @@ config SOC_IMX6 select PL310_ERRATA_769419 if CACHE_L2X0 config SOC_IMX6Q - bool "i.MX6 Quad/Dual/DualLite support" + bool "i.MX6 Quad/Dual/DualLite/Solo support" select ARM_ERRATA_764369 if SMP select ARM_ERRATA_754322 select ARM_ERRATA_775420 @@ -153,7 +153,8 @@ config SOC_IMX6Q select SOC_IMX6 help - This enables support for Freescale i.MX6 Quad processor. + This enables support for Freescale i.MX6 Quad/Dual/DualLite/Solo + processors. config SOC_IMX6SL bool "i.MX6 SoloLite support" diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c index 11dcc369ec14..8cc8a2ed1d12 100644 --- a/arch/arm/mach-imx/mach-imx6q.c +++ b/arch/arm/mach-imx/mach-imx6q.c @@ -217,7 +217,7 @@ static const char * const imx6q_dt_compat[] __initconst = { NULL, }; -DT_MACHINE_START(IMX6Q, "Freescale i.MX6 Quad/DualLite (Device Tree)") +DT_MACHINE_START(IMX6Q, "Freescale i.MX6 Quad/Dual/DualLite/Solo (Device Tree)") .l2c_aux_val = 0, .l2c_aux_mask = ~0, .smp = smp_ops(imx_smp_ops),