From patchwork Wed Dec 11 00:24:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 13902635 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CE7EB259C; Wed, 11 Dec 2024 00:24:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733876653; cv=none; b=Inn3YhXgj9uz0dHeZklZS8TM5Fs/aXE96zEnUxwpP3x0An3TRki6XSiQYDgj9mqi1FxIDlYqwfM477avJROEZxMrpAyrC6J7159FrLjiTLyUNx/Gvk8OmL2upOPII6IwgeKTQaXp2gn95AFJLKIwpH5DJsp7JI+FUGAHH8tglec= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733876653; c=relaxed/simple; bh=5db9h6vEYljnH4SdvZ/1gtkuSb6es2XIyXpEQw0tmcI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=X8q8yH4QY/+3cSVVfO8eDYr8HevKY25IiqYY+vgzvisNsfTM4mhQNLunD6ahlSJDdBnGgewQiufAk9FJMDyT/kBVUfht1P7Wjts77gM8rdnNVUcQPL0QIX55L6qxCp3AEQmQJ/lMWY5IA0LL+4J2IJ++6ME+kliHAqq9+iJwOZ8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gNECI96T; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gNECI96T" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 20C09C4CED6; Wed, 11 Dec 2024 00:24:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1733876653; bh=5db9h6vEYljnH4SdvZ/1gtkuSb6es2XIyXpEQw0tmcI=; h=From:To:Cc:Subject:Date:From; b=gNECI96TdAa//mtsHM2Lh34XqPUdaoz2Gakb24BH4EXFbCWb5Ve+hxJaXKU1VtCYY RipJdgsN6oGju2zUuvthVP1BwPLQnjg6HFlSQf00NjQOiU4wjWedA73aVSGD0EvX8F bx/E6keRXdVTeaqfUFyvL+H40KBw6U+B8aHkM6cftfmAV5VuurQtVf25nyZUXjKGtY o1owOLFds0ZxdXZxzSJY2OXqwb01sS/VbouNobBlx680sW+8pzbg8J+Js17hPnsSkY +a15X1DYcN15uHDm3m1q7P2fdcyTyzfsuw8JNHjT5two+NcQxIhH9zfvuFAaUFJpl/ 7QfPxAeFxLNzA== From: Stephen Boyd To: Linus Torvalds Cc: Michael Turquette , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] clk fixes for v6.13-rc2 Date: Tue, 10 Dec 2024 16:24:11 -0800 Message-ID: <20241211002412.449222-1-sboyd@kernel.org> X-Mailer: git-send-email 2.47.0.338.g60cca15819-goog Precedence: bulk X-Mailing-List: linux-clk@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The following changes since commit 40384c840ea1944d7c5a392e8975ed088ecf0b37: Linux 6.13-rc1 (2024-12-01 14:28:56 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git tags/clk-fixes-for-linus for you to fetch changes up to 52fd1709e41d3a85b48bcfe2404a024ebaf30c3b: clk: en7523: Initialize num before accessing hws in en7523_register_clocks() (2024-12-03 14:54:12 -0800) ---------------------------------------------------------------- Two reverts and two EN7581 driver fixes: - Revert the attempt to make CLK_GET_RATE_NOCACHE flag work in clk_set_rate() because it led to problems with the Qualcomm CPUFreq driver - Revert Amlogic reset driver back to the initial implementation. This broke probe of the audio subsystem on axg based platforms and also had compilation problems. We'll try again next time. - Fix a clk frequency and fix array bounds runtime checks in the Airoha EN7581 driver ---------------------------------------------------------------- Christian Marangi (1): clk: en7523: Fix wrong BUS clock for EN7581 Haoyu Li (1): clk: en7523: Initialize num before accessing hws in en7523_register_clocks() Jerome Brunet (1): clk: amlogic: axg-audio: revert reset implementation Johan Hovold (1): Revert "clk: Fix invalid execution of clk_set_rate" drivers/clk/clk-en7523.c | 9 ++-- drivers/clk/clk.c | 2 +- drivers/clk/meson/Kconfig | 2 +- drivers/clk/meson/axg-audio.c | 109 ++++++++++++++++++++++++++++++++++++++---- 4 files changed, 107 insertions(+), 15 deletions(-)