From patchwork Fri Mar 29 14:13:03 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Przywara X-Patchwork-Id: 785049 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 31D8113AD38; Fri, 29 Mar 2024 14:13:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711721616; cv=none; b=J3UfIscDE68W1Iz2QKNVT4Ms3uBO6SUVANK78nZQLC3NOqdf9xEhGf8KfEeEiXjl0ycpAfeF1VAtqprnh47oyIq3l3GIsgkZ3Z0CQCcMgMxeGkJyQokpxH4+3DXalfWaFBI9Cpjb5Ax2KpBrxz9bdSeiTsQ8vDtirIhhiKaB40U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711721616; c=relaxed/simple; bh=kJ8wnCxQErUEf/0UKiGbsEGCtEvyiOvdse3MqHGf9dY=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=DQhAX+sRb2UkTb5bVb+aeQLAf/oNq/CymDJWaRfSiQBB4XdBTyBnFny1u+Xr/ewkuJpP1JjcGNkJyfOu4hdnXw74605ec2pPjv3r7vBw5uO2Z8vvy5wPeBvzkff55N6vJ0gj/Ec/s8zMOVJ176IQrtZqQ77W/Kf17r5P36QJ9KU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7741F12FC; Fri, 29 Mar 2024 07:14:05 -0700 (PDT) Received: from localhost.localdomain (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 3DB083F64C; Fri, 29 Mar 2024 07:13:29 -0700 (PDT) From: Andre Przywara To: Yangtao Li , Viresh Kumar , Nishanth Menon , Stephen Boyd , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , "Rafael J . Wysocki" Cc: linux-pm@vger.kernel.org, devicetree@vger.kernel.org, linux-sunxi@lists.linux.dev, linux-arm-kernel@lists.infradead.org, Brandon Cheo Fusi , Martin Botka , Martin Botka , Chris Morgan , Ryan Walklin , Mark Rutland , Lorenzo Pieralisi , Sudeep Holla Subject: [PATCH v4 0/8] cpufreq: sun50i: Add Allwinner H616 support Date: Fri, 29 Mar 2024 14:13:03 +0000 Message-Id: <20240329141311.27158-1-andre.przywara@arm.com> X-Mailer: git-send-email 2.35.8 Precedence: bulk X-Mailing-List: linux-pm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 This series adds cpufreq support to the Allwinner H616 SoC. v4 allows compilation outside of arm/arm64, by making the SMCCC call optional, the rest of the changes are added tags and cosmetic fixes. This is based on Martin's original series from about half a year ago[1]. Thanks for the comments on the list! See below for a changelog. ================= The various H616 chips seem to be qualified by production batches, and there is a table that translates from some efuses values to actual speed bin indexes. Also the die revision has a say here: we can derive this from the SoC ID, already provided by TF-A through the SMCCC SoC ID interface. So while the H6 had explicit speed bin indexes in the efuses, this is conceptually not that different, and after refactoring patch 4/8 this can be neatly integrated into the existing (H6) sun50i-cpufreq-nvmem driver. On top of that, not all chips are qualified to reach the full 1.5GHz, and the BSP kernel describes different OPPs for each speedbin. This requires to add support for the opp-supported-hw DT property, to be able to describe those requirements properly. Patch 1/8 exports the SoC ID function, so that we can call it from our driver. Patch 2/8 blocks the affected SoCs from the generic DT cpufreq driver, patch 3/8 adds the DT binding documentation. Patch 4/8 refactors the existing speedbin determination for the H6, to be able to plug in the H616 version later more easily. Patch 5/8 adds support for the opp-supported-hw property. This is done in a generic way, so it's usable for other SoCs as well, and the code will figure out if the current DT requires use of this feature. Patch 6/8 then eventually adds the H616 bits to the driver, and ties that to the new compatible string. Patch 7/8 add the CPU OPP table as a .dtsi to the DT directory, the values in there were taken from the BSP source. Patch 8/8 then enables the OPPs for all boards we have DTs for. Based on v6.9-rc1. Please have a look! Cheers, Andre [1] https://lore.kernel.org/linux-sunxi/20230904-cpufreq-h616-v1-0-b8842e525c43@somainline.org/T/#u Changelog v3 .. v4: - add Review and Ack tags - allow to compile without CONFIG_HAVE_ARM_SMCCC_DISCOVERY - limit opp-supported-hw array length to 1 - drop unneeded pipe after description in binding - reorder variables in reverse christmas tree in refactor patch Changelog v2 .. v3: - rebased on top of v6.9-rc1 - drop node name suffix from DT bindings - drop multiple nodes per frequency in DT bindings example - add H700 nvmem value and OPPs - print warning for unknown nvmem values - add #cooling-cells properties to CPU DT nodes - use one DT node per frequency for OPP table entries - include OPP table for newly added Longan board Changelog v1 .. v2: - extend commit messages - add H618/H700 SoC IDs - fix binding compatible enum - fix binding documentation - allow additional suffix to OPP node name - shorten existing DT binding example - add another (opp-supported-hw) binding example - move speed bin decoding refactoring to separate patch (Brandon) - move opp-supported-hw support to separate patch - merge opp-supported-hw and microvolt suffix handling - rewrite OPP tables without opp-microvolt-speed suffix Andre Przywara (2): cpufreq: sun50i: Add support for opp_supported_hw arm64: dts: allwinner: h616: enable DVFS for all boards Brandon Cheo Fusi (1): cpufreq: sun50i: Refactor speed bin decoding Martin Botka (5): firmware: smccc: Export revision soc_id function cpufreq: dt-platdev: Blocklist Allwinner H616/618 SoCs dt-bindings: opp: Describe H616 OPPs and opp-supported-hw cpufreq: sun50i: Add H616 support arm64: dts: allwinner: h616: Add CPU OPPs table .../allwinner,sun50i-h6-operating-points.yaml | 87 ++++---- .../sun50i-h616-bigtreetech-cb1.dtsi | 5 + .../dts/allwinner/sun50i-h616-cpu-opp.dtsi | 125 +++++++++++ .../allwinner/sun50i-h616-orangepi-zero2.dts | 5 + .../dts/allwinner/sun50i-h616-x96-mate.dts | 5 + .../arm64/boot/dts/allwinner/sun50i-h616.dtsi | 8 + .../sun50i-h618-longan-module-3h.dtsi | 5 + .../allwinner/sun50i-h618-orangepi-zero2w.dts | 5 + .../allwinner/sun50i-h618-orangepi-zero3.dts | 5 + .../sun50i-h618-transpeed-8k618-t.dts | 5 + drivers/cpufreq/cpufreq-dt-platdev.c | 3 + drivers/cpufreq/sun50i-cpufreq-nvmem.c | 206 +++++++++++++++--- drivers/firmware/smccc/smccc.c | 1 + 13 files changed, 388 insertions(+), 77 deletions(-) create mode 100644 arch/arm64/boot/dts/allwinner/sun50i-h616-cpu-opp.dtsi