ref: 0.13.0
src/libs/mynewt-nimble/porting/nimble/src/os_cputime.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ #include <string.h> #include <stdint.h> #include <assert.h> #include "syscfg/syscfg.h" #include "os/os_cputime.h" #include "hal/hal_timer.h" #if defined(OS_CPUTIME_FREQ_HIGH) struct os_cputime_data g_os_cputime; #endif int os_cputime_init(uint32_t clock_freq) { int rc; /* Set the ticks per microsecond. */ #if defined(OS_CPUTIME_FREQ_HIGH) g_os_cputime.ticks_per_usec = clock_freq / 1000000U; #endif rc = hal_timer_config(MYNEWT_VAL(OS_CPUTIME_TIMER_NUM), clock_freq); return rc; } /** * Wait until the number of ticks has elapsed. This is a blocking delay. * * @param ticks The number of ticks to wait. */ void os_cputime_delay_ticks(uint32_t ticks) { uint32_t until; until = os_cputime_get32() + ticks; while ((int32_t)(os_cputime_get32() - until) < 0) { /* Loop here till finished */ } } #if !defined(OS_CPUTIME_FREQ_PWR2) void os_cputime_delay_nsecs(uint32_t nsecs) { uint32_t ticks; ticks = os_cputime_nsecs_to_ticks(nsecs); os_cputime_delay_ticks(ticks); } #endif void os_cputime_delay_usecs(uint32_t usecs) { uint32_t ticks; ticks = os_cputime_usecs_to_ticks(usecs); os_cputime_delay_ticks(ticks); } void os_cputime_timer_init(struct hal_timer *timer, hal_timer_cb fp, void *arg) { assert(timer != NULL); assert(fp != NULL); hal_timer_set_cb(MYNEWT_VAL(OS_CPUTIME_TIMER_NUM), timer, fp, arg); } int os_cputime_timer_start(struct hal_timer *timer, uint32_t cputime) { int rc; rc = hal_timer_start_at(timer, cputime); return rc; } int os_cputime_timer_relative(struct hal_timer *timer, uint32_t usecs) { int rc; uint32_t cputime; assert(timer != NULL); cputime = os_cputime_get32() + os_cputime_usecs_to_ticks(usecs); rc = hal_timer_start_at(timer, cputime); return rc; } void os_cputime_timer_stop(struct hal_timer *timer) { hal_timer_stop(timer); } uint32_t os_cputime_get32(void) { uint32_t cpu_time; cpu_time = hal_timer_read(MYNEWT_VAL(OS_CPUTIME_TIMER_NUM)); return cpu_time; } |