This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM6548: How to find the message of CPU frequency in system?

Part Number: AM6548

Hi

We had searched the content of "proc/cpuinfo", it had no CPU frequency information.

and the folder of "sys/devices/system/cpu/cpufreq", it's empty.

where can we find the message of CPU frequency with am6548 in the system?

Thanks

Kenn

  • Hi Kenn,

    cpufreq is not supported on AM6548. But please use the following command to get the CPU frequency:

    # k3conf --cpuinfo

  • Got it, it worked。

    k3conf --cpuinfo
    
    |--------------------------------------------------------------------------------|
    | VERSION INFO                                                                   |
    |--------------------------------------------------------------------------------|
    | K3CONF | (version v0.1-45-g79f007c built Sat Aug 7 04:42:43 UTC 2021)          |
    | SoC    | AM65x SR2.0                                                           |
    | SYSFW  | ABI: 3.1 (firmware version 0x0015 '21.5.0--v2021.05 (Terrific Llam)') |
    |--------------------------------------------------------------------------------|
    
    |---------------------------------------------------------|
    | Processor Name | Processor State  | Processor Frequency |
    |---------------------------------------------------------|
    | A53_CL0_C0     | DEVICE_STATE_ON  | 800000000           |
    | A53_CL0_C1     | DEVICE_STATE_ON  | 800000000           |
    | A53_CL1_C0     | DEVICE_STATE_OFF | 800000000           |
    | A53_CL1_C1     | DEVICE_STATE_OFF | 800000000           |
    |---------------------------------------------------------|

    Thanks Liu

    Kenn