From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 0B49D1FBEA6; Sat, 12 Sep 2026 16:34:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789230844; cv=none; b=csRbOXlQf66guqsAyeR8YeLvqN15NklTOJPE5bPv4RiF4QeRuXTPdxGt4+iVPPAH9tg2Lw34BTX7yKoJUbR3nKL0GpNmo9ZrQvWiMPFmVa+h4smqyDo4wr0hu5vHsxgzqCuQNnoOJY7VKGf2zMbJjSjE8qMAFtNatv+468IPd4s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789230844; c=relaxed/simple; bh=WW0FJe9ynuY7A2BhmIrq31uiXNMhrjzNElcwgzIB55k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=S+7IDJKpOJJyQvYvgQZ7AJfK0B+zEDAKR4mBpUHZnKw5/ycD/2MI6D/ovBxlWJHC2l/10H1xlf5WebNAQvfT5ZGz4uAqYSRmFte9dLVV55ICNwAVgzZ9XmBgLOWgODAOwyzFAAskDKYm5PsvIjMcIxHfJ/wT6q6ZQ4G6MuihlXg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YTOxk3CX; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YTOxk3CX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE7731F000FF; Sat, 12 Sep 2026 16:34:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789230842; bh=sASUrGIWgHsdUEoVzQSATsdTmKbqHtKCQycknHXPAvM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=YTOxk3CX74JelUDh69H83y1IfW8+SVlvt5TXMg+rTixuz7UWu+ZnC3XYxTMtd41L+ JqTB9UIkzPj4R0Y0BFK+a51mOnNyX0Yp0NkA+TIJiwDdMnNlUkbIfMt+1bpxgxHtv5 vG8LTFjh52M2JRaF4RSryBfe9tgoLsD4G5MPLmbc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Karl Mehltretter , Sasha Levin Subject: [PATCH 6.1 0834/1191] serial: amba-pl011: unprepare console clock on unregister Date: Sat, 12 Sep 2026 08:59:22 +0200 Message-ID: <20260912065606.993180840@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065548.086904252@linuxfoundation.org> References: <20260912065548.086904252@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Karl Mehltretter [ Upstream commit 7f93da9d78d433c37836d85de475c5d884ad58ed ] pl011_console_setup() calls clk_prepare() on the UART clock, but the console provides no matching teardown, so the clock is never unprepared when the console is unregistered -- via the sysfs "console" attribute or a driver unbind. Each re-registration prepares the clock again, leaking one prepare reference per cycle. Even where preparing the clock has no hardware effect, the stale reference leaves the clock framework's prepare count unbalanced. For providers with prepare/unprepare operations or runtime-PM integration, it may also retain resources after the console is unregistered. Add a console .exit() callback that clk_unprepare()s the clock, balancing the clk_prepare() in pl011_console_setup(). Fixes: 4b4851c65d92 ("clk: amba-pl011: convert to clk_prepare()/clk_unprepare()") Assisted-by: Claude:claude-fable-5 Signed-off-by: Karl Mehltretter Link: https://patch.msgid.link/20260724213348.77418-2-kmehltretter@gmail.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/tty/serial/amba-pl011.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index c0299c7ef1c18..d61ecbb06d94e 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c @@ -2450,6 +2450,15 @@ static int pl011_console_setup(struct console *co, char *options) return uart_set_options(&uap->port, co, baud, parity, bits, flow); } +static int pl011_console_exit(struct console *co) +{ + struct uart_amba_port *uap = amba_ports[co->index]; + + clk_unprepare(uap->clk); + + return 0; +} + /** * pl011_console_match - non-standard console matching * @co: registering console @@ -2516,6 +2525,7 @@ static struct console amba_console = { .write = pl011_console_write, .device = uart_console_device, .setup = pl011_console_setup, + .exit = pl011_console_exit, .match = pl011_console_match, .flags = CON_PRINTBUFFER | CON_ANYTIME, .index = -1, -- 2.53.0