public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
From: ende.tan@starfivetech.com
To: linux-rt-users@vger.kernel.org, mtosatti@redhat.com
Cc: williams@redhat.com, jkacur@redhat.com,
	leyfoon.tan@starfivetech.com,
	Tan En De <ende.tan@starfivetech.com>
Subject: [1/1] rt-tests: determine_maximum_mpps.sh: Get frequency from timebase-frequency if cpuinfo fails
Date: Mon, 11 Nov 2024 09:49:53 +0800	[thread overview]
Message-ID: <20241111014953.11604-1-ende.tan@starfivetech.com> (raw)

From: Tan En De <ende.tan@starfivetech.com>

If cpu MHz is not listed in /proc/cpuinfo (as in RISC-V Linux), get the
frequency from /sys/firmware/devicetree/base/cpus/timebase-frequency.

Signed-off-by: Tan En De <ende.tan@starfivetech.com>
---
 src/queuelat/determine_maximum_mpps.sh | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/queuelat/determine_maximum_mpps.sh b/src/queuelat/determine_maximum_mpps.sh
index 733b6b2..adfd809 100755
--- a/src/queuelat/determine_maximum_mpps.sh
+++ b/src/queuelat/determine_maximum_mpps.sh
@@ -42,7 +42,15 @@ usage()
 
 get_cpuinfo_mhz()
 {
-	grep "cpu MHz" /proc/cpuinfo | cut -f 3 -d " " | sort -rn | head -n1
+	# Try to determine MHz from /proc/cpuinfo
+	FREQ_MHZ=$(grep "cpu MHz" /proc/cpuinfo | cut -f 3 -d " " | sort -rn | head -n1)
+
+	# Try to determine MHz from /sys/firmware/devicetree/base/cpus/timebase-frequency
+	if [ -z $FREQ_MHZ ]; then
+		FREQ_MHZ=$(($((16#$(hexdump -e '1/1 "%02X"' /sys/firmware/devicetree/base/cpus/timebase-frequency)))/1000000))
+	fi
+
+	echo "$FREQ_MHZ"
 }
 
 # Check that the scheduling policy hasn't already been set
-- 
2.34.1


             reply	other threads:[~2024-11-11 22:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-11  1:49 ende.tan [this message]
2024-11-19 19:49 ` [1/1] rt-tests: determine_maximum_mpps.sh: Get frequency from timebase-frequency if cpuinfo fails Marcelo Tosatti
2024-11-21 18:49 ` John Kacur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241111014953.11604-1-ende.tan@starfivetech.com \
    --to=ende.tan@starfivetech.com \
    --cc=jkacur@redhat.com \
    --cc=leyfoon.tan@starfivetech.com \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=williams@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox