AM64x MCU+ SDK  12.00.00
soc.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2021-2026 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_AM64X_H_
34 #define SOC_AM64X_H_
35 
36 #ifdef __cplusplus
37 extern "C"
38 {
39 #endif
40 
50 #include <kernel/dpl/SystemP.h>
51 #include <drivers/sciclient.h>
52 #include <kernel/dpl/CpuIdP.h>
53 #include <drivers/hw_include/cslr_soc.h>
54 
60 #define SOC_DOMAIN_ID_MAIN (0U)
61 #define SOC_DOMAIN_ID_MCU (1U)
62 
69 /* PSC Instances */
70 #define SOC_PSC_DOMAIN_ID_MAIN (0U)
71 #define SOC_PSC_DOMAIN_ID_MCU (1U)
72 
79 /* PSC (Power Sleep Controller) Module states */
80 #define SOC_PSC_SYNCRESETDISABLE (0x0U)
81 #define SOC_PSC_SYNCRESET (0x1U)
82 #define SOC_PSC_DISABLE (0x2U)
83 #define SOC_PSC_ENABLE (0x3U)
84 
91 #define SOC_PSC_DOMAIN_OFF (0x0U)
92 #define SOC_PSC_DOMAIN_ON (0x1U)
93 
98 #define SOC_BOOTMODE_MMCSD (0X36C3)
99 
103 #define SOC_H_IO_DRVSTRNGTH0 (0x40C0U)
104 #define SOC_H_IO_DRVSTRNGTH1 (0x40C4U)
105 #define SOC_V_IO_DRVSTRNGTH0 (0x40D0U)
106 #define SOC_V_IO_DRVSTRNGTH1 (0x40D4U)
107 
111 #define SOC_IO_DRVSTRNGTH_MASK CSL_MCU_CTRL_MMR_CFG0_H_IO_DRVSTRNGTH0_DRV_STR_MASK
112 #define SOC_IO_DRVSTRNGTH_MAX CSL_MCU_CTRL_MMR_CFG0_H_IO_DRVSTRNGTH0_DRV_STR_MAX
113 
117 #define SOC_FWL_OPEN_MAGIC_NUM (0XFEDCBA98u)
118 
119 /* MCU Base address to be used after Adress translation in MCU Domain. */
120 #define MCU_MCSPI0_CFG_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_MCSPI0_CFG_BASE + 0x80000000)
121 #define MCU_MCSPI1_CFG_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_MCSPI1_CFG_BASE + 0x80000000)
122 #define MCU_UART0_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_UART0_BASE + 0x80000000)
123 #define MCU_UART1_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_UART1_BASE + 0x80000000)
124 #define MCU_I2C0_CFG_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_I2C0_CFG_BASE + 0x80000000)
125 #define MCU_I2C1_CFG_BASE_AFTER_ADDR_TRANSLATE (CSL_MCU_I2C1_CFG_BASE + 0x80000000)
126 
128 static inline int32_t I2C_lld_isBaseAddrValid(uint32_t baseAddr)
129 {
130  /* Set status to invalid Param */
131  int32_t status = (int32_t)(-3);
132 
133  if ( (baseAddr == CSL_I2C0_CFG_BASE) || \
134  (baseAddr == CSL_I2C1_CFG_BASE) || \
135  (baseAddr == CSL_I2C2_CFG_BASE) || \
136  (baseAddr == CSL_I2C3_CFG_BASE) || \
137  (baseAddr == CSL_MCU_I2C0_CFG_BASE) || \
138  (baseAddr == CSL_MCU_I2C1_CFG_BASE) || \
139  (baseAddr == MCU_I2C0_CFG_BASE_AFTER_ADDR_TRANSLATE) || \
141  {
142  /* Set status to success */
143  status = 0;
144  }
145 
146  return status;
147 }
148 
150 static inline int32_t MCSPI_lld_isBaseAddrValid(uint32_t baseAddr)
151 {
152  int32_t status = (int32_t)-3;
153 
154  if ((baseAddr == CSL_MCSPI0_CFG_BASE) || \
155  (baseAddr == CSL_MCSPI1_CFG_BASE) || \
156  (baseAddr == CSL_MCSPI2_CFG_BASE) || \
157  (baseAddr == CSL_MCSPI3_CFG_BASE) || \
158  (baseAddr == CSL_MCSPI4_CFG_BASE) || \
159  (baseAddr == CSL_MCU_MCSPI0_CFG_BASE) || \
160  (baseAddr == CSL_MCU_MCSPI1_CFG_BASE) || \
163  {
164  status = 0;
165  }
166 
167  return status;
168 }
169 
171 static inline int32_t UART_IsBaseAddrValid(uint32_t baseAddr)
172 {
173  int32_t status = (int32_t)-3;
174 
175  if ((baseAddr == CSL_UART0_BASE) ||
176  (baseAddr == CSL_UART1_BASE) ||
177  (baseAddr == CSL_UART2_BASE) ||
178  (baseAddr == CSL_UART3_BASE) ||
179  (baseAddr == CSL_UART4_BASE) ||
180  (baseAddr == CSL_UART5_BASE) ||
181  (baseAddr == CSL_UART6_BASE) ||
182  (baseAddr == CSL_MCU_UART0_BASE) ||
183  (baseAddr == CSL_MCU_UART1_BASE) ||
184  (baseAddr == MCU_UART0_BASE_AFTER_ADDR_TRANSLATE) ||
186 
187  {
188  status = 0;
189  }
190 
191  return status;
192 }
193 
195 static inline int32_t MMCSD_lld_isBaseAddrValid(uint32_t ctrlBaseAddr,
196  uint32_t ssBaseAddr)
197 {
198  /* Set status to invalid Param */
199  int32_t status = (int32_t)(-3);
200 
201  if (( (ctrlBaseAddr == CSL_MMCSD1_CTL_CFG_BASE) &&
202  (ssBaseAddr == CSL_MMCSD1_SS_CFG_BASE)) ||
203  ( (ctrlBaseAddr == CSL_MMCSD0_CTL_CFG_BASE) &&
204  (ssBaseAddr == CSL_MMCSD0_SS_CFG_BASE)))
205  {
206  /* Set status to success */
207  status = 0;
208  }
209 
210  return status;
211 }
213 #define IS_OSPI_BASE_ADDR_VALID(baseAddr) (baseAddr == CSL_FSS0_OSPI0_CTRL_BASE)
214 
216 #define IS_OSPI_DATA_BASE_ADDR_VALID(baseAddr) (baseAddr == CSL_FSS0_DAT_REG1_BASE)
217 
227 int32_t SOC_moduleClockEnable(uint32_t moduleId, uint32_t enable);
228 
240 int32_t SOC_moduleSetClockFrequencyWithParent(uint32_t moduleId, uint32_t clkId, uint32_t clkParent, uint64_t clkRate);
241 
252 int32_t SOC_moduleSetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t clkRate);
253 
263 int32_t SOC_moduleGetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t *clkRate);
264 
272 const char *SOC_getCoreName(uint16_t coreId);
273 
279 uint64_t SOC_getSelfCpuClk(void);
280 
287 void SOC_controlModuleLockMMR(uint32_t domainId, uint32_t partition);
288 
295 void SOC_controlModuleUnlockMMR(uint32_t domainId, uint32_t partition);
296 
303 void SOC_setEpwmTbClk(uint32_t epwmInstance, uint32_t enable);
304 
311 void SOC_allowEpwmTzReg(uint32_t epwmInstance, uint32_t enable);
312 
320 uint64_t SOC_virtToPhy(void *virtAddr);
321 
329 void *SOC_phyToVirt(uint64_t phyAddr);
330 
334 void SOC_unlockAllMMR(void);
335 
341 void SOC_setDevStat(uint32_t bootMode);
342 
351 
356 
361 
368 
373 
378 
383 
390 
399 void SOC_clearResetCauseMainMcuDomain(uint32_t resetCause);
400 
413 int32_t SOC_enableResetIsolation(uint32_t main2McuIsolation, uint32_t mcu2MainIsolation, \
414  uint32_t debugIsolationEnable);
415 
423 
428 
440 int32_t SOC_getPSCState(uint32_t instNum, uint32_t domainNum, uint32_t moduleNum,
441  uint32_t *domainState, uint32_t *moduleState);
442 
453 int32_t SOC_setPSCState(uint32_t instNum, uint32_t domainNum, uint32_t moduleNum, uint32_t pscState);
454 
460 
466 int32_t SOC_isHsDevice(void);
467 
474 
483 
486 #ifdef __cplusplus
487 }
488 #endif
489 
490 #endif
sciclient.h
This file contains prototypes for APIs contained as a part of SCICLIENT as well as the structures of ...
SOC_moduleSetClockFrequency
int32_t SOC_moduleSetClockFrequency(uint32_t moduleId, uint32_t clkId, uint64_t clkRate)
Set module clock to specified frequency.
SOC_moduleSetClockFrequencyWithParent
int32_t SOC_moduleSetClockFrequencyWithParent(uint32_t moduleId, uint32_t clkId, uint32_t clkParent, uint64_t clkRate)
Set module clock to specified frequency and with a specific parent.
SOC_controlModuleUnlockMMR
void SOC_controlModuleUnlockMMR(uint32_t domainId, uint32_t partition)
Unlock control module partition to allow writes into control MMRs.
SOC_virtToPhy
uint64_t SOC_virtToPhy(void *virtAddr)
SOC Virtual (CPU) to Physical address translation function.
MCU_UART1_BASE_AFTER_ADDR_TRANSLATE
#define MCU_UART1_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:123
SOC_generateSwWarmResetMainDomainFromMcuDomain
void SOC_generateSwWarmResetMainDomainFromMcuDomain(void)
Generate SW WARM Reset Main Domain from Mcu Domain.
SOC_generateSwPORResetMainDomainFromMcuDomain
void SOC_generateSwPORResetMainDomainFromMcuDomain(void)
Generate SW POR Reset Main Domain from Mcu Domain.
SystemP.h
SOC_getFlashDataBaseAddr
uint32_t SOC_getFlashDataBaseAddr(void)
This function gets the SOC mapped data base address of the flash.
SOC_clearResetCauseMainMcuDomain
void SOC_clearResetCauseMainMcuDomain(uint32_t resetCause)
Clears reason for Warm and Main/Mcu Domain Power On Resets. CTRLMMR_RST_SRC is just a mirror of CTRLM...
MCU_MCSPI0_CFG_BASE_AFTER_ADDR_TRANSLATE
#define MCU_MCSPI0_CFG_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:120
SOC_unlockAllMMR
void SOC_unlockAllMMR(void)
Unlocks all the control MMRs.
enable
uint8_t enable
Definition: tisci_pm_clock.h:6
MMCSD_lld_isBaseAddrValid
static int32_t MMCSD_lld_isBaseAddrValid(uint32_t ctrlBaseAddr, uint32_t ssBaseAddr)
API to validate MMCSD base addresses.
Definition: soc.h:195
MCU_I2C1_CFG_BASE_AFTER_ADDR_TRANSLATE
#define MCU_I2C1_CFG_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:125
SOC_setMCUResetIsolationDone
void SOC_setMCUResetIsolationDone(uint32_t value)
Set MCU reset isolation done flag.
SOC_generateSwWarmResetMcuDomain
void SOC_generateSwWarmResetMcuDomain(void)
Generate SW WARM Reset Mcu Domain.
SOC_waitForFwlUnlock
void SOC_waitForFwlUnlock(void)
Wait for Firewall unlock from SBL. The function polls for a Software defined Magic number at the PSRA...
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.
MCU_I2C0_CFG_BASE_AFTER_ADDR_TRANSLATE
#define MCU_I2C0_CFG_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:124
SOC_fixFastDriveStrength
void SOC_fixFastDriveStrength(void)
Fix fast mode drive strength.
SOC_isHsDevice
int32_t SOC_isHsDevice(void)
Check the device is HS or not.
SOC_waitMainDomainReset
void SOC_waitMainDomainReset(void)
Wait for main domain reset to complete.
SOC_phyToVirt
void * SOC_phyToVirt(uint64_t phyAddr)
Physical to Virtual (CPU) address translation function.
CSL_ArmR5CPUInfo
Structure containing the CPU Info such as CPU ID and Cluster Group ID.
Definition: CpuIdP.h:57
MCU_MCSPI1_CFG_BASE_AFTER_ADDR_TRANSLATE
#define MCU_MCSPI1_CFG_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:121
value
uint32_t value
Definition: tisci_otp_revision.h:2
SOC_setPSCState
int32_t SOC_setPSCState(uint32_t instNum, uint32_t domainNum, uint32_t moduleNum, uint32_t pscState)
Set PSC (Power Sleep Controller) state.
SOC_getSelfCpuClk
uint64_t SOC_getSelfCpuClk(void)
Get the clock frequency in Hz of the CPU on which the driver is running.
SOC_enableResetIsolation
int32_t SOC_enableResetIsolation(uint32_t main2McuIsolation, uint32_t mcu2MainIsolation, uint32_t debugIsolationEnable)
Enable reset isolation of MCU domain for safety applications.
UART_IsBaseAddrValid
static int32_t UART_IsBaseAddrValid(uint32_t baseAddr)
API to validate UART base address.
Definition: soc.h:171
SOC_generateSwWarmResetMainDomain
void SOC_generateSwWarmResetMainDomain(void)
Generate SW Warm Reset Main Domain.
SOC_allowEpwmTzReg
void SOC_allowEpwmTzReg(uint32_t epwmInstance, uint32_t enable)
Enable or disable writes to the EPWM tripZone registers.
I2C_lld_isBaseAddrValid
static int32_t I2C_lld_isBaseAddrValid(uint32_t baseAddr)
API to validate I2C base address.
Definition: soc.h:128
MCSPI_lld_isBaseAddrValid
static int32_t MCSPI_lld_isBaseAddrValid(uint32_t baseAddr)
API to validate MCSPI base address.
Definition: soc.h:150
SOC_generateSwPORResetMainDomain
void SOC_generateSwPORResetMainDomain(void)
Generate SW POR Reset Main Domain.
CpuIdP.h
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_getPSCState
int32_t SOC_getPSCState(uint32_t instNum, uint32_t domainNum, uint32_t moduleNum, uint32_t *domainState, uint32_t *moduleState)
Get PSC (Power Sleep Controller) state.
SOC_getCoreName
const char * SOC_getCoreName(uint16_t coreId)
Convert a core ID to a user readable name.
SOC_isR5FDualCoreMode
uint32_t SOC_isR5FDualCoreMode(CSL_ArmR5CPUInfo *cpuInfo)
Return R5SS supporting single or dual core mode.
SOC_setEpwmTbClk
void SOC_setEpwmTbClk(uint32_t epwmInstance, uint32_t enable)
Enable or disable ePWM time base clock from Control MMR.
MCU_UART0_BASE_AFTER_ADDR_TRANSLATE
#define MCU_UART0_BASE_AFTER_ADDR_TRANSLATE
Definition: soc.h:122
SOC_getWarmResetCauseMcuDomain
uint32_t SOC_getWarmResetCauseMcuDomain(void)
Get the reset reason source for Mcu Domain.