blob: 796e50c2de6824fd4ca35fad4418ba4104c5934a [file] [log] [blame]
/****************************************************************************
* arch/xtensa/src/esp32/esp32_freerun.c
*
* 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdbool.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/irq.h>
#include <nuttx/clock.h>
#include <nuttx/spinlock.h>
#include "esp32_clockconfig.h"
#include "esp32_freerun.h"
#ifdef CONFIG_ESP32_FREERUN
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define MAX_TIMERS 4
#define MAX_US_RESOLUTION 819
#define ESP32_TIMER_WIDTH 64
/****************************************************************************
* Private Data
****************************************************************************/
static spinlock_t g_lock; /* Device specific lock */
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: esp32_freerun_handler
*
* Description:
* Timer interrupt callback. When the freerun timer counter overflows,
* this interrupt will occur. We will just increment an overflow counter.
*
* Input Parameters:
* irq - IRQ associated to that interrupt
* arg - An opaque argument provided when the interrupt was registered
*
* Returned Value:
* OK
*
****************************************************************************/
#ifndef CONFIG_CLOCK_TIMEKEEPING
static int esp32_freerun_handler(int irq, void *context, void *arg)
{
struct esp32_freerun_s *freerun = (struct esp32_freerun_s *) arg;
DEBUGASSERT(freerun != NULL);
DEBUGASSERT(freerun->overflow < UINT64_MAX);
freerun->overflow++;
ESP32_TIM_SETALRM(freerun->tch, true); /* Re-enables the alarm */
ESP32_TIM_ACKINT(freerun->tch); /* Clear the Interrupt */
return OK;
}
#endif /* CONFIG_CLOCK_TIMEKEEPING */
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: esp32_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 esp32_freerun_initialize(struct esp32_freerun_s *freerun, int chan,
uint16_t resolution)
{
uint16_t pre;
int ret = OK;
tmrinfo("chan=%d resolution=%d usecs\n", chan, resolution);
DEBUGASSERT(freerun != NULL);
DEBUGASSERT(chan >= 0);
DEBUGASSERT(chan < MAX_TIMERS);
DEBUGASSERT(resolution > 0);
/* We can't have a resolution bigger than this.
* The ESP32 prescaler doesn't support.
* max resolution = (max prescaler * USEC_PER_SEC) / esp_clk_apb_freq()
*/
DEBUGASSERT(resolution <= MAX_US_RESOLUTION);
irqstate_t flags;
freerun->tch = esp32_tim_init(chan);
if (freerun->tch == NULL)
{
tmrerr("ERROR: Failed to allocate TIM %d\n", chan);
ret = -EBUSY;
}
else
{
/* Initialize the remaining fields in the state structure. */
freerun->chan = chan;
freerun->resolution = resolution;
freerun->max_timeout = (UINT64_C(1) << (ESP32_TIMER_WIDTH - 1));
/* Ensure timer is disabled.
* Change the prescaler divider with the timer enabled can lead to
* unpredictable results.
*/
ESP32_TIM_STOP(freerun->tch);
/* Calculate the suitable prescaler for a period
* for the requested resolution.
*/
pre = esp_clk_apb_freq() * resolution / USEC_PER_SEC;
/* Configure TIMER prescaler */
ESP32_TIM_SETPRE(freerun->tch, pre);
/* Configure TIMER mode */
ESP32_TIM_SETMODE(freerun->tch, ESP32_TIM_MODE_UP);
/* Clear TIMER counter value */
ESP32_TIM_CLEAR(freerun->tch);
/* Set the maximum timeout */
ESP32_TIM_SETALRVL(freerun->tch, freerun->max_timeout);
#ifndef CONFIG_CLOCK_TIMEKEEPING
/* Set the interrupt */
freerun->overflow = 0;
/* Enable autoreload */
ESP32_TIM_SETARLD(freerun->tch, true);
/* Enable TIMER alarm */
ESP32_TIM_SETALRM(freerun->tch, true);
/* Clear Interrupt Bits Status */
ESP32_TIM_ACKINT(freerun->tch);
/* Register the handler */
flags = spin_lock_irqsave(&g_lock);
ret = ESP32_TIM_SETISR(freerun->tch, esp32_freerun_handler, freerun);
spin_unlock_irqrestore(&g_lock, flags);
if (ret == OK)
{
ESP32_TIM_ENABLEINT(freerun->tch);
}
#endif
/* Finally, start the TIMER */
ESP32_TIM_START(freerun->tch);
}
return ret;
}
/****************************************************************************
* Name: esp32_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
* esp32_freerun_initialize();
* ts The location in which to return the time from the free-running
* timer.
*
* Returned Value:
* Zero (OK) is returned on success; a negated errno value is returned
* on failure.
*
****************************************************************************/
#ifndef CONFIG_CLOCK_TIMEKEEPING
int esp32_freerun_counter(struct esp32_freerun_s *freerun,
struct timespec *ts)
{
uint64_t usec;
uint64_t counter;
uint64_t verify;
uint32_t overflow;
uint32_t sec;
int pending;
irqstate_t flags;
DEBUGASSERT(freerun != NULL);
DEBUGASSERT(ts != NULL);
DEBUGASSERT(freerun->tch != NULL);
/* Temporarily disable the overflow counter. */
flags = spin_lock_irqsave(&g_lock);
overflow = freerun->overflow;
ESP32_TIM_GETCTR(freerun->tch, &counter);
pending = ESP32_TIM_CHECKINT(freerun->tch);
ESP32_TIM_GETCTR(freerun->tch, &verify);
/* If an interrupt was pending before we re-enabled interrupts,
* then the overflow needs to be incremented.
*/
if (pending)
{
ESP32_TIM_ACKINT(freerun->tch);
/* Increment the overflow count and use the value of the
* guaranteed to be AFTER the overflow occurred.
*/
overflow++;
counter = verify;
/* Update freerun overflow counter. */
freerun->overflow = overflow;
}
spin_unlock_irqrestore(&g_lock, flags);
tmrinfo("counter=%" PRIu64 " (%" PRIu64 ") overflow=%" PRIu32
", pending=%i\n",
counter, verify, overflow, pending);
usec = ((((uint64_t)overflow * freerun->max_timeout) + counter)
* freerun->resolution);
/* And return the value of the timer */
sec = (uint32_t)(usec / USEC_PER_SEC);
ts->tv_sec = sec;
ts->tv_nsec = (usec - (sec * USEC_PER_SEC)) * NSEC_PER_USEC;
tmrinfo("usec=%llu ts=(%" PRIu32 ", %" PRIu32 ")\n",
usec, (unsigned long)ts->tv_sec, (unsigned long)ts->tv_nsec);
return OK;
}
#endif /* CONFIG_CLOCK_TIMEKEEPING */
/****************************************************************************
* Name: esp32_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
* esp32_freerun_initialize();
*
* Returned Value:
* Zero (OK) is returned on success; a negated errno value is returned
* on failure.
*
****************************************************************************/
int esp32_freerun_uninitialize(struct esp32_freerun_s *freerun)
{
int ret;
DEBUGASSERT(freerun != NULL);
DEBUGASSERT(freerun->tch != NULL);
/* Stop timer */
ESP32_TIM_STOP(freerun->tch);
/* Disable int */
ESP32_TIM_DISABLEINT(freerun->tch);
/* Detach handler */
ret = ESP32_TIM_SETISR(freerun->tch, NULL, NULL);
/* Free the timer */
esp32_tim_deinit(freerun->tch);
freerun->tch = NULL;
return ret;
}
#endif /* CONFIG_ESP32_ONESHOT */