]> git.baikalelectronics.ru Git - kernel.git/commit
soc: qcom: stats: Populate all subsystem debugfs files
authorStephen Boyd <swboyd@chromium.org>
Thu, 19 Jan 2023 03:23:29 +0000 (19:23 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 12:55:22 +0000 (13:55 +0100)
commit5b4820521ecc7baaedbb02df16d18da10c433fcd
tree8c07b29e542dddad33fa4dd05650dea08255f890
parent636f1241c205a752092d573646d91df635972f24
soc: qcom: stats: Populate all subsystem debugfs files

[ Upstream commit 9d2ead27d85385ef1dde0732f6a50d575f239a6a ]

This driver relies on SMEM to populate items for each subsystem before
the device probes. The items in SMEM that are being looked for are
populated by the subsystems lazily, and therefore may not exist until
the device has booted. For example, if I build this driver into the
kernel on Trogdor Lazor and boot up, I don't see a 'modem' debugfs file
populated, because the modem boots and populates the SMEM item after
this driver probes.

Always populate the files for the subsystems if they're in SMEM, and
make the qcom_subsystem_sleep_stats_show() function return 0 if the SMEM
items still isn't there. This way we can run a simple command like

grep ^ /sys/kernel/debug/qcom_stats/*

and collect the subsystem sleep stats without interspersed errors or
missing details entirely because this driver probed first.

Fixes: 61c8c8766d64 ("soc: qcom: Add Sleep stats driver")
Cc: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230119032329.2909383-1-swboyd@chromium.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/soc/qcom/qcom_stats.c