/* MMCRA IFM bits - POWER10 */
 #define POWER10_MMCRA_IFM1             0x0000000040000000UL
+#define POWER10_MMCRA_IFM2             0x0000000080000000UL
+#define POWER10_MMCRA_IFM3             0x00000000C0000000UL
 #define POWER10_MMCRA_BHRB_MASK                0x00000000C0000000UL
 
 /* Table of alternatives, sorted by column 0 */
        if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY_RETURN)
                return -1;
 
-       if (branch_sample_type & PERF_SAMPLE_BRANCH_IND_CALL)
-               return -1;
+       if (branch_sample_type & PERF_SAMPLE_BRANCH_IND_CALL) {
+               pmu_bhrb_filter |= POWER10_MMCRA_IFM2;
+               return pmu_bhrb_filter;
+       }
+
+       if (branch_sample_type & PERF_SAMPLE_BRANCH_COND) {
+               pmu_bhrb_filter |= POWER10_MMCRA_IFM3;
+               return pmu_bhrb_filter;
+       }
 
        if (branch_sample_type & PERF_SAMPLE_BRANCH_CALL)
                return -1;