I have been trying to get my CPU & GPU max, min, and current voltage supplies in my Jetson Nano device. When I accessed the following path in my Jetson: /sys/kernel/debug/regulator. I found already the min_uv and max_uv files in it but I didn’t manage to find the “voltage” file or “current_voltage” file.
I checked a work which was done on Jetson TX2 and it seems they can find the CPU & GPU max, min, and current voltage files in the following directory: /sys/kernel/debug/bpmp/debug/regulator/.
Can anyone guide me on how to access the current voltage file in Jetson Nano?
What is your purpose for accessing the voltage file? Changing the configuration could risk damaging the device.
For example, to access cpu0, you can retrieve the file from /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq.
For the GPU, the file can be found at /sys/class/devfreq/*.gpu/max_freq.
Also you can execute jetson_clocks --show to display current setting.
I think the files cpuinfo_max_freq and max_freq give me the maximum frequency for the Jetson device. I was wondering how to get access to the current voltage, the same as min_uv and max_uv provide.