AM263Px MCU+ SDK  10.01.00
VTM

The Voltage and Thermal Management (VTM) controls the temperature monitors in the die. The VTM provides interrupt and event generation for overtemperature through the Error Signaling Module (ESM). It supports 3 different alerts:

  • an early alert so that firmware/software can start doing high-temperature thermal management,
  • a follow-up interrupt for reporting to firmware/software that the temperature has dropped to a safe level,
  • and a late interrupt whose high level can be used to trigger a hardware-voltage domain reset

SDL supports configuration of the VTM voltage domain and temperature warning. The 3 different alerts are also supported via the SDL ESM Handler, like all other ESM events. The SDL API can also be used to configure the VTM Maximum temperature threshold.

The VTM module provides the following functionality for the application

  • Ability to initialize VTM
  • Ability to check the status of the temperature sensor based on alert temperature
  • Ability to clear and contorl the VTM event inerrupts

SysConfig Features

  • None

Features NOT Supported

  • None

Important Usage Guidelines

  • None

Example Usage

The following shows an example of SDL VTM API usage by the application to set up the VTM for monitoring for events. Events can be monitored by enabling the events in the associated ESM instance.

Configure the VTM Thresholds and enable events

int32_t retValue;
uint32_t temp0, temp1, temp2, temp3;
int32_t alert_th_hot, alert_th_cold;
SDL_VTM_Stat_val SDL_VTM_Stat_value;
void (*pTSenseHInterruptHandler)(void *);
void (*pTSenseLInterruptHandler)(void *);
SDL_DPL_HwipParams intrParams;
pSDL_DPL_HwipHandle SDL_TS_HiHwiPHandle, SDL_TS_LoHwiPHandle;
/* Register Interrupt Handlers */
pTSenseHInterruptHandler = &SDL_TS_hiInterruptHandler;
pTSenseLInterruptHandler = &SDL_TS_loInterruptHandler;
intrParams.intNum = SDL_R5FSS0_CORE0_INTR_TSENSE_H;
intrParams.callback = (*pTSenseHInterruptHandler);
SDL_DPL_registerInterrupt(&intrParams, &SDL_TS_HiHwiPHandle);
intrParams.intNum = SDL_R5FSS0_CORE0_INTR_TSENSE_L;
intrParams.callback = (*pTSenseLInterruptHandler);
SDL_DPL_registerInterrupt(&intrParams, &SDL_TS_LoHwiPHandle);
/* Enable Interrupts */
SDL_DPL_enableInterrupt(SDL_R5FSS0_CORE0_INTR_TSENSE_H);
SDL_DPL_enableInterrupt(SDL_R5FSS0_CORE0_INTR_TSENSE_L);
/* UC1 - Receive Hot and Cold Interrupt. */
DebugP_log("\r\n UC1 : ");
alert_th_hot = 58000; // temperatube in mc
alert_th_cold = 72000; // temperatube in mc
/* Device temperature is 0x40 => 70000mc */
SDL_VTM_setAlertTemp(SDL_VTM_INSTANCE_TS_0, alert_th_hot, alert_th_cold);
retValue = SDL_VTM_initTs(&SDL_VTM_configTempSense);
SDL_VTM_getSensorStatus(&SDL_VTM_Stat_value);

Convert from Temperature to ADC Code

int32_t temp_val = 64000; // temperature in milli degrees Celsius
SDL_VTM_tsConvTempToAdc(temp_val, &adc_code);

Convert from ADC Code to Temperature

SDL_VTM_adc_code adc_code = 50;
int32_t temp_val; // temperature in milli degrees Celsius
SDL_VTM_tsConvAdcToTemp(adc_code, &temp_val);

Get Current Temperature Value

uint32_t temp0;
/* Get current temperature value */

Acknowledge and Disable an interrupt

API

APIs for VTM

