PSOC6: update BSP startup code to match psoc6pdl-1.6.1

pull/13419/head
Volodymyr Medvid 2020-08-12 04:33:29 +01:00
parent 3b25d2ded0
commit 563e216cc8
78 changed files with 499 additions and 231 deletions

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xxa_cm0plus.sct ;* \file cy8c6xxa_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xxa_cm0plus.ld * \file cy8c6xxa_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xxa_cm0plus.icf * \file cy8c6xxa_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xxa_cm4_dual.sct ;* \file cy8c6xxa_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xxa_cm4_dual.ld * \file cy8c6xxa_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xxa_cm4_dual.icf * \file cy8c6xxa_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm0plus.sct ;* \file cy8c6xx7_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm0plus.ld * \file cy8c6xx7_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm0plus.icf * \file cy8c6xx7_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm4_dual.sct ;* \file cy8c6xx7_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm4_dual.ld * \file cy8c6xx7_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm4_dual.icf * \file cy8c6xx7_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm0plus.sct ;* \file cy8c6xx7_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm0plus.ld * \file cy8c6xx7_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm0plus.icf * \file cy8c6xx7_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm4_dual.sct ;* \file cy8c6xx7_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm4_dual.ld * \file cy8c6xx7_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm4_dual.icf * \file cy8c6xx7_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cyb06xxa_cm0plus.sct ;* \file cyb06xxa_cm0plus.sct
;* \version 2.80 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,5 +1,5 @@
;/**************************************************************************//** ;/**************************************************************************//**
; * @file startup_psoc6_02_cm0plus.s ; * @file startup_psoc6_02_cm0plus.S
; * @brief CMSIS Core Device Startup File for ; * @brief CMSIS Core Device Startup File for
; * ARMCM0plus Device Series ; * ARMCM0plus Device Series
; * @version V5.00 ; * @version V5.00

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cyb06xxa_cm0plus.ld * \file cyb06xxa_cm0plus.ld
* \version 2.80 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cyb06xxa_cm0plus.icf * \file cyb06xxa_cm0plus.icf
* \version 2.80 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,5 +1,5 @@
;/**************************************************************************//** ;/**************************************************************************//**
; * @file startup_psoc6_02_cm0plus.s ; * @file startup_psoc6_02_cm0plus.S
; * @brief CMSIS Core Device Startup File for ; * @brief CMSIS Core Device Startup File for
; * ARMCM0plus Device Series ; * ARMCM0plus Device Series
; * @version V5.00 ; * @version V5.00

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cyb06xxa_cm4_dual.sct ;* \file cyb06xxa_cm4_dual.sct
;* \version 2.80 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*
@ -66,7 +66,7 @@
#define BOOT_HEADER_SIZE 0x00000400 #define BOOT_HEADER_SIZE 0x00000400
#if !defined(MBED_ROM_SIZE) #if !defined(MBED_ROM_SIZE)
#define MBED_ROM_SIZE 0x00E8000 #define MBED_ROM_SIZE 0x000E8000
#endif #endif
;* MBED_APP_SIZE is being used by the bootloader build script and ;* MBED_APP_SIZE is being used by the bootloader build script and
@ -188,11 +188,11 @@ LR_IROM1 FLASH_START FLASH_SIZE
; Application heap area (HEAP) ; Application heap area (HEAP)
ARM_LIB_HEAP +0 EMPTY RAM_START+RAM_SIZE-STACK_SIZE-ImageLimit(RW_IRAM1) ARM_LIB_HEAP +0 EMPTY RAM_START+RAM_SIZE-STACK_SIZE-ImageLimit(RW_IRAM1)
{ {
} }
; Stack region growing down ; Stack region growing down
ARM_LIB_STACK RAM_START+RAM_SIZE EMPTY -STACK_SIZE ARM_LIB_STACK RAM_START+RAM_SIZE EMPTY -STACK_SIZE
{ {
} }
@ -290,7 +290,7 @@ CYMETA 0x90500000
/* The following symbols used by the cymcuelftool. */ /* The following symbols used by the cymcuelftool. */
/* Flash */ /* Flash */
#define __cy_memory_0_start 0x10000000 #define __cy_memory_0_start 0x10000000
#define __cy_memory_0_length 0x00200000 #define __cy_memory_0_length 0x001D0000
#define __cy_memory_0_row_size 0x200 #define __cy_memory_0_row_size 0x200
/* Emulated EEPROM Flash area */ /* Emulated EEPROM Flash area */

