evsel->core.attr.config);
 }
 
+/*
+ * Currently, there is not enough information to disambiguate different PEBS
+ * events, so only allow one.
+ */
+static bool intel_pt_too_many_aux_output(struct evlist *evlist)
+{
+       struct evsel *evsel;
+       int aux_output_cnt = 0;
+
+       evlist__for_each_entry(evlist, evsel)
+               aux_output_cnt += !!evsel->core.attr.aux_output;
+
+       if (aux_output_cnt > 1) {
+               pr_err(INTEL_PT_PMU_NAME " supports at most one event with aux-output\n");
+               return true;
+       }
+
+       return false;
+}
+
 static int intel_pt_recording_options(struct auxtrace_record *itr,
                                      struct evlist *evlist,
                                      struct record_opts *opts)
                return -EINVAL;
        }
 
+       if (intel_pt_too_many_aux_output(evlist))
+               return -EINVAL;
+
        if (!opts->full_auxtrace)
                return 0;
 
 
        return 0;
 }
 
+static void intel_pt_setup_pebs_events(struct intel_pt *pt)
+{
+       struct evsel *evsel;
+
+       if (!pt->synth_opts.other_events)
+               return;
+
+       evlist__for_each_entry(pt->session->evlist, evsel) {
+               if (evsel->core.attr.aux_output && evsel->id) {
+                       pt->sample_pebs = true;
+                       pt->pebs_evsel = evsel;
+                       return;
+               }
+       }
+}
+
 static struct evsel *intel_pt_find_sched_switch(struct evlist *evlist)
 {
        struct evsel *evsel;
        if (err)
                goto err_delete_thread;
 
+       intel_pt_setup_pebs_events(pt);
+
        err = auxtrace_queues__process_index(&pt->queues, session);
        if (err)
                goto err_delete_thread;