SDL_VTM_INSTANCE_TS_3
@ SDL_VTM_INSTANCE_TS_3
Definition: sdl_soc_vtm.h:62
SDL_VTM_MASK_COLD
#define SDL_VTM_MASK_COLD
Definition: sdl_ip_vtm.h:127
SDL_VTM_MASK_HOT
#define SDL_VTM_MASK_HOT
Definition: sdl_ip_vtm.h:128
SDL_VTM_INSTANCE_TS_1
@ SDL_VTM_INSTANCE_TS_1
Definition: sdl_soc_vtm.h:58
SDL_VTM_enableTs
void SDL_VTM_enableTs(uint32_t sensorSelect, uint8_t delay)
Enable Required Temperature sensors.
SDL_VTM_INSTANCE_TS_2
@ SDL_VTM_INSTANCE_TS_2
Definition: sdl_soc_vtm.h:60
SDL_DPL_HwipParams
This structure contains the parameters for interrupt registration through the SDL DPL interface.
Definition: sdl_dpl.h:70
DebugP_log
#define DebugP_log(format,...)
Function to log a string to the enabled console.
Definition: DebugP.h:225
SDL_VTM_initTs
int32_t SDL_VTM_initTs(const SDL_VTM_configTs *pConfig)
VTM Temperature sensor initialization.
SDL_VTM_setClearInterrupts
int32_t SDL_VTM_setClearInterrupts(SDL_VTM_InstTs instance, uint8_t hotintr, uint8_t coldintr, uint8_t lowthresholdintr)
API to set/Clear masks for generating interrupts.
SDL_DPL_HwipParams::intNum
int32_t intNum
Definition: sdl_dpl.h:71
SDL_VTM_enableTc
void SDL_VTM_enableTc(void)
Enable Temperature Controller.
SDL_DPL_enableInterrupt
int32_t SDL_DPL_enableInterrupt(int32_t intNum)
DPL enable interrupt.
SDL_VTM_INSTANCE_TS_0
@ SDL_VTM_INSTANCE_TS_0
Definition: sdl_soc_vtm.h:56
SDL_VTM_tsConvTempToAdc
int32_t SDL_VTM_tsConvTempToAdc(int32_t milliDegreeTempVal, SDL_VTM_adc_code *pAdcCode)
VTM Temperature to ADC code conversion.
SDL_DPL_HwipParams::callback
pSDL_DPL_InterruptCallbackFunction callback
Definition: sdl_dpl.h:73
SDL_VTM_adc_code
int16_t SDL_VTM_adc_code
This typedef for VTM temperature sensor ADC code This is the data_out value of the temperature sensor...
Definition: sdl_ip_vtm.h:153
SDL_VTM_MASK_LOW_TH
#define SDL_VTM_MASK_LOW_TH
Definition: sdl_ip_vtm.h:126
SDL_DPL_registerInterrupt
int32_t SDL_DPL_registerInterrupt(SDL_DPL_HwipParams *pParams, pSDL_DPL_HwipHandle *handle)
DPL register interrupt.
SDL_VTM_SENSOR_SEL0
#define SDL_VTM_SENSOR_SEL0
Definition: sdl_ip_vtm.h:109
SDL_VTM_getSensorStatus
int32_t SDL_VTM_getSensorStatus(SDL_VTM_Stat_val *pStat_val)
Read VTM Temperature sensor status.
pSDL_DPL_HwipHandle
void * pSDL_DPL_HwipHandle
Definition: sdl_dpl.h:79
SDL_VTM_Stat_val
VTM temperature sensor Stat values.
Definition: sdl_ip_vtm.h:162
SDL_VTM_getTemp
int32_t SDL_VTM_getTemp(SDL_VTM_InstTs instance, uint32_t *pTempVal)
Read VTM Temperature sensor values in degree celcius.
SDL_VTM_setAlertTemp
int32_t SDL_VTM_setAlertTemp(SDL_VTM_InstTs instance, int32_t alert_th_hot, int32_t alert_th_cold)
Set thresholds for temperature alerts.