This is a quite usually problem when lots of guys try to use the performance counters but their return value always be 0. Some guys said that they work well in the kernel-mode. Does the kernel-mode mean work in the u-boot before linux kernel booting?

But I try to do this after the board initial in u-boot and stop when the u-boot countdown to boot the kernel. But those counters still don't work except the CCNT. The value of the AUTHSTATUS show 0x000000AE, so it seems that the SPIDEN||SPNIDEN=0 which means that the performance counters is disenable. How can I enable them in the u-boot? Any help would be appreciated! Thank you!

I attached my code bellow:

#define PMNCTRL_MASK 0x3f
#define PMNCTRL_E 0x1
#define PMNCTRL_P 0x2
#define PMNCTRL_C 0x4
#define PMNCTRL_D 0x8
#define PMNCTRL_X 0x10
#define PMNCTRL_DP 0x20

int main(int argc, char * argv[]) {

    int i = 0;
    uint32_t value = 0, valuecheck = 0;
    uint32_t test = 0;
    uint32_t count00 = 0, count01 = 0, count02 = 0, countcycel=0;

   // read the current value of useren register, it should be 0x1
// This register enables or disables User mode access to the performance monitors.
// Last bit, 1 User mode access to performance monitors enabled.
    __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c14, 0"
            : "=r" (value));
 printf("value of usren reg is: 0x%X\n\n", value);

    // enable all counters
 // Count Enable Set Register
 // Bit[31],PMCCNTR enable bit.
 //bit [x], for x = 0 to (N-1), Event counter x, PMNx, enable bit, 1 Counter enabled Enable counter
    __asm__ __volatile__ (
             "mcr p15, 0, %0, c9, c12, 1"
             ::"r" (0x8000000f));// enable all the 4 event counter on ARM
 __asm__ __volatile__ (
             "mrc p15, 0, %0, c9, c12, 1"
             :"=r" (valuecheck));
 printf("the value of Count Enable Set Register is:0x%X\n\n", valuecheck);

    // select counter 0, setup events to use
    __asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 5" 
            ::"r" (0x1)); // chose the event counter1
 __asm__ __volatile__ (
             "mrc p15, 0, %0, c9, c12, 5"
             :"=r" (valuecheck));
 printf("the number of the chosen register is:0x%X\n", valuecheck);


    __asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c13, 1"
            ::"r"(0x11));// Set the event is Cycle Count
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 1"
             :"=r" (valuecheck));
 printf("the number of the set event is:0x%X\n\n", valuecheck);

printf("/************First Time**********/\n");
    // reset all counters and start counting
    __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0" //Performance Monitor Control Register
            : "=r" (value));
    printf("Value of the PMNCR before: 0x%X\n", value);

    value &= ~PMNCTRL_MASK;
    value |= PMNCTRL_C | PMNCTRL_P ;//| PMNCTRL_E;
    printf("writing control value: 0x%X\n", value);

    __asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c12, 0"
            :: "r" (value));
 __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("the written value to the PMNC register is:0x%X\n", valuecheck);

    // loop test
    for(i = 0; i < 1000; i++) {
            test += i;
    }
    printf("test = %u\n", test);

/********************Let Check the Value of the number of Cycles (Sin Enable)***********************/

__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
            : "=r" (valuecheck));
    printf("The value of the PMNCR after executing a piece of code: 0x%X\n", valuecheck);

//Disable the Counter
__asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 0" 
            ::"r" (0x41002000));    
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("The value after the disable of PMNCR:0x%X\n", valuecheck);

//Read directly from the Cycle Counter Register
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 0"
             :"=r" (valuecheck));
printf("the value of the Cycle Counter Register is:0x%X\n", valuecheck);

//Read from the event counter
//Select the Counter

 __asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 5" 
            ::"r" (0x1)); // chose the event counter0
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 5"
             :"=r" (valuecheck));
 printf("the number of the current register is:0x%X\n", valuecheck);

