Add initial support for the PSOC 4100S Max series, starting with the CY8C4149AZI-S598 (100-TQFP package) used on the CY8CKIT-041S-MAX development board. The infrastructure supports adding additional part numbers in the future as needed. Signed-off-by: Braeden Lane <Braeden.Lane@infineon.com>
22 lines
469 B
C
22 lines
469 B
C
/*
|
|
* Copyright (c) 2025 Infineon Technologies AG,
|
|
* or an affiliate of Infineon Technologies AG.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/device.h>
|
|
#include <zephyr/init.h>
|
|
#include <zephyr/kernel.h>
|
|
|
|
#include <cy_sysint.h>
|
|
#include <system_cat2.h> /* PSoC4 system init header from PDL */
|
|
#include "cy_pdl.h"
|
|
|
|
/* Minimal early initialization for PSoC 4100S Max */
|
|
void soc_early_init_hook(void)
|
|
{
|
|
/* Initializes the system */
|
|
SystemInit();
|
|
}
|