From mboxrd@z Thu Jan 1 00:00:00 1970 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 D0BA3C25B67 for ; Tue, 24 Oct 2023 02:20:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229582AbjJXCUZ (ORCPT ); Mon, 23 Oct 2023 22:20:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36866 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230284AbjJXCUZ (ORCPT ); Mon, 23 Oct 2023 22:20:25 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 60F4AEA; Mon, 23 Oct 2023 19:20:23 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEFDFC433C8; Tue, 24 Oct 2023 02:20:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1698114022; bh=qHFLDEl/5h5NDJ2DKT7apAOR/E+2WF1tok1bPg1QJzE=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=DhxjRn0CqvsNqrIgvbgk87C2Hy+mTnx8SQ7/T+a1G4OqW5UFCd62uBf97MBu7lGwM qy7dGKNTtvtSpBsBqoW0DO3siX2NBhobpu69r2k+fsEdug2q/W7LkLJJLKTU8WD89X g6OapBxRpaz8hjf4Z2fcUD7/Rwh2apTLmIE2+Jkk+j8dsXmX/xx0b2Eb++/8C6R4YS EtW9UXxcP7fpk00jsEYeKHRwpTfiQboMEhbXRX6WPrJdT6Zy7vq3a0sNjRPS6U+7NC tGkGHjBoAHB6PHcN8gshpR8zV361YyPQUd9KJ1bcygp6ibOTltir0VqvX4p6euM5FD Mdi+2/eAqD7rA== Message-ID: <28dc00c3f15f3023e0d963eff2333e13.sboyd@kernel.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <1669569799-8526-1-git-send-email-badolevishal1116@gmail.com> References: <1669569799-8526-1-git-send-email-badolevishal1116@gmail.com> Subject: Re: [PATCH v5] Common clock: To list active consumers of clocks From: Stephen Boyd Cc: mturquette@baylibre.com, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, chinmoyghosh2001@gmail.com, mintupatel89@gmail.com, vimal.kumar32@gmail.com, Vishal Badole To: Vishal Badole Date: Mon, 23 Oct 2023 19:20:20 -0700 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Vishal Badole (2022-11-27 09:23:19) > This feature lists the clock consumer's name and respective connection > id. Using this feature user can easily check that which user has > acquired and enabled a particular clock. >=20 > Usage: > >> cat /sys/kernel/debug/clk/clk_summary > enable prepare protect > = duty hardware Connection > clock count count count rate accuracy phase = cycle enable consumer Id > -------------------------------------------------------------------------= ----------------------------------------------------- > clk_mcasp0_fixed 0 0 0 24576000 0 = 0 50000 Y deviceless of_clk_get_from_provider > = deviceless no_connection_id > clk_mcasp0 0 0 0 24576000 0 = 0 50000 N simple-audio-card,cpu no_connection_id > = deviceless no_connection_id >=20 > Co-developed-by: Chinmoy Ghosh > Signed-off-by: Chinmoy Ghosh > Co-developed-by: Mintu Patel > Signed-off-by: Mintu Patel > Co-developed-by: Vimal Kumar > Signed-off-by: Vimal Kumar > Signed-off-by: Vishal Badole > --- Applied to clk-next