Zephyr API Documentation 4.4.0-rc1
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
counter.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Nordic Semiconductor ASA
3 * Copyright (c) 2016 Intel Corporation
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
13
14#ifndef ZEPHYR_INCLUDE_DRIVERS_COUNTER_H_
15#define ZEPHYR_INCLUDE_DRIVERS_COUNTER_H_
16
25
26#include <errno.h>
27
28#include <zephyr/types.h>
29#include <stddef.h>
30#include <zephyr/device.h>
31#include <zephyr/sys_clock.h>
32#include <stdbool.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
43
47#define COUNTER_CONFIG_INFO_COUNT_UP BIT(0)
48
50
56
63#define COUNTER_TOP_CFG_DONT_RESET BIT(0)
64
71#define COUNTER_TOP_CFG_RESET_WHEN_LATE BIT(1)
72
74
81
88#define COUNTER_ALARM_CFG_ABSOLUTE BIT(0)
89
96#define COUNTER_ALARM_CFG_EXPIRE_WHEN_LATE BIT(1)
97
99
107
112#define COUNTER_GUARD_PERIOD_LATE_TO_SET BIT(0)
113
115
123typedef void (*counter_alarm_callback_t)(const struct device *dev, uint8_t chan_id, uint32_t ticks,
124 void *user_data);
125
159
165typedef void (*counter_top_callback_t)(const struct device *dev, void *user_data);
166
187
194#ifdef CONFIG_COUNTER_64BITS_FREQ
196#else
198#endif
202#ifdef CONFIG_COUNTER_64BITS_TICKS
203 union {
204 uint64_t max_top_value_64;
205 struct {
206#ifdef CONFIG_BIG_ENDIAN
207 uint32_t reserved;
209#else
211 uint32_t reserved;
212#endif /* CONFIG_BIG_ENDIAN */
213 };
214 };
215#else
217#endif /* CONFIG_COUNTER_64BITS_TICKS */
228};
229
237typedef void (*counter_alarm_callback_64_t)(const struct device *dev, uint8_t chan_id,
238 uint64_t ticks, void *user_data);
239
273
294
299
301typedef int (*counter_api_start)(const struct device *dev);
303typedef int (*counter_api_stop)(const struct device *dev);
305typedef int (*counter_api_get_value)(const struct device *dev, uint32_t *ticks);
307typedef int (*counter_api_reset)(const struct device *dev);
309typedef int (*counter_api_set_value)(const struct device *dev, uint32_t ticks);
311typedef int (*counter_api_set_alarm)(const struct device *dev, uint8_t chan_id,
312 const struct counter_alarm_cfg *alarm_cfg);
314typedef int (*counter_api_cancel_alarm)(const struct device *dev, uint8_t chan_id);
316typedef int (*counter_api_set_top_value)(const struct device *dev,
317 const struct counter_top_cfg *cfg);
319typedef uint32_t (*counter_api_get_pending_int)(const struct device *dev);
321typedef uint32_t (*counter_api_get_top_value)(const struct device *dev);
325typedef int (*counter_api_set_guard_period)(const struct device *dev, uint32_t ticks,
328typedef uint32_t (*counter_api_get_freq)(const struct device *dev);
330typedef uint64_t (*counter_api_get_freq_64)(const struct device *dev);
331
333typedef int (*counter_api_get_value_64)(const struct device *dev, uint64_t *ticks);
335typedef int (*counter_api_set_value_64)(const struct device *dev, uint64_t ticks);
337typedef int (*counter_api_set_alarm_64)(const struct device *dev, uint8_t chan_id,
338 const struct counter_alarm_cfg_64 *alarm_cfg);
342typedef int (*counter_api_set_guard_period_64)(const struct device *dev, uint64_t ticks,
345typedef uint64_t (*counter_api_get_top_value_64)(const struct device *dev);
347typedef int (*counter_api_set_top_value_64)(const struct device *dev,
348 const struct counter_top_cfg_64 *cfg);
349
443
446
455__syscall bool counter_is_counting_up(const struct device *dev);
456
457static inline bool z_impl_counter_is_counting_up(const struct device *dev)
458{
459 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
460
461 return config->flags & COUNTER_CONFIG_INFO_COUNT_UP;
462}
463
471__syscall uint8_t counter_get_num_of_channels(const struct device *dev);
472
473static inline uint8_t z_impl_counter_get_num_of_channels(const struct device *dev)
474{
475 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
476
477 return config->channels;
478}
479
480__syscall uint32_t counter_get_frequency(const struct device *dev);
481
482#ifdef CONFIG_COUNTER_64BITS_FREQ
493static inline uint32_t z_impl_counter_get_frequency(const struct device *dev)
494{
495 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
496 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
497
498 if (api->get_freq) {
499 return api->get_freq(dev);
500 } else {
501 return config->freq > UINT32_MAX ? UINT32_MAX : (uint32_t)config->freq;
502 }
503}
504
505#else
506
515static inline uint32_t z_impl_counter_get_frequency(const struct device *dev)
516{
517 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
518 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
519
520 return api->get_freq ? api->get_freq(dev) : config->freq;
521}
522#endif
523
532__syscall uint64_t counter_get_frequency_64(const struct device *dev);
533
534static inline uint64_t z_impl_counter_get_frequency_64(const struct device *dev)
535{
536#ifdef CONFIG_COUNTER_64BITS_FREQ
537 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
538 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
539
540 if (api->get_freq_64) {
541 return api->get_freq_64(dev);
542 } else if (api->get_freq) {
543 return (uint64_t)api->get_freq(dev);
544 } else {
545 return config->freq;
546 }
547#else
548 ARG_UNUSED(dev);
549 return -ENOTSUP;
550#endif
551}
552
553#ifdef CONFIG_COUNTER_64BITS_FREQ
554#define z_counter_get_frequency z_impl_counter_get_frequency_64
555#else
556#define z_counter_get_frequency z_impl_counter_get_frequency
557#endif
558
567__syscall uint32_t counter_us_to_ticks(const struct device *dev, uint64_t us);
568
569static inline uint32_t z_impl_counter_us_to_ticks(const struct device *dev, uint64_t us)
570{
571 uint64_t ticks = (us * z_counter_get_frequency(dev)) / USEC_PER_SEC;
572
573 return (ticks > (uint64_t)UINT32_MAX) ? UINT32_MAX : ticks;
574}
575
584__syscall uint64_t counter_us_to_ticks_64(const struct device *dev, uint64_t us);
585
586static inline uint64_t z_impl_counter_us_to_ticks_64(const struct device *dev, uint64_t us)
587{
588 return (us * z_counter_get_frequency(dev)) / USEC_PER_SEC;
589}
590
599__syscall uint64_t counter_ticks_to_us(const struct device *dev, uint32_t ticks);
600
601static inline uint64_t z_impl_counter_ticks_to_us(const struct device *dev, uint32_t ticks)
602{
603 return ((uint64_t)ticks * USEC_PER_SEC) / z_counter_get_frequency(dev);
604}
605
614__syscall uint64_t counter_ticks_to_us_64(const struct device *dev, uint64_t ticks);
615
616static inline uint64_t z_impl_counter_ticks_to_us_64(const struct device *dev, uint64_t ticks)
617{
618 return (ticks * USEC_PER_SEC) / z_counter_get_frequency(dev);
619}
620
629__syscall uint32_t counter_ns_to_ticks(const struct device *dev, uint64_t ns);
630
631static inline uint32_t z_impl_counter_ns_to_ticks(const struct device *dev, uint64_t ns)
632{
633 uint64_t ticks = (ns * z_counter_get_frequency(dev)) / NSEC_PER_SEC;
634
635 return (ticks > (uint64_t)UINT32_MAX) ? UINT32_MAX : ticks;
636}
637
646__syscall uint64_t counter_ns_to_ticks_64(const struct device *dev, uint64_t ns);
647
648static inline uint64_t z_impl_counter_ns_to_ticks_64(const struct device *dev, uint64_t ns)
649{
650 return (ns * z_counter_get_frequency(dev)) / NSEC_PER_SEC;
651}
652
661__syscall uint64_t counter_ticks_to_ns(const struct device *dev, uint32_t ticks);
662
663static inline uint64_t z_impl_counter_ticks_to_ns(const struct device *dev, uint32_t ticks)
664{
665 return ((uint64_t)ticks * NSEC_PER_SEC) / z_counter_get_frequency(dev);
666}
667
676__syscall uint64_t counter_ticks_to_ns_64(const struct device *dev, uint64_t ticks);
677
678static inline uint64_t z_impl_counter_ticks_to_ns_64(const struct device *dev, uint64_t ticks)
679{
680 return (ticks * NSEC_PER_SEC) / z_counter_get_frequency(dev);
681}
682
694__syscall uint32_t counter_get_max_top_value(const struct device *dev);
695
696static inline uint32_t z_impl_counter_get_max_top_value(const struct device *dev)
697{
698 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
699
700 return config->max_top_value;
701}
702
711__syscall int counter_start(const struct device *dev);
712
713static inline int z_impl_counter_start(const struct device *dev)
714{
715 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
716
717 return api->start(dev);
718}
719
729__syscall int counter_stop(const struct device *dev);
730
731static inline int z_impl_counter_stop(const struct device *dev)
732{
733 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
734
735 return api->stop(dev);
736}
737
746__syscall int counter_get_value(const struct device *dev, uint32_t *ticks);
747
748static inline int z_impl_counter_get_value(const struct device *dev, uint32_t *ticks)
749{
750 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
751
752 return api->get_value(dev, ticks);
753}
754
762__syscall int counter_reset(const struct device *dev);
763
764static inline int z_impl_counter_reset(const struct device *dev)
765{
766 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
767
768 if (!api->reset) {
769 return -ENOSYS;
770 }
771
772 return api->reset(dev);
773}
774
783__syscall int counter_set_value(const struct device *dev, uint32_t ticks);
784
785static inline int z_impl_counter_set_value(const struct device *dev, uint32_t ticks)
786{
787 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
788
789 if (!api->set_value) {
790 return -ENOSYS;
791 }
792
793 return api->set_value(dev, ticks);
794}
795
816__syscall int counter_set_channel_alarm(const struct device *dev, uint8_t chan_id,
817 const struct counter_alarm_cfg *alarm_cfg);
818
819static inline int z_impl_counter_set_channel_alarm(const struct device *dev, uint8_t chan_id,
820 const struct counter_alarm_cfg *alarm_cfg)
821{
822 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
823
824 if (chan_id >= counter_get_num_of_channels(dev)) {
825 return -ENOTSUP;
826 }
827
828 return api->set_alarm(dev, chan_id, alarm_cfg);
829}
830
843__syscall int counter_cancel_channel_alarm(const struct device *dev, uint8_t chan_id);
844
845static inline int z_impl_counter_cancel_channel_alarm(const struct device *dev, uint8_t chan_id)
846{
847 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
848
849 if (chan_id >= counter_get_num_of_channels(dev)) {
850 return -ENOTSUP;
851 }
852
853 return api->cancel_alarm(dev, chan_id);
854}
855
884__syscall int counter_set_top_value(const struct device *dev, const struct counter_top_cfg *cfg);
885
886static inline int z_impl_counter_set_top_value(const struct device *dev,
887 const struct counter_top_cfg *cfg)
888{
889 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
890
891 if (cfg->ticks > counter_get_max_top_value(dev)) {
892 return -EINVAL;
893 }
894
895 return api->set_top_value(dev, cfg);
896}
897
911__syscall uint32_t counter_get_pending_int(const struct device *dev);
912
913static inline uint32_t z_impl_counter_get_pending_int(const struct device *dev)
914{
915 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
916
917 return api->get_pending_int(dev);
918}
919
927__syscall uint32_t counter_get_top_value(const struct device *dev);
928
929static inline uint32_t z_impl_counter_get_top_value(const struct device *dev)
930{
931 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
932
933 return api->get_top_value(dev);
934}
935
988__syscall int counter_set_guard_period(const struct device *dev, uint32_t ticks, uint32_t flags);
989
990static inline int z_impl_counter_set_guard_period(const struct device *dev, uint32_t ticks,
992{
993 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
994
995 if (!api->set_guard_period) {
996 return -ENOSYS;
997 }
998
999 return api->set_guard_period(dev, ticks, flags);
1000}
1001
1014
1015static inline uint32_t z_impl_counter_get_guard_period(const struct device *dev, uint32_t flags)
1016{
1017 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1018
1019 return (api->get_guard_period) ? api->get_guard_period(dev, flags) : 0;
1020}
1021
1029__syscall uint64_t counter_get_max_top_value_64(const struct device *dev);
1030
1031static inline uint64_t z_impl_counter_get_max_top_value_64(const struct device *dev)
1032{
1033#ifdef CONFIG_COUNTER_64BITS_TICKS
1034 const struct counter_config_info *config = (const struct counter_config_info *)dev->config;
1035
1036 return config->max_top_value_64;
1037#else
1038 ARG_UNUSED(dev);
1039 return -ENOTSUP;
1040#endif
1041}
1042
1067__syscall int counter_set_top_value_64(const struct device *dev,
1068 const struct counter_top_cfg_64 *cfg);
1069
1070static inline int z_impl_counter_set_top_value_64(const struct device *dev,
1071 const struct counter_top_cfg_64 *cfg)
1072{
1073#ifdef CONFIG_COUNTER_64BITS_TICKS
1074 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1075
1076 if (cfg->ticks > counter_get_max_top_value_64(dev)) {
1077 return -EINVAL;
1078 }
1079
1080 return api->set_top_value_64(dev, cfg);
1081#else
1082 ARG_UNUSED(dev);
1083 ARG_UNUSED(cfg);
1084 return -ENOTSUP;
1085#endif
1086}
1087
1108__syscall int counter_set_channel_alarm_64(const struct device *dev, uint8_t chan_id,
1109 const struct counter_alarm_cfg_64 *alarm_cfg);
1110
1111static inline int z_impl_counter_set_channel_alarm_64(const struct device *dev, uint8_t chan_id,
1112 const struct counter_alarm_cfg_64 *alarm_cfg)
1113{
1114#ifdef CONFIG_COUNTER_64BITS_TICKS
1115 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1116
1117 if (chan_id >= counter_get_num_of_channels(dev)) {
1118 return -ENOTSUP;
1119 }
1120
1121 return api->set_alarm_64(dev, chan_id, alarm_cfg);
1122#else
1123 ARG_UNUSED(dev);
1124 ARG_UNUSED(chan_id);
1125 ARG_UNUSED(alarm_cfg);
1126 return -ENOTSUP;
1127#endif
1128}
1129
1137__syscall uint64_t counter_get_top_value_64(const struct device *dev);
1138
1139static inline uint64_t z_impl_counter_get_top_value_64(const struct device *dev)
1140{
1141#ifdef CONFIG_COUNTER_64BITS_TICKS
1142 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1143
1144 return api->get_top_value_64(dev);
1145#else
1146 ARG_UNUSED(dev);
1147 return 0;
1148#endif
1149}
1150
1203__syscall int counter_set_guard_period_64(const struct device *dev, uint64_t ticks, uint32_t flags);
1204
1205static inline int z_impl_counter_set_guard_period_64(const struct device *dev, uint64_t ticks,
1207{
1208#ifdef CONFIG_COUNTER_64BITS_TICKS
1209 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1210
1211 if (!api->set_guard_period_64) {
1212 return -ENOSYS;
1213 }
1214
1215 return api->set_guard_period_64(dev, ticks, flags);
1216#else
1217 ARG_UNUSED(dev);
1218 ARG_UNUSED(ticks);
1219 ARG_UNUSED(flags);
1220 return -ENOTSUP;
1221#endif
1222}
1223
1236
1237static inline uint64_t z_impl_counter_get_guard_period_64(const struct device *dev, uint32_t flags)
1238{
1239#ifdef CONFIG_COUNTER_64BITS_TICKS
1240 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1241
1242 return (api->get_guard_period_64) ? api->get_guard_period_64(dev, flags) : 0;
1243#else
1244 ARG_UNUSED(dev);
1245 ARG_UNUSED(flags);
1246 return -ENOTSUP;
1247#endif
1248}
1249
1258__syscall int counter_get_value_64(const struct device *dev, uint64_t *ticks);
1259
1260static inline int z_impl_counter_get_value_64(const struct device *dev, uint64_t *ticks)
1261{
1262#ifdef CONFIG_COUNTER_64BITS_TICKS
1263 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1264
1265 if (!api->get_value_64) {
1266 return -ENOSYS;
1267 }
1268
1269 return api->get_value_64(dev, ticks);
1270#else
1271 ARG_UNUSED(dev);
1272 ARG_UNUSED(ticks);
1273 return -ENOTSUP;
1274#endif
1275}
1276
1285__syscall int counter_set_value_64(const struct device *dev, uint64_t ticks);
1286
1287static inline int z_impl_counter_set_value_64(const struct device *dev, uint64_t ticks)
1288{
1289#ifdef CONFIG_COUNTER_64BITS_TICKS
1290 const struct counter_driver_api *api = (struct counter_driver_api *)dev->api;
1291
1292 if (!api->set_value_64) {
1293 return -ENOSYS;
1294 }
1295
1296 return api->set_value_64(dev, ticks);
1297#else
1298 ARG_UNUSED(dev);
1299 ARG_UNUSED(ticks);
1300 return -ENOTSUP;
1301#endif
1302}
1303
1304#ifdef __cplusplus
1305}
1306#endif
1307
1311
1312#include <zephyr/syscalls/counter.h>
1313
1314#endif /* ZEPHYR_INCLUDE_DRIVERS_COUNTER_H_ */
System error numbers.
#define NSEC_PER_SEC
number of nanoseconds per second
Definition clock.h:113
#define USEC_PER_SEC
number of microseconds per second
Definition clock.h:110
uint32_t(* counter_api_get_top_value)(const struct device *dev)
Callback API to retrieve the current top value.
Definition counter.h:321
int(* counter_api_set_top_value_64)(const struct device *dev, const struct counter_top_cfg_64 *cfg)
Callback API to set the counter top value (64 bits).
Definition counter.h:347
uint64_t(* counter_api_get_top_value_64)(const struct device *dev)
Callback API to retrieve the current top value (64 bits).
Definition counter.h:345
int(* counter_api_set_value)(const struct device *dev, uint32_t ticks)
Callback API to set the current counter value.
Definition counter.h:309
int(* counter_api_stop)(const struct device *dev)
Callback API to stop the counter.
Definition counter.h:303
int(* counter_api_set_alarm_64)(const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg_64 *alarm_cfg)
Callback API to set a single shot alarm on a channel (64 bits).
Definition counter.h:337
int(* counter_api_set_guard_period_64)(const struct device *dev, uint64_t ticks, uint32_t flags)
Callback API to set the guard period in ticks (64 bits).
Definition counter.h:342
uint64_t(* counter_api_get_guard_period_64)(const struct device *dev, uint32_t flags)
Callback API to retrieve the guard period in ticks (64 bits).
Definition counter.h:340
int(* counter_api_set_guard_period)(const struct device *dev, uint32_t ticks, uint32_t flags)
Callback API to set the guard period in ticks.
Definition counter.h:325
uint64_t(* counter_api_get_freq_64)(const struct device *dev)
Callback API to get the counter frequency in Hz (64 bits).
Definition counter.h:330
int(* counter_api_set_value_64)(const struct device *dev, uint64_t ticks)
Callback API to set the current counter value (64 bits).
Definition counter.h:335
uint32_t(* counter_api_get_guard_period)(const struct device *dev, uint32_t flags)
Callback API to retrieve the guard period in ticks.
Definition counter.h:323
uint32_t(* counter_api_get_pending_int)(const struct device *dev)
Callback API to get pending counter interrupts.
Definition counter.h:319
uint32_t(* counter_api_get_freq)(const struct device *dev)
Callback API to get the counter frequency in Hz.
Definition counter.h:328
int(* counter_api_set_top_value)(const struct device *dev, const struct counter_top_cfg *cfg)
Callback API to set the counter top value.
Definition counter.h:316
int(* counter_api_reset)(const struct device *dev)
Callback API to reset the counter to the initial value.
Definition counter.h:307
int(* counter_api_start)(const struct device *dev)
Callback API to start the counter.
Definition counter.h:301
int(* counter_api_cancel_alarm)(const struct device *dev, uint8_t chan_id)
Callback API to cancel an alarm on a channel.
Definition counter.h:314
int(* counter_api_get_value_64)(const struct device *dev, uint64_t *ticks)
Callback API to get the current counter value (64 bits).
Definition counter.h:333
int(* counter_api_get_value)(const struct device *dev, uint32_t *ticks)
Callback API to get the current counter value.
Definition counter.h:305
int(* counter_api_set_alarm)(const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg *alarm_cfg)
Callback API to set a single shot alarm on a channel.
Definition counter.h:311
int counter_set_channel_alarm(const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg *alarm_cfg)
Set a single shot alarm on a channel.
uint8_t counter_get_num_of_channels(const struct device *dev)
Function to get number of alarm channels.
int counter_start(const struct device *dev)
Start counter device in free running mode.
uint32_t counter_get_top_value(const struct device *dev)
Function to retrieve current top value.
int counter_set_channel_alarm_64(const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg_64 *alarm_cfg)
Set a single shot alarm on a channel for 64 bits.
uint32_t counter_get_pending_int(const struct device *dev)
Function to get pending interrupts.
uint64_t counter_ticks_to_us_64(const struct device *dev, uint64_t ticks)
Function to convert ticks with 64 bits to microseconds.
int counter_reset(const struct device *dev)
Reset the counter to the initial value.
uint64_t counter_ns_to_ticks_64(const struct device *dev, uint64_t ns)
Function to convert nanoseconds to ticks with 64 bits.
int counter_set_top_value(const struct device *dev, const struct counter_top_cfg *cfg)
Set counter top value.
int counter_get_value_64(const struct device *dev, uint64_t *ticks)
Get current counter 64-bit value.
int counter_set_top_value_64(const struct device *dev, const struct counter_top_cfg_64 *cfg)
Set counter top value for 64 bits.
uint64_t counter_us_to_ticks_64(const struct device *dev, uint64_t us)
Function to convert microseconds to ticks with 64 bits.
void(* counter_top_callback_t)(const struct device *dev, void *user_data)
Callback called when counter turns around.
Definition counter.h:165
void(* counter_alarm_callback_t)(const struct device *dev, uint8_t chan_id, uint32_t ticks, void *user_data)
Alarm callback.
Definition counter.h:123
uint64_t counter_get_max_top_value_64(const struct device *dev)
Function to retrieve maximum top value that can be set for 64 bits.
uint64_t counter_get_guard_period_64(const struct device *dev, uint32_t flags)
Return guard period for 64 bits.
uint64_t counter_get_frequency_64(const struct device *dev)
Function to get counter frequency in 64bits.
void(* counter_alarm_callback_64_t)(const struct device *dev, uint8_t chan_id, uint64_t ticks, void *user_data)
Alarm callback.
Definition counter.h:237
uint64_t counter_ticks_to_ns_64(const struct device *dev, uint64_t ticks)
Function to convert ticks with 64 bits to nanoseconds.
uint32_t counter_get_guard_period(const struct device *dev, uint32_t flags)
Return guard period.
int counter_set_value(const struct device *dev, uint32_t ticks)
Set current counter value.
uint32_t counter_get_frequency(const struct device *dev)
int counter_get_value(const struct device *dev, uint32_t *ticks)
Get current counter value.
#define COUNTER_CONFIG_INFO_COUNT_UP
Counter count up flag.
Definition counter.h:47
int counter_set_value_64(const struct device *dev, uint64_t ticks)
Set current counter 64-bit value.
uint64_t counter_get_top_value_64(const struct device *dev)
Function to retrieve current top value for 64 bits.
uint64_t counter_ticks_to_us(const struct device *dev, uint32_t ticks)
Function to convert ticks to microseconds.
int counter_set_guard_period(const struct device *dev, uint32_t ticks, uint32_t flags)
Set guard period in counter ticks.
uint32_t counter_us_to_ticks(const struct device *dev, uint64_t us)
Function to convert microseconds to ticks.
bool counter_is_counting_up(const struct device *dev)
Function to check if counter is counting up.
int counter_set_guard_period_64(const struct device *dev, uint64_t ticks, uint32_t flags)
Set guard period in counter ticks for 64 bits.
uint64_t counter_ticks_to_ns(const struct device *dev, uint32_t ticks)
Function to convert ticks to nanoseconds.
int counter_cancel_channel_alarm(const struct device *dev, uint8_t chan_id)
Cancel an alarm on a channel.
uint32_t counter_ns_to_ticks(const struct device *dev, uint64_t ns)
Function to convert nanoseconds to ticks.
int counter_stop(const struct device *dev)
Stop counter device.
uint32_t counter_get_max_top_value(const struct device *dev)
Function to retrieve maximum top value that can be set.
#define EINVAL
Invalid argument.
Definition errno.h:60
#define ENOSYS
Function not implemented.
Definition errno.h:82
#define ENOTSUP
Unsupported value.
Definition errno.h:114
flags
Definition parser.h:97
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
#define UINT32_MAX
Definition stdint.h:29
Alarm callback structure.
Definition counter.h:242
void * user_data
User data returned in callback.
Definition counter.h:267
uint32_t flags
Alarm flags (see COUNTER_ALARM_FLAGS).
Definition counter.h:271
counter_alarm_callback_64_t callback
Callback called on alarm (cannot be NULL).
Definition counter.h:263
uint64_t ticks
Number of ticks that triggers the alarm.
Definition counter.h:259
Alarm callback structure.
Definition counter.h:128
uint32_t ticks
Number of ticks that triggers the alarm.
Definition counter.h:149
uint32_t flags
Alarm flags (see COUNTER_ALARM_FLAGS).
Definition counter.h:157
void * user_data
User data returned in callback.
Definition counter.h:153
counter_alarm_callback_t callback
Callback called on alarm (cannot be NULL).
Definition counter.h:132
Structure with generic counter features.
Definition counter.h:190
uint32_t max_top_value
Maximal (default) top value on which counter is reset (cleared or reloaded).
Definition counter.h:216
uint32_t freq
Frequency of the source clock if synchronous events are counted.
Definition counter.h:197
uint8_t flags
Flags (see COUNTER_FLAGS).
Definition counter.h:221
uint8_t channels
Number of channels that can be used for setting alarm.
Definition counter.h:227
<span class="mlabel">Driver Operations</span> Counter driver operations
Definition counter.h:353
counter_api_get_top_value get_top_value
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:393
counter_api_set_top_value set_top_value
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:385
counter_api_set_alarm set_alarm
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:377
counter_api_get_value get_value
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:365
counter_api_reset reset
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition counter.h:369
counter_api_get_pending_int get_pending_int
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:389
counter_api_stop stop
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:361
counter_api_set_guard_period set_guard_period
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition counter.h:401
counter_api_set_value set_value
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition counter.h:373
counter_api_start start
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:357
counter_api_get_guard_period get_guard_period
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition counter.h:397
counter_api_cancel_alarm cancel_alarm
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition counter.h:381
counter_api_get_freq get_freq
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition counter.h:405
Top value configuration structure.
Definition counter.h:276
void * user_data
User data passed to callback function (not valid if callback is NULL).
Definition counter.h:288
counter_top_callback_t callback
Callback function (can be NULL).
Definition counter.h:284
uint32_t flags
Flags (see COUNTER_TOP_FLAGS).
Definition counter.h:292
uint64_t ticks
Top value.
Definition counter.h:280
Top value configuration structure.
Definition counter.h:169
uint32_t ticks
Top value.
Definition counter.h:173
uint32_t flags
Flags (see COUNTER_TOP_FLAGS).
Definition counter.h:185
counter_top_callback_t callback
Callback function (can be NULL).
Definition counter.h:177
void * user_data
User data passed to callback function (not valid if callback is NULL).
Definition counter.h:181
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
const void * api
Address of the API structure exposed by the device instance.
Definition device.h:519
const void * config
Address of device instance config information.
Definition device.h:517