2015-12-02 14:18:25 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/src/samv7/sam_tc.h
|
|
|
|
*
|
2021-03-24 09:34:53 +01:00
|
|
|
* 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
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
2021-03-24 09:34:53 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
2021-03-24 09:34:53 +01:00
|
|
|
* 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.
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_SRC_SAMV7_SAM_TC_H
|
|
|
|
#define __ARCH_ARM_SRC_SAMV7_SAM_TC_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include "chip.h"
|
2019-05-25 16:17:40 +02:00
|
|
|
#include "hardware/sam_tc.h"
|
2015-12-02 14:18:25 +01:00
|
|
|
|
|
|
|
#if defined(CONFIG_SAMV7_TC0) || defined(CONFIG_SAMV7_TC1) || \
|
|
|
|
defined(CONFIG_SAMV7_TC2) || defined(CONFIG_SAMV7_TC3)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* The timer/counter and channel arguments to sam_tc_allocate() */
|
|
|
|
|
|
|
|
#define TC_CHAN0 0 /* TC0 */
|
|
|
|
#define TC_CHAN1 1
|
|
|
|
#define TC_CHAN2 2
|
|
|
|
#define TC_CHAN3 3 /* TC1 */
|
|
|
|
#define TC_CHAN4 4
|
|
|
|
#define TC_CHAN5 5
|
|
|
|
#define TC_CHAN6 6 /* TC2 */
|
|
|
|
#define TC_CHAN7 7
|
|
|
|
#define TC_CHAN8 8
|
2022-01-03 14:01:47 +01:00
|
|
|
#define TC_CHAN9 9 /* TC3 */
|
|
|
|
#define TC_CHAN10 10
|
|
|
|
#define TC_CHAN11 11
|
2015-12-02 14:18:25 +01:00
|
|
|
|
|
|
|
/* Register identifier used with sam_tc_setregister */
|
|
|
|
|
|
|
|
#define TC_REGA 0
|
|
|
|
#define TC_REGB 1
|
|
|
|
#define TC_REGC 2
|
|
|
|
|
|
|
|
/* Timer debug is enabled if any timer client is enabled */
|
|
|
|
|
2016-06-16 15:16:25 +02:00
|
|
|
#ifndef CONFIG_DEBUG_TIMER_INFO
|
2015-12-02 14:18:25 +01:00
|
|
|
# undef CONFIG_SAMV7_TC_REGDEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CONFIG_SAMV7_TC_DEBUG) && defined(CONFIG_SAMV7_ADC) && defined(CONFIG_DEBUG_ANALOG)
|
|
|
|
# define CONFIG_SAMV7_TC_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
2021-03-24 09:35:15 +01:00
|
|
|
|
2015-12-02 14:18:25 +01:00
|
|
|
/* An opaque handle used to represent a timer channel */
|
|
|
|
|
|
|
|
typedef void *TC_HANDLE;
|
|
|
|
|
|
|
|
/* Timer interrupt callback. When a timer interrupt expires, the client will
|
|
|
|
* receive:
|
|
|
|
*
|
|
|
|
* tch - The handle that represents the timer state
|
|
|
|
* arg - An opaque argument provided when the interrupt was registered
|
|
|
|
* sr - The value of the timer interrupt status register at the time
|
|
|
|
* that the interrupt occurred.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef void (*tc_handler_t)(TC_HANDLE tch, void *arg, uint32_t sr);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_allocate
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configures a Timer Counter to operate in the given mode. The timer is
|
|
|
|
* stopped after configuration and must be restarted with sam_tc_start().
|
|
|
|
* All the interrupts of the timer are also disabled.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* channel TC channel number (see TC_CHANx definitions)
|
|
|
|
* mode Operating mode (TC_CMR value).
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* On success, a non-NULL handle value is returned. This handle may be
|
|
|
|
* used with subsequent timer/counter interfaces to manage the timer. A
|
|
|
|
* NULL handle value is returned on a failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
TC_HANDLE sam_tc_allocate(int channel, int mode);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_free
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Release the handle previously allocated by sam_tc_allocate().
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void sam_tc_free(TC_HANDLE handle);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_start
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Reset and Start the TC Channel. Enables the timer clock and performs a
|
|
|
|
* software reset to start the counting.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void sam_tc_start(TC_HANDLE handle);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_stop
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Stop TC Channel. Disables the timer clock, stopping the counting.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void sam_tc_stop(TC_HANDLE handle);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_attach/sam_tc_detach
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Attach or detach an interrupt handler to the timer interrupt. The
|
|
|
|
* interrupt is detached if the handler argument is NULL.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle The handle that represents the timer state
|
|
|
|
* handler The interrupt handler that will be invoked when the interrupt
|
|
|
|
* condition occurs
|
|
|
|
* arg An opaque argument that will be provided when the interrupt
|
|
|
|
* handler callback is executed. Ignored if handler is NULL.
|
|
|
|
* mask The value of the timer interrupt mask register that defines
|
2022-01-13 14:24:00 +01:00
|
|
|
* which interrupts should be enabled. Ignored if handler is
|
2015-12-02 14:18:25 +01:00
|
|
|
* NULL.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The address of the previous handler, if any.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
tc_handler_t sam_tc_attach(TC_HANDLE handle, tc_handler_t handler,
|
|
|
|
void *arg, uint32_t mask);
|
|
|
|
|
|
|
|
#define sam_tc_detach(h) sam_tc_attach(h, NULL, NULL, 0)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_getpending
|
|
|
|
*
|
|
|
|
* Description:
|
2022-01-03 14:01:47 +01:00
|
|
|
* Return the current contents of the interrupt status register, clearing
|
2015-12-02 14:18:25 +01:00
|
|
|
* all pending interrupts.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle The handle that represents the timer state
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The value of the channel interrupt status register.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
uint32_t sam_tc_getpending(TC_HANDLE handle);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_setregister
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set TC_REGA, TC_REGB, or TC_REGC register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
* regid One of {TC_REGA, TC_REGB, or TC_REGC}
|
|
|
|
* regval Then value to set in the register
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-13 14:24:00 +01:00
|
|
|
void sam_tc_setregister(TC_HANDLE handle, int regid, uint16_t regval);
|
2015-12-02 14:18:25 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_getregister
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Get the current value of the TC_REGA, TC_REGB, or TC_REGC register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
* regid One of {TC_REGA, TC_REGB, or TC_REGC}
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The value of the specified register.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-13 14:24:00 +01:00
|
|
|
uint16_t sam_tc_getregister(TC_HANDLE handle, int regid);
|
2015-12-02 14:18:25 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_getcounter
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the current value of the timer counter register
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The current value of the timer counter register for this channel.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-03 14:01:47 +01:00
|
|
|
uint16_t sam_tc_getcounter(TC_HANDLE handle);
|
2015-12-02 14:18:25 +01:00
|
|
|
|
2022-01-13 14:24:00 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_setblockmode
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set the value of TC_BMR register
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
* regval Then value to set in the register
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void sam_tc_setblockmode(TC_HANDLE handle, uint32_t regval);
|
|
|
|
|
2015-12-02 14:18:25 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_tc_divfreq
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the divided timer input frequency that is currently driving the
|
|
|
|
* the timer counter.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* handle Channel handle previously allocated by sam_tc_allocate()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The timer counter frequency.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
uint32_t sam_tc_divfreq(TC_HANDLE handle);
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-12-04 17:49:20 +01:00
|
|
|
* Name: sam_tc_clockselect
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2016-08-17 20:34:54 +02:00
|
|
|
* Finds the best MCK divisor given the timer frequency and MCK. The
|
|
|
|
* result is guaranteed to satisfy the following equation:
|
|
|
|
*
|
|
|
|
* (Ftcin / (div * 65536)) <= freq <= (Ftcin / div)
|
|
|
|
*
|
|
|
|
* where:
|
|
|
|
* freq - the desired frequency
|
|
|
|
* Ftcin - The timer/counter input frequency
|
|
|
|
* div - With DIV being the highest possible value.
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2016-08-17 20:34:54 +02:00
|
|
|
* frequency Desired timer frequency.
|
|
|
|
* tcclks TCCLKS field value for divisor.
|
2020-02-23 09:50:23 +01:00
|
|
|
* actual The actual frequency of the MCK
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2016-08-17 20:34:54 +02:00
|
|
|
* Zero (OK) if a proper divisor has been found, otherwise a negated errno
|
|
|
|
* value indicating the nature of the failure.
|
2015-12-02 14:18:25 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-08-17 20:34:54 +02:00
|
|
|
int sam_tc_clockselect(uint32_t frequency, uint32_t *tcclks,
|
|
|
|
uint32_t *actual);
|
2015-12-02 14:18:25 +01:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_SAMV7_TC0 || CONFIG_SAMV7_TC1 || CONFIG_SAMV7_TC2 || CONFIG_SAMV7_TC3 */
|
|
|
|
#endif /* __ARCH_ARM_SRC_SAMV7_SAM_TC_H */
|