Add support for Renesas RZ/A3UL Signed-off-by: Phuc Pham <phuc.pham.xr@bp.renesas.com> Signed-off-by: Tien Nguyen <tien.nguyen.zg@renesas.com> Signed-off-by: Nhut Nguyen <nhut.nguyen.kc@renesas.com>
24 lines
409 B
C
24 lines
409 B
C
/*
|
|
* Copyright (c) 2025 Renesas Electronics Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief System/hardware module for Renesas RZ/A3UL Group
|
|
*/
|
|
|
|
#include <zephyr/init.h>
|
|
#include "soc.h"
|
|
|
|
uint32_t SystemCoreClock;
|
|
|
|
void soc_early_init_hook(void)
|
|
{
|
|
/* Configure system clocks. */
|
|
bsp_clock_init();
|
|
|
|
/* InitFialize SystemCoreClock variable. */
|
|
SystemCoreClockUpdate();
|
|
}
|