View File

@ -1,5 +1,5 @@
;/**************************************************************************//** ;/**************************************************************************//**
; * @file startup_psoc6_02_cm4.s ; * @file startup_psoc6_02_cm4.S
; * @brief CMSIS Core Device Startup File for ; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device Series ; * ARMCM4 Device Series
; * @version V5.00 ; * @version V5.00
@ -282,7 +282,7 @@ Vectors_Copy
; Enable the FPU if used ; Enable the FPU if used
LDR R0, =Cy_SystemInitFpuEnable LDR R0, =Cy_SystemInitFpuEnable
BLX R0 BLX R0
LDR R0, =__main LDR R0, =__main
BLX R0 BLX R0

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cyb06xxa_cm4_dual.ld * \file cyb06xxa_cm4_dual.ld
* \version 2.80 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *
@ -64,7 +64,7 @@ BOOT_HEADER_SIZE = 0x400;
#endif #endif
#if !defined(MBED_ROM_SIZE) #if !defined(MBED_ROM_SIZE)
#define MBED_ROM_SIZE 0xE8000 #define MBED_ROM_SIZE 0x000E8000
#endif #endif
/* MBED_APP_SIZE is being used by the bootloader build script and /* MBED_APP_SIZE is being used by the bootloader build script and
@ -180,6 +180,7 @@ SECTIONS
/* Cortex-M4 application flash area */ /* Cortex-M4 application flash area */
.text ORIGIN(flash) : .text ORIGIN(flash) :
{ {
/* Cortex-M4 flash vector table */
. = ALIGN(4); . = ALIGN(4);
__Vectors = . ; __Vectors = . ;
KEEP(*(.vectors)) KEEP(*(.vectors))

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cyb06xxa_cm4_dual.icf * \file cyb06xxa_cm4_dual.icf
* \version 2.80 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *
@ -65,7 +65,7 @@ if (!isdefinedsymbol(MBED_APP_START)) {
} }
if (!isdefinedsymbol(MBED_ROM_SIZE)) { if (!isdefinedsymbol(MBED_ROM_SIZE)) {
define symbol MBED_ROM_SIZE = 0x00E8000; define symbol MBED_ROM_SIZE = 0x000E8000;
} }
/* MBED_APP_SIZE is being used by the bootloader build script and /* MBED_APP_SIZE is being used by the bootloader build script and
@ -267,7 +267,7 @@ keep { section .cy_m0p_image,
/* The following symbols used by the cymcuelftool. */ /* The following symbols used by the cymcuelftool. */
/* Flash */ /* Flash */
define exported symbol __cy_memory_0_start = 0x10000000; define exported symbol __cy_memory_0_start = 0x10000000;
define exported symbol __cy_memory_0_length = 0x00200000; define exported symbol __cy_memory_0_length = 0x001D0000;
define exported symbol __cy_memory_0_row_size = 0x200; define exported symbol __cy_memory_0_row_size = 0x200;
/* Emulated EEPROM Flash area */ /* Emulated EEPROM Flash area */

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.80 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -129,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.80 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,13 +321,18 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td> * <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td> * <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates * <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td> * in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr> * </tr>
* <tr> * <tr>
* <td>Added \ref Cy_PRA_Init() function call to \ref SystemInit() API for CM0+ core of PSoC 64 Secure MCU.</td> * <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td> * <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr> * </tr>
* <tr> * <tr>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx5_cm0plus.sct ;* \file cy8c6xx5_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx5_cm0plus.ld * \file cy8c6xx5_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx5_cm0plus.icf * \file cy8c6xx5_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx5_cm4_dual.sct ;* \file cy8c6xx5_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx5_cm4_dual.ld * \file cy8c6xx5_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx5_cm4_dual.icf * \file cy8c6xx5_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xxa_cm0plus.sct ;* \file cy8c6xxa_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xxa_cm0plus.ld * \file cy8c6xxa_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xxa_cm0plus.icf * \file cy8c6xxa_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xxa_cm4_dual.sct ;* \file cy8c6xxa_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xxa_cm4_dual.ld * \file cy8c6xxa_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xxa_cm4_dual.icf * \file cy8c6xxa_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -1,5 +1,5 @@
;/**************************************************************************//** ;/**************************************************************************//**
; * @file startup_psoc6_02_cm4.s ; * @file startup_psoc6_02_cm4.S
; * @brief CMSIS Core Device Startup File for ; * @brief CMSIS Core Device Startup File for
; * ARMCM4 Device Series ; * ARMCM4 Device Series
; * @version V5.00 ; * @version V5.00
@ -282,7 +282,7 @@ Vectors_Copy
; Enable the FPU if used ; Enable the FPU if used
LDR R0, =Cy_SystemInitFpuEnable LDR R0, =Cy_SystemInitFpuEnable
BLX R0 BLX R0
LDR R0, =__main LDR R0, =__main
BLX R0 BLX R0

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.80 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -129,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.80 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,13 +321,18 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td> * <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td> * <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates * <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td> * in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr> * </tr>
* <tr> * <tr>
* <td>Added \ref Cy_PRA_Init() function call to \ref SystemInit() API for CM0+ core of PSoC 64 Secure MCU.</td> * <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td> * <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr> * </tr>
* <tr> * <tr>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm0plus.sct ;* \file cy8c6xx7_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm0plus.ld * \file cy8c6xx7_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm0plus.icf * \file cy8c6xx7_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm4_dual.sct ;* \file cy8c6xx7_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm4_dual.ld * \file cy8c6xx7_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm4_dual.icf * \file cy8c6xx7_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm0plus.sct ;* \file cy8c6xx7_cm0plus.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm0plus.ld * \file cy8c6xx7_cm0plus.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm0plus.icf * \file cy8c6xx7_cm0plus.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm0plus.c * \file system_psoc6_cm0plus.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -126,6 +130,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* *
*******************************************************************************/ *******************************************************************************/
@ -219,6 +224,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Regsiter Access driver. */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }
@ -263,7 +273,7 @@ void SystemCoreClockUpdate (void)
cy_Hfclk0FreqHz = locHf0Clock; cy_Hfclk0FreqHz = locHf0Clock;
cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider()); cy_PeriClkFreqHz = locHf0Clock / (1UL + (uint32_t)Cy_SysClk_ClkPeriGetDivider());
SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider()); SystemCoreClock = cy_PeriClkFreqHz / (1UL + (uint32_t)Cy_SysClk_ClkSlowGetDivider());
/* Sets clock frequency for Delay API */ /* Sets clock frequency for Delay API */
cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD); cy_delayFreqMhz = (uint8_t)CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1M_THRESHOLD);
cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD); cy_delayFreqKhz = CY_SYSLIB_DIV_ROUNDUP(SystemCoreClock, CY_DELAY_1K_THRESHOLD);

