zephyr/soc/renesas/rz/rzv2l/soc.c
Hieu Nguyen 5e967abcf3 soc: renesas: Add support for Renesas RZ/V2L
Add support for Renesas RZ/V2L

Signed-off-by: Hieu Nguyen <hieu.nguyen.ym@bp.renesas.com>
Signed-off-by: Nhut Nguyen <nhut.nguyen.kc@renesas.com>
2025-03-28 08:35:13 +01:00

21 lines
374 B
C

/*
* Copyright (c) 2025 Renesas Electronics Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
* @brief System/hardware module for Renesas RZ/V2L Group
*/
#include <zephyr/init.h>
#include <bsp_api.h>
/* System core clock is set to 200 MHz after reset */
uint32_t SystemCoreClock = 200000000;
void soc_early_init_hook(void)
{
bsp_clock_init();
}