2020-08-14 13:47:08 +08:00
// Copyright 2017-2020 Espressif Systems (Shanghai) PTE LTD
2017-08-21 22:33:03 +08:00
//
// Licensed 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.
2020-08-14 13:47:08 +08:00
/**
* Some unit test cases need to have access to reliable timestamps even when CPU and APB clock frequencies change over time.
* This reference clock is built upon two peripherals: one RMT channel and one PCNT channel (hopefully we can have these two peripherals in all ESP chips).
2017-08-21 22:33:03 +08:00
*
2020-08-14 13:47:08 +08:00
* +---------------------+ 500KHz Square Wave +--------------------------+
* | RMT (channel 0, TX) +----------------------------------->+ PCNT (unit 0, channel 0) |
* +---------------------+ +--------------------------+
*
* RMT TX channel is configured to use a fixed clock (e.g. REF_TICK, XTAL) as clock source, so that our ref clock won't be affected during APB/CPU clock switch.
* Configure RMT channel to generate a 500KHz square wave (using carrier feature) to one GPIO.
* PCNT takes the input signal from the GPIO and counts the edges (which occur at 1MHz frequency).
* PCNT counter is only 16 bit wide, an interrupt is configured to trigger when the counter reaches 30000,
2017-08-21 22:33:03 +08:00
* incrementing a 32-bit millisecond counter maintained by software.
*/
2020-08-14 13:47:08 +08:00
# include "sdkconfig.h"
2017-08-21 22:33:03 +08:00
# include "test_utils.h"
2020-08-14 13:47:08 +08:00
# include "freertos/FreeRTOS.h"
# include "esp_intr_alloc.h"
# include "driver/periph_ctrl.h"
# include "soc/gpio_sig_map.h"
# include "soc/gpio_periph.h"
2020-02-09 20:03:31 +08:00
# include "hal/rmt_hal.h"
# include "hal/rmt_ll.h"
# include "hal/pcnt_hal.h"
2020-06-19 12:00:58 +08:00
# include "esp_rom_gpio.h"
2020-07-21 13:07:34 +08:00
# include "esp_rom_sys.h"
2017-08-21 22:33:03 +08:00
2020-08-14 13:47:08 +08:00
# define REF_CLOCK_RMT_CHANNEL 0 // RMT channel 0
# define REF_CLOCK_PCNT_UNIT 0 // PCNT unit 0 channel 0
# define REF_CLOCK_GPIO 21 // GPIO used to combine RMT out signal with PCNT input signal
2017-08-21 22:33:03 +08:00
2020-08-14 13:47:08 +08:00
# define REF_CLOCK_PRESCALER_MS 30 // PCNT high threshold interrupt fired every 30ms
2017-08-21 22:33:03 +08:00
2020-08-14 13:47:08 +08:00
static void IRAM_ATTR pcnt_isr ( void * arg ) ;
2017-08-21 22:33:03 +08:00
static intr_handle_t s_intr_handle ;
static portMUX_TYPE s_lock = portMUX_INITIALIZER_UNLOCKED ;
static volatile uint32_t s_milliseconds ;
2020-08-14 13:47:08 +08:00
static rmt_hal_context_t s_rmt_hal ;
static pcnt_hal_context_t s_pcnt_hal ;
2019-08-18 13:22:50 +08:00
2020-08-14 13:47:08 +08:00
void ref_clock_init ( void )
2017-08-21 22:33:03 +08:00
{
2020-08-14 13:47:08 +08:00
assert ( s_intr_handle = = NULL & & " ref clock already initialized " ) ;
2017-08-21 22:33:03 +08:00
// Route RMT output to GPIO matrix
2020-08-14 13:47:08 +08:00
esp_rom_gpio_connect_out_signal ( REF_CLOCK_GPIO , RMT_SIG_OUT0_IDX , false , false ) ;
2017-08-21 22:33:03 +08:00
// Initialize RMT
2017-10-02 17:48:16 +11:00
periph_module_enable ( PERIPH_RMT_MODULE ) ;
2020-08-14 13:47:08 +08:00
rmt_hal_init ( & s_rmt_hal ) ;
2017-08-21 22:33:03 +08:00
rmt_item32_t data = {
2020-08-14 13:47:08 +08:00
. duration0 = 1 ,
. level0 = 1 ,
. duration1 = 0 ,
. level1 = 0
2017-08-21 22:33:03 +08:00
} ;
2020-08-14 13:47:08 +08:00
rmt_ll_enable_drive_clock ( s_rmt_hal . regs , true ) ;
# if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
rmt_ll_set_counter_clock_src ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , 0 ) ; // select REF_TICK (1MHz)
# else
// TODO: configure RMT module clock source to fixed 1MHz
# endif
rmt_hal_set_counter_clock ( & s_rmt_hal , REF_CLOCK_RMT_CHANNEL , 1000000 , 1000000 ) ; // counter clock: 1MHz
rmt_ll_enable_tx_idle ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , true ) ; // enable idle output
rmt_ll_set_tx_idle_level ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , 1 ) ; // idle level: 1
rmt_ll_enable_carrier ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , true ) ;
# if !CONFIG_IDF_TARGET_ESP32
rmt_ll_tx_set_carrier_always_on ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , true ) ;
# endif
rmt_hal_set_carrier_clock ( & s_rmt_hal , REF_CLOCK_RMT_CHANNEL , 1000000 , 500000 , 0.5 ) ; // set carrier to 500KHz
rmt_ll_set_carrier_on_level ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , 1 ) ;
rmt_ll_enable_mem_access ( s_rmt_hal . regs , true ) ;
rmt_ll_reset_tx_pointer ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL ) ;
rmt_ll_set_mem_blocks ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , 1 ) ;
rmt_ll_write_memory ( s_rmt_hal . mem , REF_CLOCK_RMT_CHANNEL , & data , 1 , 0 ) ;
rmt_ll_enable_tx_loop ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , false ) ;
rmt_ll_start_tx ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL ) ;
2017-08-21 22:33:03 +08:00
// Route signal to PCNT
2020-08-14 13:47:08 +08:00
esp_rom_gpio_connect_in_signal ( REF_CLOCK_GPIO , PCNT_SIG_CH0_IN0_IDX , false ) ;
2017-08-21 22:33:03 +08:00
if ( REF_CLOCK_GPIO ! = 20 ) {
PIN_INPUT_ENABLE ( GPIO_PIN_MUX_REG [ REF_CLOCK_GPIO ] ) ;
} else {
PIN_INPUT_ENABLE ( PERIPHS_IO_MUX_GPIO20_U ) ;
}
// Initialize PCNT
2017-10-02 17:48:16 +11:00
periph_module_enable ( PERIPH_PCNT_MODULE ) ;
2020-08-14 13:47:08 +08:00
pcnt_hal_init ( & s_pcnt_hal , REF_CLOCK_PCNT_UNIT ) ;
pcnt_ll_set_mode ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_CHANNEL_0 ,
PCNT_COUNT_INC , PCNT_COUNT_INC ,
PCNT_MODE_KEEP , PCNT_MODE_KEEP ) ;
pcnt_ll_event_disable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_L_LIM ) ;
pcnt_ll_event_enable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_H_LIM ) ;
pcnt_ll_event_disable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_ZERO ) ;
pcnt_ll_event_disable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_THRES_0 ) ;
pcnt_ll_event_disable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_THRES_1 ) ;
pcnt_ll_set_event_value ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , PCNT_EVT_H_LIM , REF_CLOCK_PRESCALER_MS * 1000 ) ;
2017-08-21 22:33:03 +08:00
// Enable PCNT and wait for it to start counting
2020-08-14 13:47:08 +08:00
pcnt_ll_counter_resume ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT ) ;
pcnt_ll_counter_clear ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT ) ;
2017-08-21 22:33:03 +08:00
2020-07-21 13:07:34 +08:00
esp_rom_delay_us ( 10000 ) ;
2019-02-22 21:27:43 +08:00
2017-08-21 22:33:03 +08:00
// Enable interrupt
s_milliseconds = 0 ;
ESP_ERROR_CHECK ( esp_intr_alloc ( ETS_PCNT_INTR_SOURCE , ESP_INTR_FLAG_IRAM , pcnt_isr , NULL , & s_intr_handle ) ) ;
2020-08-14 13:47:08 +08:00
pcnt_ll_clear_intr_status ( s_pcnt_hal . dev , BIT ( REF_CLOCK_PCNT_UNIT ) ) ;
pcnt_ll_intr_enable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT ) ;
2017-08-21 22:33:03 +08:00
}
2020-08-14 13:47:08 +08:00
static void IRAM_ATTR pcnt_isr ( void * arg )
2017-08-21 22:33:03 +08:00
{
2019-03-25 16:14:09 +05:30
portENTER_CRITICAL_ISR ( & s_lock ) ;
2020-08-14 13:47:08 +08:00
pcnt_ll_clear_intr_status ( s_pcnt_hal . dev , BIT ( REF_CLOCK_PCNT_UNIT ) ) ;
2017-08-21 22:33:03 +08:00
s_milliseconds + = REF_CLOCK_PRESCALER_MS ;
2019-03-25 16:14:09 +05:30
portEXIT_CRITICAL_ISR ( & s_lock ) ;
2017-08-21 22:33:03 +08:00
}
2019-08-18 13:22:50 +08:00
void ref_clock_deinit ( )
2017-08-21 22:33:03 +08:00
{
2020-08-14 13:47:08 +08:00
assert ( s_intr_handle & & " ref clock deinit called without init " ) ;
2017-08-21 22:33:03 +08:00
// Disable interrupt
2020-08-14 13:47:08 +08:00
pcnt_ll_intr_disable ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT ) ;
2017-08-21 22:33:03 +08:00
esp_intr_free ( s_intr_handle ) ;
s_intr_handle = NULL ;
// Disable RMT
2020-08-14 13:47:08 +08:00
rmt_ll_enable_carrier ( s_rmt_hal . regs , REF_CLOCK_RMT_CHANNEL , false ) ;
2017-10-02 17:48:16 +11:00
periph_module_disable ( PERIPH_RMT_MODULE ) ;
2017-08-21 22:33:03 +08:00
// Disable PCNT
2020-08-14 13:47:08 +08:00
pcnt_ll_counter_pause ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT ) ;
2017-10-02 17:48:16 +11:00
periph_module_disable ( PERIPH_PCNT_MODULE ) ;
2017-08-21 22:33:03 +08:00
}
2019-08-18 13:22:50 +08:00
uint64_t ref_clock_get ( )
2017-08-21 22:33:03 +08:00
{
portENTER_CRITICAL ( & s_lock ) ;
2020-02-09 20:03:31 +08:00
int16_t microseconds = 0 ;
2020-08-14 13:47:08 +08:00
pcnt_ll_get_counter_value ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , & microseconds ) ;
2017-08-21 22:33:03 +08:00
uint32_t milliseconds = s_milliseconds ;
2020-02-09 20:03:31 +08:00
uint32_t intr_status = 0 ;
2020-08-14 13:47:08 +08:00
pcnt_ll_get_intr_status ( s_pcnt_hal . dev , & intr_status ) ;
2020-02-09 20:03:31 +08:00
if ( intr_status & BIT ( REF_CLOCK_PCNT_UNIT ) ) {
2017-09-08 01:33:20 +08:00
// refresh counter value, in case the overflow has happened after reading cnt_val
2020-08-14 13:47:08 +08:00
pcnt_ll_get_counter_value ( s_pcnt_hal . dev , REF_CLOCK_PCNT_UNIT , & microseconds ) ;
2017-08-21 22:33:03 +08:00
milliseconds + = REF_CLOCK_PRESCALER_MS ;
}
portEXIT_CRITICAL ( & s_lock ) ;
2020-08-14 13:47:08 +08:00
return 1000 * ( uint64_t ) milliseconds + ( uint64_t ) microseconds ;
2017-08-21 22:33:03 +08:00
}