View File

@ -4,7 +4,7 @@
;******************************************************************************* ;*******************************************************************************
;* \file cy8c6xx7_cm4_dual.sct ;* \file cy8c6xx7_cm4_dual.sct
;* \version 2.70.1 ;* \version 2.90
;* ;*
;* Linker file for the ARMCC. ;* Linker file for the ARMCC.
;* ;*

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file cy8c6xx7_cm4_dual.ld * \file cy8c6xx7_cm4_dual.ld
* \version 2.70.1 * \version 2.90
* *
* Linker file for the GNU C compiler. * Linker file for the GNU C compiler.
* *

View File

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
* \file cy8c6xx7_cm4_dual.icf * \file cy8c6xx7_cm4_dual.icf
* \version 2.70.1 * \version 2.90
* *
* Linker file for the IAR compiler. * Linker file for the IAR compiler.
* *

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6_cm4.c * \file system_psoc6_cm4.c
* \version 2.70.1 * \version 2.90
* *
* The device system-source file. * The device system-source file.
* *
@ -40,6 +40,10 @@
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
#include "cy_pra.h"
#endif /* defined(CY_DEVICE_SECURE) */
/******************************************************************************* /*******************************************************************************
* SystemCoreClockUpdate() * SystemCoreClockUpdate()
@ -125,6 +129,7 @@ uint32_t cy_delay32kMs = CY_DELAY_MS_OVERFLOW_THRESHOLD *
* - Unlocks and disables WDT. * - Unlocks and disables WDT.
* - Calls Cy_PDL_Init() function to define the driver library. * - Calls Cy_PDL_Init() function to define the driver library.
* - Calls the Cy_SystemInit() function, if compiled from PSoC Creator. * - Calls the Cy_SystemInit() function, if compiled from PSoC Creator.
* - Calls \ref Cy_PRA_Init() for PSoC 64 devices.
* - Calls \ref SystemCoreClockUpdate(). * - Calls \ref SystemCoreClockUpdate().
* \endcond * \endcond
*******************************************************************************/ *******************************************************************************/
@ -160,7 +165,7 @@ void SystemInit(void)
#ifdef __CM0P_PRESENT #ifdef __CM0P_PRESENT
#if (__CM0P_PRESENT == 0) #if (__CM0P_PRESENT == 0)
/* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */ /* Configure data register (as CM0p in deep sleep state) of IPC structure #7, reserved for the Deep-Sleep operations. */
REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE << REG_IPC_STRUCT_DATA(CY_IPC_STRUCT_PTR(CY_IPC_CHAN_DDFT)) = (CY_STARTUP_CM0_DP_STATE <<
CY_STARTUP_IPC7_DP_OFFSET); CY_STARTUP_IPC7_DP_OFFSET);
/* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */ /* Release IPC structure #7 to avoid deadlocks in case of SW or WDT reset during Deep-Sleep entering. */
@ -233,6 +238,11 @@ void SystemInit(void)
#endif /* defined(CY_DEVICE_PSOC6ABLE2) */ #endif /* defined(CY_DEVICE_PSOC6ABLE2) */
#endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */ #endif /* !defined(CY_IPC_DEFAULT_CFG_DISABLE) */
#if defined(CY_DEVICE_SECURE)
/* Initialize Protected Register Access driver */
Cy_PRA_Init();
#endif /* defined(CY_DEVICE_SECURE) */
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************//** /***************************************************************************//**
* \file system_psoc6.h * \file system_psoc6.h
* \version 2.70.1 * \version 2.90
* *
* \brief Device system header file. * \brief Device system header file.
* *
@ -85,20 +85,20 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the ROM ORIGIN's
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the flash LENGTH in * of the Cortex-M0+ application should be the same value as the flash LENGTH in
* 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group. * 'xx_cm0plus.ld') in the 'xx_cm4_dual.ld' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
* or * or
* - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where * - Editing the \ref CY_CORTEX_M4_APPL_ADDR value in the 'system_xx.h', where
* 'xx' is the device family:\n * 'xx' is the device family:\n
* \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode * \code #define CY_CORTEX_M4_APPL_ADDR (0x10002000u) \endcode
* *
* <b>ARM Compiler</b>\n * <b>ARM Compiler</b>\n
* The flash and RAM sections for the CPU are defined in the linker files: * The flash and RAM sections for the CPU are defined in the linker files:
* 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for * 'xx_yy.sct', where 'xx' is the device group, and 'yy' is the target CPU; for
* example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'. * example 'cy8c6xx7_cm0plus.sct' and 'cy8c6xx7_cm4_dual.sct'.
* \note If the start of the Cortex-M4 application image is changed, the value * \note If the start of the Cortex-M4 application image is changed, the value
* of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The * of the of the \ref CY_CORTEX_M4_APPL_ADDR should also be changed. The
@ -135,9 +135,9 @@
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the FLASH_START
* value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image * value (0x10000000) + FLASH_CM0P_SIZE value (0x2000, the size of a flash image
* of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the * of the Cortex-M0+ application should be the same value as the FLASH_SIZE in the
* 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group. * 'xx_cm0plus.sct') in the 'xx_cm4_dual.sct' file, where 'xx' is the device group.
* Do this by either: * Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -175,11 +175,11 @@
* define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF; * define symbol __ICFEDIT_region_IRAM1_end__ = 0x080477FF;
* \endcode * \endcode
* *
* Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the * Change the value of the \ref CY_CORTEX_M4_APPL_ADDR macro to the
* __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value * __ICFEDIT_region_IROM1_start__ value (0x10000000) + FLASH_CM0P_SIZE value
* (0x2000, the size of a flash image of the Cortex-M0+ application) in the * (0x2000, the size of a flash image of the Cortex-M0+ application) in the
* 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result * 'xx_cm4_dual.icf' file, where 'xx' is the device group. The sum result
* should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the * should be the same as (__ICFEDIT_region_IROM1_end__ + 1) value in the
* 'xx_cm0plus.icf'. Do this by either: * 'xx_cm0plus.icf'. Do this by either:
* - Passing the following commands to the compiler:\n * - Passing the following commands to the compiler:\n
* \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode * \code -D CY_CORTEX_M4_APPL_ADDR=0x10002000 \endcode
@ -212,8 +212,8 @@
* -# Editing source code files * -# Editing source code files
* -# Specifying via command line * -# Specifying via command line
* *
* By default, the stack size is set to 0x00001000 and the heap size is allocated * By default, the stack size is set to 0x00001000 and the heap size is allocated
* dynamically to the whole available free memory up to stack memory and it * dynamically to the whole available free memory up to stack memory and it
* is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value. * is set to the 0x00000400 (for ARM GCC and IAR compilers) as minimal value.
* *
* \subsubsection group_system_config_heap_stack_config_gcc ARM GCC * \subsubsection group_system_config_heap_stack_config_gcc ARM GCC
@ -321,6 +321,21 @@
* <th>Reason for Change</th> * <th>Reason for Change</th>
* </tr> * </tr>
* <tr> * <tr>
* <td>2.90</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU cyb06xx7 devices.</td>
* <td>Flash allocation adjustment.</td>
* </tr>
* <tr>
* <td rowspan="2">2.80</td>
* <td>Updated linker scripts for PSoC 64 Secure MCU devices.</td>
* <td>Updated FLASH and SRAM memory area definitions in cyb0xxx linker script templates
* in accordance with the PSoC 64 Secure Boot SDK policies.</td>
* </tr>
* <tr>
* <td>Added \ref Cy_PRA_Init() call to \ref SystemInit() Cortex-M0+ and Cortex-M4 functions for PSoC 64 Secure MCU.</td>
* <td>Updated PSoC 64 Secure MCU startup sequence to initialize the Protected Register Access driver.</td>
* </tr>
* <tr>
* <td>2.70.1</td> * <td>2.70.1</td>
* <td>Updated documentation for the better description of the existing startup implementation.</td> * <td>Updated documentation for the better description of the existing startup implementation.</td>
* <td>User experience enhancement.</td> * <td>User experience enhancement.</td>