/Linux-v5.4/tools/testing/selftests/powerpc/pmu/ebb/ |
D | multi_counter_test.c | 58 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in multi_counter() 59 mtspr(SPRN_PMC2, pmc_sample_period(sample_period)); in multi_counter() 60 mtspr(SPRN_PMC3, pmc_sample_period(sample_period)); in multi_counter() 61 mtspr(SPRN_PMC4, pmc_sample_period(sample_period)); in multi_counter() 62 mtspr(SPRN_PMC5, pmc_sample_period(sample_period)); in multi_counter() 63 mtspr(SPRN_PMC6, pmc_sample_period(sample_period)); in multi_counter() 73 count_pmc(1, sample_period); in multi_counter() 74 count_pmc(2, sample_period); in multi_counter() 75 count_pmc(3, sample_period); in multi_counter() 76 count_pmc(4, sample_period); in multi_counter() [all …]
|
D | lost_exception_test.c | 49 orig_period = max_period = sample_period = 400; in test_body() 51 mtspr(SPRN_PMC4, pmc_sample_period(sample_period)); in test_body() 66 if (sample_period >= (orig_period + 200)) in test_body() 67 sample_period = orig_period; in test_body() 69 sample_period++; in test_body() 71 if (sample_period > max_period) in test_body() 72 max_period = sample_period; in test_body() 78 count_pmc(4, sample_period); in test_body()
|
D | back_to_back_ebbs_test.c | 41 count_pmc(1, sample_period); in ebb_callee() 81 sample_period = 5; in back_to_back_ebbs() 84 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in back_to_back_ebbs() 94 count_pmc(1, sample_period); in back_to_back_ebbs()
|
D | ebb.c | 31 u64 sample_period = 0x40000000ull; variable 71 bool ebb_check_count(int pmc, u64 sample_period, int fudge) in ebb_check_count() argument 77 lower = ebb_state.stats.ebb_count * (sample_period - fudge); in ebb_check_count() 85 upper = ebb_state.stats.ebb_count * (sample_period + fudge); in ebb_check_count() 119 found += count_pmc(i, sample_period); in standard_ebb_callee() 252 int count_pmc(int pmc, uint32_t sample_period) in count_pmc() argument 258 start_value = pmc_sample_period(sample_period); in count_pmc() 381 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in ebb_child() 399 count_pmc(1, sample_period); in ebb_child()
|
D | cycles_test.c | 35 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in cycles() 45 count_pmc(1, sample_period); in cycles() 52 FAIL_IF(!ebb_check_count(1, sample_period, 100)); in cycles()
|
D | ebb.h | 46 bool ebb_check_count(int pmc, u64 sample_period, int fudge); 60 int count_pmc(int pmc, uint32_t sample_period); 71 extern u64 sample_period;
|
D | pmae_handling_test.c | 42 count_pmc(1, sample_period); in syscall_ebb_callee() 77 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in test_body() 85 count_pmc(1, sample_period); in test_body()
|
D | pmc56_overflow_test.c | 30 count_pmc(2, sample_period); in ebb_callee() 69 mtspr(SPRN_PMC2, pmc_sample_period(sample_period)); in pmc56_overflow() 79 count_pmc(2, sample_period); in pmc56_overflow()
|
D | cycles_with_freeze_test.c | 48 count_pmc(1, sample_period); in ebb_callee() 74 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in cycles_with_freeze() 102 count_pmc(1, sample_period); in cycles_with_freeze()
|
D | no_handler_test.c | 38 sample_period = 1000; in no_handler_test() 39 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in no_handler_test()
|
D | instruction_count_test.c | 43 count_pmc(4, sample_period); in do_count_loop() 101 count_pmc(4, sample_period); in pmc4_ebb_callee() 125 sample_period = COUNTER_OVERFLOW; in instruction_count()
|
D | cycles_with_mmcr2_test.c | 46 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in cycles_with_mmcr2() 74 count_pmc(1, sample_period); in cycles_with_mmcr2()
|
D | multi_ebb_procs_test.c | 54 mtspr(SPRN_PMC1, pmc_sample_period(sample_period)); in cycles_child() 64 count_pmc(1, sample_period); in cycles_child()
|
/Linux-v5.4/tools/testing/selftests/bpf/verifier/ |
D | perf_event_sample_period.c | 7 offsetof(struct bpf_perf_event_data, sample_period)), 10 offsetof(struct bpf_perf_event_data, sample_period) + 7), 23 offsetof(struct bpf_perf_event_data, sample_period)), 26 offsetof(struct bpf_perf_event_data, sample_period) + 6), 39 offsetof(struct bpf_perf_event_data, sample_period)), 42 offsetof(struct bpf_perf_event_data, sample_period) + 4), 54 offsetof(struct bpf_perf_event_data, sample_period)),
|
/Linux-v5.4/samples/bpf/ |
D | tracex6_user.c | 103 .sample_period = SAMPLE_PERIOD, in test_bpf_perf_event() 112 .sample_period = SAMPLE_PERIOD, in test_bpf_perf_event() 121 .sample_period = SAMPLE_PERIOD, in test_bpf_perf_event() 131 .sample_period = SAMPLE_PERIOD, in test_bpf_perf_event() 143 .sample_period = SAMPLE_PERIOD, in test_bpf_perf_event() 155 .sample_period = 0, in test_bpf_perf_event()
|
D | trace_event_kern.c | 50 if (ctx->sample_period < 10000) in bpf_prog1() 57 bpf_trace_printk(fmt, sizeof(fmt), cpu, ctx->sample_period, in bpf_prog1()
|
/Linux-v5.4/drivers/media/rc/ |
D | ite-cir.c | 62 static long sample_period; variable 63 module_param(sample_period, long, S_IRUGO | S_IWUSR); 64 MODULE_PARM_DESC(sample_period, "Override carrier sample period, us"); 164 u32 sample_period; in ite_decode_bytes() local 172 sample_period = dev->params.sample_period; in ite_decode_bytes() 179 ITE_BITS_TO_NS(next_one, sample_period); in ite_decode_bytes() 186 ev.duration = ITE_BITS_TO_NS(next_zero - next_one, sample_period); in ite_decode_bytes() 197 sample_period); in ite_decode_bytes() 397 (ITE_BAUDRATE_DIVISOR * dev->params.sample_period * in ite_tx_ir() 1334 .sample_period = (u32) (1000000000ULL / 115200), [all …]
|
D | ene_ir.c | 30 static int sample_period; variable 103 if (sample_period != ENE_DEFAULT_SAMPLE_PERIOD) in ene_hw_detect() 392 if (sample_period == ENE_DEFAULT_SAMPLE_PERIOD) in ene_rx_setup() 397 (sample_period + sample_period_adjust) | in ene_rx_setup() 443 dev->rdev->rx_resolution = US_TO_NS(sample_period); in ene_rx_setup() 450 dev->rdev->min_timeout = US_TO_NS(127 * sample_period); in ene_rx_setup() 455 dev->rdev->tx_resolution = US_TO_NS(sample_period); in ene_rx_setup() 638 dev->tx_sample = DIV_ROUND_CLOSEST(sample, sample_period); in ene_tx_sample() 647 dbg("TX: sample %8d (%s)", raw_tx * sample_period, in ene_tx_sample() 786 hw_sample = hw_value * sample_period; in ene_isr() [all …]
|
D | ite-cir.h | 53 u32 sample_period; member 149 #define ITE_BITS_TO_NS(bits, sample_period) \ argument 150 ((u32) ((bits) * ITE_BAUDRATE_DIVISOR * sample_period))
|
/Linux-v5.4/arch/x86/events/amd/ |
D | ibs.c | 114 s64 period = hwc->sample_period; in perf_event_set_period() 279 if (hwc->sample_period) { in perf_ibs_init() 283 if (!event->attr.sample_freq && hwc->sample_period & 0x0f) in perf_ibs_init() 290 hwc->sample_period &= ~0x0FULL; in perf_ibs_init() 291 if (!hwc->sample_period) in perf_ibs_init() 292 hwc->sample_period = 0x10; in perf_ibs_init() 296 event->attr.sample_period = max_cnt << 4; in perf_ibs_init() 297 hwc->sample_period = event->attr.sample_period; in perf_ibs_init() 300 if (!hwc->sample_period) in perf_ibs_init() 307 hwc->last_period = hwc->sample_period; in perf_ibs_init() [all …]
|
/Linux-v5.4/tools/perf/arch/arm64/util/ |
D | arm-spe.c | 84 evsel->core.attr.sample_period = 1; in arm_spe_recording_options() 136 tracking_evsel->core.attr.sample_period = 1; in arm_spe_recording_options() 220 &attr->sample_period) != 1) { in arm_spe_pmu_default_config() 222 attr->sample_period = 4096; in arm_spe_pmu_default_config()
|
/Linux-v5.4/drivers/iio/adc/ |
D | dln2-adc.c | 65 unsigned int sample_period; member 360 if (dln2->sample_period) { in dln2_adc_read_raw() 361 microhertz = 1000000000 / dln2->sample_period; in dln2_adc_read_raw() 392 dln2->sample_period = in dln2_adc_write_raw() 394 if (dln2->sample_period > 65535) { in dln2_adc_write_raw() 395 dln2->sample_period = 65535; in dln2_adc_write_raw() 409 dln2->trigger_chan, dln2->sample_period); in dln2_adc_write_raw() 549 dln2->sample_period); in dln2_adc_triggered_buffer_postenable()
|
/Linux-v5.4/drivers/thermal/intel/int340x_thermal/ |
D | acpi_thermal_rel.h | 37 u64 sample_period; member 70 u64 sample_period; member
|
/Linux-v5.4/kernel/ |
D | watchdog.c | 169 static u64 __read_mostly sample_period; variable 253 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5); in set_sample_period() 254 watchdog_update_hrtimer_threshold(sample_period); in set_sample_period() 384 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period)); in watchdog_timer_fn() 495 hrtimer_start(hrtimer, ns_to_ktime(sample_period), in watchdog_enable()
|
/Linux-v5.4/arch/powerpc/perf/ |
D | core-fsl-emb.c | 322 if (event->hw.sample_period) { in fsl_emb_pmu_add() 393 if (event->hw.idx < 0 || !event->hw.sample_period) in fsl_emb_pmu_start() 421 if (event->hw.idx < 0 || !event->hw.sample_period) in fsl_emb_pmu_stop() 559 event->hw.last_period = event->hw.sample_period; in fsl_emb_pmu_event_init() 605 u64 period = event->hw.sample_period; in record_and_restart() 631 event->hw.last_period = event->hw.sample_period; in record_and_restart()
|