common: Add opcodes for sync_freq and optimal_freq

Add opcodes for synchronous freq and optimal freq
into PerfLock.

Change-Id: Idb4d4f2194cb34fee5e76614ae1cbe3938534100
This commit is contained in:
Vince Leung 2012-12-03 15:19:02 -08:00 committed by Anurag Singh
parent 98c0d7064e
commit c44f88778b
1 changed files with 12 additions and 0 deletions

View File

@ -101,6 +101,18 @@ enum INTERACTIVE_HISPEED_LOAD_LVL {
HISPEED_LOAD_90 = 0x105A,
};
enum SYNC_FREQ_LVL {
SYNC_FREQ_384 = 0x1103,
SYNC_FREQ_NONTURBO_MAX = 0x110A,
SYNC_FREQ_TURBO = 0x110F,
};
enum OPTIMAL_FREQ_LVL {
OPTIMAL_FREQ_384 = 0x1203,
OPTIMAL_FREQ_NONTURBO_MAX = 0x120A,
OPTIMAL_FREQ_TURBO = 0x120F,
};
#ifdef __cplusplus
}
#endif