Home
last modified time | relevance | path

Searched refs:PFM_REG_IMPL (Results 1 – 1 of 1) sorted by relevance

/Linux-v4.19/arch/ia64/kernel/
Dperfmon.c90 #define PFM_REG_IMPL 0x1 /* register implemented */ macro
92 #define PFM_REG_MONITOR (0x1<<4|PFM_REG_IMPL) /* a PMC with a pmc.pm field only */
94 #define PFM_REG_CONTROL (0x4<<4|PFM_REG_IMPL) /* PMU control register */
95 #define PFM_REG_CONFIG (0x8<<4|PFM_REG_IMPL) /* configuration register */
96 #define PFM_REG_BUFFER (0xc<<4|PFM_REG_IMPL) /* PMD used as buffer */
104 #define PMC_IS_IMPL(i) (i< PMU_MAX_PMCS && (pmu_conf->pmc_desc[i].type & PFM_REG_IMPL))
105 #define PMD_IS_IMPL(i) (i< PMU_MAX_PMDS && (pmu_conf->pmd_desc[i].type & PFM_REG_IMPL))
2873 if ((pmc_type & PFM_REG_IMPL) == 0 || (pmc_type & PFM_REG_CONTROL) == PFM_REG_CONTROL) { in pfm_write_pmcs()