Files
zephyr/soc/infineon/psoc4/psoc4100smax/soc.c
Braeden Lane 14268793a9 soc: infineon: psoc4: Add PSOC 4100S Max series support
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>
2026-01-22 13:01:21 -05:00

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();
}