176 lines
6.1 KiB
C
176 lines
6.1 KiB
C
/****************************************************************************
|
|
* arch/arm/src/stm32/stm32_freerun.h
|
|
*
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM_SRC_STM32_FREERUN_H
|
|
#define __ARCH_ARM_SRC_STM32_FREERUN_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
#include <debug.h>
|
|
|
|
#include "stm32_tim.h"
|
|
|
|
#ifdef CONFIG_STM32_FREERUN
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
/* The freerun client must allocate an instance of this structure and called
|
|
* stm32_freerun_initialize() before using the freerun facilities. The client
|
|
* should not access the contents of this structure directly since the
|
|
* contents are subject to change.
|
|
*/
|
|
|
|
struct stm32_freerun_s
|
|
{
|
|
uint8_t chan; /* The timer/counter in use */
|
|
uint8_t width; /* Width of timer (16- or 32-bits) */
|
|
bool running; /* True: the timer is running */
|
|
FAR struct stm32_tim_dev_s *tch; /* Handle returned by stm32_tim_init() */
|
|
uint32_t frequency;
|
|
|
|
#ifndef CONFIG_CLOCK_TIMEKEEPING
|
|
uint32_t overflow; /* Timer counter overflow */
|
|
#endif
|
|
|
|
#ifdef CONFIG_CLOCK_TIMEKEEPING
|
|
uint64_t counter_mask;
|
|
#endif
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
#undef EXTERN
|
|
#if defined(__cplusplus)
|
|
#define EXTERN extern "C"
|
|
extern "C"
|
|
{
|
|
#else
|
|
#define EXTERN extern
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_freerun_initialize
|
|
*
|
|
* Description:
|
|
* Initialize the freerun timer wrapper
|
|
*
|
|
* Input Parameters:
|
|
* freerun Caller allocated instance of the freerun state structure
|
|
* chan Timer counter channel to be used.
|
|
* resolution The required resolution of the timer in units of
|
|
* microseconds. NOTE that the range is restricted to the
|
|
* range of uint16_t (excluding zero).
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned
|
|
* on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int stm32_freerun_initialize(struct stm32_freerun_s *freerun, int chan,
|
|
uint16_t resolution);
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_freerun_counter
|
|
*
|
|
* Description:
|
|
* Read the counter register of the free-running timer.
|
|
*
|
|
* Input Parameters:
|
|
* freerun Caller allocated instance of the freerun state structure. This
|
|
* structure must have been previously initialized via a call to
|
|
* stm32_freerun_initialize();
|
|
* ts The location in which to return the time remaining on the
|
|
* oneshot timer.
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned
|
|
* on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef CONFIG_CLOCK_TIMEKEEPING
|
|
|
|
int stm32_freerun_counter(struct stm32_freerun_s *freerun,
|
|
struct timespec *ts);
|
|
|
|
#else /* CONFIG_CLOCK_TIMEKEEPING */
|
|
|
|
int stm32_freerun_counter(struct stm32_freerun_s *freerun,
|
|
uint64_t *counter);
|
|
|
|
#endif /* CONFIG_CLOCK_TIMEKEEPING */
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_freerun_uninitialize
|
|
*
|
|
* Description:
|
|
* Stop the free-running timer and release all resources that it uses.
|
|
*
|
|
* Input Parameters:
|
|
* freerun Caller allocated instance of the freerun state structure. This
|
|
* structure must have been previously initialized via a call to
|
|
* stm32_freerun_initialize();
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned
|
|
* on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int stm32_freerun_uninitialize(struct stm32_freerun_s *freerun);
|
|
|
|
#undef EXTERN
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CONFIG_STM32_FREERUN */
|
|
#endif /* __ARCH_ARM_SRC_STM32_FREERUN_H */
|