//Event Count Register, A read of the PMXEVCNTR always returns the current value of the register.
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 2" 
             :"=r" (valuecheck));
 printf("the value of the event monitor register is:0x%X\n", valuecheck);

/*******Do the Same Thing to Check this after the enable*****/

printf("\n/************Second Time************/\n");
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0" //Performance Monitor Control Register
            : "=r" (value));
    printf("Value of the PMNCR before: 0x%X\n", value);

   /* value &= ~PMNCTRL_MASK;
    value |= PMNCTRL_C | PMNCTRL_P | PMNCTRL_E;
    printf("writing control value: 0x%X\n", value);*/

    __asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c12, 0"
            :: "r" (0x42001006));
 __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("the written value to the PMNC register is:0x%X\n", valuecheck);

printf("Check it the two counters are reseted \n");

//Check if the two counter is reseted
 __asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 5" 
            ::"r" (0x1)); // chose the event counter0
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 5"
             :"=r" (valuecheck));
printf("the number of the chosen register is:0x%X\n", valuecheck);
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 2" 
             :"=r" (valuecheck));
printf("the value of the event monitor register is:0x%X\n", valuecheck);

__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 0"
             :"=r" (valuecheck));
printf("the value of the Cycle Counter Register is:0x%X\n", valuecheck);

 __asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c13, 1"
            ::"r"(0x11));// Set the event is Cycle Count
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 1"
             :"=r" (valuecheck));
 printf("the number of the set event is:0x%X\n\n", valuecheck);

//Enable conuters
__asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c12, 0"
            :: "r" (0x42001001));
 __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("the written value to the PMNC register for enable is:0x%X\n", valuecheck);

    // loop test
printf("/**********Execute a Piece of Code********/\n");       
for(i = 0; i < 1000; i++) {
            test += i;
    }
   printf("test = %u\n", test);

__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
            : "=r" (valuecheck));
    printf("The value of the PMNCR after executing a piece of code: 0x%X\n", valuecheck);

//Disable the Counter
__asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 0" 
            ::"r" (0x41002000));    
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("The value after the disable of PMNCR:0x%X\n", valuecheck);

//Read directly from the Cycle Counter Register
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 0"
             :"=r" (valuecheck));
printf("the value of the Cycle Counter Register is:0x%X\n", valuecheck);

//Read from the event counter
//Select the Counter

 __asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 5" 
            ::"r" (0x1)); // chose the event counter0
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 5"
             :"=r" (valuecheck));
 printf("the number of the chosen register is:0x%X\n", valuecheck);

__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 2" 
             :"=r" (valuecheck));
 printf("the value of the event monitor register is:0x%X\n", valuecheck);


/********************************************************************/
printf("\nReset those counters\n");
 /*value &= ~PMNCTRL_MASK;
    value |= PMNCTRL_C | PMNCTRL_P | PMNCTRL_E;
    printf("writing control value: 0x%X\n", value);*/

    __asm__ __volatile__ (
            "mcr p15, 0, %0, c9, c12, 0"
            :: "r" (0x41002006));
 __asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 0"
             :"=r" (valuecheck));
 printf("the written value to the PMNC register is:0x%X\n", valuecheck);

//Check if the two counter is reseted
 __asm__ __volatile__(
            "mcr p15, 0, %0, c9, c12, 5" 
            ::"r" (0x1)); // chose the event counter0
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c12, 5"
             :"=r" (valuecheck));
 printf("the number of the chosen register is:0x%X\n", valuecheck);
__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 2" 
             :"=r" (valuecheck));
 printf("the value of the event monitor register is:0x%X\n", valuecheck);

__asm__ __volatile__ (
            "mrc p15, 0, %0, c9, c13, 0"
             :"=r" (valuecheck));
printf("the value of the Cycle Counter Register is:0x%X\n", valuecheck);



    return 0;
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.