/Zephyr-latest/soc/nordic/nrf91/ |
D | Kconfig.defconfig | 10 # If the kernel has timer support, enable the timer
|
/Zephyr-latest/boards/intel/ish/ |
D | Kconfig.defconfig | 12 default 2048 if HPET_TIMER # HPET timer's frequency is 32768 HZ 13 default 2000 if APIC_TIMER_TSC # APIC timer's frequency is 19.2 MHZ or 100 MHZ
|
/Zephyr-latest/drivers/display/ |
D | display_nrf_led_matrix.c | 25 #define TIMER_NODE DT_PHANDLE(MATRIX_NODE, timer) 90 NRF_TIMER_Type *timer; member 133 nrf_timer_task_trigger(dev_config->timer, NRF_TIMER_TASK_STOP); in api_blanking_on() 155 nrf_timer_task_trigger(dev_config->timer, NRF_TIMER_TASK_CLEAR); in api_blanking_off() 156 nrf_timer_task_trigger(dev_config->timer, NRF_TIMER_TASK_START); in api_blanking_off() 329 nrf_timer_cc_set(dev_config->timer, 1 + channel_idx, pulse); in prepare_pixel_pulse() 348 nrf_timer_event_clear(dev_config->timer, NRF_TIMER_EVENT_COMPARE0); in timer_irq_handler() 411 nrf_timer_task_trigger(dev_config->timer, NRF_TIMER_TASK_START); in timer_irq_handler() 467 nrf_timer_event_address_get(dev_config->timer, in instance_init() 499 nrf_timer_bit_width_set(dev_config->timer, NRF_TIMER_BIT_WIDTH_16); in instance_init() [all …]
|
/Zephyr-latest/drivers/timer/ |
D | Kconfig.mtk_adsp | 5 bool "MediaTek Audio DSP timer" 10 MediaTek MT81xx Audio DSPs have a 13 Mhz wall clock timer
|
D | Kconfig.sy1xx_sys_timer | 5 bool "Sensry ganymed system timer" 10 This module implements a kernel device driver for the system timer
|
D | Kconfig.ite_it8xxx2 | 7 bool "ITE it8xxx2 timer driver" 13 HW timer model
|
D | Kconfig.smartbond | 5 bool "Renesas SmartBond(tm) timer" 12 This module implements a kernel device driver for the TIMER2 timer
|
D | Kconfig.native_posix | 7 bool "(POSIX) native_sim/posix timer driver" 14 This module implements a kernel device driver for the native_sim/posix HW timer
|
/Zephyr-latest/soc/nordic/nrf51/ |
D | Kconfig.defconfig | 12 # If the kernel has timer support, enable the timer
|
/Zephyr-latest/drivers/counter/ |
D | Kconfig.sam0 | 5 bool "SAM0 series 32-bit basic timer driver" 10 Enable the SAM0 series timer counter (TC) driver in 32-bit wide
|
/Zephyr-latest/samples/drivers/mbox/remote/boards/ |
D | mimxrt1160_evk_mimxrt1166_cm4.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 51 /* Disable primary GPT timer */
|
D | mimxrt1170_evk_mimxrt1176_cm4.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 51 /* Disable primary GPT timer */
|
D | mimxrt1170_evk_mimxrt1176_cm4_B.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 52 /* Disable primary GPT timer */
|
/Zephyr-latest/tests/boards/nrf/mram_latency/src/ |
D | main.c | 102 static void timeout(struct k_timer *timer) in timeout() argument 104 struct test_req *req = k_timer_user_data_get(timer); in timeout() 117 struct k_timer timer; in ZTEST() local 122 k_timer_init(&timer, timeout, NULL); in ZTEST() 123 k_timer_user_data_set(&timer, &req); in ZTEST() 125 k_timer_start(&timer, K_MSEC(1), K_NO_WAIT); in ZTEST()
|
/Zephyr-latest/tests/kernel/timer/timer_behavior/ |
D | Kconfig | 12 int "The number of timer samples to gather for statistics" 21 int "The number of microseconds to for the timer period" 35 int "Maximum drift percentage for the timer period" 36 # Use 13% on nRF platforms using the RTC timer because one tick there is 40 # of elapsed ticks when scheduling a new timeout but before the timer 64 int "Maximum timer period drift in PPM for tests using external tool"
|
/Zephyr-latest/subsys/net/lib/trickle/ |
D | trickle.c | 82 k_work_reschedule(&trickle->timer, K_MSEC(rand_time)); in double_interval_timeout() 103 k_work_reschedule(&trickle->timer, K_MSEC(diff)); in reschedule() 128 timer); in trickle_timeout() 147 k_work_reschedule(&trickle->timer, K_MSEC(t)); in setup_new_interval() 183 k_work_init_delayable(&trickle->timer, trickle_timeout); in net_trickle_create() 219 k_work_cancel_delayable(&trickle->timer); in net_trickle_stop()
|
/Zephyr-latest/tests/kernel/obj_tracking/src/ |
D | main.c | 9 void dummy_fn(struct k_timer *timer) in dummy_fn() argument 11 ARG_UNUSED(timer); in dummy_fn() 32 struct k_timer timer; in ZTEST() local 45 k_timer_init(&timer, dummy_fn, NULL); in ZTEST() 49 if (list == &timer || list == &timer_s) { in ZTEST()
|
/Zephyr-latest/dts/arm/gd/gd32a50x/ |
D | gd32a50x.dtsi | 283 timer0: timer@40012c00 { 284 compatible = "gd,gd32-timer"; 301 timer1: timer@40000000 { 302 compatible = "gd,gd32-timer"; 319 timer5: timer@40001000 { 320 compatible = "gd,gd32-timer"; 330 timer6: timer@40001400 { 331 compatible = "gd,gd32-timer"; 341 timer7: timer@40013400 { 342 compatible = "gd,gd32-timer"; [all …]
|
/Zephyr-latest/subsys/testsuite/ztest/src/ |
D | ztress.c | 20 static void ctrl_timeout(struct k_timer *timer); 24 static void progress_timeout(struct k_timer *timer); 28 static void ztress_timeout(struct k_timer *timer); 33 static void test_timeout(struct k_timer *timer); 64 static void test_timeout(struct k_timer *timer) in test_timeout() argument 81 static void progress_timeout(struct k_timer *timer) in progress_timeout() argument 83 struct ztress_context_data *thread_data = k_timer_user_data_get(timer); in progress_timeout() 167 static void ctrl_timeout(struct k_timer *timer) in ctrl_timeout() argument 226 static void ztress_timeout(struct k_timer *timer) in ztress_timeout() argument 228 struct ztress_context_data *context_data = k_timer_user_data_get(timer); in ztress_timeout() [all …]
|
/Zephyr-latest/samples/subsys/ipc/openamp/remote/boards/ |
D | mimxrt1170_evk_mimxrt1176_cm4_B.overlay | 19 /* Replace GPT2 with another GPT kernel timer */ 21 compatible = "nxp,gpt-hw-timer"; 46 /* Disable primary GPT timer */
|
/Zephyr-latest/samples/drivers/mbox_data/remote/boards/ |
D | mimxrt1160_evk_mimxrt1166_cm4.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 57 /* Disable primary GPT timer */
|
D | mimxrt1170_evk_mimxrt1176_cm4.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 57 /* Disable primary GPT timer */
|
D | mimxrt1170_evk_mimxrt1176_cm4_B.overlay | 22 /* Replace GPT2 with another GPT kernel timer */ 24 compatible = "nxp,gpt-hw-timer"; 57 /* Disable primary GPT timer */
|
/Zephyr-latest/tests/drivers/build_all/counter/boards/ |
D | arty_a7_designstart_fpga_cortex_m1.overlay | 9 compatible = "xlnx,xps-timer-1.00.a"; 17 xlnx,one-timer-only = <0x0>;
|
/Zephyr-latest/boards/snps/nsim/arc_classic/ |
D | nsim.dtsi | 25 compatible = "snps,arc-timer"; 31 compatible = "snps,arc-timer";
|