AM62L FreeRTOS SDK  11.00.00
soc.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2024 Texas Instruments Incorporated
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef SOC_AM62LX_H_
34 #define SOC_AM62LX_H_
35 
36 #ifdef __cplusplus
37 extern "C"
38 {
39 #endif
40 
49 #include <stdint.h>
50 #include <kernel/dpl/SystemP.h>
51 #include <drivers/scmi.h>
52 
58 #define SOC_DOMAIN_ID_MAIN (0U)
59 #define SOC_DOMAIN_ID_WKUP (1U)
60 
67 /* PSC Instances */
68 #define SOC_PSC_DOMAIN_ID_MAIN (0U)
69 
76 /* PSC (Power Sleep Controller) Module states */
77 #define SOC_PSC_SYNCRESETDISABLE (0x0U)
78 #define SOC_PSC_SYNCRESET (0x1U)
79 #define SOC_PSC_DISABLE (0x2U)
80 #define SOC_PSC_ENABLE (0x3U)
81 
88 #define SOC_PSC_DOMAIN_OFF (0x0U)
89 #define SOC_PSC_DOMAIN_ON (0x1U)
90 
95 #define SOC_BOOTMODE_MMCSD (0X36C3)
96 
106 int32_t SOC_moduleClockEnable(uint32_t moduleId, uint32_t enable);
107 
118 int32_t SOC_moduleSetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t clkRate);
119 
129 int32_t SOC_moduleGetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t *clkRate);
130 
138 const char *SOC_getCoreName(uint16_t coreId);
139 
145 uint64_t SOC_getSelfCpuClk(void);
146 
147 
148 void SOC_setEpwmTbClk(uint32_t epwmInstance, uint32_t enable);
149 
155 void SOC_setDevStat(uint32_t bootMode);
156 
161 
168 
178 
185 void SOC_controlModuleLockMMR(uint32_t domainId, uint32_t partition);
186 
193 void SOC_controlModuleUnlockMMR(uint32_t domainId, uint32_t partition);
194 
202 uint64_t Soc_getPhyAddr(uint64_t virtAddr);
203 
206 #ifdef __cplusplus
207 }
208 #endif
209 
210 #endif
SOC_moduleSetClockFrequency
int32_t SOC_moduleSetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t clkRate)
Set module clock to specified frequency.
SOC_controlModuleUnlockMMR
void SOC_controlModuleUnlockMMR(uint32_t domainId, uint32_t partition)
Unlock control module partition to allow writes into control MMRs.
SystemP.h
SOC_moduleGetClockFrequency
int32_t SOC_moduleGetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t *clkRate)
Get module clock frequency.
SOC_getWarmResetCauseMainDomain
uint32_t SOC_getWarmResetCauseMainDomain(void)
Get the reset reason source for Main Domain.
SOC_setFSSCtrlFlashBootSize
void SOC_setFSSCtrlFlashBootSize(void)
Update the boot block size for FSS subsystem.
SOC_getSelfCpuClk
uint64_t SOC_getSelfCpuClk(void)
Get the clock frequency in Hz of the CPU on which the driver is running.
scmi.h
SOC_generateSwWarmResetMainDomain
void SOC_generateSwWarmResetMainDomain(void)
Generate SW Warm Reset Main Domain.
SOC_controlModuleLockMMR
void SOC_controlModuleLockMMR(uint32_t domainId, uint32_t partition)
Lock control module partition to prevent writes into control MMRs.
SOC_moduleClockEnable
int32_t SOC_moduleClockEnable(uint32_t moduleId, uint32_t enable)
Enable clock to specified module.
SOC_setDevStat
void SOC_setDevStat(uint32_t bootMode)
Change boot mode by setting devstat register.
SOC_getCoreName
const char * SOC_getCoreName(uint16_t coreId)
Convert a core ID to a user readable name.
SOC_setEpwmTbClk
void SOC_setEpwmTbClk(uint32_t epwmInstance, uint32_t enable)
Soc_getPhyAddr
uint64_t Soc_getPhyAddr(uint64_t virtAddr)
Get Physical Address from virtual address.